|
@@ -4,7 +4,7 @@
|
|
|
<div
|
|
<div
|
|
|
id="index-header"
|
|
id="index-header"
|
|
|
:class="[
|
|
:class="[
|
|
|
- headFixed == true ? 'fixedTop' : '',
|
|
|
|
|
|
|
+ headFixed ? 'fixedTop' : '',
|
|
|
headWhite ? 'head-white' : '',
|
|
headWhite ? 'head-white' : '',
|
|
|
]"
|
|
]"
|
|
|
>
|
|
>
|
|
@@ -19,9 +19,7 @@
|
|
|
<nuxt-link to="/" class="home">首页</nuxt-link>
|
|
<nuxt-link to="/" class="home">首页</nuxt-link>
|
|
|
</li>
|
|
</li>
|
|
|
<li :class="{ 'h-nav-li-more': productActive }">
|
|
<li :class="{ 'h-nav-li-more': productActive }">
|
|
|
- <a class="h-nav-list-parent" href="javascript:void(0)"
|
|
|
|
|
- >产品与服务</a
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <a class="h-nav-list-parent" href="javascript:void(0)">产品与服务</a>
|
|
|
<!-- <nuxt-link to="">产品与服务</nuxt-link> -->
|
|
<!-- <nuxt-link to="">产品与服务</nuxt-link> -->
|
|
|
<ul class="h-nav-list-child">
|
|
<ul class="h-nav-list-child">
|
|
|
<li>
|
|
<li>
|
|
@@ -388,9 +386,11 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.h-nav-list-child {
|
|
.h-nav-list-child {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
width: 100px;
|
|
width: 100px;
|
|
|
- border-radius: 0px 0px 4px 4px;
|
|
|
|
|
|
|
+ border-radius: 0 0 4px 4px;
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
max-height: 0;
|
|
max-height: 0;
|
|
|
background: #ffffff;
|
|
background: #ffffff;
|