gift.wxss
2.06 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
130
131
@import "../../goodsDetail/picker/picker.wxss";
.container {
background-color: white;
display: flex;
}
.title {
padding: 20rpx 0rpx;
font-size: 30rpx;
font-weight: bold;
color: #444;
}
.real-header {
background-color: #f0f0f0;
height: 71rpx;
width: 100%;
top: 0;
left: 0;
display: flex;
flex-direction: column;
justify-content: center;
}
.header-text {
font-size: 28rpx;
color: #444;
line-height: 1.43;
text-align: left;
margin-left: 30rpx;
width: 690rpx;
overflow: hidden;
text-overflow: ellipsis;
}
.scroll-container {
display: flex;
width: 100%;
height: 100%;
background-color: white;
position: absolute;
flex-direction: column;
}
.cell-container {
background-color: white;
width: 100%;
height: 240rpx;
flex-direction: row;
align-items: top;
display: flex;
}
.image-container {
width: 150rpx;
height: 200rpx;
flex-direction: column;
margin-top: 20rpx;
margin-left: 30rpx;
background-color: gray;
display: flex;
}
.image {
width: 150rpx;
height: 200rpx;
position: absolute;
}
.goods-type {
width: 100%;
height: 30rpx;
line-height: 30rpx;
font-size: 20rpx;
background-color: #444;
color: #fff;
text-align: center;
position: absolute;
left: 0;
bottom: 0;
}
.goods-type.price-gift-tag {
background-color: #fc1261;
}
.goods-type.gift-tag {
background-color: #85c45c;
}
.product-info-container {
display: flex;
flex-direction: row;
margin-left: 30rpx;
height: 240rpx;
justify-content: space-between;
}
.product-info-container .title-text {
margin-top: 38rpx;
font-size: 26rpx;
line-height: 1.38;
width: 417rpx;
color: #444;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.product-info-container .price-title {
font-size: 26rpx;
margin-top: 30rpx;
color: #d0021b;
}
.product-info-container .add-shop-btn-image {
width: 80rpx;
height: 46rpx;
margin-top: 154rpx;
}
.separator {
position: absolute;
background-color: #e0e0e0;
margin-top: 0;
left: 30rpx;
width: 720rpx;
height: 2rpx;
}