goodsItem_1.less
1.14 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
@charset "UTF-8";
.goods-item-1-box {
background-color: transparent;
width: 200px;
height: auto;
.img-box {
display: flex;
justify-content: center;
align-items: center;
width: 200px;
height: 200px;
.simg {
display: block;
width: 200px;
height: 200px;
}
}
.title {
display: -webkit-box;
margin-top: 20px;
color: #666666;
font-size: 28px;
min-height: 64px;
-webkit-line-clamp: 2;
/*! autoprefixer: off */
-webkit-box-orient: vertical;
/*! autoprefixer: on */
text-overflow: ellipsis;
overflow: hidden;
}
.price-box {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
.price {
color: #FF725C;
font-size: 35px;
}
.add-cart {
width: 50px;
height: 50px;
.add-img {
display: block;
width: 50px;
height: 50px;
}
}
}
&.pid-2, &.pid-4 { // 小号样式
width: 170px;
.img-box {
width: 170px;
height: 170px;
.simg {
display: block;
width: 170px;
height: 170px;
}
}
.title {
font-size: 24px;
}
.price-box {
margin-top: 10px;
}
}
}