index.module.less 984 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .coursewarePlay {
  2. position: relative;
  3. min-height: 100vh;
  4. background-color: rgba(89, 98, 126, 0.2);
  5. }
  6. .backBtn {
  7. position: absolute;
  8. left: 40px;
  9. top: 10Px;
  10. color: #fff;
  11. width: 40Px;
  12. height: 26Px;
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. z-index: 10;
  17. }
  18. .menu {
  19. position: absolute;
  20. top: 10Px;
  21. left: 140Px;
  22. right: 84Px;
  23. z-index: 10;
  24. :global {
  25. .van-tabs__content,
  26. .van-tabs__line {
  27. display: none;
  28. }
  29. .van-tabs__wrap {
  30. height: 26Px;
  31. }
  32. .van-tabs__nav {
  33. padding: 0;
  34. background: rgba(255, 128, 87, 0.5);
  35. .van-tab {
  36. color: #fff;
  37. font-size: 14Px;
  38. }
  39. .van-tab--active.van-tab {
  40. background: #ff8057;
  41. }
  42. }
  43. }
  44. }
  45. .videoItem{
  46. width: 100vw;
  47. height: 100vh;
  48. --plyr-color-main: var(--van-primary);
  49. video{
  50. width: 100%;
  51. height: 100%;
  52. }
  53. :global{
  54. .plyr{
  55. height: 100%;
  56. }
  57. }
  58. }