|
|
@@ -2,13 +2,13 @@
|
|
|
<header class="mb-header">
|
|
|
<div class="mb-header-container">
|
|
|
<a href="/mobile" class="brand">
|
|
|
- <NuxtImg src="/logo.png" alt="DDAC logo" class="brand-logo" width="14" height="14" />
|
|
|
+ <NuxtImg src="/logo.png" alt="DDAC logo" class="brand-logo" />
|
|
|
<h1 class="brand-title">DDAC</h1>
|
|
|
</a>
|
|
|
<div class="mb-header-right">
|
|
|
- <Icon name="lineicons:magnifier" size="20" />
|
|
|
- <Icon name="material-symbols:account-circle-full" size="20" />
|
|
|
- <Icon @click="toggleMenu" name="material-symbols:menu-rounded" size="20" />
|
|
|
+ <Icon name="lineicons:magnifier" />
|
|
|
+ <Icon name="material-symbols:account-circle-full" />
|
|
|
+ <Icon @click="toggleMenu" name="material-symbols:menu-rounded" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<Transition name="nav-expand">
|
|
|
@@ -42,12 +42,12 @@
|
|
|
</div>
|
|
|
</Transition>
|
|
|
</div>
|
|
|
- <div class="nav-item">
|
|
|
+ <!-- <div class="nav-item">
|
|
|
<NuxtLink to="/mobile/solutions" @click="closeMenu">行业解决方案</NuxtLink>
|
|
|
</div>
|
|
|
<div class="nav-item">
|
|
|
<NuxtLink to="/mobile/docs" @click="closeMenu">文档中心</NuxtLink>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<div class="nav-item">
|
|
|
<NuxtLink to="/mobile/about" @click="closeMenu">了解我们</NuxtLink>
|
|
|
</div>
|
|
|
@@ -106,6 +106,8 @@ const toggleProducts = () => {
|
|
|
text-decoration: none;
|
|
|
|
|
|
.brand-logo {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
margin-right: 8px;
|
|
|
}
|
|
|
|
|
|
@@ -121,6 +123,9 @@ const toggleProducts = () => {
|
|
|
align-items: center;
|
|
|
gap: 20px;
|
|
|
color: #fff;
|
|
|
+ .iconify{
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// Nav 展开动画
|