VHeader.vue 1019 Bytes
<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>