searchRequest.wxss
2.2 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
/* pages/searchRequest/searchRequest.wxss */
/* 搜索 */
/* 搜索框 */
page{
background-color: #f1f2f4;
}
/* 商品列表 */
.moneyIcon{
font-size: 23rpx;
color: #FF1717;
margin-right: -4rpx;
}
.moneyNum{
font-size: 28rpx;
font-weight: 500;
color: #FF1717;
}
.productList{
width: 750rpx;
height:750rpx;
display: flex;
justify-content: center;
align-items: center;
font-size: 32rpx;
color: rgb(206, 208, 209);
}
.listBox{
display: flex;
padding: 0 26rpx;
box-sizing: border-box;
}
/* 每日精选*/
.pickContainer {
display: flex;
justify-content: space-between;
flex-direction: row;
}
.pickContent {
/* width: 343rpx; */
display: flex;
justify-content: space-between;
margin-top: 24rpx;
flex-wrap: wrap;
border-radius: 16rpx;
column-count: 2;
column-gap: 20rpx;
width: 700rpx;
}
.pickItem {
width: 336rpx;
box-sizing: border-box;
background-color: #ffffff;
margin-bottom: 16rpx;
break-inside: avoid;
border-radius: 16rpx;
}
.pickPic {
width: 100%;
height: 328rpx;
}
.pickPic image {
width: 100%;
height: 328rpx;
border-radius: 16rpx 16rpx 0 0;
}
.pickTitle {
margin-top: 16rpx;
font-size: 28rpx;
font-weight: 500;
color: #323233;
padding: 0 24rpx;
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
box-sizing: border-box;
}
.pickDesc {
font-size: 24rpx;
font-weight: 400;
text-align: left;
color: #7d7e80;
margin-top: 8rpx;
box-sizing: border-box;
width: 100%;
padding: 0 24rpx;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.pickCollect {
font-size: 24rpx;
font-weight: 400;
text-align: left;
color: #7d7e80;
margin-top: 8rpx;
padding-left: 8rpx;
padding-right: 16rpx;
box-sizing: border-box;
display: flex;
justify-content: space-between;
}
.collectIcon {
width: 100%;
box-sizing: border-box;
font-size: 24rpx;
color: #ff4742;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 24rpx;
overflow: hidden;
}
.bottomHint {
background-color: #f1f2f4;
font-size: 24rpx;
color: gray;
display: flex;
justify-content: center;
padding-bottom:16rpx;
}