
@font-face {
    font-family: 'Source Han Sans CN VF Medium';
    src: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/fonts/SourceHanSansSC-Medium-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Source Han Sans CN VF Light';
    src: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/font/SourceHanSansSC-Light-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Source Han Sans CN VF Bold';
    src: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/fonts/SourceHanSansSC-Bold-2.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Archivo Black Local';
    src: local('Archivo Black'), url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/font/ArchivoBlack-Regular-2.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f7f6f3;
    --grid: rgba(59, 64, 74, 0.07);
    --work-heading-content-gap: 30px;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px), var(--bg);
    background-size: 25px 25px, 25px 25px, auto;
}

.formal-content {
    height: 100%;
    overflow: hidden;
}

/* 底部 slide 自适应高度 */
.footer-slide {
    height: auto !important;
}

/* 底部页脚 */
.footer-page {
    width: 100%;
    background: #111111;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    min-height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Han Sans CN VF Medium';
}

body a {
    text-decoration: none;
}

.header {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    background: #111111;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.formal-content {
    height: 100%;
}

.header .left .title {
    font-size: 0;
}

.header .right .menu-items {
    display: flex;
    align-items: center;
}

.header .right .menu-items .menu-item {
    padding: 5px 10px;
    position: relative;
}

/* 关于我们横向下拉菜单 */
.about-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #111111;
    z-index: 998;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

/* 分割线 */
.about-dropdown-divider {
    width: calc(100% - 60px);
    height: 2px;
    background-color: #333;
    margin: 0 30px;
}

/* 下拉菜单内容区域 */
.about-dropdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
}

/* 下拉菜单内部容器 - 用于定位 */
.about-dropdown-inner {
    display: flex;
    gap: 40px;
    position: absolute;
}

/* 下拉菜单项 */
.about-dropdown-item a {
    color: #81807F;
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.about-dropdown-item a:hover {
    color: #FF9400;
}

.mobile-about-dropdown {
    display: none;
}

.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-menu-drawer {
    display: none;
}

.mobile-menu-toggle {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    color: #ffffff;
}

.mobile-menu-toggle img {
    display: block;
    width: 25px;
    height: auto;
    position: relative;
    z-index: 1;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1198;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(64vw, 340px);
    max-width: 340px;
    height: 100vh;
    background: #111111;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1199;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 6px;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.mobile-menu-toggle::before {
    transform: rotate(45deg);
}

.mobile-menu-toggle::after {
    transform: rotate(-45deg);
}

.mobile-menu-nav {
    padding-top: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    font-family: 'Source Han Sans CN VF Bold';
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.2s ease;
}

.mobile-menu-link:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu-link.is-active {
    color: #FF9400;
}


.header .right .menu-items .menu-item a {
    color: #81807F;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 8px 15px;
    display: block;
}

.header .right .menu-items .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s ease;
}

.header .right .menu-items .menu-item a:hover::after {
    width: 100%;
}

.header .right .menu-items .menu-item a:hover {
    color: #FF9400;
    transition: all .6s;
}

.formal-content > .swiper-wrapper > .swiper-slide {
    height: 100%;
}

.formal-content > .swiper-wrapper > .swiper-slide:first-child {
    position: relative;
    overflow: hidden;
    background: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/home.png') center center / cover no-repeat;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.formal-content > .swiper-wrapper > .swiper-slide:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.hero-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    padding: 0 24px;
}

