index.scss 2.74 KB
Newer Older
zhanghaozhe committed
1
.study__container {
zhanghaozhe committed
2
  background: #4B41FF;
zhanghaozhe committed
3 4 5 6
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
zhanghaozhe committed
7
  padding: 32px 0 46px 0;
zhanghaozhe committed
8
  position: relative;
zhanghaozhe committed
9

zhanghaozhe committed
10 11 12
  .learn_left {
    position: absolute;
    left: 0;
zhanghaozhe committed
13
    top: -31px;
zhanghaozhe committed
14 15 16
    width: 46px;
    height: 126px;
  }
zhanghaozhe committed
17

zhanghaozhe committed
18 19 20 21 22 23 24
  .learn_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 156px;
    height: 234px;
  }
zhanghaozhe committed
25

zhanghaozhe committed
26
  .title {
zhanghaozhe committed
27
    margin-bottom: 20px;
zhanghaozhe committed
28 29 30 31 32
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 20px;
  }
zhanghaozhe committed
33

zhanghaozhe committed
34 35 36 37 38
  .sub__title {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
zhanghaozhe committed
39
    margin: 12px 0 30px 0;
zhanghaozhe committed
40 41 42 43 44
  }

  .table__container {
    width: 358px;
    color: #fff;
zhanghaozhe committed
45
    background: #2E24D7;
zhanghaozhe committed
46
    position: relative;
zhanghaozhe committed
47

zhanghaozhe committed
48 49 50
    .order_number {
      width: 50px;
    }
zhanghaozhe committed
51

zhanghaozhe committed
52 53 54 55 56
    .chapter {
      width: 158px;
      border-left: 1px solid #0099ff;
      border-right: 1px solid #0099ff;
    }
zhanghaozhe committed
57

zhanghaozhe committed
58 59 60
    .points {
      width: 150px;
    }
zhanghaozhe committed
61

zhanghaozhe committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
    .table__head {
      width: 100%;
      height: 32px;
      background: #ffd75d;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 4px 4px 0 0;

      .head_title {
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 600;
zhanghaozhe committed
78
        color: #2E24D7;
zhanghaozhe committed
79 80 81 82 83
      }
    }

    .table__body {
      width: 100%;
zhanghaozhe committed
84

zhanghaozhe committed
85 86 87 88 89 90 91 92 93 94 95
      .item__container {
        .item__title {
          height: 36px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 14px;
          font-weight: 500;
          color: rgba(255, 214, 103, 1);
        }
      }
zhanghaozhe committed
96

zhanghaozhe committed
97 98 99 100 101
      .item__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #0099FF;
zhanghaozhe committed
102

zhanghaozhe committed
103 104 105
        &:last-child {
          border-bottom: 1px solid #0099FF;
        }
zhanghaozhe committed
106

zhanghaozhe committed
107 108 109 110 111 112 113 114 115
        .content {
          height: 36px;
          box-sizing: border-box;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding-left: 6px;
          padding-right: 6px;
        }
zhanghaozhe committed
116

zhanghaozhe committed
117 118 119 120 121 122 123
        .number_center {
          display: flex;
          justify-content: center;
          padding-left: 0;
        }
      }
    }
zhanghaozhe committed
124

zhanghaozhe committed
125 126 127 128 129 130 131 132
    .table__bottom {
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 12px;
      font-weight: 400;
zhanghaozhe committed
133

zhanghaozhe committed
134 135 136 137 138 139 140
      div {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
zhanghaozhe committed
141

zhanghaozhe committed
142 143 144 145 146 147 148 149
      img {
        width: 9px;
        height: 9px;
        margin-left: 6px;
      }
    }
  }
}