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

@@ -67,7 +67,7 @@
.menuContent { .menuContent {
padding: 80px 20px 20px; padding: 80px 20px 20px;
color: white; color: #0f172a;
ul { ul {
list-style: none; list-style: none;
@@ -77,12 +77,12 @@
li { li {
margin: 15px 0; margin: 15px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 1px solid #e2e8f0;
padding-bottom: 15px; padding-bottom: 15px;
} }
a { a {
color: white; color: #334155;
text-decoration: none; text-decoration: none;
font-size: 18px; font-size: 18px;
display: block; display: block;
@@ -90,7 +90,7 @@
} }
.hasSubmenu { .hasSubmenu {
color: #3498db; color: #1d4ed8;
font-weight: bold; font-weight: bold;
margin-bottom: 10px; margin-bottom: 10px;
} }
@@ -106,7 +106,7 @@
a { a {
font-size: 16px; font-size: 16px;
color: rgba(255, 255, 255, 0.8); color: #475569;
} }
} }
} }
@@ -131,11 +131,11 @@
.goBack { .goBack {
margin-top: 30px; margin-top: 30px;
padding-top: 20px; padding-top: 20px;
border-top: 2px solid rgba(255, 255, 255, 0.3); border-top: 1px solid #e2e8f0;
text-align: center; text-align: center;
a { a {
color: white; color: #334155;
text-decoration: none; text-decoration: none;
font-size: 16px; font-size: 16px;
display: inline-flex; display: inline-flex;
@@ -143,13 +143,13 @@
gap: 8px; gap: 8px;
&:hover { &:hover {
color: #3498db; color: #1d4ed8;
} }
img { img {
width: 16px; width: 16px;
height: 16px; height: 16px;
filter: invert(1); filter: none;
} }
} }
} }

View File

@@ -360,6 +360,40 @@ export default {
.footer-main { .footer-main {
grid-template-columns: 1fr; grid-template-columns: 1fr;
gap: 30px; gap: 30px;
justify-items: center;
text-align: center;
}
.footer-section {
width: min(520px, 100%);
}
.footer-section h4::after {
left: 50%;
transform: translateX(-50%);
}
.footer-links {
display: flex;
flex-direction: column;
align-items: center;
}
.contact-info {
align-items: center;
width: 100%;
}
.contact-item {
justify-content: center;
text-align: center;
flex-wrap: wrap;
}
.footer-logo {
display: flex;
flex-direction: column;
align-items: center;
} }
.footer-bottom-content { .footer-bottom-content {

View File

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