courselist.scss 4.83 KB
Newer Older
zhanghaozhe committed
1
html, body, #root {
xuzhenghua committed
2 3
  height: 100%;
}
zhanghaozhe committed
4

xuzhenghua committed
5
.class-child {
xuzhenghua committed
6
  position: relative;
xuzhenghua committed
7
  height: 100%;
xuzhenghua committed
8

2  
xuzhenghua committed
9

zhanghaozhe committed
10
  .preferential {
2  
xuzhenghua committed
11 12 13 14 15 16 17 18
    width: 100%;
    height: 44px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

xuzhenghua committed
19
  .class-content {
FE committed
20 21
    padding: 44px 12px 0;
    // padding: 88px 12px 0;
xuzhenghua committed
22
    position: relative;
xuzhenghua committed
23

zhanghaozhe committed
24
    .custom-render-bar {
2  
xuzhenghua committed
25 26 27 28 29 30 31 32
      position: fixed;
      top: 43px;
      left: 0;
      z-index: 10;
      padding-left: 11px;
      background: #fff;
    }

wangshuo committed
33 34 35 36
    .am-tabs-top {
      height: 93vh;
    }

xuzhenghua committed
37 38 39 40 41
    .v-list-item {
      padding: 10px 0 0;

      .content {
        border: none;
xuzhenghua committed
42

xuzhenghua committed
43 44 45
        .cover {
          flex: inherit;
          width: 42.2%;
xuzhenghua committed
46

xuzhenghua committed
47 48
          img {
            width: 100%;
xuzhenghua committed
49 50
          }

xuzhenghua committed
51 52 53
          .course-status {
            background-color: rgba(224, 46, 36, 0.6);

xuzhenghua committed
54
          }
zhanghaozhe committed
55

56 57 58 59 60 61 62 63 64
          .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
65
        }
xuzhenghua committed
66 67 68 69 70 71
      }

      .info {
        width: 52.3%;
        position: relative;
        display: block;
xuzhenghua committed
72

xuzhenghua committed
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
        .title {
          font-size: 16px;
          color: $color_333;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }

        .contact {
          font-size: 14px;
          color: $color_666;
          margin-top: 14px;
        }

        .des {
          position: absolute;
          bottom: 0;

          .course-price {
            .new {
              color: $red;
              font-size: 16px;
            }

            .old {
              color: $color_999;
              font-size: 12px;
              display: inline-block;
              margin-left: 15px;
              text-decoration: line-through;
            }
          }

          .isbuy {
            display: inline-block;
zhanghaozhe committed
108 109
            color: #09f;
            font-size: 15px;
xuzhenghua committed
110 111
            text-align: center;
          }
zhanghaozhe committed
112

zhanghaozhe committed
113 114
          .limit-free {
            span:first-child {
zhanghaozhe committed
115 116 117 118
              color: #FF2121;
              font-size: 15px;
              margin-right: 10px;
            }
zhanghaozhe committed
119 120

            span:last-child {
zhanghaozhe committed
121 122 123 124 125
              color: #999;
              font-size: 11px;
              text-decoration: line-through;
            }
          }
xuzhenghua committed
126 127 128 129
        }
      }
    }

xuzhenghua committed
130 131 132 133
    .tabs {
      display: flex;
      margin-top: 10px;
      margin-bottom: 50px;
zhanghaozhe committed
134

xuzhenghua committed
135 136 137
      ul {
        width: 100%;
      }
xuzhenghua committed
138
    }
xuzhenghua committed
139

xuzhenghua committed
140 141
    .pull-down {
      width: 32px;
xuzhenghua committed
142 143
      height: 35px;
      line-height: 35px;
2  
xuzhenghua committed
144 145
      position: fixed;
      top: 48px;
xuzhenghua committed
146
      right: 0;
2  
xuzhenghua committed
147
      z-index: 20;
xuzhenghua committed
148 149 150
      background-color: $bg_fff;
      color: $color_666;
    }
zhanghaozhe committed
151

xuzhenghua committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    .am-tabs-tab-bar-wrap {
      padding-right: 20px;
    }

    .am-tabs-default-bar-tab {
      width: auto !important;
      margin-right: 20px;
    }

    .am-tabs-default-bar-tab-active {
      color: $active;
      border-bottom: 2px solid $active !important;
    }

    .am-tabs-default-bar-underline {
      display: none;
    }

    .am-whitespace.am-whitespace-md {
      height: 0 !important;
    }
xuzhenghua committed
173
  }
xuzhenghua committed
174

xuzhenghua committed
175
  .mbc-box {
xuzhenghua committed
176
    position: absolute;
xuzhenghua committed
177
    left: 0;
2  
xuzhenghua committed
178
    top: 87px;
xuzhenghua committed
179
    right: 0;
xuzhenghua committed
180
    bottom: 0;
xuzhenghua committed
181 182
    background-color: rgba(0, 0, 0, .6);

xuzhenghua committed
183 184 185 186 187 188 189
    .tabcontent {
      width: 100%;
      height: 303px;
      overflow: auto;
      background-color: $bg_fff;
      border-top: 1px solid $sp_ddd;
      padding-bottom: 30px;
xuzhenghua committed
190

xuzhenghua committed
191 192 193 194 195 196
      .class-course {
        width: 100%;
        margin-top: 20px;
        padding: 0 15px;

        .course-items-title {
xuzhenghua committed
197
          font-size: 14px;
xuzhenghua committed
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
          color: $color_333;

        }

        .items-box {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;

          .item-banner {
            display: inline-block;
            width: 30.5%;
            height: 76px;
            margin-top: 10px;

            img {
              width: 100%;
              height: 100%;
              border-radius: 3px;
            }
          }

          .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;
xuzhenghua committed
230
            font-size: 12px;
xuzhenghua committed
231
          }
zhanghaozhe committed
232

xuzhenghua committed
233 234 235 236 237 238 239 240 241 242
          .active-label {
            display: inline-block;
            width: 30.5%;
            height: 30px;
            line-height: 30px;
            text-align: center;
            background-color: $bg_active;
            border-radius: 15px;
            margin-top: 15px;
            margin-bottom: -5px;
xuzhenghua committed
243
            font-size: 12px;
xuzhenghua committed
244 245
            color: $white;
          }
xuzhenghua committed
246 247 248 249 250
        }

      }
    }
  }
zhanghaozhe committed
251

xuzhenghua committed
252
  .am-tabs-default-bar-top .am-tabs-default-bar-tab::after {
zhanghaozhe committed
253
    background-color: $bg_fff !important;
xuzhenghua committed
254
  }
xuzhenghua committed
255
}
xuzhenghua committed
256