This commit is contained in:
张成
2026-04-28 19:02:58 +08:00
parent be1b4b6e9c
commit 9f9cb8d7aa
3 changed files with 64 additions and 10 deletions

View File

@@ -96,7 +96,7 @@
</li>
</ul>
<div class="goBack">
<button type="button" class="linkGoBack flexVerticalCenter" @click="closeMobileMenuAndScrollTop">
<button type="button" class="linkGoBack" @click="closeMobileMenuAndScrollTop">
<img :src="image_paths.arrow_back" alt="" aria-hidden="true">
<span>返回</span>
</button>
@@ -394,12 +394,20 @@ export default {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.mobile .logo {
height: 40px;
}
.mobileIconsCell {
display: flex;
align-items: center;
justify-content: flex-end;
flex-shrink: 0;
}
#hamburger {
width: 24px;
height: 24px;
@@ -408,6 +416,10 @@ export default {
background: transparent;
cursor: pointer;
transition: transform 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
#hamburger img {
@@ -502,6 +514,14 @@ export default {
cursor: pointer;
}
.linkGoBack img {
width: 18px;
height: 18px;
display: block;
flex-shrink: 0;
object-fit: contain;
}
.linkGoBack:hover {
color: #2563eb;
}