goodsItem_4.less
1.37 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
@charset "UTF-8";
.goods-item-4-box {
background-color: #F6F6F6;
padding: 20px 0;
width: 690px;
height: 100px;
border-radius: 12px;
.main-box {
display: flex;
justify-content: space-between;
margin: 0 auto;
width: 650px;
height: 100%;
.left-box {
display: flex;
justify-content: flex-start;
align-items: center;
.img-box {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 100px;
border-radius: 8px;
overflow: hidden;
.img {
display: block;
width: 100px;
}
}
.content-box {
display: flex;
flex-direction: column;
justify-content: space-around;
margin-left: 30px;
width: 430px;
height: 100%;
.title {
color: #333333;
font-size: 32px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.price {
color: #FC1541;
font-size: 30px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
}
}
.right-box {
display: flex;
justify-content: center;
align-items: center;
.buttons-box {
.btn {
width: 80px;
height: 80px;
&.btn-primary {
display: flex;
justify-content: center;
align-items: center;
background-color: #F5A623;
color: #FFFFFF;
font-size: 26px;
border-radius: 50%;
}
}
}
}
}
}