2026-05-13 11:48:22 +08:00
|
|
|
.site-header {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 50;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-bottom: 1px solid #e3d9d1;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__bar {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 1280px;
|
|
|
|
|
height: 72px;
|
|
|
|
|
gap: 24px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 0 16px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__brand,
|
|
|
|
|
.site-header__actions {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__brand {
|
2026-05-13 14:57:52 +08:00
|
|
|
align-items: center;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__actions {
|
2026-05-13 14:57:52 +08:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
gap: 12px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-logo {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 143px;
|
|
|
|
|
height: 42px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-logo__icon-frame {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 53px;
|
|
|
|
|
height: 42px;
|
|
|
|
|
overflow: hidden;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-logo__icon {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
top: -13.49%;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: none;
|
|
|
|
|
height: 126.98%;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-logo__wordmark-frame {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
inset: 26.97% 0 7.92% 45.45%;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-logo__wordmark {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: none;
|
|
|
|
|
height: 100%;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-nav {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: none;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: 32px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-nav__link {
|
2026-05-13 14:57:52 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
color: #7a726d;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
transition: color 160ms ease;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-nav__link:hover,
|
|
|
|
|
.site-nav__link.is-active {
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #f28a4b;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: relative;
|
|
|
|
|
display: none;
|
|
|
|
|
flex-shrink: 0;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__button {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: 43px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 0 16px 0 12px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid rgba(46, 42, 40, 0.3);
|
|
|
|
|
border-radius: 17px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: border-color 160ms ease;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__button:hover,
|
2026-05-13 14:57:52 +08:00
|
|
|
.language-switcher__button[aria-expanded="true"] {
|
|
|
|
|
border-color: #f28a4b;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__icon {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
width: 26px;
|
|
|
|
|
height: 26px;
|
|
|
|
|
object-fit: contain;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__current {
|
2026-05-13 14:57:52 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 14px;
|
|
|
|
|
color: #2e2a28;
|
|
|
|
|
white-space: nowrap;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__menu {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
top: 52px;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 60;
|
|
|
|
|
width: 240px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid #e3d9d1;
|
|
|
|
|
border-radius: 18px;
|
|
|
|
|
box-shadow: 0 16px 40px rgba(46, 42, 40, 0.16);
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__menu.is-hidden {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: none;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__option {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
padding: 18px 24px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
color: #7a726d;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition:
|
|
|
|
|
background-color 160ms ease,
|
|
|
|
|
color 160ms ease;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__option:hover {
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #f28a4b;
|
|
|
|
|
background: #fef0eb;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-switcher__option.is-active {
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #2e2a28;
|
|
|
|
|
background: #f8f3ee;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__download {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: none;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
padding: 13px 22px;
|
|
|
|
|
background: #f28a4b;
|
|
|
|
|
border-radius: 17px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: background-color 160ms ease;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__download:hover {
|
2026-05-13 14:57:52 +08:00
|
|
|
background: #e07a3b;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.site-header__download-label {
|
2026-05-13 14:57:52 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
color: #fff;
|
|
|
|
|
white-space: nowrap;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-toggle {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
gap: 5px;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
cursor: pointer;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-toggle__bar {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background: #2e2a28;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
transform-origin: center;
|
|
|
|
|
transition:
|
|
|
|
|
transform 240ms ease,
|
|
|
|
|
opacity 240ms ease;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav {
|
2026-05-13 14:57:52 +08:00
|
|
|
background: #fff;
|
|
|
|
|
border-top: 1px solid #e3d9d1;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav.is-hidden {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: none;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__list {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 16px 24px;
|
|
|
|
|
margin: 0;
|
|
|
|
|
list-style: none;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__link {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
padding: 16px 0;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #2e2a28;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
border-bottom: 1px solid #e3d9d1;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__link--last {
|
2026-05-13 14:57:52 +08:00
|
|
|
border-bottom: 0;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__languages {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
padding: 16px 0;
|
|
|
|
|
border-top: 1px solid #e3d9d1;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__language-link {
|
2026-05-13 14:57:52 +08:00
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #2e2a28;
|
|
|
|
|
text-decoration: none;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__language-link.is-active {
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #f28a4b;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__download-item {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin: 16px 0 8px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__download {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
width: 250px;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
padding: 14px 24px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: #f28a4b;
|
|
|
|
|
border-radius: 17px;
|
|
|
|
|
transition: background-color 160ms ease;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mobile-nav__download:hover {
|
2026-05-13 14:57:52 +08:00
|
|
|
background: #e07a3b;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
@media (min-width: 1023px) {
|
|
|
|
|
.site-header__bar {
|
|
|
|
|
padding: 0 24px;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
.site-nav,
|
|
|
|
|
.language-switcher,
|
|
|
|
|
.site-header__download {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
.menu-toggle {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
.mobile-nav {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|