index.scss 2.33 KB
Newer Older
xuzhenghua committed
1
.score-content {
xuzhenghua committed
2 3
  width: 100%;
  background-color: #09f;
xuzhenghua committed
4
}
xuzhenghua committed
5

xuzhenghua committed
6 7 8
.score-report {
  width: 100%;
  padding: 30px 12px 45px 12px;
xuzhenghua committed
9 10 11 12 13 14 15 16 17 18 19 20
  color: #fff;

  .tab-list {
    display: flex;
    justify-content: space-around;
    font-size: 18px;

    li {
      padding-bottom: 6px;
    }

    .active {
zhanghaozhe committed
21
      border-bottom: 2px solid #fff;
xuzhenghua committed
22 23 24 25 26 27 28 29 30 31 32 33 34
    }
  }

  .score-list-box {
    width: 100%;
    height: 434px;
    position: relative;
    margin-top: 20px;
  }

  .imgUrl {
    width: 100%;
    height: 434px;
xuzhenghua committed
35
    position: absolute;
xuzhenghua committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    left: 0;
    top: 0;
  }

  .score-list {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: center;

    .title {
      font-size: 22px;
      color: #000;
      padding-top: 40px;
xuzhenghua committed
52

xuzhenghua committed
53 54 55 56 57 58 59 60 61 62 63 64
      img {
        width: 16px;
        height: 11px;
        margin: 0 20px;
        position: relative;
        top: -1px;
      }
    }

    table {
      margin: 15px 33px 0;
      text-align: center;
zhanghaozhe committed
65
      border: 1px solid #e5e5e5;
xuzhenghua committed
66 67 68 69 70 71 72 73 74
      border-radius: 4px;
      background-color: #fff;

      tr {
        height: 40px;
        line-height: 40px;
      }

      thead {
zhanghaozhe committed
75
        color: #525c65;
xuzhenghua committed
76 77 78 79 80
        font-size: 16px;
        font-weight: 400;
      }

      tbody {
zhanghaozhe committed
81
        color: #525c65;
xuzhenghua committed
82 83 84 85
        font-size: 16px;
        font-weight: 500;

        td {
zhanghaozhe committed
86
          border-top: 1px solid #e5e5e5;
xuzhenghua committed
87 88 89 90
        }
      }

      td {
zhanghaozhe committed
91
        border-left: 1px solid #e5e5e5;
xuzhenghua committed
92 93 94 95 96 97 98 99 100 101 102 103 104 105
        width: 80px;

        &:first-child {
          border-left: none;
        }

        &:nth-of-type(2) {
          width: 124px;
        }
      }

      .has {
        color: #09f;
      }
xuzhenghua committed
106

xuzhenghua committed
107
      .rank {
zhanghaozhe committed
108
        color: #ff2121;
xuzhenghua committed
109 110 111 112 113 114 115 116 117
      }
    }

    .comment {
      text-align: left;
      color: #333;
      font-size: 14px;
      line-height: 21px;
      margin: 15px 33px 0;
xuzhenghua committed
118 119 120 121

      em {
        text-decoration: line-through;
      }
xuzhenghua committed
122 123 124 125 126 127 128
    }

    .code {
      width: 80px;
      position: absolute;
      bottom: 40px;
      right: 25px;
xuzhenghua committed
129

xuzhenghua committed
130 131 132 133
      img {
        width: 80px;
        height: 80px;
      }
xuzhenghua committed
134

xuzhenghua committed
135 136 137 138 139 140 141 142 143 144 145 146 147
      p {
        color: #000;
        font-size: 12px;
      }
    }
  }

  .tip {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
  }
xuzhenghua committed
148 149 150 151 152 153 154 155

  .avatar_file {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
  }
xuzhenghua committed
156
}