room.wxss 687 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* miniprogram/pages/room/room.wxss */
  2. .page-room {
  3. width: 100%;
  4. height: 100%;
  5. overflow: hidden;
  6. }
  7. .page-room.vertical {
  8. width: 100vw;
  9. height: 100vh;
  10. }
  11. .tip-toast {
  12. position: absolute;
  13. top: 40vh;
  14. width: 70vw;
  15. left: 15vw;
  16. border-radius: 12rpx;
  17. height: 20vh;
  18. background: rgba(0, 0, 0, 0.8);
  19. color: white;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. }
  25. .tip-toast view {
  26. padding: 20rpx 0;
  27. font-size: 32rpx;
  28. }
  29. .plv-rtc-bg-mask {
  30. z-index: 1;
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. width: 100%;
  35. height: 100%;
  36. background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(53, 76, 87, 0.8) 100%);
  37. }