video.scss 7.24 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
2 3 4
$tabHeight: 44px;

.play {
zhanghaozhe committed
5 6 7 8 9
  .video {
    width: 100%;
    height: 215px;
    background-color: $black;
    position: relative;
10

zhanghaozhe committed
11 12 13
    .video-js {
      width: 100%;
      height: 100%;
14

zhanghaozhe committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
      .vjs-custom-play-button-cover {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.5);

        .vjs-custom-play-button {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          width: 27px;
          height: 27px;
          background: url("./images/play.png") no-repeat;
          background-size: contain;
32
        }
zhanghaozhe committed
33
      }
34

zhanghaozhe committed
35 36 37
      &.vjs-has-started {
        .vjs-custom-play-button-cover {
          bottom: 2.9em;
38
        }
zhanghaozhe committed
39 40 41 42 43
      }

      &.vjs-playing {
        .vjs-custom-play-button-cover {
          display: none;
44
        }
zhanghaozhe committed
45
      }
46
    }
zhanghaozhe committed
47

zhanghaozhe committed
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
    .purchase-box {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;

      .hint {
        font-size: $font_14;
        color: $white;
        margin-bottom: 20px;
      }

      @mixin button {
        display: block;
        -webkit-appearance: none;
        outline: none;
        border: none;
        background-color: transparent;
        border-radius: 5px;
        line-height: 30px;
        font-size: 13px;
        padding: 0 9px;
      }

      .btns {
        width: 100%;
        padding: 0 60px;
81
        display: flex;
zhanghaozhe committed
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
        justify-content: space-around;
      }

      .purchase-class {
        @include button;
        background-color: $white;
        color: $color_FF4000;
      }

      .purchase-episode {
        @include button;
        background-color: $bg_FF4000;
        color: $white;
      }
    }
97

zhanghaozhe committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    .is-aist-box {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      color: #fff;

      i {
        font-size: 34px;
      }

      .time {
        font-size: 16px;
      }
    }
119

zhanghaozhe committed
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    video {
      width: 100%;
      height: 100%;
    }
  }

  .tab {
    height: $tabHeight;
    max-height: $tabHeight;
    line-height: $tabHeight;
    text-align: center;
    background: #fff;
    flex: 1 0 auto;
    display: flex;
    justify-content: center;

    & > div {
      flex: 1 0 auto;
    }
xuzhenghua committed
139

zhanghaozhe committed
140 141 142 143 144 145 146 147 148
    a {
      display: inline-block;
      height: $tabHeight;
      font-size: $font_16;
      border-bottom: 1px solid transparent;

      &.active {
        border-bottom: 1px solid $active;
      }
xuzhenghua committed
149
    }
zhanghaozhe committed
150
  }
151

zhanghaozhe committed
152 153
  .active {
    color: $active;
154

zhanghaozhe committed
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    .iconiconfront-74 {
      color: $color_555;
    }
  }

  .progress-share-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 290px;
    height: 332px;
    padding: 18px 15px;
    background: url("./images/progress-share-bg.png");
    background-size: contain;

    & > .title {
      font-size: 21px;
zhanghaozhe committed
173
      color: #00656f;
zhanghaozhe committed
174 175 176
      line-height: 30px;
      text-align: center;
      margin-bottom: 20px;
177
    }
178

zhanghaozhe committed
179 180 181 182 183 184 185 186 187 188
    .progress-container {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;

      li {
        flex: 1;

        .title {
          font-size: 14px;
zhanghaozhe committed
189
          color: #00838f;
zhanghaozhe committed
190 191 192 193
          line-height: 20px;
          text-align: center;
          flex: 1;
          margin-bottom: 10px;
194
        }
195

zhanghaozhe committed
196 197
        .number {
          font-size: 15px;
zhanghaozhe committed
198
          color: #00656f;
zhanghaozhe committed
199 200 201 202
          text-align: center;

          .num {
            font-size: 33px;
zhanghaozhe committed
203
            color: #00656f;
zhanghaozhe committed
204
          }
205
        }
zhanghaozhe committed
206 207
      }
    }
xuzhenghua committed
208

