live.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. page {
  2. background-color: #fff;
  3. }
  4. .live-container {
  5. background: black;
  6. width: 100% !important;
  7. height: 500rpx !important;
  8. position: fixed;
  9. left: 0;
  10. top: 0;
  11. }
  12. .live-full {
  13. background: black;
  14. height: 100% !important;
  15. width: 100% !important;
  16. position: fixed;
  17. left: 0;
  18. top: 0;
  19. z-index: -1;
  20. }
  21. .line {
  22. height: 10rpx;
  23. width: 100%;
  24. background: #ccc;
  25. position: fixed;
  26. left: 0;
  27. top: 500rpx;
  28. z-index: -1;
  29. }
  30. .line-full {
  31. z-index: -100 !important;
  32. }
  33. .sub-live {
  34. position: fixed;
  35. left: 0;
  36. top: 510rpx;
  37. overflow: hidden;
  38. overflow-x: scroll;
  39. height: 250rpx;
  40. width: 100%;
  41. display: flex;
  42. flex-direction: row;
  43. white-space: nowrap;
  44. }
  45. .sub-live-full {
  46. position: fixed;
  47. left: 0;
  48. bottom: 0rpx;
  49. overflow: hidden;
  50. overflow-x: scroll;
  51. height: 250rpx;
  52. width: 100%;
  53. display: flex;
  54. flex-direction: row;
  55. white-space: nowrap;
  56. }
  57. .player {
  58. display: inline-block;
  59. width: 375rpx;
  60. height: 250rpx;
  61. }
  62. .push-tool {
  63. width: 120rpx;
  64. justify-content: space-around;
  65. display: flex;
  66. flex-direction: row-reverse;
  67. height: 100rpx;
  68. align-items: center;
  69. position: fixed;
  70. right: 10rpx;
  71. bottom: 0rpx;
  72. }
  73. .left {
  74. height: 100%;
  75. display: flex;
  76. flex-direction: column;
  77. align-items: center;
  78. font-size: 25rpx;
  79. justify-content: center;
  80. color: #333333;
  81. }
  82. .full-icon {
  83. position: fixed;
  84. right: 0;
  85. top: 0;
  86. z-index: 500;
  87. margin: 15rpx;
  88. width: 80rpx;
  89. height: 80rpx;
  90. }
  91. .live-empty {
  92. width: 100%;
  93. position: absolute;
  94. left: 50%;
  95. top: 50%;
  96. transform: translate(-50%, -50%);
  97. z-index: 20;
  98. }
  99. .push-none {
  100. width: 1rpx;
  101. height: 1rpx;
  102. }