city-list.wxss
1.7 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
/* pages/index/city-list/city-list.wxss */
page {
height: 100%;
background-color: #f5f6f8;
}
.content {
height: 100%;
background-color: #f5f6f8;
}
.tab_box {
width: 100%;
/* padding: 0 70rpx; */
height: 90rpx;
line-height: 90rpx;
display: flex;
align-items: center;
justify-content: center;
/* border-bottom: 20rpx solid #f5f5f5; */
overflow: hidden;
white-space: nowrap;
flex-wrap: nowrap;
position: fixed;
top:0;
left:0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
background-color: #fff;
}
.tab_item {
width:50%;
display: inline-block;
/* width: 160rpx; */
font-size: 30rpx;
color: #333333;
position: relative;
text-align: center;
border-bottom: 4rpx solid transparent;
/* border: 1rpx solid red; */
}
.tab_box .active {
border-bottom: 4rpx solid #DB4E2A;
/*font-weight: bold;*/
/*color: #0E050A;*/
}
/*.tab_box .active::after {*/
/*content: "";*/
/*!*border: 2rpx solid #DB4E2A;*!*/
/*position: absolute;*/
/*bottom: 0rpx;*/
/*left: 50%;*/
/*transform: translateX(-50%);*/
/*width: 250rpx;*/
/*height: 3rpx;*/
/*background: #2C82E6;*/
/*}*/
.city-box {
margin-top: 104rpx;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
padding: 10rpx 30rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.city-item {
padding: 10rpx 40rpx;
font-size: 28rpx;
color: #666666;
border-radius: 6rpx;
margin-top: 20rpx;
margin-right: 20rpx;
border:1rpx solid #e8e8e8;
background-color: #fff;
}
.change-bg {
background-color: #DB4E2A;
color: #ffffff;
}