40 lines
466 B
Plaintext
40 lines
466 B
Plaintext
.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%;
|
|
} |