index.scss 1.89 KB
Newer Older
xuzhenghua committed
1 2 3 4 5 6
.level__test_module {
  width: 100%;
  // height:580px;
  padding-bottom: 20px;

  .start__test {
zhanghaozhe committed
7 8 9 10 11 12 13 14
    width: 174px;
    height: 33px;
    background: linear-gradient(
      -90deg,
      rgba(255, 140, 27, 1) 0%,
      rgba(255, 59, 5, 1) 100%
    );
    border-radius: 17px;
xuzhenghua committed
15 16 17 18
    margin: 20px auto 8px;
    display: flex;
    justify-content: center;
    align-items: center;
zhanghaozhe committed
19 20 21
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
xuzhenghua committed
22
    .button__text {
zhanghaozhe committed
23 24 25
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 1);
xuzhenghua committed
26 27 28 29 30 31 32
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: baseline;
      margin-left: 5px;

      span {
zhanghaozhe committed
33
        font-size: 12px;
xuzhenghua committed
34 35 36 37 38 39 40 41 42
      }
    }
    .test-img {
      width: 14px;
      height: 14px;
    }
  }

  .test__number {
zhanghaozhe committed
43 44 45
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
xuzhenghua committed
46 47 48 49 50 51 52 53 54 55 56 57
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: baseline;

    .number {
      font-size: 16px;
      margin: 0 5px;
    }
  }

  .prize__rules {
zhanghaozhe committed
58
    width: 335px;
xuzhenghua committed
59
    // height:461px;
zhanghaozhe committed
60 61
    background: rgba(89, 112, 255, 1);
    border-radius: 5px;
xuzhenghua committed
62 63 64 65
    margin: 16px auto;
    padding: 15px 10px;

    .prize__title {
zhanghaozhe committed
66 67 68
      font-size: 14px;
      font-weight: 400;
      color: rgba(255, 255, 255, 1);
xuzhenghua committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
      text-align: center;
      text-align-last: center;
      margin-bottom: 10px;
    }

    .prize__list {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
      margin-bottom: 16px;

      .prize__container {
        width: 100px;
        height: 100px;
        margin: 0 6px 8px 0;
        &:nth-child(3n) {
          margin: 0 0 8px 0;
        }
      }
    }

    .rules__text {
zhanghaozhe committed
93 94 95 96
      font-size: 12px;
      font-weight: 400;
      color: rgba(240, 241, 255, 1);
      line-height: 17px;
xuzhenghua committed
97 98
    }
  }
zhanghaozhe committed
99
}