index.scss
3.13 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
@import '@/styles/_support';
.content {
padding-bottom: 2.25rem;
}
.top-space {
height: 2.25rem;
}
.box {
position: relative;
}
// banner 轮播
.banner-contaner {
// height: 360px;
// 匹配父容器
position: relative;
width: 100%;
overflow: hidden;
height: 250px;
}
.banner {
// box-shadow: 0 0 1.75rem 0 rgba(255, 87, 0, 0.1);
position: absolute;
left: 50%;
// width: 1920px;
// margin-left: -960px;
top: 0;
width: 1024px;
margin-left: -512px;
height: 100%;
overflow: hidden;
&-img {
width: 100%;
height: 100%;
}
}
// 推荐产品
.recommend {
display: flex;
// flex-wrap: wrap;
// justify-content: center;
// width: auto;
text-align: center;
justify-content: space-between;
max-width: 79.166667rem;
// max-width: 1200px;
&-item {
margin-top: 2.25rem;
position: relative;
width: 25.833333rem;
border-radius: .75rem;
box-shadow: 0 0 1.5rem 0 rgba(255, 87, 0, 0.15);
background-color: #fbfbfb;
padding: 0 5px;
.btn {
position: absolute;
left: 0;
right: 0;
bottom: 3rem;
margin: 0 auto;
@include btc2(13.5rem, 4rem, 16px);
}
.tt {
position: absolute;
width: 100%;
color: #4c4948;
}
.t1 {
bottom: 9.3rem;
}
.t2 {
bottom: 11.42rem;
}
img {}
&:first-child {
padding-left: 0;
}
&:last-child {
padding-right: 0;
}
}
}
// 了解我们
.more {
margin: 3.5rem auto 0;
// margin-top: 3.5rem;
// margin-left: 9.791667rem;
position: relative;
.btn {
position: absolute;
width: 26%;
height: 8%;
top: 83%;
left: 69%;
z-index: 1;
// background-color: wheat;
}
.cont {
position: relative;
// 客户要求按设计审核,不做居中对齐
// margin: 0 auto;
margin-left: 6.583333rem;
// @extend .fcc;
width: 85%;
img {
width: 100%;
}
}
}
// 新闻资讯
.news {
margin: 4.25rem auto 0;
.linear {
width: 100%;
height: 2.04rem;
background-image: url('~@/assets/images/index/linear.png');
}
.tit {
text-align: center;
color: #f05a23;
font-size: 18px;
font-weight: bold;
letter-spacing: 1.8px;
}
.under-line {
margin: .75rem auto 0;
width: 4rem;
height: .25rem;
background-color: #275d40;
}
.news-wrap {
margin: 3.2rem auto 0;
// max-width: 66.75rem;
max-width: 100rem;
.more {
width: 85%;
text-align: right;
margin-bottom: .5rem;
}
.news-item {
width: 85%;
margin: auto;
height: 4.25rem;
color: #4c4948;
display: flex;
justify-content: space-between;
align-items: center;
border-top: solid 1px #dcdddd;
cursor: pointer;
&-tit {}
&-date {}
&:last-child {
border-bottom: solid 1px #dcdddd;
}
}
}
}
.swiper-button-prev {
background-image: url('~@/assets/images/common/button-prev.png');
// display: none;
}
.swiper-button-next {
background-image: url('~@/assets/images/common/button-next.png');
// display: none;
}
@media (max-width: 950px) {
.box {
width: 96%;
}
}