productCell.wxss
871 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
.productContainer {
display: flex;
flex-direction: row;
padding-top: 35rpx;
padding-bottom: 10rpx;
border-bottom: 2rpx solid #EEEEEE;
border-top: 2rpx solid #EEEEEE;
}
.productImageContainer {
display: flex;
justify-content: center;
align-items: center;
margin-right: 20rpx;
width: 180rpx;
}
.productImage {
width: 180rpx;
height: 180rpx;
}
.productRightContainer {
}
.productPrice {
font-family: DINAlternate-Bold;
font-size: 28rpx;
color: #D0021B;
letter-spacing: 0;
display: block;
}
.productName {
font-family: SFProText-Regular;
font-size: 24rpx;
color: #999999;
letter-spacing: 0;
line-height: 36rpx;
margin-top: 12rpx;
display: block;
}
.productColor {
font-family: PingFang-SC-Medium;
font-weight: 500;
font-size: 24rpx;
color: #000000;
letter-spacing: 0;
margin-top: 20px;
display: block;
}