123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- .video-container {
- position: relative;
- width: 100%;
- --plyr-color-main: #01c1b5;
- video {
- width: 100%;
- // object-fit: cover;
- }
- :global {
- .video-back {
- position: absolute;
- left: 20px;
- top: 20px;
- color: #fff;
- z-index: 99;
- font-size: 24px;
- width: 30px;
- height: 30px;
- background-color: rgba(0, 0, 0, 0.5);
- border-radius: 50%;
- padding: 4px 5px 4px 3px;
- }
- .plyr__poster {
- background-size: cover;
- }
- .plyr__control--overlaid {
- border: 1px solid #fff;
- background-color: transparent !important;
- }
- .plyr--video .plyr__control:hover {
- background-color: transparent !important;
- }
- .video-js {
- width: 100%;
- height: 100%;
- }
- .tcp-skin .vjs-play-progress {
- background-color: var(--van-primary) !important;
- }
- .vjs-poster {
- background-size: cover;
- }
- .video-js .vjs-progress-control:hover .vjs-progress-holder {
- font-size: inherit !important;
- outline: none;
- }
- .video-js .vjs-slider:focus {
- box-shadow: none !important;
- text-shadow: none !important;
- outline: none;
- }
- }
- .video {
- position: relative;
- }
- }
- .loadingVideo {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.9);
- z-index: 10;
- }
- .playOver {
- background: rgba(0, 0, 0, 0.5);
- color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- .tips {
- font-size: 15px;
- color: #ffffff;
- }
- .btn {
- margin: 10px 0;
- min-width: 94px;
- font-size: 14px;
- height: 28px;
- line-height: 28px;
- }
- .replay {
- padding-top: 12px;
- display: flex;
- align-items: center;
- }
- .iconReplay {
- width: 18px;
- height: 18px;
- margin-right: 6px;
- }
- }
- .freeTxt {
- font-size: 15px;
- color: #ffffff;
- line-height: 21px;
- padding-top: 10px;
- }
- .freeRate {
- color: #32ffd8;
- }
|