wujingjing
2024-08-12 a2410e6dd7dfe33133e709e43b06b3bb7852d4b1
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
/* components/goodsList/goodsList.wxss */
.goods_title {
  text-align: center;
  font-size: 40rpx;
  line-height: 52rpx;
  font-weight: bold;
  color: #232628;
  padding: 20rpx 0 0rpx 0rpx;
}
 
.goods_card_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
 
.goods_card_list::after {
  content: '';
  width: 350rpx;
}
 
.goods_more {
  margin: 20rpx 0;
}
 
.goods_more_btn {
  display: block;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: rgba(35, 38, 40, 0.7);
}