addressPicker.wxss
1.68 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.wx-mask{
position: fixed;
z-index: 1000;
top: 0;
right: 0;
left: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.3);
}
.picker-view{
position: fixed;
z-index: 1200;
width:100%;
height: 780rpx;
left:0;
bottom: 0;
background-color: white;
}
.header {
width: 100%;
height: 98rpx;
display: flex;
justify-content: center;
align-items: center;
}
.header .headerText {
font-family: PingFang-SC-Regular;
font-size: 34rpx;
color: #444444;
letter-spacing: -0.41px;
text-align: center;
}
.cancelButtonView {
position: fixed;
z-index: 1210;
right: 26rpx;
bottom: 710rpx;
width:50rpx;
height: 50rpx;
display: flex;
justify-content: center;
align-items: center;
}
.cancelButtonView .cancelButton {
width:26rpx;
height: 26rpx;
}
.fliter {
width: 100%;
height: 50rpx;
display: flex;
flex-direction: row;
border-bottom: 1rpx solid #e0e0e0;
}
.fliter .fliterItemView{
height: 50rpx;
display: flex;
align-items: flex-end;
margin-left: 30rpx;
width: 150rpx;
}
.fliter .fliterItemView .fliterItem {
font-family: PingFang-SC-Regular;
font-size: 28rpx;
color: #444444;
letter-spacing: 0;
height: 45rpx;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.picker-view .scrollView {
background: white;
}
.picker-view .scrollView .cell {
width: 100%;
height: 90rpx;
display: flex;
align-items: center;
}
.picker-view .scrollView .cell .title {
font-family: PingFang-SC-Regular;
font-size: 28rpx;
color: #444444;
letter-spacing: 0;
margin-left: 30rpx;
}
.picker-view .scrollView .cell .selectIcon {
width: 24rpx;
height: 18rpx;
margin-left: 10rpx;
}