index.scss
2.11 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
.category {
border-top: 1px solid #eee;
margin-top: 40px;
.floor-header {
margin-top: 20px;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.title {
font-family: PingFang-SC-Medium;
font-size: 40px;
color: #000;
text-align: left;
line-height: 56px;
}
.more {
font-family: SFProText-Medium;
font-size: 28px;
color: #000;
}
.arrow-right-icon {
width: 24px;
height: 24px;
}
.scrollview {
height: 420px;
white-space: nowrap;
.item-group {
display: inline-block;
width: 600px;
height: 420px;
margin-right: 20px;
&:last-child {
margin-right: 0;
}
}
.item {
width: 600px;
height: 140px;
display: flex;
align-items: center;
.item-navigator {
width: 100%;
display: flex;
.item-img {
height: 140px;
margin-right: 20px;
display: flex;
.img {
width: 140px;
height: 140px;
}
}
.product-dec {
height: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
word-break: break-all;
.item-name {
font-family: DINAlternate-Bold;
font-size: 28px;
color: #000;
margin-top: 20px;
white-space: pre-line;
}
.item-code {
font-family: SFProText-Regular;
font-size: 24px;
color: #999;
margin-top: 22px;
}
}
}
}
}
}