index.scss 4.12 KB
Newer Older
zhanghaozhe committed
1
.limit-free {
zhanghaozhe committed
2
  background: #f9f9fb;
zhanghaozhe committed
3
  min-height: 100%;
zhanghaozhe committed
4 5

  .banner {
zhanghaozhe committed
6 7
    font-size: 0;

zhanghaozhe committed
8 9 10 11 12
    img {
      width: 100%;
    }
  }

zhanghaozhe committed
13
  nav {
zhanghaozhe committed
14 15 16
    position: sticky;
    top: 0;
    left: 0;
zhanghaozhe committed
17 18 19 20
    display: flex;
    align-items: center;
    height: 39px;
    background: #fff;
zhanghaozhe committed
21 22
    overflow: hidden;
    z-index: 999;
zhanghaozhe committed
23

zhanghaozhe committed
24 25
    .prev-cover,
    .next-cover {
zhanghaozhe committed
26 27 28 29
      position: absolute;
      top: 0;
      width: 44px;
      height: 39px;
zhanghaozhe committed
30
      pointer-events: none;
zhanghaozhe committed
31 32 33 34
    }

    .prev-cover {
      left: 0;
zhanghaozhe committed
35 36 37 38 39
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
      );
zhanghaozhe committed
40 41 42 43
    }

    .next-cover {
      right: 0;
zhanghaozhe committed
44 45 46 47 48
      background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 1)
      );
zhanghaozhe committed
49 50 51 52 53
    }

    ul {
      width: 100%;
      height: 100%;
zhanghaozhe committed
54
      padding: 0 18px;
zhanghaozhe committed
55 56
      display: flex;
      align-items: center;
zhanghaozhe committed
57 58 59 60 61
      overflow-x: auto;

      &::-webkit-scrollbar {
        display: none;
      }
zhanghaozhe committed
62

zhanghaozhe committed
63
      & li:nth-last-child(1) {
zhanghaozhe committed
64 65
        margin-right: 0;
      }
zhanghaozhe committed
66 67 68 69 70 71
    }

    li {
      text-align: center;
      height: 100%;
      line-height: 39px;
zhanghaozhe committed
72
      flex-shrink: 0;
zhanghaozhe committed
73
      margin-right: 23px;
zhanghaozhe committed
74 75 76 77 78 79 80 81

      &.active {
        color: #09f;
        border-bottom: 1px solid #09f;
      }
    }
  }

zhanghaozhe committed
82 83
  .course-list {
    border-top: 1px solid transparent;
zhanghaozhe committed
84
  }
zhanghaozhe committed
85

zhanghaozhe committed
86
  .category {
zhanghaozhe committed
87
    padding: 0 12px;
zhanghaozhe committed
88 89
    background: #fff;
    margin-bottom: 8px;
zhanghaozhe committed
90
    border-top: 1px solid transparent;
zhanghaozhe committed
91 92
  }

zhanghaozhe committed
93
  h2 {
zhanghaozhe committed
94 95 96
    padding-top: 50px;
    margin-top: -50px;
    background-clip: content-box;
zhanghaozhe committed
97 98
  }

zhanghaozhe committed
99
  .courses li:nth-last-child(1) {
zhanghaozhe committed
100
    margin-bottom: 0;
zhanghaozhe committed
101 102 103 104

    & div {
      border-bottom: none;
    }
zhanghaozhe committed
105 106 107 108 109 110 111 112 113 114
  }

  .v-list-base-item {
    padding: 0;
    margin-bottom: 18px;
  }

  h2 {
    display: flex;
    align-items: center;
zhanghaozhe committed
115
    margin: -32px 0 18px;
zhanghaozhe committed
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134

    img {
      width: 12px;
      height: 12px;
      margin-right: 6px;
    }

    span {
      font-size: 16px;
      color: #333;
    }
  }

  .iconfont {
    font-size: 12px;
    margin-right: 4px;
  }

  .info {
zhanghaozhe committed
135
    width: 50%;
zhanghaozhe committed
136 137
    display: flex;
    flex-wrap: wrap;
zhanghaozhe committed
138 139 140
    justify-content: space-between;
    flex-direction: column;
    flex: auto;
zhanghaozhe committed
141 142 143
    font-size: 12px;
    color: #999;

zhanghaozhe committed
144 145 146 147 148
    .title {
      width: 100%;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
zhanghaozhe committed
149 150 151
      font-family: "NotoSansHans-Medium", "Helvetica Neue", Helvetica,
        "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial,
        sans-serif;
zhanghaozhe committed
152 153
    }

zhanghaozhe committed
154 155
    .learner,
    .remain-time {
zhanghaozhe committed
156 157 158
      margin-top: -30px;
    }

zhanghaozhe committed
159
    .red {
zhanghaozhe committed
160
      color: #ff2121;
zhanghaozhe committed
161
      font-size: 15px;
zhanghaozhe committed
162
      margin-right: 10px;
zhanghaozhe committed
163 164 165 166 167 168 169 170
    }

    .origin-price {
      color: #999;
      font-size: 12px;
      text-decoration: line-through;
    }

zhanghaozhe committed
171 172
    button,
    a {
zhanghaozhe committed
173 174
      width: 68px;
      height: 24px;
zhanghaozhe committed
175
      float: right;
zhanghaozhe committed
176 177 178 179 180 181
      border-radius: 3px;
      background: #09f;
      border: none;
      font-size: 13px;
      color: #fff;
      line-height: 24px;
182 183 184 185
      text-align: center;
    }

    button {
zhanghaozhe committed
186
      -webkit-appearance: none;
187
      outline: 0;
zhanghaozhe committed
188 189 190
    }

    .bottom {
zhanghaozhe committed
191 192
      width: 100%;
      height: 24px;
zhanghaozhe committed
193
      align-self: flex-end;
zhanghaozhe committed
194 195 196 197 198 199
      font-size: 0;
      line-height: 24px;

      span {
        font-size: 12px;
      }
zhanghaozhe committed
200 201 202 203

      .purchased {
        color: #09f;
      }
zhanghaozhe committed
204 205 206 207 208 209 210
    }
  }

  .no-more {
    width: 375px;
    height: 82px;
    line-height: 82px;
zhanghaozhe committed
211
    background: #f7f9fc;
zhanghaozhe committed
212
    font-size: 14px;
zhanghaozhe committed
213
    color: #aaa;
zhanghaozhe committed
214 215
    text-align: center;
  }
zhanghaozhe committed
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
}

.get-course-popup {
  top: 210px !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;

  .title {
    text-align: center;
    margin-bottom: 30px;

    img {
      width: 30px;
      height: 30px;
    }

    div {
      font-size: 14px;
zhanghaozhe committed
235
      color: #525c65;
zhanghaozhe committed
236 237 238 239
    }
  }

  .btns {
zhanghaozhe committed
240
    border-top: 1px solid #ddd;
zhanghaozhe committed
241 242 243 244 245 246 247 248 249 250 251
    display: flex;
    height: 40px;

    button {
      -webkit-appearance: none;
      width: 50%;
      border: none;
      outline: none;
      color: #333;
      background: #fff;
      border-radius: 0 0 5px 5px;
zhanghaozhe committed
252
      font-size: 15px;
zhanghaozhe committed
253 254 255
    }

    & button:first-child {
zhanghaozhe committed
256
      border-right: 1px solid #ddd;
zhanghaozhe committed
257
    }
258 259

    & button:last-child {
zhanghaozhe committed
260 261 262
      color: #09f;
    }
  }
zhanghaozhe committed
263
}