search_result.wxss
1.6 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
page {
width: 100%;
height: 100%;
background: #f9f9f9;
}
.page {
width: 100%;
min-height: 100%;
}
.horizontal_nav {
width: 100%;
white-space: nowrap;
overflow-x: scroll;
height: 88rpx;
background: rgba(61, 154, 248, 1);
line-height: 88rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
color: rgba(174, 214, 255, 1);
padding: 0 12rpx;
box-sizing: border-box;
}
.horizontal_nav::-webkit-scrollbar {
display: none;
}
.nav_item {
padding: 0 40rpx;
box-sizing: border-box;
display: inline-block;
}
.nav_item.active {
color: #fff;
}
.select_box {
height: 88rpx;
width: 100%;
background: #fff;
padding: 0 98rpx;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
}
.select_item {
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 400;
line-height: 40rpx;
color: rgba(156, 156, 156, 1);
position: relative;
}
.select_item.active {
color: rgba(61, 154, 248, 1);
}
.select_item.active::after {
content: '';
width: 100%;
height: 4rpx;
border-radius: 4rpx 4rpx 0 0;
background: rgba(61, 154, 248, 1);
position: absolute;
bottom: -20rpx;
left: 0;
}
.select_img {
height: 22rpx;
width: 10rpx;
position: absolute;
right: -14rpx;
top: 50%;
transform: translateY(-50%);
display: flex;
justify-content: center;
align-items: center;
}
.select_img image {
width: 100%;
height: 100%;
}
.empty {
font-size: 36rpx;
font-family: PingFang SC;
font-weight: 400;
color: #ccc;
margin-top: 200rpx;
text-align: center;
}