VFooter.vue
2.18 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
<template>
<div class="footer">
<div class="footer-top">
<ul class="fl footer-nav">
<router-link
tag="li"
:to="{path:list.routerLink}"
v-for="(list, index) in navList"
:key="index"
>
{{list.name}}
</router-link>
</ul>
<div class="fr footer-rem">
<div class="footer-tit">黄石停车APP</div>
<div class="footer-icon"></div>
</div>
</div>
<div class="footer-bottom">
<div >《隐私权政策》 《权益保障承诺书》 鄂ICP备19013449号</div>
</div>
</div>
</template>
<script>
export default {
name: 'VFooter',
data(){
return {
navList:[
{name:'官网中心',routerLink:'/center'},
{name:'黄石停车',routerLink:'/park'},
{name:'关于我们',routerLink:'/about'},
],
}
}
}
</script>
<style scoped lang="scss">
.footer{
height: 280px;
width:100%;
background:rgba(6,8,10,1);
.footer-top{
height: 216px;
margin: 0 auto;
width: 1010px;
.footer-nav{
margin-top: 25px;
li{
width:56px;
height:20px;
font-size:14px;
font-family:PingFangSC-Regular;
font-weight:400;
color:rgba(255,255,255,1);
line-height:20px;
margin-top: 20px;
}
}
.footer-rem{
margin-top: 35px;
width: 129px;
height: 188px;
.footer-tit{
width:84px;
height:20px;
font-size:14px;
font-family:PingFangSC-Regular;
font-weight:400;
color:rgba(255,255,255,1);
line-height:20px;
margin-bottom: 11px;
}
.footer-icon{
width:129px;
height:129px;
background: url("../assets/footer_ico.png") no-repeat;
}
}
}
.footer-bottom{
border-top:1px solid rgba(255,255,255,0.25);;
width: 100%;
height: 62px;
line-height: 60px;
font-family:PingFangSC-Regular;
font-weight:400;
color:rgba(255,255,255,0.65);
div{
font-size:14px;
width: 500px;
margin: 0 auto;
text-align: center;
}
/*text-align: center;*/
}
}
</style>