group_list.wxss
736 Bytes
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
page {
background-color: #f2f2f2;
}
.list {
padding-left: 20rpx;
padding-right: 20rpx;
}
.list-item {
background-color: white;
border-radius: 12rpx;
margin-top: 20rpx;
padding: 20rpx;
display: flex;
}
.tag {
background-color: #ff6768;
color: white;
font-size: 24rpx;
padding-left: 10rpx;
padding-right: 10rpx;
}
.img-container {
width: 200rpx;
height: 200rpx;
}
.btn {
background-color: #ff6768;
color: white;
padding: 10rpx 30rpx;
border-radius: 40rpx;
font-size: 26rpx;
}
.rmb {
position: relative;
}
.rmb::before {
content: '¥';
font-size: 24rpx;
}
.del {
text-decoration: line-through;
}
.no-more {
font-size: 24rpx;
line-height: 2;
text-align: center;
/* margin-top: 10rpx; */
color: #ccc;
}