12345678910111213141516171819202122232425262728293031323334353637383940 |
- .fixed {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 1000;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .mask {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: rgba(0, 0, 0, 0.6);
- }
- .cont {
- z-index: 1001;
- width: 80%;
- }
- .cont .img {
- width: 100%;
- }
- .close-img {
- margin-top: 40rpx;
- width: 60rpx;
- height: 60rpx;
- }
- .swiper {
- width: 100%;
- }
|