zhanghaozhe committed
209 210 211 212 213
    .share-container {
      .title {
        position: relative;
        text-align: center;
        font-size: 14px;
zhanghaozhe committed
214
        color: #00838f;
zhanghaozhe committed
215 216 217 218 219 220 221
        margin-bottom: 25px;

        &::before {
          position: absolute;
          top: 50%;
          left: 30px;
          transform: translateY(-50%);
zhanghaozhe committed
222
          content: "";
zhanghaozhe committed
223 224 225 226
          display: block;
          width: 70px;
          height: 1px;
          background: #77c4bf;
227
        }
xuzhenghua committed
228

zhanghaozhe committed
229 230 231 232 233
        &::after {
          position: absolute;
          top: 50%;
          right: 30px;
          transform: translateY(-50%);
zhanghaozhe committed
234
          content: "";
zhanghaozhe committed
235 236 237 238
          display: block;
          width: 70px;
          height: 1px;
          background: #77c4bf;
239
        }
zhanghaozhe committed
240
      }
xuzhenghua committed
241

zhanghaozhe committed
242 243 244 245 246
      ul {
        display: flex;
        justify-content: space-around;
        padding: 0 20px;
        text-align: center;
xuzhenghua committed
247

zhanghaozhe committed
248 249
        li {
          font-size: 12px;
zhanghaozhe committed
250
          color: #00838f;
zhanghaozhe committed
251 252 253 254 255

          .iconfont {
            font-size: 40px;
            color: #00838f;
          }
256
        }
zhanghaozhe committed
257
      }
258
    }
zhanghaozhe committed
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

    .close {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -63px;
      color: #fff;
      font-size: 30px;
    }

    &-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      touch-action: none;
      z-index: 100;
    }
  }
xuzhenghua committed
280
}
zhanghaozhe committed
281

zhanghaozhe committed
282 283 284 285 286 287
.limit-free-cover {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
zhanghaozhe committed
288
  background-color: rgba(0, 0, 0, 0.8);
zhanghaozhe committed
289 290 291
  z-index: 999;
}

zhanghaozhe committed
292
.free-popup {
zhanghaozhe committed
293 294 295 296
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
zhanghaozhe committed
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
  width: 290px;
  height: 366px;
  border-radius: 5px !important;
  padding: 0 !important;
  background: url("https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/time_limited_free/M/popup-bg.png") !important;
  background-size: cover !important;

  .title {
    display: flex;
    align-items: center;
    height: 125px;
    padding: 0 20px;
    color: #fff !important;
    font-size: 15px;
  }

zhanghaozhe committed
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
  .des {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;

    .qrcode {
      margin-bottom: 10px;
      width: 118px;
      height: 118px;
    }

    & > span:nth-of-type(1) {
      color: #666;
      font-size: 13px;
      margin-bottom: 10px;
    }

    & > span:nth-of-type(2) {
      color: #333;
      font-size: 15px;
      margin-bottom: 14px;
    }

    span span {
zhanghaozhe committed
339
      color: #ff2121;
zhanghaozhe committed
340 341 342 343 344 345 346 347 348
    }

    .no-prompt {
      label {
        position: relative;
        padding-left: 21px;
        height: 14px;
      }

zhanghaozhe committed
349 350
      input,
      .checkbox-label {
zhanghaozhe committed
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 13px;
        height: 13px;
        -webkit-appearance: none;
        outline: 0;
        background: #fff;
      }

      input {
        opacity: 0;
      }

      .checkbox-label {
zhanghaozhe committed
367
        border: 1px solid rgba(84, 92, 100, 0.6);
zhanghaozhe committed
368 369 370 371 372 373 374 375 376 377 378
        border-radius: 1px;
        left: -1px;
        box-sizing: border-box;

        .iconfont {
          color: #fff;
          font-size: 12px;
        }
      }

      span {
zhanghaozhe committed
379
        color: #545c64;
zhanghaozhe committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
        font-size: 13px;
        margin-bottom: 0;
        line-height: 14px;
      }

      .checked {
        background: #09f;
      }
    }
  }

  .close-btn {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    color: #fff;
  }
zhanghaozhe committed
399
}