index.scss 1.66 KB
Newer Older
xuzhenghua committed
1 2 3
.class-box {
  background-color: $bg_fff;

xuzhenghua committed
4 5 6 7 8 9 10
  .class-title {
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background-color: #F7F9FC;
    font-size: 16px;
xuzhenghua committed
11 12 13
    color: $color_333;
  }

xuzhenghua committed
14 15 16 17
  .class-course {
    width: 100%;
    margin-top: 20px;
    padding: 0 15px;
xuzhenghua committed
18

xuzhenghua committed
19 20 21
    .course-items-title {
      font-size: 14px;
      color: $color_333;
xuzhenghua committed
22 23

      img {
xuzhenghua committed
24 25 26
        margin-right: 8px;
        width: 10px;
        height: 11px;
xuzhenghua committed
27 28 29
      }
    }

xuzhenghua committed
30 31 32 33 34 35 36 37 38
    .items-box {
      display: flex;
      flex-wrap: wrap;

      .item-banner {
        display: inline-block;
        width: 30.5%;
        height: 76px;
        margin-top: 10px;
xuzhenghua committed
39
        margin-right: 13px;
wangshuo committed
40
        position: relative;
xuzhenghua committed
41 42 43 44 45
        img {
          width: 100%;
          height: 100%;
          border-radius: 3px;
        }
wangshuo committed
46 47 48 49 50 51 52 53 54 55

        .return_cash {
          position: absolute;
          width: 31px;
          height: 18px;
          top: 0;
          right: 0;
          background: url("./image/return.icon.png") no-repeat;
          background-size: 100% 100%;
        }
xuzhenghua committed
56 57 58 59 60 61 62 63 64 65 66 67 68
      }

      .item-label {
        display: inline-block;
        width: 30.5%;
        height: 30px;
        line-height: 30px;
        text-align: center;
        background-color: $bg_f4f4f4;
        border-radius: 15px;
        margin-top: 15px;
        margin-bottom: -5px;
        margin-right: 12px;
xuzhenghua committed
69
        font-size: 12px;
xuzhenghua committed
70 71 72 73 74
      }

      :nth-of-type(3n) {
        margin-right: 0;
      }
xuzhenghua committed
75 76
    }

xuzhenghua committed
77
  }
xuzhenghua committed
78

xuzhenghua committed
79
  .vip {
xuzhenghua committed
80
    width: 100%;
xuzhenghua committed
81
    height: 130px;
xuzhenghua committed
82
    border-radius: 5px;
xuzhenghua committed
83 84 85 86 87 88 89 90 91
    margin-top: 20px;
    margin-bottom: 50px;
    padding: 0 15px;

    img {
      width: 100%;
      height: 106px;
      border-radius: 5px;
    }
xuzhenghua committed
92 93
  }
}