| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* components/fullscreen-poster/index.wxss */
- .fullscreen-wrapper {
- position: relative;
- top: -200%;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 9999;
- transition: all 0.3s ease;
- background: rgba(0, 0, 0, 0.9);
- }
- .fullscreen-wrapper.show {
- top: 0;
- }
- .mask {
- position: absolute;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.9);
- }
- .poster-container {
- position: relative;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 40rpx;
- }
- .poster-image {
- max-width: 80%;
- max-height: 70vh;
- border-radius: 16rpx;
- box-shadow: 0 10rpx 30rpx rgba(0, 0, 0, 0.2);
- margin: 0 auto;
- }
|