index.scss 3.64 KB
Newer Older
xuzhenghua 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 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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
.study__container {
  background: #0096ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0 30px 0;
  position: relative;
  .learn_left {
    position: absolute;
    left: 0;
    top: 36px;
    width: 46px;
    height: 126px;
  }
  .learn_bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 156px;
    height: 234px;
  }
  .title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    line-height: 20px;
  }
  .sub__title {
    font-size: 12px;
    line-height: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    margin: 12px 0 22px 0;
  }
  .step__container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    .item__container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-left: 28px;
      width: 80px;
      position: relative;
      &:first-child {
        margin-left: 0;
      }
      img {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
      }
      p {
        text-align: center;
        font-size: 12px;
        line-height: 12px;
        font-weight: 400;
        color: rgba(255, 255, 255, 1);
        line-height: 16px;
      }
      .item__line {
        width: 34px;
        height: 1px;
        background: rgba(255, 255, 255, 1);
        opacity: 0.4;
        border-radius: 0px;
        position: absolute;
        top: 18px;
        right: -34px;
      }
    }
  }

  .table__container {
    width: 358px;
    color: #fff;
    background: #005ac6;
    margin-top: 22px;
    position: relative;
    .order_number {
      width: 50px;
    }
    .chapter {
      width: 158px;
      border-left: 1px solid #0099ff;
      border-right: 1px solid #0099ff;
    }
    .points {
      width: 150px;
    }
    .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;
        color: rgba(0, 93, 195, 1);
      }
    }

    .table__body {
      width: 100%;
      .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);
        }
      }
      .item__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #0099FF;
        &:last-child {
          border-bottom: 1px solid #0099FF;
        }
        .content {
          height: 36px;
          box-sizing: border-box;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding-left: 6px;
          padding-right: 6px;
        }
        .number_center {
          display: flex;
          justify-content: center;
          padding-left: 0;
        }
      }
    }
  
    .table__bottom {
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 12px;
      font-weight: 400;
      div {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      img {
        width: 9px;
        height: 9px;
        margin-left: 6px;
      }
    }
  }
}