inviteProductListCell.wxss
1.13 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
/* pages/inviteFriend/inviteProudctListCell.wxss */
.product {
display: flex;
flex-direction: column;
align-items: center;
width: 300rpx;
height: 470rpx;
margin-left: 30rpx;
margin-bottom: 30rpx;
}
.product-icon {
width: 100%;
height: 400rpx;
/* background: red; */
}
.product-brand {
width: 100%;
height: 70rpx;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
}
.brand-name {
margin-left: 20rpx;
margin-right: 20rpx;
color: white;
text-align: center;
font-size: 36rpx;
font-weight: 500;
font-style: italic;
white-space: nowrap;
text-overflow:ellipsis;
display: block;
overflow: hidden;
}
.product-price {
margin-top: -50rpx;
width: 100%;
height: 50rpx;
background-color: #b60809;
display: flex;
justify-content: center;
align-items: center;
}
.product-salePrice {
font-size: 36rpx;
font-weight: 500;
text-align: center;
color: #010101;
font-style: italic
}
.product-marketPrice {
font-style: italic;
margin-left: 12rpx;
font-size: 24rpx;
font-weight: 500;
text-align: center;
color: #010101;
text-decoration: line-through;
}