index.scss 9.43 KB
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
.scores {
  $blue-bg: #e5f5ff;
  background-color: #2e7ee9;
  padding: 0 5px 60px;

  .banner {
    height: 171px;
    margin: 0 -5px;

    img {
      width: 100%;
      height: 100%;
    }
  }

  .info {
    position: relative;
    height: 70px;
    text-align: center;
    line-height: 70px;

    span {
      color: $blue-bg;
      font-size: 15px;
    }

    a {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      text-decoration: underline;
      font-size: 14px;
      color: #fff;
    }
  }

  .score-list {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;

    .share {
      height: 40px;
      text-align: center;
      font-size: 16px;
      line-height: 40px;
      color: #09f;
      text-decoration: underline;
      background-color: $blue-bg;
    }

zhanghaozhe committed
53
    th {
zhanghaozhe committed
54 55
      width: 33.333333%;
    }
zhanghaozhe committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
  }

  th {
    font-weight: normal;
  }

  .am-tabs {
    &-tar-bar-wrap {
      border: 0;
    }

    &-default-bar {
      padding: 10px 10px 0;
      background-color: $blue-bg !important;

      &-tab-active {
        background-color: #fff;
zhanghaozhe committed
73
        color: #0d75e5;
zhanghaozhe committed
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
      }

      &-tab {
        width: 80px;
        height: 40px;
        border-radius: 4px 4px 0 0;

        &::after {
          display: none !important;
        }
      }

      &-content {
        padding-top: 2px;
        line-height: 48px;
        font-size: 15px;
zhanghaozhe committed
90
        color: #525b65;
zhanghaozhe committed
91 92 93 94 95 96 97
      }
    }

    .title {
      display: flex;
      justify-content: space-around;
      height: 38px;
zhanghaozhe committed
98
      background-color: #ffd66a;
zhanghaozhe committed
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
      color: #333;
      font-size: 14px;
      line-height: 38px;
    }

    .tab-content {
      box-sizing: border-box;
      padding-top: 10px;
      background-color: #fff;
    }

    table {
      width: 100%;
      margin: 0;
      text-align: center;
      border-collapse: collapse;

      a {
        color: #09f;
        text-decoration: underline;
      }

      thead tr {
        height: 38px;
zhanghaozhe committed
123
        background-color: #ffd66a;
zhanghaozhe committed
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
        color: #333;
        font-size: 14px;
        line-height: 38px;
      }

      tbody tr {
        height: 50px;
        line-height: 50px;
      }
    }
  }

  .rank-list {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;

    .head {
      height: 68px;
      padding-top: 12px;
      text-align: center;
zhanghaozhe committed
145 146 147
      color: #fff;
      margin-bottom: 15px;

zhanghaozhe committed
148
      div:nth-child(1) {
zhanghaozhe committed
149
        position: relative;
zhanghaozhe committed
150
        margin-bottom: 5px;
zhanghaozhe committed
151 152 153
        font-size: 18px;

        @mixin pseudo {
zhanghaozhe committed
154
          content: "";
zhanghaozhe committed
155 156 157 158 159 160
          display: block;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 25px;
          height: 11px;
161
          background: url("https://cdn.julyedu.com/ai-test/m/title-decoration.png")
zhanghaozhe committed
162
            no-repeat;
zhanghaozhe committed
163 164 165 166 167
          background-size: contain;
        }

        &::before {
          @include pseudo;
zhanghaozhe committed
168
          left: 28%;
zhanghaozhe committed
169 170 171 172
        }

        &::after {
          @include pseudo;
zhanghaozhe committed
173
          right: 28%;
zhanghaozhe committed
174 175
          transform: scaleX(-1) translateY(-50%);
        }
zhanghaozhe committed
176 177 178 179 180 181
      }

      div:nth-child(2) {
        position: relative;

        span {
zhanghaozhe committed
182
          color: #e5f5ff;
zhanghaozhe committed
183 184 185 186 187 188 189 190 191 192
          font-size: 12px;
        }

        a {
          position: absolute;
          right: 10px;
          top: 50%;
          transform: translateY(-50%);
          text-decoration: underline;
          font-size: 14px;
zhanghaozhe committed
193
          color: #fff;
zhanghaozhe committed
194 195 196 197 198 199 200 201 202
        }
      }
    }

    .list {
      background: #fff;

      table {
        width: 100%;
zhanghaozhe committed
203
        margin-top: 10px;
zhanghaozhe committed
204 205 206 207 208
        border-collapse: collapse;
        border-spacing: 0;
        border: none;
        text-align: center;

zhanghaozhe committed
209 210
        td,
        th {
zhanghaozhe committed
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
          margin-right: -1px;
          padding: 0;
        }

        .avatar {
          margin-right: 6px;
        }

        td:nth-of-type(1) {
          width: 15%;
        }

        td:nth-of-type(2) {
          width: 35%;
          text-overflow: ellipsis;
          white-space: nowrap;
          overflow: hidden;
          text-align: left;
          //padding-left: 10%;
        }

        thead tr {
          height: 38px;
          line-height: 38px;
zhanghaozhe committed
235
          background-color: #ffd76a;
zhanghaozhe committed
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
          font-size: 14px;
          color: #333;
        }

        tbody tr {
          height: 49px;
          line-height: 49px;
          font-size: 12px;
          color: #333;

          td:nth-of-type(1) {
            font-size: 16px;

            img {
              width: 14px;
              height: 18px;
            }
          }

          td:nth-of-type(2) {
            img {
              width: 18px;
              height: 18px;
              border-radius: 50%;
            }
          }

zhanghaozhe committed
263
          td:nth-of-type(3) {
zhanghaozhe committed
264 265 266 267 268 269 270 271 272 273 274 275
            width: 20%;
          }

          td:nth-of-type(4) {
            div {
              width: 118px;
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis;
            }
          }

zhanghaozhe committed
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
          &:nth-child(even) {
            background: #f6fbff;
          }

          img {
            vertical-align: middle;
          }

          .score {
            color: #09f;
          }
        }
      }
    }

    .expand {
      height: 49px;
      line-height: 49px;
      text-align: center;
      background: #fff;
zhanghaozhe committed
296
      color: #525c65;
zhanghaozhe committed
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
      font-size: 14px;

      .iconfont {
        margin-left: 5px;
      }
    }
  }

  .btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    padding: 10px;
    color: #fff;
    font-size: 0;
zhanghaozhe committed
315
    z-index: 100;
zhanghaozhe committed
316 317 318 319 320 321 322 323 324 325 326

    button {
      width: 100%;
      height: 100%;
      font-size: 16px;
      color: #fff;
      border: none;
      outline: 0;
      -webkit-appearance: none;

      &.get-chance {
zhanghaozhe committed
327
        background-color: #ffae00;
zhanghaozhe committed
328 329 330
      }

      &.available {
zhanghaozhe committed
331 332 333 334 335
        background: linear-gradient(
          -90deg,
          rgba(0, 153, 255, 1) 0%,
          rgba(61, 177, 255, 1) 100%
        );
zhanghaozhe committed
336 337 338
      }

      &.unavailable {
zhanghaozhe committed
339
        background: #525c65;
zhanghaozhe committed
340 341 342 343 344 345 346 347 348
      }
    }

    span {
      font-size: 12px;
    }
  }

  .rule-mask {
zhanghaozhe committed
349
    position: fixed;
zhanghaozhe committed
350 351 352 353
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
zhanghaozhe committed
354
    background-color: rgba(0, 0, 0, 0.8);
zhanghaozhe committed
355 356 357 358 359
    z-index: 100;
  }

  .rule {
    position: absolute;
zhanghaozhe committed
360
    top: 50%;
zhanghaozhe committed
361
    left: 50%;
zhanghaozhe committed
362
    transform: translate(-50%, -50%);
zhanghaozhe committed
363
    width: 300px;
zhanghaozhe committed
364
    padding: 18px 25px 10px;
zhanghaozhe committed
365 366
    background-color: #fff;
    border-radius: 5px;
zhanghaozhe committed
367
    color: #525c65;
zhanghaozhe committed
368 369 370 371 372 373 374 375
    text-align: center;

    div:nth-child(1) {
      font-size: 16px;
      margin-bottom: 15px;
    }

    div:nth-child(2) {
zhanghaozhe committed
376 377 378
      max-height: 280px;
      overflow: auto;
      //height: 100%;
zhanghaozhe committed
379 380
      font-size: 14px;
      margin-bottom: 16px;
zhanghaozhe committed
381 382
      white-space: pre-wrap;
      text-align: left;
zhanghaozhe committed
383 384 385 386 387
    }

    label {
      font-size: 14px;
      color: #555;
zhanghaozhe committed
388
      opacity: 0.8;
zhanghaozhe committed
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
    }

    .option {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 21px;
    }

    input {
      position: relative;
      width: 15px;
      height: 15px;
      margin-right: 8px;
      border: 1px solid #3799ff;
      border-radius: 2px;
      -webkit-appearance: none;

      &::after {
zhanghaozhe committed
408
        content: "";
zhanghaozhe committed
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
        position: absolute;
        top: 2px;
        left: 3px;
        width: 10px;
        height: 6px;
        display: none;
        border-bottom: 1px solid #3799ff;
        border-left: 1px solid #3799ff;
        transform-origin: 5px 4px;
        transform: rotate(-45deg);
      }

      &:checked {
        &::after {
          display: block;
        }
      }
    }

    button {
      width: 94px;
      height: 30px;
      background: #09f;
      color: #fff;
      font-size: 14px;
      border-radius: 15px;
      -webkit-appearance: none;
      border: none;
      outline: 0;
    }

    .close {
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      display: block;
      font-size: 30px;
    }
  }

  .user-address-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
