123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- .playContent {
- width: 100vw;
- height: 100vh;
- background-color: #000;
- }
- .coursewarePlay {
- position: relative;
- height: 100vh;
- margin: 0 auto;
- overflow: hidden;
- }
- .playModel {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- box-shadow: inset 0px 0px 164px 0px rgba(0, 0, 0, 1);
- pointer-events: none;
- }
- .headerContainer {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- z-index: 10;
- display: flex;
- align-items: center;
- background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
- }
- .backBtn {
- color: #fff;
- height: 26px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- z-index: 10;
- padding: 4px 10px 4px 15px;
- :global {
- .van-icon {
- margin-right: 8px;
- }
- }
- }
- .menu {
- position: absolute;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 12px;
- color: #fff;
- }
- .tabsContent {
- width: 100vw;
- height: 100vh;
- :global {
- .van-tabs__wrap {
- display: none !important;
- }
- .van-tabs__content {
- width: 100%;
- height: 100%;
- }
- }
- }
- .swipeItem {
- overflow: hidden;
- }
- .itemDiv {
- position: relative;
- width: 100%;
- height: 100%;
- video {
- width: 100%;
- height: 100%;
- }
- img {
- display: block;
- width: 100%;
- height: 100%;
- object-fit: contain;
- }
- }
- .rightFixedBtns {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- right: 12px;
- z-index: 10;
- .point {
- margin-top: 10px;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- .point + .fullBtn {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- }
- .leftFixedBtns {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- left: 12px;
- z-index: 10;
- .prePoint {
- margin-bottom: 8px;
- }
- }
- .fullBtn {
- width: 38px;
- height: 55px;
- background: rgba(51, 51, 51, 0.4);
- border-radius: 8px;
- display: flex;
- flex-direction: column;
- align-items: center;
- color: #fff;
- justify-content: space-evenly;
- overflow: hidden;
- white-space: nowrap;
- &:active {
- opacity: 0.8;
- }
- }
- .bottomFixedContainer {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 10;
- background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
- transition: transform 0.5s;
- .time {
- display: flex;
- justify-content: space-between;
- color: #fff;
- font-size: 10px;
- padding: 4px 20px;
- }
- .slider {
- padding: 8px 20px;
- :global {
- .van-slider__button {
- background: var(--van-primary);
- }
- }
- }
- .actions {
- display: flex;
- justify-content: space-between;
- color: #fff;
- font-size: 12px;
- padding: 0 10px 4px 20px;
- align-items: center;
- .actionBtn {
- display: flex;
- }
- .actionBtn > img {
- width: 30px;
- height: 30px;
- display: block;
- padding: 4px 10px 4px 4px;
- }
- }
- }
- .popup {
- background: rgba(0, 0, 0, 0.5);
- }
- .overlayClass {
- --van-overlay-background: transparent;
- }
- :global {
- .top-enter-active,
- .top-leave-active {
- transition: transform 0.5s;
- }
- .top-enter-from,
- .top-leave-to {
- transform: translateY(-100%);
- }
- .left-enter-active,
- .left-leave-active {
- transition: all 0.5s;
- }
- .left-enter-from,
- .left-leave-to {
- left: -60px;
- opacity: 0;
- }
- .right-enter-active,
- .right-leave-active {
- transition: all 0.5s;
- }
- .right-enter-from,
- .right-leave-to {
- right: -60px;
- opacity: 0;
- }
- .bottom-enter-active,
- .bottom-leave-active {
- transition: transform 0.5s;
- }
- .bottom-enter-from,
- .bottom-leave-to {
- transform: translateY(100%);
- }
- }
- .loadWrap {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(45deg, #21232a, #111218);
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .playRecordTime {
- position: fixed;
- top: 33px;
- left: 16px;
- background: rgba(0, 0, 0, 0.4);
- border-radius: 20px;
- font-size: 6px;
- padding: 6px;
- display: flex;
- align-items: center;
- color: #fff;
- .timeLoad {
- width: 5px;
- height: 5px;
- background: #ff4e19;
- border: .5px solid #ffffff;
- border-radius: 50%;
- margin-right: 3px;
- animation: loadFade 1s ease-in-out infinite;
- }
- }
- @keyframes loadFade {
- 0%{
- opacity: 0;
- }
- 50%{
- opacity: .5;
- }
- 100%{
- opacity: 1;
- }
- }
|