.hero-copy h1 {
    margin: 0;
    color: #fff;
    font-size: 170px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Archivo Black Local', 'Arial Black', sans-serif !important;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8),
                 0 2px 4px rgba(0, 0, 0, 0.6),
                 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-copy h1 span {
    display: block;
    font-family: 'Archivo Black Local', 'Arial Black', sans-serif !important;
}

.hero-copy .hero-accent {
    display: inline;
    color: #ff9400;
    font-family: 'Archivo Black Local', 'Arial Black', sans-serif !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator img {
    width: 40px;
    height: auto;
}

.section-scroll-indicator {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    pointer-events: none;
}

.section-scroll-indicator img {
    width: 26px;
    height: auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.products-page,
.common-page {
    height: 100%;
    padding-top: 110px;
    justify-content: center;
    background-size: 100% 100%;
}

.products-title-section,
.common-title-section {
    text-align: center;
}

.products-title-cn,
.common-title-cn {
    font-size: 60px;
    color: #000;
    font-family: 'Source Han Sans CN VF Bold';
    font-weight: 700;
    margin: 0 0 0 0;
    line-height: 1.2;
}

.products-title-en,
.common-title-en {
    font-size: 26px;
    color: #FF9400;
    font-family: 'Source Han Sans CN VF Medium';
    margin: 0;
    letter-spacing: 1px;

}

.concept-page {
    background: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/concept_bg.png') no-repeat !important;
    background-size: 100% 100% !important;
}

.concept-page .common-title-cn,
.concept-page .common-title-en {
    color: #fff !important;
}

.concept-page {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 图片容器 */
.concept-images-container {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: max-content;
    max-width: none;
    flex: 1;
    min-height: 0;
    margin: 0 auto;
    padding: 24px 0 36px;
    display: grid;
    grid-template-columns: repeat(3, 514px);
    gap: 28px;
    align-items: stretch;
    align-content: center;
}

/* 单张图片样式 */
.concept-image {
    position: relative;
    width: 514px;
    height: 661px;
    overflow: hidden;
    transition: none;
    cursor: default;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.concept-image.animating {
    transform: translateX(-200px) !important;
    opacity: 0;
}

.concept-image.animating + .concept-image.animating {
    transform: translateX(-200px) !important;
}

.concept-image.animating + .concept-image.animating + .concept-image.animating {
    transform: translateX(-200px) !important;
}

/* 更好的平移动画 - 通过重新排序实现 */
.concept-image.animating {
    animation: slideOut 0.5s ease forwards;
}

@keyframes slideOut {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-150px) rotate(-5deg);
        opacity: 0;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(150px) rotate(5deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* 滑动效果 */
.concept-image.slide-left {
    transform: translateX(-300px) !important;
}

.concept-image.slide-left.concept-image-left {
    transform: rotate(-20deg) translateX(-340px) !important;
}

.concept-image.slide-left.concept-image-center {
    transform: translateX(-350px) !important;
}

.concept-image.slide-left.concept-image-right {
    transform: rotate(20deg) translateX(-260px) !important;
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
    box-shadow: none;
}

.concept-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.concept-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 40px 20px 20px 20px;
    text-align: left;
    border-radius: 0 0 22px 22px;
}

.concept-image-title {
    font-size: 55px;
    color: #fff;
    font-family: 'Source Han Sans CN VF Bold';
    margin: 0 0 8px 0;
    line-height: 1.2;
    font-weight: 500;
}

.concept-image-desc {
    font-size: 21px;
    color: #fff;
    font-family: 'Source Han Sans CN VF Light';
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* 左侧图片 - 扇子形状 */
.concept-image-left {
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    z-index: auto;
    opacity: 1;
    filter: none;
}

/* 中间图片 - 完全显示 */
.concept-image-center {
    left: auto;
    bottom: auto;
    transform: none;
    z-index: auto;
}

/* 右侧图片 - 扇子形状 */
.concept-image-right {
    right: auto;
    bottom: auto;
    transform: none;
    z-index: auto;
    opacity: 1;
    filter: none;
}

/* 切换按钮 */
.concept-switch-btn {
    display: none;
}

@media (min-width: 769px) {
    .concept-page .common-title-section {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
        transition: opacity 0.42s ease, transform 0.42s ease, filter 0.42s ease;
    }

    .concept-page .concept-image {
        opacity: 0;
        transform: translateY(42px) scale(0.96);
        filter: blur(10px);
        transition: opacity 0.46s ease, transform 0.46s ease, filter 0.46s ease;
    }

    .concept-page .concept-image:nth-child(1) {
        transition-delay: 0.04s;
    }

    .concept-page .concept-image:nth-child(2) {
        transition-delay: 0.18s;
    }

    .concept-page .concept-image:nth-child(3) {
        transition-delay: 0.32s;
    }

    .concept-page.is-visible .common-title-section {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    .concept-page.is-visible .concept-image {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* 关于无极 - 容器 */
.about-wuxus-page {
    position: relative;
    display: flex;
    flex-direction: column;
    --about-circle-size: 400px;
    --about-small-circle-size: 310px;
    background-image: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/aboutWuxus.png');
    background-repeat: no-repeat;
    background-position: calc(100vw * 3 / 7) center;
    background-size: 559px 330px;
}

.about-wuxus-page .common-title-section {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.about-wuxus-page .about-left-text {
    opacity: 0;
    transform: translateY(-50%) translateX(-36px) translateY(30px);
    filter: blur(8px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.about-wuxus-page .about-left-text p {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.about-wuxus-page .about-left-text p:nth-child(1) {
    transition-delay: 0.18s;
}

.about-wuxus-page .about-left-text p:nth-child(2) {
    transition-delay: 0.26s;
}

.about-wuxus-page .about-left-text p:nth-child(3) {
    transition-delay: 0.34s;
}

.about-wuxus-page .about-left-text p:nth-child(4) {
    transition-delay: 0.42s;
}

/* 大圆 - 渐出效果 */
.about-wuxus-page .about-big-circle {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

/* 小圆 - 渐出效果 */
.about-wuxus-page .about-small-circle {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    transition-delay: 0.1s;
}

.about-wuxus-page .about-desc-item {
    opacity: 0;
    --about-desc-translate-y: 0;
    transform: translate3d(28px, var(--about-desc-translate-y), 0);
    filter: blur(8px);
    transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
}

.about-wuxus-page .about-desc-item:nth-child(1) {
    transition-delay: 0.3s;
}

.about-wuxus-page .about-desc-item:nth-child(2) {
    transition-delay: 0.5s;
}

.about-wuxus-page .about-desc-item:nth-child(3) {
    transition-delay: 0.7s;
}

.about-wuxus-page.is-visible .common-title-section {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.about-wuxus-page.is-visible .about-left-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    filter: blur(0);
}

.about-wuxus-page.is-visible .about-left-text p {
    opacity: 1;
    transform: translateY(0);
}

.about-wuxus-page.is-visible .about-big-circle {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.about-wuxus-page.is-visible .about-small-circle {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.about-wuxus-page.is-visible .about-desc-item {
    opacity: 1;
    transform: translate3d(0, var(--about-desc-translate-y), 0);
    filter: blur(0);
}

.about-wuxus-container {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    padding-left: calc((100vw * 3 / 8) - 200px);
}

/* 圆形容器 */
.about-circle-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
}

/* 左侧9点钟方向文本 */
.about-left-text {
    position: absolute;
    left: -280px;
    top: 50%;
    transform: translateY(-50%);

    padding: 20px 15px 20px 40px;
    text-align: left;
}

/* 左上角落标 */
.about-left-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    border-top: 4px solid #FF9400;
    border-left: 4px solid #FF9400;

}

/* 右下角落标 */
.about-left-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 26px;
    height: 26px;
    border-bottom: 4px solid #FF9400;
    border-right: 4px solid #FF9400;

}

.about-left-text p {
    margin: 8px 0;
    font-size: 27px;
    color: #FF9400;
    font-family: 'Source Han Sans CN VF Bold';
    line-height: 1.3;
}

.about-left-text p:first-child {
    margin-top: 0;
}

.about-left-text p:last-child {
    margin-bottom: 0;
}

/* 大圆 - 400*400 */
.about-big-circle {
    width: var(--about-circle-size);
    height: var(--about-circle-size);
    aspect-ratio: 1 / 1;
    border: 3px solid #e3e3e3;
    border-radius: 50%;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 小圆 - 310*310 */
.about-small-circle {
    width: var(--about-small-circle-size);
    height: var(--about-small-circle-size);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF3E4 0%, rgba(255, 243, 228, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-small-circle img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* 右侧描述区域 */
.about-descriptions {
    position: absolute;
    left: 380px;
    top: 0;
    width: 900px;
    height: var(--about-circle-size);
}

/* 单个描述项 */
.about-desc-item {
    position: absolute;
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* 第一段 - 1点钟方向 */
.about-desc-item:nth-child(1) {
    top: 30px;
    left: 10px;
}

/* 第二段 - 3点钟方向 */
.about-desc-item:nth-child(2) {
    top: 50%;
    --about-desc-translate-y: -50%;
    left: 50px;
}

/* 第三段 - 5点钟方向 */
.about-desc-item:nth-child(3) {
    bottom: 30px;
    left: 10px;
}

/* 橙色圆点 - 13*13 */
.about-dot {
    width: 13px;
    height: 13px;
    background: #FF9400;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
}

/* 描述文本 - 垂直居中 */
.about-desc-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-desc-text p {
    margin: 6px 0;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.about-desc-text p:first-child {
    margin-top: 0;
}

.about-desc-text p:last-child {
    margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
    .about-wuxus-page .common-title-section,
    .about-wuxus-page .about-left-text p,
    .about-wuxus-page .about-desc-item {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .about-wuxus-page .about-left-text {
        opacity: 1;
        transform: translateY(-50%);
        filter: none;
        transition: none;
    }

    .about-wuxus-page .about-desc-item:nth-child(2) {
        transform: translateY(-50%);
    }
}

.honors-page {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.honors-page .common-title-section,
.work-page .common-title-section,
.benefits-page .work-section-heading,
.find-page .common-title-section {
    flex-shrink: 0;
}

.honors-showcase {
    width: min(1180px, 100%);
    margin: auto;
    padding: 0 32px 32px;
    display: grid;
    justify-items: center;
    row-gap: 22px;
}

.honors-page .common-title-section,
.honors-preview-wrap,
.honors-headline,
.honors-timeline-shell {
    opacity: 0;
    filter: blur(10px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
}

.honors-page .common-title-section {
    transform: translateY(20px);
    transition-delay: 0s;
}

.honors-preview-wrap {
    width: min(550px, 43vw);
    position: relative;
    margin-top: 6px;
    transform: translateY(36px) scale(0.96);
    transition-delay: 0.08s;
}

.honors-preview-frame {
    width: 100%;
    aspect-ratio: 1.66 / 1;
    border: 5px solid #181818;
    padding: 10px;
    background:
        radial-gradient(circle at 18% 20%, rgba(235, 210, 164, 0.35), transparent 18%),
        radial-gradient(circle at 84% 36%, rgba(255, 255, 255, 0.86), transparent 23%),
        linear-gradient(180deg, #fbfaf8 0%, #f2f0eb 62%, #e7e5de 100%);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.honors-preview-frame::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.honors-pointer {
    width: 28px;
    height: 13px;
    margin: -1px auto 0;
    position: relative;
    overflow: hidden;
}

.honors-pointer::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    left: 4px;
    background: #181818;
    border-radius: 4px;
    transform: rotate(45deg);
    transform-origin: center;
}

.honors-headline {
    margin: 0;
    color: #101010;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    font-family: 'Source Han Sans CN VF Medium';
    transform: translateY(24px);
    transition-delay: 0.18s;
}

.honors-timeline-shell {
    --honors-nav-column: 58px;
    --honors-shell-gap: 10px;
    --honors-nav-size: 34px;
    --honors-thumb-size: 78px;
    --honors-link-gap: 12px;
    --honors-item-gap: 18px;
    --honors-line-color: #bdbdbd;
    width: 100%;
    display: grid;
    grid-template-columns: var(--honors-nav-column) 1fr var(--honors-nav-column);
    align-items: start;
    column-gap: var(--honors-shell-gap);
    margin-top: 6px;
    position: relative;
    transform: translateY(30px);
    transition-delay: 0.28s;
}

.honors-page.is-visible .common-title-section,
.honors-page.is-visible .honors-preview-wrap,
.honors-page.is-visible .honors-headline,
.honors-page.is-visible .honors-timeline-shell {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.honors-timeline-shell::before,
.honors-timeline-shell::after {
    content: '';
    position: absolute;
    top: calc((var(--honors-thumb-size) / 2) - 1px);
    height: 2px;
    width: calc(((var(--honors-nav-column) - var(--honors-nav-size)) / 2) + var(--honors-shell-gap));
    background: var(--honors-line-color);
    z-index: 0;
}

.honors-timeline-shell::before {
    left: calc(((var(--honors-nav-column) - var(--honors-nav-size)) / 2) + var(--honors-nav-size));
}

.honors-timeline-shell::after {
    right: calc(((var(--honors-nav-column) - var(--honors-nav-size)) / 2) + var(--honors-nav-size));
}

.honors-nav-btn {
    width: var(--honors-nav-size);
    height: var(--honors-nav-size);
    border-radius: 50%;
    border: 2px solid #c9c9c9;
    background: rgba(255, 255, 255, 0.65);
    color: #9a9a9a;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    justify-self: center;
    align-self: start;
    margin-top: calc((var(--honors-thumb-size) - var(--honors-nav-size)) / 2);
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
    position: relative;
    z-index: 2;
}

.honors-nav-btn:hover {
    transform: scale(1.06);
    border-color: #9e9e9e;
    color: #6b6b6b;
}

.honors-nav-icon {
    width: 11px;
    height: 11px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    pointer-events: none;
}

.honors-nav-icon-prev {
    transform: translateX(1px) rotate(-135deg);
}

.honors-nav-icon-next {
    transform: translateX(-1px) rotate(45deg);
}

.honors-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(80px, 1fr));
    align-items: start;
    position: relative;
    gap: var(--honors-item-gap);
}

.honors-timeline::before {
    display: none;
}

.honors-item {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    row-gap: 10px;
    cursor: pointer;
    user-select: none;
}

.honors-item::before,
.honors-item::after {
    content: '';
    position: absolute;
    top: calc((var(--honors-thumb-size) / 2) - 1px);
    height: 2px;
    background: var(--honors-line-color);
    z-index: 0;
    width: calc(50% - (var(--honors-thumb-size) / 2) - var(--honors-link-gap) + (var(--honors-item-gap) / 2));
}

.honors-item::before {
    left: calc(var(--honors-item-gap) / -2);
}

.honors-item::after {
    right: calc(var(--honors-item-gap) / -2);
}

.honors-thumb {
    width: var(--honors-thumb-size);
    height: var(--honors-thumb-size);
    border-radius: 50%;
    border: 2px solid #8f8f8f;
    padding: 5px;
    background: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.honors-item.active .honors-thumb {
    border-color: #ff9900;
    box-shadow: 0 8px 18px rgba(255, 153, 0, 0.22);
    transform: translateY(-1px);
}

.honors-thumb-image,
.honors-scene-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.honors-thumb-image {
    border-radius: 50%;
    border: 1px solid #8f8f8f;
}

.honors-year {
    min-height: 1em;
    font-size: clamp(24px, 2vw, 28px);
    line-height: 1;
    font-family: 'Source Han Sans CN VF Medium';
    color: #101010;
}

.honors-subtitle {
    min-height: 1.3em;
    font-size: 18px;
    font-weight: 600;
    color: #101010;
    text-align: center;
}

.honors-scene {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.honors-scene-image {
    position: absolute;
    inset: 0;
}

@media (max-width: 1200px) {
    .honors-showcase {
        margin-top: 24px;
        row-gap: 18px;
    }

    .honors-preview-wrap {
        width: min(430px, 44vw);
    }
}

@media (max-width: 900px) {
    .honors-timeline-shell {
        --honors-thumb-size: 64px;
        --honors-item-gap: 8px;
    }

    .honors-showcase {
        padding-left: 20px;
        padding-right: 20px;
    }

    .honors-preview-wrap {
        width: min(420px, 68vw);
    }

    .honors-timeline-shell {
        grid-template-columns: 40px 1fr 40px;
    }

    .honors-year {
        font-size: 18px;
    }

    .honors-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .honors-showcase {
        width: 100%;
        margin-top: 18px;
        padding: 0 12px 24px;
        row-gap: 16px;
    }

    .honors-preview-wrap {
        width: min(470px, 100%);
    }

    .honors-timeline-shell {
        --honors-nav-size: 28px;
        --honors-thumb-size: 48px;
        --honors-item-gap: 4px;
        grid-template-columns: 1fr;
        align-items: start;
        row-gap: 0;
        padding-inline: 24px;
    }

    .honors-timeline-shell::before,
    .honors-timeline-shell::after {
        display: none;
    }

    .honors-item:first-child::before,
    .honors-item:last-child::after {
        display: none;
    }

    .honors-timeline-shell .honors-nav-btn {
        margin-top: 0;
        align-self: auto;
        justify-self: auto;
        position: absolute;
        top: 10px;
        z-index: 3;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .honors-timeline-shell .honors-nav-btn:first-child {
        left: 0;
    }

    .honors-timeline-shell .honors-nav-btn:last-child {
        right: 0;
    }

    .honors-timeline {
        min-width: 0;
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: repeat(5, minmax(52px, 1fr));
        gap: var(--honors-item-gap);
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .honors-item {
        row-gap: 8px;
        min-width: 0;
    }

    .honors-timeline::-webkit-scrollbar {
        display: none;
    }

    .honors-year {
        font-size: 13px;
        line-height: 1.2;
        text-align: center;
    }

    .honors-subtitle {
        font-size: 12px;
        line-height: 1.2;
        min-height: 0;
    }
}

@media (max-height: 820px) {
    .honors-showcase {
        margin-top: 18px;
        row-gap: 14px;
    }

    .honors-preview-wrap {
        width: min(390px, 36vw);
    }

    .honors-headline {
        font-size: clamp(22px, 2.4vw, 34px);
    }

    .honors-subtitle {
        font-size: 16px;
    }
}

/* 工作在无极页面 */
.work-page,
.benefits-page {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 标题初始状态 */
.work-page .common-title-section,
.work-page .work-section-heading,
.benefits-page .work-section-heading {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.work-page .work-section-heading {
    transition-delay: 0.12s;
}

/* 卡片初始状态 */
.work-cards-container .work-card,
.company-album {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease, box-shadow 0.3s ease;
}

.work-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 1100px;
    margin: 56px auto var(--work-heading-content-gap);
    padding: 0 50px;
}

.work-section-heading::before {
    content: '';
    width: 5px;
    height: 42px;
    background: #5C5C5C;
    flex: 0 0 auto;
    align-self: center;
}

.work-section-title-cn {
    margin: 0;
    color: #5C5C5C;
    font-family: 'Source Han Sans CN VF Bold';
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.work-section-title-en {
    margin: 0;
    color: #5C5C5C;
    font-family: 'Source Han Sans CN VF Medium';
    font-size: 16px;
    line-height: 1.2;
}

.company-album {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
    transform: translateY(28px);
}

.company-album-viewport {
    overflow: hidden;
    width: 100%;
}

.company-album-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 28px) / 3);
    grid-template-rows: repeat(2, auto);
    gap: 18px 14px;
    transition: transform 0.36s ease;
    will-change: transform;
}

.company-album-item {
    aspect-ratio: 408 / 272;
    overflow: hidden;
    background: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 3px 10px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.05);
}

.company-album-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-album-btn {
    position: absolute;
    top: calc(-1 * (var(--work-heading-content-gap) + 40px));
    z-index: 3;
    width: 68px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.company-album-btn:hover {
    transform: translateY(-1px);
}

.company-album-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-album-btn-prev {
    right: 128px;
}

.company-album-btn-next {
    right: 50px;
}

.company-album-btn:disabled {
    opacity: 0.42;
    cursor: default;
    transform: none;
}

.benefits-heading {
    margin-top: 0;
    margin-bottom: var(--work-heading-content-gap);
}

/* 为每个卡片设置不同的延迟，形成错落效果 */
.work-cards-container .work-card:nth-child(1) {
    transition-delay: 0.15s;
}
.work-cards-container .work-card:nth-child(2) {
    transition-delay: 0.25s;
}
.work-cards-container .work-card:nth-child(3) {
    transition-delay: 0.35s;
}
.work-cards-container .work-card:nth-child(4) {
    transition-delay: 0.45s;
}
.work-cards-container .work-card:nth-child(5) {
    transition-delay: 0.55s;
}
.work-cards-container .work-card:nth-child(6) {
    transition-delay: 0.65s;
}

/* 可见状态 - 动画完成 */
.work-page.is-visible .common-title-section,
.work-page.is-visible .work-section-heading,
.benefits-page.is-visible .work-section-heading {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.work-page.is-visible .company-album,
.benefits-page.is-visible .work-cards-container .work-card {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
}

.benefits-page.hover-ready .work-cards-container .work-card {
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.18s ease, box-shadow 0.18s ease;
    transition-delay: 0s;
}

/* 卡片容器 */
.work-cards-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 0px 50px;
}

.benefits-page .work-cards-container {
    margin: 0 auto;
}

/* 单个卡片 */
.work-card {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 3px 10px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.05);
    width: 320px;
    height: 280px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 148, 0, 0);
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18),
                0 8px 18px rgba(17, 17, 17, 0.10),
                0 3px 10px rgba(17, 17, 17, 0.06);
    border-color: rgba(255, 148, 0, 0.22);
}

.work-card::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb34d 0%, #ff9400 45%, #ffd18a 100%);
    transform: scaleX(0.18);
    transform-origin: left center;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.work-card:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

/* 图标 */
.work-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    transition: transform 0.2s ease;
}

.work-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease, filter 0.2s ease;
}

/* 标题 */
.work-title {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 15px 0;
    font-family: 'Source Han Sans CN VF Bold';
    transition: color 0.2s ease;
}

/* 描述 */
.work-description {
    font-size: 18px;
    color: #000000;
    opacity: 0.8;
    line-height: 1.7;
    margin: 0;
    font-family: 'Source Han Sans CN VF Light';
    transition: color 0.2s ease;
}

.work-card:hover .work-icon {
    transform: translateY(-2px);
}

.work-card:hover .work-icon img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.work-card:hover .work-title {
    color: #ff9400;
}

.work-card:hover .work-description {
    color: #000000;
    opacity: 0.9;
}

/* 响应式适配 */
@media (max-width: 1400px) {
    .work-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .work-cards-container {
        grid-template-columns: 1fr;
    }

    .work-card {
        width: 100%;
        max-width: 410px;
    }
}

/* 找到我们页面 */
.find-page {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.find-page .common-title-section {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.find-page::-webkit-scrollbar {
    display: none;
}

.find-main {
    width: 100%;
    min-height: calc(100dvh - 60px);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

/* 地图容器 */
.find-map-container {
    width: 100%;
    height: 388px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
    transition: opacity 0.65s ease, transform 0.65s ease, filter 0.65s ease;
    transition-delay: 0.08s;
}

.find-map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 位置标记 */
.find-point-marker {
    position: absolute;
    width: 50px;
    height: 70px;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%) scale(0.86);
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
    transition-delay: 0.28s;
}

.find-point-marker img {
    width: 100%;
    height: 100%;
}

/* 信息卡片 */
.find-info-card {
    --find-info-arrow-size: 9px;
    position: absolute;
    top: 50%;
    left: calc(45% + 50px);
    background-color: #FF9800;
    color: white;
    padding: 18px 22px;
    border-radius: 4px;
    z-index: 100;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translate3d(28px, -50%, 0);
    filter: blur(8px);
    transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
    transition-delay: 0.36s;
}

.find-info-card::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--find-info-arrow-size));
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: var(--find-info-arrow-size) solid transparent;
    border-bottom: var(--find-info-arrow-size) solid transparent;
    border-right: var(--find-info-arrow-size) solid #FF9800;
}

.find-info-left {
    flex: 1;
}

.find-info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    font-family: 'Source Han Sans CN VF Bold';
}

.find-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Source Han Sans CN VF Medium';
}

.find-info-item svg {
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.find-info-right {
    width: 100px;
    height: 130px;
    background-color: #333;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.find-info-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 下方内容区域 */
.find-content-section {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    flex-shrink: 0;
}

/* 联系卡片 */
.find-card {
    background: white;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                0 3px 10px rgba(0, 0, 0, 0.08),
                0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 148, 0, 0);
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.find-card:nth-child(1) {
    transition-delay: 0.46s;
}

.find-card:nth-child(2) {
    transition-delay: 0.56s;
}

.find-card:nth-child(3) {
    transition-delay: 0.66s;
}

.find-page.is-visible .common-title-section,
.find-page.is-visible .find-map-container,
.find-page.is-visible .find-info-card,
.find-page.is-visible .find-card {
    opacity: 1;
    filter: blur(0);
}

.find-page.is-visible .common-title-section,
.find-page.is-visible .find-map-container,
.find-page.is-visible .find-card {
    transform: translateY(0);
}

.find-page.is-visible .find-point-marker {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}

.find-page.is-visible .find-info-card {
    transform: translate3d(0, -50%, 0);
}

.find-page.hover-ready .find-card {
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    transition-delay: 0s;
}

@media (hover: hover) and (pointer: fine) {
    .find-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18),
                    0 8px 18px rgba(17, 17, 17, 0.10),
                    0 3px 10px rgba(17, 17, 17, 0.06);
        border-color: rgba(255, 148, 0, 0.22);
    }
}

.find-card-accent {
    width: 80px;
    height: 3px;
    margin-bottom: 10px;
    background: #FF9800;
}

.find-card-title {
    font-size: 20px;
    color: #FF9800;
    font-weight: bold;
    margin-bottom: 24px;
    font-family: 'Source Han Sans CN VF Bold';
}

.find-card-content {
    font-size: 14px;
    color: #373737;
    line-height: 1.8;
    font-family: 'Source Han Sans CN VF Light';
}
.find-card-content P{
    font-family: 'Source Han Sans CN VF Light';
}
.find-email {
    color: #373737;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.find-email-link {
    color: #373737;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.find-email-link svg {
    margin-right: 8px;
}

.find-email-text {
    cursor: text;
    user-select: text;
    -webkit-user-select: text;
}

.find-note {
    font-size: 13px;
    color: #373737;
    margin-top: 12px;
}

.find-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.find-info-address {
    font-family: "Source Han Sans CN VF Light";
}
.find-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    font-family: 'Source Han Sans CN VF Medium';
    text-decoration: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.find-social-icons > a.find-social-icon {
    display: flex;
}

@media (hover: hover) and (pointer: fine) {
    .find-social-icon:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
    }
}

.find-xiaohongshu {
    background-color: #FE2C55;
}

.find-boss {
    background-color: #00B38A;
}

.find-discord {
    background-color: #5865F2;
}

.find-discord svg {
    width: 22px;
    height: 22px;
}

/* 响应式适配 */
@media (max-width: 1100px) {
    .find-content-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .find-content-section {
        grid-template-columns: 1fr;
    }

    .find-map-container {
        height: 300px;
    }

    .find-info-card {
        max-width: 280px;
        padding: 14px 18px;
    }

    .find-info-right {
        display: none;
    }
}

/* 底部页脚 */
.site-footer {
    width: 100%;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    margin-top: 0;
    flex-shrink: 0;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* 左侧Logo */
.footer-left {
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo img {
    width: 250px;
    height: auto;
}

.footer-logo-text h2 {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Source Han Sans CN VF Bold';
    margin: 0 0 4px 0;
}

.footer-logo-text p {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Source Han Sans CN VF Medium';
    margin: 0;
    letter-spacing: 2px;
}

/* 右侧内容 */
.footer-right {
    flex: 1;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Source Han Sans CN VF Medium';
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #ffffff;
}

.footer-nav-sep {
    color: #ffffff;
}

.footer-line {
    width: 100%;
    height: 2px;
    background: #ffffff;
    margin-bottom: 20px;
}

.footer-info {
    margin-bottom: 16px;
}

.footer-info p {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Source Han Sans CN VF Medium';
    margin: 6px 0;
}

.footer-warning {
    color: #ffffff;
    font-size: 14px;
    font-family: 'Source Han Sans CN VF Medium';
    line-height: 1.6;
}

/* 游戏产品页面样式 */
.products-page {
    position: relative;
    overflow: hidden;
    --products-bg-size: 100% 100%;
}

.products-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 游戏产品背景层 */
.products-bg-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

/* 确保三张背景图使用 clamp() 适配 2K+ 屏幕，贴右下角 */
.products-bg-bottom,
.products-bg-middle,
.products-bg-front {
    width: clamp(950px, 65vw, 1900px);
    height: clamp(665px, calc(65vw * 930 / 1409), 1280px);
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    background-size: 100% 100%;
    background-position: center center;
}

.products-bg-bottom {
    z-index: 2;
    opacity: 0;
    transform-origin: right bottom;
    transform: translateY(40px) scale(1.06);
}

.products-bg-bottom.animate-in {
    animation: riseInBottom 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes riseInBottom {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(1.06);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.products-bg-middle {
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
    background-size: var(--products-bg-size) !important;
}

.products-bg-middle.animate-in {
    animation: slideUp 0.45s ease-out 0.25s forwards;
}

.products-bg-front {
    z-index: 4;
    opacity: 0;
    transform: translateY(100%);
    background-size: var(--products-bg-size) !important;
}

.products-bg-front.animate-in {
    animation: slideUp 0.45s ease-out 0.5s forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    padding: 30px 80px 0;
    height: calc(100% - 110px);
    align-items: center;
}

.products-left-section {
    flex: 1;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-50px);
}

.products-right-section {
    flex: 1.3;
    position: relative;
    height: 100%;
}

.products-page-title {
    text-align: left;
    margin-bottom: 10px;
}

.products-page-title .products-title-cn {
    font-size: 40px;
    text-align: left;
    margin-bottom: 5px;
}

.products-page-title .products-title-en {
    font-size: 18px;
    text-align: left;
    margin-bottom: 30px;
}

.product-logo {
    opacity: 0;
    margin-bottom: 28px;
    flex-shrink: 0;
    width: min(100%, 460px);
    aspect-ratio: 460 / 300;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo.animate-in {
    animation: fadeIn 0.55s ease-out 0.45s forwards;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.product-description {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 380px;
    min-height: 110px;
    flex-shrink: 0;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    width: 160px;
    height: 49px;
    padding: 0 22px 5px 26px;
    background: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/了解更多.png') center / 100% 100% no-repeat;
    text-decoration: none;
    line-height: 1;
    color: #ffffff;
    font-family: 'Source Han Sans CN VF Bold';
    font-size: 20px;
    letter-spacing: 0;
    white-space: nowrap;
    transition: filter 0.18s ease, transform 0.18s ease;
}

.product-btn:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
    color: #ffffff;
}

.product-btn-text {
    color: inherit;
    font: inherit;
}

.product-btn-arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid currentColor;
    flex: 0 0 auto;
}

.product-mobile-stage {
    display: none;
}

.product-mobile-scene {
    position: relative;
    overflow: visible;
}

.product-mobile-bg-clip {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-mobile-bg-layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.product-mobile-bg-bottom {
    z-index: 1;
}

.product-mobile-bg-middle {
    z-index: 2;
    pointer-events: none;
}

.product-avatars {
    display: flex;
    gap: 10px;
    margin-top: 45px;
}

.product-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    overflow: hidden;
}

.product-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品切换相关样式 */
.product-avatars-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 0;
    margin-top: 32px;
    margin-bottom: 0;
    min-height: 108px;
    flex-shrink: 0;
}

.product-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #9a9a9a;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0;
    transition: transform 160ms ease, color 160ms ease;
    flex-shrink: 0;
    z-index: 5;
}

.product-nav-btn:hover {
    transform: scale(1.06);
    color: #6b6b6b;
}

.product-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}


.product-avatars {
    display: flex;
    gap: 12px;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 8px;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-avatars::-webkit-scrollbar {
    display: none;
}

.product-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 3px solid #cccccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.product-avatar:hover {
    transform: scale(1.08);
}

.product-avatar.active {
    border-color: #FF9400;
    box-shadow: 0 4px 14px rgba(255, 148, 0, 0.4);
    transform: scale(1.1);
}

.product-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 产品信息切换动画 */
.product-logo {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-logo.switching {
    opacity: 0;
    transform: translateY(-10px);
}

.product-description {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-description.switching {
    opacity: 0;
    transform: translateY(-10px);
}

/* 背景层重新动画 */
.products-bg-bottom.reanimate,
.products-bg-middle.reanimate,
.products-bg-front.reanimate {
    animation: none !important;
    opacity: 0;
}

.products-bg-bottom.reanimate {
    transform: translateY(40px) scale(1.06);
}

.products-bg-middle.reanimate,
.products-bg-front.reanimate {
    transform: translateY(100%);
}

@media (min-width: 1920px) and (min-height: 1200px) {
    .products-page,
    .common-page,
    .work-page,
    .find-page {
        display: flex;
        flex-direction: column;
        padding-top: clamp(140px, 9vh, 190px);
    }

    .products-title-section,
    .common-title-section {
        flex-shrink: 0;
    }

    .products-title-cn,
    .common-title-cn {
        font-size: clamp(64px, 3.3vw, 76px);
        margin-bottom: 14px;
    }

    .products-title-en,
    .common-title-en {
        font-size: clamp(28px, 1.45vw, 34px);
        letter-spacing: 3px;
    }

    .products-content-wrapper {
        flex: 1;
        min-height: 0;
        height: auto;
        align-items: center;
        padding: clamp(38px, 3.8vh, 68px) clamp(96px, 5vw, 150px) clamp(54px, 5.5vh, 90px);
    }

    .products-left-section {
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
    }

    .product-logo {
        width: min(100%, clamp(368px, 22vw, 460px));
        height: clamp(258px, 16vw, 320px);
        margin-bottom: clamp(36px, 3vh, 52px);
    }

    .product-logo img {
        width: 100%;
        height: 100%;
    }

    .product-description {
        max-width: 460px;
        min-height: 140px;
        font-size: 16px;
        margin-bottom: 32px;
    }

    .product-avatars-wrapper {
        margin-top: clamp(34px, 3vh, 46px);
        margin-bottom: 0;
        min-height: 110px;
    }

    .concept-page {
        display: flex;
        flex-direction: column;
        padding-top: 130px;
    }

    .concept-images-container {
        width: max-content;
        max-width: none;
        flex: 1;
        min-height: 0;
        margin: 0 auto;
        padding: clamp(24px, 2.2vh, 34px) 0 clamp(40px, 3.5vh, 56px);
        gap: 28px;
        align-content: center;
    }

    .concept-image {
        width: 514px;
        height: 661px;
    }

    .about-wuxus-container {
        flex: 1;
        align-items: center;
        margin-top: 0;
        padding-left: clamp(340px, 24vw, 520px);
        padding-right: clamp(90px, 8vw, 160px);
    }

    .about-wuxus-page {
        --about-circle-size: clamp(430px, 24vw, 500px);
        --about-small-circle-size: clamp(330px, 18vw, 390px);
    }

    .about-big-circle {
        border-width: 4px;
    }

    .about-descriptions {
        height: var(--about-circle-size);
    }

    .about-left-text {
        left: clamp(-320px, -16vw, -250px);
    }

    .about-left-text p {
        font-size: clamp(28px, 1.6vw, 34px);
    }

    .about-descriptions {
        left: clamp(400px, 23vw, 520px);
        width: min(960px, 46vw);
    }

    .about-desc-text p {
        font-size: clamp(19px, 1.05vw, 22px);
    }

    .honors-page {
        display: flex;
        flex-direction: column;
    }

    .honors-showcase {
        flex: 1;
        min-height: 0;
        margin: clamp(34px, 3.5vh, 60px) auto 0;
        padding: 0 48px clamp(30px, 3.2vh, 56px);
        align-content: center;
        row-gap: clamp(26px, 2.4vh, 38px);
    }

    .honors-preview-wrap {
        width: min(560px, 38vw);
    }

    .honors-headline {
        font-size: clamp(32px, 2vw, 42px);
    }

    .work-page,
    .benefits-page {
        display: flex;
        flex-direction: column;
    }

    .work-section-heading {
        max-width: 1320px;
        margin-top: clamp(54px, 5vh, 80px);
        padding: 0 clamp(60px, 3.5vw, 100px);
    }

    .company-album {
        max-width: 1320px;
        margin-top: clamp(4px, 1vh, 12px);
        padding: 0 clamp(60px, 3.5vw, 100px);
    }

    .company-album-track {
        grid-auto-columns: calc((100% - clamp(28px, 2vw, 40px)) / 3);
        gap: clamp(22px, 2vh, 30px) clamp(14px, 1vw, 20px);
    }

    .company-album-btn-prev {
        right: calc(clamp(60px, 3.5vw, 100px) + 78px);
    }

    .company-album-btn-next {
        right: clamp(60px, 3.5vw, 100px);
    }

    .work-cards-container {
        flex: 1;
        min-height: 0;
        max-width: 1320px;
        margin: clamp(34px, 3.6vh, 58px) auto 0;
        padding: 0 clamp(60px, 3.5vw, 100px) clamp(36px, 3.6vh, 60px);
        gap: clamp(24px, 1.4vw, 32px);
        align-content: center;
    }

    .benefits-page .work-cards-container {
        margin: 0 auto;
    }

    .work-card {
        width: min(100%, 360px);
        height: clamp(300px, 22vh, 360px);
        padding: 30px 24px;
    }

    .find-page {
        display: flex;
        flex-direction: column;
    }

    .find-map-container {
        height: clamp(430px, 34vh, 520px);
        margin-top: clamp(30px, 3vh, 48px);
    }

    .find-info-card {
        max-width: 460px;
        padding: 22px 28px;
    }

    .find-content-section {
        flex: 1;
        min-height: 0;
        max-width: 1240px;
        margin: clamp(34px, 3.6vh, 54px) auto 0;
        padding: 0 24px clamp(36px, 3.8vh, 64px);
        gap: clamp(26px, 1.5vw, 34px);
        align-content: center;
    }

    .find-card {
        min-height: clamp(210px, 18vh, 260px);
        padding: 34px 30px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        height: 100%;
        overflow: hidden;
    }

    body {
        overflow-x: hidden;
        overflow-y: hidden;
    }

    body.mobile-linear-mode {
        overflow: hidden;
        --mobile-header-height: 68px;
    }

    body.mobile-linear-mode .about-dropdown {
        display: none;
    }

    body.mobile-linear-mode .mobile-about-dropdown {
        position: fixed;
        display: none;
        flex-direction: column;
        min-width: 146px;
        padding: 8px;
        background: rgba(17, 17, 17, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
        z-index: 1200;
    }

    body.mobile-linear-mode.mobile-about-open .mobile-about-dropdown {
        display: flex;
    }

    body.mobile-linear-mode .mobile-about-link {
        color: #ffffff;
        font-size: 13px;
        line-height: 1.3;
        padding: 10px 12px;
        border-radius: 8px;
        white-space: nowrap;
    }

    body.mobile-linear-mode .mobile-about-link:hover,
    body.mobile-linear-mode .mobile-about-link:focus-visible {
        color: #ffffff;
        background: rgba(255, 148, 0, 0.16);
    }

    body.mobile-linear-mode .header {
        height: var(--mobile-header-height);
        padding: 0 14px;
    }

    body.mobile-linear-mode .header .right {
        display: flex;
        align-items: center;
    }

    body.mobile-linear-mode .header .left .title img {
        width: 132px !important;
        height: auto !important;
    }

    body.mobile-linear-mode .header .right .menu-items {
        display: none;
    }

    body.mobile-linear-mode .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    body.mobile-linear-mode .mobile-menu-toggle[aria-expanded="true"] img {
        display: none;
    }

    body.mobile-linear-mode .mobile-menu-toggle[aria-expanded="true"]::before,
    body.mobile-linear-mode .mobile-menu-toggle[aria-expanded="true"]::after {
        opacity: 1;
    }

    body.mobile-linear-mode .mobile-menu-overlay,
    body.mobile-linear-mode .mobile-menu-drawer {
        display: block;
    }

    body.mobile-linear-mode .mobile-menu-overlay {
        top: var(--mobile-header-height);
    }

    body.mobile-linear-mode .mobile-menu-drawer {
        top: var(--mobile-header-height);
        height: calc(100vh - var(--mobile-header-height));
    }

    body.mobile-linear-mode.mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    body.mobile-linear-mode.mobile-menu-open .mobile-menu-drawer {
        transform: translateX(0);
    }

    body.mobile-linear-mode .formal-content {
        height: 100%;
        overflow: hidden;
    }

    body.mobile-linear-mode .formal-content > .swiper-wrapper {
        display: flex;
        height: 100% !important;
    }

    body.mobile-linear-mode .formal-content > .swiper-wrapper > .swiper-slide {
        height: 100% !important;
        min-height: 100%;
    }

    body.mobile-linear-mode .formal-content > .swiper-wrapper > .swiper-slide:first-child {
        min-height: 100%;
        height: 100% !important;
    }

    body.mobile-linear-mode .scroll-indicator {
        display: block;
        bottom: 26px;
        animation-duration: 1.8s;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    body.mobile-linear-mode .swiper-slide-active .section-scroll-indicator {
        display: block;
        bottom: 26px;
        animation-duration: 1.8s;
    }

    body.mobile-linear-mode .hero-copy {
        padding: 96px 16px 48px;
        align-items: center;
    }

    body.mobile-linear-mode #home-section {
        background:
            linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
            url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/home.png') center center / cover no-repeat;
    }

    body.mobile-linear-mode .formal-content > .swiper-wrapper > .swiper-slide:first-child::after {
        content: none;
    }

    body.mobile-linear-mode .video-bg {
        background:
            linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
            url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/home.png') center center / cover no-repeat;
        filter: brightness(0.2);
    }

    body.mobile-linear-mode .hero-copy h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(40px, 13vw, 64px);
        line-height: 1.02;
        letter-spacing: 0.02em;
    }

    body.mobile-linear-mode .hero-copy .hero-accent-break {
        display: block;
    }

    body.mobile-linear-mode .products-page,
    body.mobile-linear-mode .common-page,
    body.mobile-linear-mode .work-page,
    body.mobile-linear-mode .benefits-page,
    body.mobile-linear-mode .find-page {
        height: 100%;
        min-height: 100%;
        padding-top: 76px;
        padding-bottom: 20px;
    }

    body.mobile-linear-mode .products-title-cn,
    body.mobile-linear-mode .common-title-cn {
        font-size: clamp(26px, 7vw, 38px);
    }

    body.mobile-linear-mode .products-title-en,
    body.mobile-linear-mode .common-title-en {
        font-size: clamp(12px, 3.2vw, 16px);
        letter-spacing: 1.2px;
    }

    body.mobile-linear-mode .products-page {
        --products-bg-size: 100% 100%;
        min-height: calc(100svh - 18px);
        padding-top: 85px;
        background: #f8f8f6;
        overflow-y: auto;
        overflow-x: hidden;
    }

    body.mobile-linear-mode .products-page .products-title-section {
        margin-top: 8px;
        text-align: center;
    }

    body.mobile-linear-mode .products-left-section {
        transform: none;
        align-items: center;
    }

    body.mobile-linear-mode .products-bg-bottom,
    body.mobile-linear-mode .products-bg-middle,
    body.mobile-linear-mode .products-bg-front {
        display: none;
    }

    body.mobile-linear-mode .products-content-wrapper {
        height: auto;
        min-height: 0;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 10px 14px 6px;
    }

    body.mobile-linear-mode .products-left-section,
    body.mobile-linear-mode .products-right-section {
        width: 100%;
        flex: none;
        height: auto;
    }

    body.mobile-linear-mode .products-right-section {
        display: none;
    }

    body.mobile-linear-mode .products-grid-overlay {
        display: none;
    }

    body.mobile-linear-mode .product-mobile-stage {
        display: block;
        width: min(calc(100% - 20px), 500px);
        order: 1;
        position: relative;
        margin-top: 15px;
    }

    body.mobile-linear-mode .product-mobile-scene {
        width: 100%;
        aspect-ratio: 331 / 265;
        isolation: isolate;
        overflow: visible;
    }

    body.mobile-linear-mode .product-mobile-bg-clip {
        border-radius: 24px;
        background: linear-gradient(180deg, #dfe4ec 0%, #a8b2c8 52%, #6b7488 100%);
        box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
    }

    body.mobile-linear-mode .product-mobile-bg-bottom {
        background-size: 100% 100%;
        background-position: center center;
        opacity: 1;
        filter: none;
        transform: none;
    }

    body.mobile-linear-mode .product-mobile-bg-middle {
        inset: auto;
        left: 50%;
        top: calc(50% - 25px);
        width: calc(100% + 60px);
        height: calc(100% + 110px);
        transform: translate(-50%, -50%);
        background-size: contain;
        background-position: center center;
        opacity: 1;
        z-index: 3;
    }

    body.mobile-linear-mode .product-logo {
        order: 3;
        width: min(62vw, 180px);
        max-width: 180px;
        aspect-ratio: 460 / 300;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 4px;
        align-self: center;
    }

    body.mobile-linear-mode .product-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    body.mobile-linear-mode .product-description {
        order: 4;
        max-width: min(90vw, 540px);
        min-height: 0;
        font-size: 13px;
        line-height: 1.68;
        text-align: center;
        margin-bottom: 10px;
    }

    body.mobile-linear-mode .product-btn {
        order: 5;
        width: 138px;
        height: 42px;
        padding: 0 18px 4px 22px;
        column-gap: 5px;
        font-size: 17px;
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }

    body.mobile-linear-mode .product-btn-arrow {
        border-top-width: 5px;
        border-bottom-width: 5px;
        border-left-width: 8px;
    }

    body.mobile-linear-mode .product-avatars-wrapper {
        order: 2;
        width: min(calc(100% - 20px), 500px);
        min-height: 0;
        margin-top: -92px;
        justify-content: center;
        padding: 14px 16px 16px;
        background: rgba(10, 10, 10, 0.8);
        border-radius: 0 0 24px 24px;
        box-shadow: 0 14px 24px rgba(17, 17, 17, 0.18);
        position: relative;
        z-index: 4;
    }

    body.mobile-linear-mode .product-avatars {
        width: auto;
        max-width: calc(100% - 92px);
        padding: 6px 12px;
        flex: 0 1 auto;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        gap: 8px;
        overflow: visible;
    }

    body.mobile-linear-mode .product-avatar {
        width: 54px;
        height: 54px;
        border: 3px solid rgba(255, 255, 255, 0.46);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    }

    body.mobile-linear-mode .product-avatar.active {
        border-color: #FF9800;
        transform: scale(1.08);
        box-shadow: 0 4px 14px rgba(255, 148, 0, 0.42);
    }

    body.mobile-linear-mode .product-nav-btn {
        width: 28px;
        height: 28px;
        color: rgba(255, 255, 255, 0.9);
    }

    body.mobile-linear-mode .product-nav-btn:hover {
        transform: none;
    }

    body.mobile-linear-mode .product-nav-btn .honors-nav-icon {
        width: 10px;
        height: 10px;
    }

    body.mobile-linear-mode .product-nav-btn .honors-nav-icon-prev {
        transform: translateX(1px) rotate(-135deg) scale(0.9);
    }

    body.mobile-linear-mode .product-nav-btn .honors-nav-icon-next {
        transform: translateX(-1px) rotate(45deg) scale(0.9);
    }

    body.mobile-linear-mode .concept-page {
        min-height: auto;
        overflow: hidden;
        padding-bottom: 34px;
        padding-top: 85px;
    }

    body.mobile-linear-mode .concept-page .common-title-section {
        margin-top: 8px;
        opacity: 0;
        transform: translateY(18px);
        filter: blur(8px);
        transition: opacity 0.42s ease, transform 0.42s ease, filter 0.42s ease;
    }

    body.mobile-linear-mode .concept-images-container {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: min(100%, 720px);
        height: auto;
        margin: 22px auto 0;
        padding: 0 18px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.mobile-linear-mode .concept-image {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 366 / 153;
        border-radius: 0 20px 0 0;
        overflow: hidden;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
        opacity: 0;
        transform: translateY(24px);
        filter: blur(10px);
        transition: opacity 0.46s ease, transform 0.46s ease, filter 0.46s ease;
    }

    body.mobile-linear-mode .concept-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 30%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0) 84%);
        pointer-events: none;
        z-index: 1;
    }

    body.mobile-linear-mode .concept-image:nth-child(1) {
        transition-delay: 0.04s;
    }

    body.mobile-linear-mode .concept-image:nth-child(2) {
        transition-delay: 0.16s;
    }

    body.mobile-linear-mode .concept-image:nth-child(3) {
        transition-delay: 0.28s;
    }

    body.mobile-linear-mode .concept-image-left,
    body.mobile-linear-mode .concept-image-center,
    body.mobile-linear-mode .concept-image-right {
        left: auto;
        right: auto;
        bottom: auto;
        z-index: auto;
    }

    body.mobile-linear-mode .concept-page.is-visible .common-title-section {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    body.mobile-linear-mode .concept-page.is-visible .concept-image {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    body.mobile-linear-mode .concept-image img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        box-shadow: none;
    }

    body.mobile-linear-mode .concept-image-text {
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 26px 20px 16px;
        background: none;
        border-radius: inherit;
        z-index: 2;
    }

    body.mobile-linear-mode .concept-switch-btn {
        display: none;
    }

    body.mobile-linear-mode .concept-image-title {
        font-size: clamp(20px, 5.2vw, 28px);
        margin-bottom: 3px;
    }

    body.mobile-linear-mode .concept-image-desc {
        font-size: clamp(12px, 3.2vw, 16px);
        line-height: 1.45;
        max-width: 94%;
    }

    body.mobile-linear-mode .about-wuxus-page {
        background-image: none;
        justify-content: center;
    }

    body.mobile-linear-mode .about-wuxus-page::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: min(72vw, 290px);
        height: min(72vw, 290px);
        transform: translate(-50%, -50%);
        background: url('https://wuxusgames-1373973213.cos.ap-guangzhou.myqcloud.com/v2/style/img/logo2.png') center / contain no-repeat;
        opacity: 0.12;
        pointer-events: none;
        z-index: 0;
    }

    body.mobile-linear-mode .about-wuxus-container {
        display: block;
        flex: 0 0 auto;
        padding: 18px 20px 10px;
        position: relative;
        z-index: 1;
    }

    body.mobile-linear-mode .about-wuxus-page .common-title-section,
    body.mobile-linear-mode .honors-page .common-title-section {
        flex: 0 0 auto;
    }

    body.mobile-linear-mode .about-circle-wrapper {
        position: relative;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    body.mobile-linear-mode .about-left-text {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 520px;
        padding: 18px 22px;
        text-align: center;
        font-size: 0;
        line-height: 1.7;
    }

    body.mobile-linear-mode .about-left-text::before,
    body.mobile-linear-mode .about-left-text::after {
        width: 18px;
        height: 18px;
        border-width: 3px;
    }

    body.mobile-linear-mode .about-left-text p {
        display: inline;
        margin: 0;
        font-size: clamp(16px, 4.9vw, 26px);
        line-height: 1.7;
    }

    body.mobile-linear-mode .about-wuxus-page.is-visible .about-left-text {
        transform: none;
    }

    body.mobile-linear-mode .about-big-circle,
    body.mobile-linear-mode .about-small-circle {
        display: none;
    }

    body.mobile-linear-mode .about-descriptions {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 560px;
        height: auto;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        overflow: hidden;
    }

    body.mobile-linear-mode .about-descriptions::before {
        content: none;
    }

    body.mobile-linear-mode .about-desc-item {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        justify-content: center;
        align-items: center;
        transform: none !important;
        z-index: 1;
    }

    body.mobile-linear-mode .about-dot {
        display: none;
    }

    body.mobile-linear-mode .about-desc-text {
        align-items: center;
        text-align: center;
    }

    body.mobile-linear-mode .about-desc-text p {
        margin: 3px 0;
        font-size: 13px;
        line-height: 1.65;
        font-family: 'Source Han Sans CN VF Medium';
        font-weight: 400;
    }

    body.mobile-linear-mode .honors-page,
    body.mobile-linear-mode .work-page,
    body.mobile-linear-mode .benefits-page {
        overflow: hidden;
    }

    body.mobile-linear-mode .honors-page {
        justify-content: center;
    }

    body.mobile-linear-mode .find-page {
        overflow-y: auto;
        overflow-x: hidden;
    }

    body.mobile-linear-mode #find-page-section {
        padding-bottom: 0;
    }

    body.mobile-linear-mode .honors-showcase {
        flex: 0 0 auto;
        margin: 12px auto 0;
        padding-bottom: 10px;
        row-gap: 12px;
    }

    body.mobile-linear-mode .honors-preview-wrap {
        width: min(470px, 80%);
    }

    body.mobile-linear-mode .honors-timeline-shell {
        --honors-col-size: 84px;
        --honors-line-thumb-gap: 6px;
        --honors-nav-column: 30px;
        --honors-shell-gap: 12px;
        --honors-nav-size: 30px;
        --honors-thumb-size: 64px;
        --honors-item-gap: 12px;
        width: fit-content;
        max-width: 100%;
        margin-inline: auto;
        grid-template-columns: var(--honors-nav-column) auto var(--honors-nav-column);
        align-items: start;
        column-gap: var(--honors-shell-gap);
        padding-inline: 0;
    }

    body.mobile-linear-mode .honors-timeline-shell .honors-nav-btn {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        align-self: start;
        justify-self: center;
        margin-top: calc((var(--honors-thumb-size) - var(--honors-nav-size)) / 2);
    }

    body.mobile-linear-mode .honors-timeline-shell::before,
    body.mobile-linear-mode .honors-timeline-shell::after {
        display: block;
    }

    body.mobile-linear-mode .honors-timeline-shell::before {
        left: var(--honors-nav-size);
        width: calc(
            var(--honors-shell-gap) +
            ((var(--honors-col-size) - var(--honors-thumb-size)) / 2) -
            var(--honors-line-thumb-gap)
        );
    }

    body.mobile-linear-mode .honors-timeline-shell::after {
        right: var(--honors-nav-size);
        width: calc(
            var(--honors-shell-gap) +
            ((var(--honors-col-size) - var(--honors-thumb-size)) / 2) -
            var(--honors-line-thumb-gap)
        );
    }

    body.mobile-linear-mode .honors-timeline {
        width: max-content;
        min-width: max-content;
        grid-template-columns: repeat(3, var(--honors-col-size));
        overflow-x: hidden;
    }

    body.mobile-linear-mode .honors-item::before,
    body.mobile-linear-mode .honors-item::after {
        width: calc(50% - (var(--honors-thumb-size) / 2) - var(--honors-line-thumb-gap) + (var(--honors-item-gap) / 2));
    }

    body.mobile-linear-mode .honors-item:first-child::before,
    body.mobile-linear-mode .honors-item:last-child::after {
        display: none;
    }

    body.mobile-linear-mode .honors-year {
        font-size: 14px;
    }

    body.mobile-linear-mode .work-page .common-title-section {
        margin-top: 0;
    }

    body.mobile-linear-mode .work-page {
        justify-content: center;
        padding-top: 68px;
        padding-bottom: 90px;
    }

    body.mobile-linear-mode .work-section-heading {
        width: 100%;
        margin: 12px auto var(--work-heading-content-gap);
        padding: 0 24px;
        gap: 6px;
    }

    body.mobile-linear-mode .work-section-heading::before {
        width: 3px;
        height: 24px;
    }

    body.mobile-linear-mode .work-section-title-cn {
        font-size: 20px;
    }

    body.mobile-linear-mode .work-section-title-en {
        font-size: 10px;
    }

    body.mobile-linear-mode .company-album {
        width: 100%;
        margin: 0 auto;
        padding: 0 24px;
    }

    body.mobile-linear-mode .company-album-track {
        grid-auto-columns: calc((100% - 10px) / 2);
        grid-template-rows: repeat(3, auto);
        gap: 10px;
    }

    body.mobile-linear-mode .company-album-item {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12),
                    0 3px 10px rgba(0, 0, 0, 0.08),
                    0 2px 6px rgba(0, 0, 0, 0.05);
    }

    body.mobile-linear-mode .company-album-btn {
        top: auto;
        bottom: -42px;
        width: 68px;
        height: 40px;
    }

    body.mobile-linear-mode .company-album-btn-prev {
        right: calc(50% + 8px);
    }

    body.mobile-linear-mode .company-album-btn-next {
        right: calc(50% - 76px);
    }

    body.mobile-linear-mode .benefits-heading {
        margin-top: 8px;
    }

    body.mobile-linear-mode .work-cards-container {
        margin: 18px auto 0;
        padding: 0 26px 6px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: stretch;
        gap: 10px;
    }

    body.mobile-linear-mode .benefits-page .work-cards-container {
        margin: 0 auto;
    }

    body.mobile-linear-mode .work-card {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        padding: 12px 8px;
    }

    body.mobile-linear-mode .work-icon {
        width: 42px;
        height: 42px;
        margin: 0 auto 8px;
    }

    body.mobile-linear-mode .work-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    body.mobile-linear-mode .work-description {
        font-size: 11px;
        line-height: 1.4;
    }

    body.mobile-linear-mode .find-main {
        min-height: 0;
    }

    body.mobile-linear-mode .find-map-container {
        margin-top: 18px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        height: 244px;
    }

    body.mobile-linear-mode .find-map-container picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    body.mobile-linear-mode .find-map-bg {
        display: block;
        width: 100%;
        height: 100%;
        object-position: center center;
    }

    body.mobile-linear-mode .find-point-marker {
        width: 36px;
        height: 50px;
        left: 25%;
        top: 52%;
    }

    body.mobile-linear-mode .find-info-card {
        --find-card-arrow-width: 5px;
        --find-card-arrow-gap: 3px;
        left: calc(25% + 18px + var(--find-card-arrow-width) + var(--find-card-arrow-gap));
        right: auto;
        top: 52%;
        bottom: auto;
        width: calc(100% - 98px);
        max-width: 240px;
        padding: 5px 6px 5px 9px;
        gap: 4px;
        border-radius: 0;
        align-items: stretch;
        transform: translate3d(11px, -50%, 0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    body.mobile-linear-mode .find-info-card::before {
        display: block;
        left: calc(-1 * var(--find-card-arrow-width));
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: var(--find-card-arrow-width) solid transparent;
        border-bottom: var(--find-card-arrow-width) solid transparent;
        border-right: var(--find-card-arrow-width) solid #FF9800;
    }

    body.mobile-linear-mode .find-page.is-visible .find-info-card {
        transform: translate3d(0, -50%, 0);
    }

    body.mobile-linear-mode .find-info-left {
        min-width: 0;
    }

    body.mobile-linear-mode .find-info-title {
        font-size: 14px;
        margin-bottom: 4px;
        padding-bottom: 4px;
    }

    body.mobile-linear-mode .find-info-title .find-info-address {
        font-family: "Source Han Sans CN VF Light";
        font-weight: 300;
    }

    body.mobile-linear-mode .find-info-item {
        margin-bottom: 3px;
        font-size: 9px;
        line-height: 1.3;
    }

    body.mobile-linear-mode .find-info-item svg {
        width: 12px;
        height: 12px;
        margin-right: 5px;
    }

    body.mobile-linear-mode .find-info-right {
        display: block;
        width: 54px;
        height: 78px;
        flex-shrink: 0;
    }

    body.mobile-linear-mode .find-content-section {
        margin: 20px auto 0;
        padding: 0 18px 26px;
        gap: 14px;
    }

    body.mobile-linear-mode .find-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 0px;
        row-gap: 2px;
        align-items: center;
        align-content: center;
        box-sizing: border-box;
        padding: 5px 5px 5px 18px;
        min-height: 80px;
        height: 80px;
        border-radius: 0;
    }

    body.mobile-linear-mode .find-card-accent {
        grid-column: 1;
        grid-row: 1;
        width: 50px;
        margin-bottom: 0;
        align-self: center;
    }

    body.mobile-linear-mode .find-card-title {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.25;
        white-space: nowrap;
        align-self: center;
    }

    body.mobile-linear-mode .find-card-content {
        grid-column: 2;
        grid-row: 1 / span 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        min-width: 0;
        font-size: 12px;
        line-height: 1.45;
        align-self: stretch;
    }

    body.mobile-linear-mode .find-email {
        margin-bottom: 8px;
        align-items: center;
        gap: 6px;
    }

    body.mobile-linear-mode .find-email-link svg {
        width: 14px;
        height: 14px;
        margin-right: 0;
    }

    body.mobile-linear-mode .find-email-text {
        font-size: 10px;
        line-height: 1.4;
        word-break: break-all;
    }

    body.mobile-linear-mode .find-note {
        margin-top: 0;
        font-size: 10px;
        line-height: 1.5;
    }

    body.mobile-linear-mode .find-card-content p {
        margin-bottom: 0;
    }

    body.mobile-linear-mode .find-social-icons {
        margin-top: 0;
        gap: 10px;
    }

    body.mobile-linear-mode .find-social-icon {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

    body.mobile-linear-mode .site-footer {
        padding: 26px 20px;
        margin-bottom: 0;
    }

    body.mobile-linear-mode .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    body.mobile-linear-mode .footer-left,
    body.mobile-linear-mode .footer-right {
        width: 100%;
    }

    body.mobile-linear-mode .footer-logo {
        justify-content: center;
    }

    body.mobile-linear-mode .footer-logo img {
        width: 150px;
    }

    body.mobile-linear-mode .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
        column-gap: 10px;
        margin-bottom: 14px;
    }

    body.mobile-linear-mode .footer-nav-link {
        font-size: 13px;
    }

    body.mobile-linear-mode .footer-nav-sep {
        font-size: 11px;
    }

    body.mobile-linear-mode .footer-line {
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255, 255, 255, 0.34);
        margin-bottom: 14px;
    }

    body.mobile-linear-mode .footer-info {
        margin-bottom: 12px;
    }

    body.mobile-linear-mode .footer-info p {
        font-size: 10px;
        line-height: 1.55;
        margin: 4px 0;
    }

    body.mobile-linear-mode .footer-warning {
        font-size: 9px;
        line-height: 1.6;
    }
}
