classify.wxss
1.9 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
131
132
133
134
/* pages/classify/classify.wxss */
.search_box {
padding: 16rpx 32rpx;
}
.search {
width: 100%;
height: 80rpx;
background: rgba(245, 247, 250, 1);
border-radius: 40px;
padding: 0 29rpx;
display: flex;
align-items: center;
box-sizing: border-box;
}
.search_img {
width: 35rpx;
height: 32rpx;
margin-right: 21rpx;
display: flex;
align-items: center;
justify-content: center;
}
.search_img image {
width: 100%;
height: 100%;
}
.search_input {
font-size: 32rpx;
color: #999;
}
.box {
width: 100%;
height: 100%;
display: flex;
position: relative;
}
.tabbar_box {
width: 160rpx;
height: 100%;
font-size: 28rpx;
color: #666;
background: #f5f6fa;
border-top: 1rpx solid #ebebeb;
border-right: 1rpx solid #ebebeb;
position: fixed;
top: 112rpx;
left: 0;
overflow-x: hidden;
overflow-y: scroll;
}
.tabbar_box::-webkit-scrollbar {
display: none;
}
.tabbar_item {
height: 110rpx;
border-bottom: 1rpx solid #ebebeb;
display: flex;
align-items: center;
justify-content: center;
}
.active {
color: #0f71cd;
background: #fff;
position: relative;
}
.active::before {
content: '';
width: 10rpx;
height: 40rpx;
background: #0f71cd;
position: absolute;
left: 0;
}
.content_item {
width: 78%;
padding: 0 32rpx 0 50rpx;
margin-left: 160rpx;
}
.item_list {
margin-top: 36rpx;
}
.content_title_box {
font-size: 28rpx;
color: #1a1a1a;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 24rpx;
}
.list_content_box {
margin-top: 36rpx;
padding: 24rpx;
box-shadow: 0rpx 0rpx 10rpx rgba(1, 1, 1, 0.1);
display: flex;
align-items: center;
flex-wrap: wrap;
}
.list_content {
margin-bottom: 30rpx;
}
.list_content_images {
width: 140rpx;
height: 140rpx;
margin-left: 11rpx;
margin-bottom: 24rpx;
}
.list_content_images image {
width: 100%;
height: 100%;
}
.content_title {
font-size: 24rpx;
color: #1a1a1a;
text-align: center;
}