zhanghaozhe committed
457
    background-color: rgba(0, 0, 0, 0.6);
zhanghaozhe committed
458
    z-index: 100;
zhanghaozhe committed
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
  }

  .user-address {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 309px;
    padding: 18px 26px 0;
    background: #fff;
    border-radius: 5px;
    text-align: center;

    .title {
      font-size: 16px;
zhanghaozhe committed
475
      color: #525c65;
zhanghaozhe committed
476 477 478 479 480 481
      text-align: center;
      margin-bottom: 17px;
    }

    .tip {
      font-size: 12px;
zhanghaozhe committed
482
      color: #ffae00;
zhanghaozhe committed
483 484 485 486 487 488 489 490
      margin-bottom: 15px;
      text-align: left;
    }

    input {
      width: 250px;
      height: 40px;
      padding-left: 10px;
zhanghaozhe committed
491
      border: 1px solid #ddd;
zhanghaozhe committed
492 493 494 495 496 497 498 499 500 501 502 503
      margin-bottom: 10px;
      font-size: 13px;

      &::placeholder {
        color: #999;
      }
    }

    button {
      padding: 10px 45px;
      font-size: 15px;
      color: #fff;
zhanghaozhe committed
504
      background: rgba(82, 92, 101, 0.3);
zhanghaozhe committed
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
      border-radius: 17px;
      border: none;
      outline: 0;
      -webkit-appearance: none;

      &.available {
        background-color: #09f;
      }
    }

    .iconfont {
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 30px;
      color: #fff;
    }
  }
zhanghaozhe committed
524 525 526 527 528 529

  .qrcode {
    padding-bottom: 40px;
    font-size: 12px;
    color: #fff;
    text-align: center;
zhanghaozhe committed
530 531
    $font-family-zh: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
      "微软雅黑", Arial, sans-serif;
zhanghaozhe committed
532 533 534 535 536 537 538

    img {
      width: 110px;
      height: 110px;
      margin-bottom: 6px;
    }
  }
zhanghaozhe committed
539
}