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
39
40
41
42
43
44
45
46
.selectPopup {
background: rgba(0, 0, 0, 0.12);
position: fixed;
top: 0;
height: 100vh;
width: 100%;
z-index: 101;
}
.selectContent {
position: fixed;
bottom: 16rpx;
border-radius: 16rpx;
left: 16rpx;
right: 16rpx;
overflow: hidden;
animation: showAnimation 0.2s ease;
transform: none;
}
.selectPopupItem {
background: #fff;
height: 114rpx;
line-height: 112rpx;
text-align: center;
font-family: PingFangSC-Regular;
font-size: 34rpx;
color: #1B263D;
border-bottom: 1px solid rgba(25, 31, 37, 0.12);
}
.selectPopupItem:last-child {
border-bottom: none;
}
.selectPopupCancel {
border-radius: 16rpx;
height: 112rpx;
background: #fff;
line-height: 112rpx;
text-align: center;
font-family: PingFangSC-Regular;
font-size: 34rpx;
color: #1B263D;
margin-top: 16rpx;
}