footer.scss
2.3 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
// @import '@/styles/_support';
@import '@/styles/_utils';
.v-footer {
font-family: MicrosoftYaHei;
color: #ffffff;
background-color: #2e2b2a;
.footer-containter {
margin: 0 auto;
max-width: 950px;
.cont {
margin-left: 3.166667rem;
.logo-wrap {
padding: 1.75rem 0;
.logo-img {
cursor: pointer;
}
}
.line {
width: 100%;
height: 1px;
opacity: 0.2;
background-color: #ffffff;
}
// 信息
.info {
padding: 1.25rem 0 1.5rem;
display: flex;
// 热线
.hotline {
margin-right: 4.2rem;
.contact {
.n-item {
margin-bottom: 0.6rem;
}
.phone {
font-family: Arial;
color: #ea5a26;
font-size: 1.666667rem;
font-weight: bold;
}
&:first-child {
margin-bottom: 2rem;
}
}
}
// 导航
.nav {
flex: 1;
display: flex;
.nav-v {
margin: 0 5.2rem;
}
.n-item {
cursor: pointer;
}
}
.focus {
width: 6.25rem;
text-align: center;
margin-right: 3rem;
.qrcode {
margin-top: .75rem;
}
}
// 公共组件
.n-item {
margin-bottom: 1.416667rem;
color: rgba(179, 177, 168, 0.5);
&:first-child {
color: #ffffff;
margin-bottom: 2rem;
}
&:last-child {
margin-bottom: 0;
}
}
}
// 版权
.copyright {
color: rgba(179, 177, 168, 0.5);
padding: 1.5rem 0;
line-height: 1.58;
}
}
}
}
@media (max-width: 950px) {
.v-footer {
.footer-containter {
.cont {
.info {
display: block;
.nav {
margin-top: 2rem;
.nav-v {
margin: 0 1.6rem 0 0;
}
}
.focus {
margin-top: 2rem;
text-align: left;
}
}
.copyright {
box-sizing: border-box;
padding-right: 2rem;
}
}
}
}
}