goods_list.css
1.12 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
@charset "UTF-8";
.goods-list-box {
padding: 20px 20px;
margin-top: -120px;
}
/* 猜你喜欢 */
.content-box {
display: flex;
flex-wrap: wrap;
padding: 0 30upx;
}
.content-box .item {
display: flex;
flex-direction: column;
width: 48%;
padding-bottom: 40px;
}
.content-box .item:nth-child(2n+1) {
margin-right: 4%;
}
.content-box .item .a-link {
border-radius: 12px;
background-color: #fafafa;
margin: 10px 0;
box-shadow: 0px 0px 10px rgba(148, 148, 148, 0.3);
}
.content-box .image-wrapper {
width: 100%;
height: 330upx;
border-radius: 3px;
overflow: hidden;
}
.content-box .image-wrapper img {
width: 100%;
height: 100%;
max-width: 340px;
max-height: 340px;
opacity: 1;
border-radius: 12px 12px 0 0;
}
.content-box .content {
padding: 5px 15px;
}
.content-box .content .title {
color: #666666;
font-size: 30px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.content-box .content .price {
color: #FF725C;
font-size: 34px;
}
.content-box .content .prices {
color: #B4B4B4;
font-size: 20px;
text-decoration: line-through;
}