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 21 22 23 24 25 26 27 28 29 30 31 32 33 34
  color: #fff;

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

    li {
      padding-bottom: 6px;
    }

    .active {
      border-bottom: 2px solid #FFF;
    }
  }

  .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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
      img {
        width: 16px;
        height: 11px;
        margin: 0 20px;
        position: relative;
        top: -1px;
      }

    }

    table {
      margin: 15px 33px 0;
      text-align: center;
      border: 1px solid #E5E5E5;
      border-radius: 4px;
      background-color: #fff;

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

      thead {
        color: #525C65;
        font-size: 16px;
        font-weight: 400;
      }

      tbody {
        color: #525C65;
        font-size: 16px;
        font-weight: 500;

        td {
          border-top: 1px solid #E5E5E5;
        }
      }

      td {
        border-left: 1px solid #E5E5E5;
        width: 80px;

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

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

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

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

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

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

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

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

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

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

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