addressSelectLayer.less
2.21 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
107
108
109
110
111
112
113
@charset "UTF-8";
.address-select-layer {
.layer-box {
position: fixed;
top: 0;
left: 0;
z-index: 110;
background-color: rgba(0, 0, 0, 0.26);
width: 100%;
height: 100%;
.box {
position: absolute;
left: 0;
bottom: 0;
background-color: #ffffff;
z-index: 111px;
width: 100%;
height: 800px;
.bar-box {
width: 100%;
height: 100px;
border: 1px solid #EBE9EA;
.bar-box-center {
display: flex;
flex-direction: row;
align-items: center;
text-align: center;
color: #999999;
font-size: 26px;
width: 690px;
height: 100%;
margin: 0 auto;
.now-city {
display: flex;
flex-direction: row;
align-items: center;
flex: 3;
height: 100%;
.now-item {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex: 1;
width: 100%;
height: 100%;
&.selected {
color: #333333;
}
&.active {
border-top: 4px solid transparent;
border-bottom: 4px solid #FF725C;
}
}
}
.buttons-box {
display: flex;
flex-direction: row;
align-items: center;
flex: 1;
position: unset;
height: 100%;
.func-button {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #333333;
font-size: 26px;
box-sizing: border-box;
text-align: center;
text-decoration: none;
line-height: normal;
border-radius: none;
overflow: hidden;
background-color: transparent;
&.active {
border-top: 4px solid transparent;
border-bottom: 4px solid #FF725C;
border-radius: 0;
}
&[disabled] {
color: #999999;
pointer-events: none;
}
&::after {
content: none;
}
}
}
}
}
.select-view-box {
width: 100%;
height: 700px;
color: #666666;
font-size: 28px;
.item {
display: flex;
align-items: center;
width: 690px;
height: 80px;
margin: 0 auto;
}
}
}
}
}