popup.wxss
743 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.cover {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}
.popup {
width: 658rpx;
max-height: 70vh;
background: #FFFFFF;
border-radius: 16rpx;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 110rpx;
}
.transparent {
background: none;
}
.icon-close {
background: url('https://hbrand.oss-cn-hangzhou.aliyuncs.com/BUSINESS/CPP/weilong/icon_close.png') no-repeat center / cover;
width: 60rpx;
height: 60rpx;
position: absolute;
bottom: -110rpx;
left: calc(50% - 30rpx);
}