VHeader.vue
1019 Bytes
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
<template>
<div>
<div class="iphone-bg">
<div class="widthCommon iphone">全国客服热线:400 690 0889</div>
</div>
<div class="nav-wrapper widthCommon">
<ul class="fr nav-main">
<li>首页</li>
<li>关于我们</li>
<li>联系我们</li>
</ul>
</div>
</div>
</template>
<script>
export default {
name: 'VHeader'
}
</script>
<style scoped lang="">
.iphone-bg{
height:37px;
line-height: 37px;
background:rgba(234,234,234,1);
}
.iphone{
padding-left: 30px;
background: url("../../assets/images/header/iphone-bg.png") no-repeat 0 7px;
background-size: 22px 22px;
}
.nav-wrapper{
height: 108px;
line-height: 108px;
background: url("../../assets/images/header/nav-bg.png") no-repeat 0 center;
background-size: 183px 66px;
color: #333333;
}
.nav-main{
}
.nav-main
li{
height: 108px;
height: 108px;
float: left;
font-size: 20px;
}
</style>