index.scss
2.32 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
122
123
124
125
126
127
128
129
130
131
132
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
$contentWidth:670px;
.page {
padding-bottom: $pageBottom;
.bgc {}
.bg {}
.main {
.top {
position: fixed;
width: 750px;
z-index: 11;
&-bg {
position: absolute;
width: 750px;
height: 300px;
}
.search {
position: relative;
width: $contentWidth;
height: 100px;
background: #FFFFFF;
@extend .shadow;
margin: 222px auto 0;
display: flex;
justify-content: space-between;
align-items: center;
&-ipt-wrap {
@extend .bb;
padding-left: 30px;
width: 568px;
flex: 1;
.ipt {
font-size: 28px;
color: #333333;
}
}
&-line {
width: 2px;
height: 40px;
background-color: #d8d8d8;
}
&-scan {
@extend .fcc;
width: 100px;
.icon {
width: 40px;
height: 40px;
}
}
}
}
.top-space {
height: 362px;
}
.content {
position: relative;
width: $contentWidth;
margin: 0 auto;
// banner
.banner {
width: $contentWidth;
height: 250px;
background-color: wheat;
margin: 0 auto;
}
// 产品
.product {
width: $contentWidth;
margin: 0 auto;
margin-top: 62px;
// 产品标题
&-title {
font-size: 36px;
color: #333333;
}
// 产品列表
&-list {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
width: 322px;
height: 440px;
background: #F8F8F8;
border-radius: 4px;
margin-bottom: 20px;
padding-bottom: 12px;
.image {
background: wheat;
width: 322px;
height: 322px;
}
.desc {
@extend .bb;
padding: 4px 20px;
font-size: 24px;
// line-height: 32px;
color: #333333;
@include ellipsis(3);
}
}
}
}
}
}
}