selectArea.scss
2.36 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.selectArea{
::v-deep .uni-popup__wrapper {
height: 1160rpx;
background-color: white !important;
border-radius: 24rpx 24rpx 0 0;
}
.header {
display: flex;
height: 56rpx;
padding: 30rpx 38rpx;
align-items: center;
justify-content: space-between;
border-radius: 24rpx 24rpx 0 0;
.header-title {
font-size: 32rpx;
color: #151515;
font-weight: bold;
}
.close {
width: 24rpx;
height: 24rpx;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../../../static/icon21.png');
}
}
.seachBox{
::v-deep .uni-searchbar{
padding-left: 38rpx!important;
.uni-searchbar__box{
border-radius: 34rpx!important;
}
}
.search-icon{
width: 40rpx;
height: 40rpx;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../../../static/search.png');
}
}
.hot-city{
margin-top: 31rpx;
border-bottom: 2rpx solid #F4F4F4;
padding-bottom: 40rpx;
margin: 0 38rpx;
.title{
font-size: 24rpx;
color: #888;
}
.city-box{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.city-item{
font-size: 24rpx;
height: 64rpx;
background: #F4F4F4;
border-radius: 34rpx;
min-width: 148rpx;
margin-top: 18rpx;
text-align: center;
line-height: 64rpx;
}
.city-item.active{
border: 2rpx solid #E84134;
color: #E84134;
background-color: white;
}
}
}
.province-city-area{
margin-top: -10rpx;
.picker-view {
width: 750rpx;
height: 600rpx;
margin-top: 20rpx;
}
.item {
height: 50px;
align-items: center;
justify-content: center;
text-align: center;
display: flex;
}
::v-deep .uni-picker-view-wrapper{
.uni-picker-view-mask{
display: none;
}
.uni-picker-view-indicator{
top: 46%!important;
}
}
.label-box{
display: flex;
align-items: center;
justify-content: space-between;
padding: 40rpx 90rpx;
.label{
font-size: 30rpx;
font-weight: bold;
}
}
}
.footer{
height: 168rpx;
width: 100%;
background-color: white;
position: fixed;
bottom: 0;
left: 0;
padding-top: 80rpx;
display: flex;
align-items: center;
.btn{
width: 404rpx;
height: 88rpx;
background: #E84134;
border-radius: 44rpx;
color:white ;
text-align: center;
line-height: 88rpx;
font-size: 30rpx;
margin: 0 auto;
}
}
}