live-player.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @charset "UTF-8";
  2. .plv-player-live {
  3. width: 100%;
  4. height: 100%;
  5. position: relative;
  6. }
  7. .plv-player-live__player {
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .plv-player-live__player__tips {
  12. position: absolute;
  13. bottom: 20rpx;
  14. left: 10rpx;
  15. font-size: 14px;
  16. }
  17. .plv-player-live__player.true {
  18. width: 100px;
  19. height: 100px;
  20. position: absolute;
  21. top: 100px;
  22. }
  23. /**
  24. 限制观看报错面板
  25. */
  26. .plv-player-live__canot__watch {
  27. position: absolute;
  28. z-index: 99;
  29. top: 50%;
  30. left: 50%;
  31. transform: translate(-50%, -50%);
  32. text-align: center;
  33. box-sizing: border-box;
  34. color: #fff;
  35. background-color: #000;
  36. }
  37. .plv-player-live__canot__watch .player-canot-watch__view {
  38. line-height: 1.5;
  39. }
  40. .plv-player-live__canot__watch .player-canot-watch__image {
  41. width: 60px;
  42. height: 60px;
  43. margin: 0 auto;
  44. }
  45. .plv-control-setting-playback {
  46. position: absolute;
  47. width: 32px;
  48. height: 32px;
  49. top: 50%;
  50. transform: translateY(-50%);
  51. right: 10px;
  52. }
  53. .plv-rtc-room-component-bg {
  54. position: absolute;
  55. top: 0;
  56. left: -25%;
  57. width: 150%;
  58. height: 100%;
  59. background-image: linear-gradient(180deg, #000000 22%, #354C57 96%);
  60. filter: blur(40px);
  61. }