columnCommodityListBox.less
2.19 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
@charset "UTF-8";
.column-list-box {
.title-box {
& + .box {
margin-top: 30px;
}
}
.box {
// display: flex;
// flex-direction: row;
// justify-content: space-between;
// align-items: flex-start;
// flex-wrap: wrap;
column-count: 2;
column-width: 336px;
column-gap: 18px;
margin: 0 auto;
padding-bottom: 18px;
width: 690px;
.left-box {
.item-box {
&:last-child {
margin-bottom: 0;
}
}
}
.right-box {
.item-box {
&:last-child {
// margin-bottom: 0;
}
}
}
.item-box {
background-color: #ffffff;
margin-bottom: 18px;
width: 336px;
height: auto;
break-inside: avoid;
border-radius: 16px;
overflow: hidden;
.item {
width: 100%;
height: auto;
.img-box {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 336px;
// height: 100%;
overflow: hidden;
.img {
display: block;
width: 100%;
height: auto;
}
}
.content-box {
margin: 0 auto;
width: 286px;
.title {
display: -webkit-box;
margin-top: 20px;
color: #333333;
font-size: 26px;
width: 100%;
height: auto;
line-height: 40px;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
overflow: hidden;
}
.coupon-box {
display: inline;
margin-top: 8px;
padding: 1px 6px;
color: #FC1541;
font-size: 18px;
border: 1px solid #FC1541;
border-radius: 4px;
}
.price-box {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 25px;
margin-bottom: 20px;
.left {
display: flex;
justify-content: flex-start;
align-items: baseline;
color: #FC1541;
.y {
font-size: 24px;
}
.integer {
font-size: 38px;
}
.decimal {
font-size: 24px;
}
}
.right {
display: flex;
justify-content: flex-end;
align-items: baseline;
.icon-add {
display: block;
width: 48px;
height: 48px;
}
}
}
}
}
}
}
}