full-screen.wxss 673 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* components/fullscreen-poster/index.wxss */
  2. .fullscreen-wrapper {
  3. position: relative;
  4. top: -200%;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. z-index: 9999;
  9. transition: all 0.3s ease;
  10. background: rgba(0, 0, 0, 0.9);
  11. }
  12. .fullscreen-wrapper.show {
  13. top: 0;
  14. }
  15. .mask {
  16. position: absolute;
  17. width: 100%;
  18. height: 100%;
  19. background: rgba(0, 0, 0, 0.9);
  20. }
  21. .poster-container {
  22. position: relative;
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. padding: 40rpx;
  29. }
  30. .poster-image {
  31. max-width: 80%;
  32. max-height: 70vh;
  33. border-radius: 16rpx;
  34. box-shadow: 0 10rpx 30rpx rgba(0, 0, 0, 0.2);
  35. margin: 0 auto;
  36. }