/* 重置默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden; /* 防止水平滚动 */
    scroll-behavior: smooth;
}

/* 浏览器缩放时的处理 */
@media (min-resolution: 1.25dppx) {
    .screen {
        min-height: 100vh;
        height: auto;
    }
    
    .vision-content {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .gallery-container {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .timeline-content-wrapper {
        transform: translate(-50%, -50%) scale(0.85);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
    width: 100%; /* 确保body宽度为100% */
    position: relative;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px 30px 40px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.waveup-text {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c9a961;
}


/* 主内容区域 */
.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* 屏幕区块样式 */
.screen {
    min-height: 100vh; /* 使用min-height确保内容不被截断 */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.content-wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


/* 第一屏 */
.screen-1 {
    background-image: url('../images/page1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
}

/* 第二屏 */
.screen-2 {
    background-image: url('../images/page2topbg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 100vh; /* 最小高度100vh */
    overflow: visible; /* 确保内容不被裁剪 */
}

/* 第一屏内容样式 */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.big-logo {
    width: calc(100vw * 393 / 1920);
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.big-logo:hover {
    transform: scale(1.05);
}

/* 合作伙伴按钮 */
.partner-btn {
    background: linear-gradient(90deg, #F2F1DF 0%, #EBDCBF 100%);
    border: none;
    border-radius: 90px;
    padding: 12px 32px;
    cursor: pointer;
    position: relative;
    width: auto;
    min-width: 315px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.partner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.partner-text {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* 第二屏内容样式 */
.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* 垂直居中 */
    min-height: 100vh; /* 最小高度100vh */
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* 确保作为定位容器 */
    overflow: visible; /* 确保内容不被裁剪 */
    box-sizing: border-box;
}

.vision-header {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
    align-items: flex-start;
    width: 100%;
    justify-content: space-between;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.vision-text-wrapper {
    flex: none;
}

.vision-title {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: left;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #816A4A;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 48px;
    font-weight: 600;
    color: #F0D79F;
    line-height: 1;
}

.gallery-container {
    display: flex;
    gap: 0;
    margin: 40px 0;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px; /* 最小高度 */
    width: 100%;
    max-width: 1050px;
    perspective: 1000px; /* 添加3D透视效果 */
    padding: 40px 0; /* 上下内边距 */
    overflow: visible; /* 确保内容不被裁剪 */
    z-index: 1; /* 确保画廊在正确的层级 */
}


.gallery-frame {
    position: absolute;
    width: 260px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2px;
    background: linear-gradient(135deg, #816A4A 0%, #342E28 100%);
    border-radius: 20px;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(129, 106, 74, 0.2);
    cursor: default; /* 改为默认鼠标样式 */
    pointer-events: none; /* 禁用鼠标事件 */
    user-select: none; /* 禁止选择 */
    top: 50%; /* 垂直居中定位 */
}

.gallery-frame:nth-child(1) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) translateX(-320px) scale(0.54);
    z-index: 1; 
    opacity: 0.8;
}
.gallery-frame:nth-child(2) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) translateX(-250px) scale(0.65);
    z-index: 2; 
    opacity: 0.9;
}
.gallery-frame:nth-child(3) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) translateX(-160px) scale(0.8);
    z-index: 3; 
    opacity: 1;
}
.gallery-frame:nth-child(4) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) scale(1);
    z-index: 7; 
}
.gallery-frame:nth-child(5) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) translateX(160px) scale(0.8);
    z-index: 3; 
    opacity: 1;
}
.gallery-frame:nth-child(6) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) translateX(250px) scale(0.65);
    z-index: 2; 
    opacity: 0.9;
}
.gallery-frame:nth-child(7) { 
    left: 50%; 
    transform: translateX(-50%) translateY(-50%) translateX(320px) scale(0.54);
    z-index: 1; 
    opacity: 0.8;
}

.gallery-frame.active {
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 15px 35px rgba(240, 215, 159, 0.3),
                0 5px 15px rgba(240, 215, 159, 0.2);
}

.gallery-frame:nth-child(1).active { 
    transform: translateX(-50%) translateY(-70px) translateX(-320px) rotateY(8deg) scale(0.72);
}
.gallery-frame:nth-child(2).active { 
    transform: translateX(-50%) translateY(-75px) translateX(-250px) rotateY(8deg) scale(0.84);
}
.gallery-frame:nth-child(3).active { 
    transform: translateX(-50%) translateY(-80px) translateX(-160px) rotateY(6deg) scale(1.02);
}
.gallery-frame:nth-child(4).active { 
    transform: translateX(-50%) translateY(-90px) rotateY(0deg) scale(1.25);
}
.gallery-frame:nth-child(5).active { 
    transform: translateX(-50%) translateY(-80px) translateX(160px) rotateY(-6deg) scale(1.02);
}
.gallery-frame:nth-child(6).active { 
    transform: translateX(-50%) translateY(-75px) translateX(250px) rotateY(-8deg) scale(0.84);
}
.gallery-frame:nth-child(7).active { 
    transform: translateX(-50%) translateY(-70px) translateX(320px) rotateY(-8deg) scale(0.72);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background-color: #000;
    transition: transform 0.5s ease;
}

/* 为激活的卡片图片添加轻微缩放 */
.gallery-frame.active .gallery-image {
    transform: scale(1.05);
}

.data-source {
    font-size: 10px;
    font-weight: 400;
    color: #816A4A;
    text-align: left;
}

/* 第3-5屏背景 */
.screen-3,
.screen-5 {
    background-color: #000;
}

/* 第4屏特殊背景 */
.screen-4 {
    background-color: #000;
    background-image: url('../images/page4bg.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

/* 第五屏关于我们样式 */
.screen-5 {
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center;
    min-height: 90vh;
    overflow: visible; /* 允许内容正常显示 */
    position: relative;
    padding: 60px 0 100px 0; /* 减少上下内边距 */
    box-sizing: border-box;
}

.about-container {
    width: 88vw; /* 改为视窗宽度的80% */
    max-width: none; /* 移除最大宽度限制 */
    height: 100vh; /* 恢复80vh高度 */
    margin: 0 auto;
    padding: 40px 60px; /* 减少上下内边距 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* 防止滚动 */
}

.about-title {
    font-size: 32px; /* 减小标题字体 */
    font-weight: 400;
    color: #fff;
    text-align: left;
    margin-bottom: 15px; /* 减小间距 */
    line-height: 1.6; /* 减小行高 */
}

.about-subtitle {
    font-size: 16px; /* 减小副标题字体 */
    line-height: 1.6; /* 减小行高 */
    color: #fff;
    text-align: left;
    margin-bottom: 30px; /* 减小底部间距 */
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* 减小间距 */
    justify-content: space-between;
}

.about-card {
    position: relative;
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #725326 0%, #000000 100%);
    border-radius: 12px;
    padding: 2px 2px 15px 2px;
    overflow: hidden;
    cursor: pointer; /* 恢复手型鼠标样式 */
    text-decoration: none; /* 移除下划线 */
}

/* 确保a标签内的所有文本都没有下划线 */
a.about-card,
a.about-card:hover,
a.about-card:visited,
a.about-card:active {
    text-decoration: none;
}

.about-card::after {
    display: none; /* 暂时隐藏伪元素，避免干扰 */
}

.about-card-image {
    position: relative;
    width: calc(100% + 4px);
    aspect-ratio: 332 / 100; /* 降低图片高度 */
    margin: -2px -2px 0 -2px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.about-card-title {
    position: relative;
    font-size: 16px; /* 稍微减小字体 */
    font-weight: 600;
    color: #fff;
    padding: 10px 16px 6px; /* 减少上下内边距 */
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-card-desc {
    position: relative;
    font-size: 13px; /* 减小字体 */
    line-height: 1.4; /* 减小行高避免显示2.5行 */
    color: rgba(255, 255, 255, 0.7);
    padding: 0 16px 12px; /* 减少底部内边距 */
    z-index: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 2.8em; /* 确保只显示2行: 1.4 * 2 = 2.8 */
}

/* 时间轴样式 */
.timeline-container {
    position: relative;
    width: 100%;
    min-height: 100vh; /* 最小高度100vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    z-index: 10; /* 提高z-index确保在背景图上方 */
    box-sizing: border-box;
}

/* 时间轴内容整体包装器 */
.timeline-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1600px; /* 进一步增大PC端最大宽度 */
    height: 600px; /* 设置固定高度 */
    display: flex;
    align-items: center;
}

.timeline-nodes {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 40px; /* 添加左右内边距 */
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px; /* 进一步增大PC端模块间距 */
}

.timeline-node {
    position: relative;
    width: 24%;
    min-width: 240px; /* 增大最小宽度 */
    max-width: 320px; /* 增大最大宽度 */
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* 节点位置 - 按照从左到右的顺序 */
.timeline-node {
    position: relative;
    width: 24%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-node.node-1 { 
    justify-content: center; /* 起航 - 居中对齐 */
}

.timeline-node.node-2 { 
    justify-content: center; /* 共建 - 居中对齐 */
}

.timeline-node.node-3 { 
    justify-content: center; /* 上线 - 居中对齐 */
}

.timeline-node.node-4 { 
    justify-content: center; /* 演进 - 居中对齐 */
}

/* 上方节点样式调整 */
.node-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* 让内容对齐到底部 */
    height: 100%;
}

/* 上方节点的包装器 */
.node-top .node-wrapper {
    align-items: flex-start; /* 顶部对齐 */ 
}

/* 下方节点样式调整 */
.node-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 从顶部开始 */
    height: 100%;
}

/* 下方节点的包装器 */
.node-bottom .node-wrapper {
    align-items: flex-end; /* 底部对齐 */ 
}

/* 节点包装器 - 左右布局 */
.node-wrapper {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
    padding: 10px;
    overflow: visible; /* 允许线条延伸出去 */
}

/* 线和圆点包装器 */
.node-line-wrapper {
    position: relative;
    width: 40px;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible; /* 允许内容溢出 */
}

/* 节点内容 */
.node-content {
    position: relative;
    text-align: left;
    flex: 1;
}

/* 设置共建和演进模块的高度相同 */
.node-2 .node-content,
.node-4 .node-content {
    min-height: 270px; /* 共建和演进的高度 - 增加50px */
    padding-bottom:40px;
}

/* 设置起航和上线模块的高度相同 */
.node-1 .node-content,
.node-3 .node-content {
    min-height: 230px; /* 起航和上线的高度 - 增加50px */
    padding-top:40px; /* 调整这个值来控制文字下移的距离 */
}

/* 起航和上线模块的包装器 - 顶部与中线对齐，再往下50px */
.node-1 .node-wrapper,
.node-3 .node-wrapper {
    position: relative;
    transform: translateY(calc(50% + 50px));
}

/* 共建和演进模块的包装器 - 底部与中线对齐，再往上50px */
.node-2 .node-wrapper,
.node-4 .node-wrapper {
    position: relative;
    transform: translateY(calc(-50% - 0px));
}

.node-title {
    font-size: 32px;
    font-weight: 600;
    color: #F0D79F;
    margin-bottom: 20px;
}

.node-date {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff; /* 改为白色 */
    margin: 15px 0 8px 0;
}

.node-desc {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff; /* 改为白色 */
    line-height: 1.6;
    margin: 5px 0;
    white-space: nowrap; /* PC端强制单行显示 */
    overflow: visible; /* 显示所有内容 */
}

/* 带有版本号的描述文字使用标题颜色 */
.node-version {
    color: #F0D79F !important;
    display: inline; /* 保持内联显示 */
}

/* 默认隐藏所有线 */
.node-line {
    display: none;
}

/* 起航模块的线 - 从圆点到文字底部 */
.node-1 .node-line {
    display: block;
    position: absolute;
    width: 1px;
    background-color: #F0D79F;
    left: 15px;
    top: 0; /* 从圆点位置开始 */
    height: calc(100% + 1px); /* 延伸到内容底部 - 增加50px */
}

/* 共建模块的线 - 从圆点向上到文字顶部 */
.node-2 .node-line {
    display: block;
    position: absolute;
    width: 1px;
    background-color: #F0D79F;
    left: 15px;
    bottom: 0; /* 从圆点位置开始 */
    height: calc(100% + 1px); /* 向上延伸到内容顶部 - 增加50px */
}

/* 上线模块的线 - 从圆点到文字底部（与起航相同） */
.node-3 .node-line {
    display: block;
    position: absolute;
    width: 1px;
    background-color: #F0D79F;
    left: 15px;
    top: 0; /* 从圆点位置开始 */
    height: calc(100% + 8px); /* 延伸到内容底部 - 增加50px */
}

/* 演进模块的线 - 从圆点向上到文字顶部 */
.node-4 .node-line {
    display: block;
    position: absolute;
    width: 1px;
    background-color: #F0D79F;
    left: 15px;
    bottom: 0; /* 从圆点位置开始 */
    height: calc(100% + 1px); /* 向上延伸到内容顶部 - 增加50px */
}



/* 圆点基础样式 */
.node-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #F0D79F;
    border-radius: 50%;
    z-index: 2;
    left: 7px; /* 对齐在线上 */
}

/* 包装器内的圆点样式 */
.node-line-wrapper .node-dot {
    left: 7px;
}

/* 下方节点 - 圆点在顶部 */
.node-bottom .node-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #F0D79F;
    border-radius: 50%;
    left: 7px;
    top: -8px; /* 在顶部 */
    z-index: 2;
}

/* 上方节点 - 圆点在线的底端 */
.node-top .node-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #F0D79F;
    border-radius: 50%;
    left: 7px;
    bottom: -8px; /* 在底部 */
    z-index: 2;
}

/* 页面图片样式 */
.page-image {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* page3和page4图片全宽显示 */
.page-image-fullwidth {
    width: 100vw;
    height: auto;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* 平滑滚动 - 已移到顶部与overflow-x合并 */

/* 大屏幕响应式 */
@media (min-width: 1920px) {
    .big-logo {
        width: 480px; /* 更大的logo */
    }
    
    .partner-btn {
        min-width: 360px;
        height: 56px;
        padding: 16px 40px;
        border-radius: 100px;
    }
    
    .partner-text {
        font-size: 24px;
    }
    
    /* 第4屏时间轴调整 - 调整整体尺寸 */
    .timeline-content-wrapper {
        max-width: 1000px;
        height: 500px; /* 大屏幕下稍微减小高度 */
    }
    
    /* 确保大屏幕下内容不被截断 */
    .screen {
        min-height: 100vh;
        height: auto;
    }
}

/* 超大屏幕响应式 */
@media (min-width: 2560px) {
    .big-logo {
        width: 600px; /* 超大屏幕下的logo */
    }
    
    .partner-btn {
        min-width: 420px;
        height: 64px;
        padding: 18px 48px;
        border-radius: 110px;
    }
    
    .partner-text {
        font-size: 28px;
    }
    
    /* 第4屏时间轴调整 - 超大屏幕下的调整 */
    /* 进一步调整整体尺寸 */
    .timeline-content-wrapper {
        max-width: 900px;
        height: 450px; /* 超大屏幕下进一步减小高度 */
    }
}

/* 平板响应式 - 合作伙伴按钮 */
@media (max-width: 1024px) {
    .partner-btn {
        min-width: 280px;
        height: 44px;
        padding: 10px 24px;
    }
    
    .partner-text {
        font-size: 18px;
    }
}

/* 小屏幕笔记本响应式 (1366x768等) */
@media (max-width: 1440px) and (min-width: 1200px) {
    /* 第二屏调整 */
    .vision-content {
        transform: scale(0.9);
        transform-origin: center;
        padding: 40px;
    }
    
    .vision-header {
        margin-bottom: 20px; /* 减少文字和画廊的间隙 */
    }
    
    .gallery-container {
        transform: scale(0.9);
        transform-origin: center;
        margin: 30px 0; /* 减少上下边距 */
        min-height: 350px; /* 减少最小高度 */
    }
    
    /* 第五屏调整 */
    .about-container {
        width: 100%; /* 恢复100%宽度 */
        max-width: 1000px; /* 在小屏幕笔记本上进一步缩窄 */
        height: auto; /* 恢复自动高度 */
        transform: scale(0.75);
        transform-origin: center;
        padding: 60px 40px 30px;
    }
}

/* 中等屏幕响应式 - 平板等设备 */
@media (max-width: 1200px) {
    .vision-content {
        transform: scale(0.85);
        transform-origin: center top;
    }
    
    .gallery-container {
        transform: scale(0.85);
        transform-origin: center;
        /* 移除固定高度，保持自适应 */
    }
}

/* 小屏幕响应式 - 更小的笔记本等 */
@media (max-width: 1024px) {
    .vision-content {
        transform: scale(0.75);
        transform-origin: center top;
    }
    
    .gallery-container {
        transform: scale(0.75);
        transform-origin: center;
        /* 移除固定高度，保持自适应 */
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 10px 10px 20px 10px;
        z-index: 1000;
        /* 保持渐变背景，但调整适合移动端 */
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.5) 60%, 
            rgba(0, 0, 0, 0) 100%);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: flex-start;
        gap: 25px;
        transform: scale(0.75);
        transform-origin: left center;
    }
    
    .nav-brand {
        flex-direction: row;
        gap: 8px;
    }
    
    .logo {
        height: 24px;
    }
    
    .waveup-text {
        height: 17px;
    }
    
    .nav-menu {
        display: flex;
        gap: 18px;
    }
    
    .nav-menu a {
        font-size: 14px;
        white-space: nowrap; /* 防止文字换行 */
    }
    
    .main-content {
        margin-left: 0;
        margin-top: 0; /* 移除顶部边距，因为导航栏现在是覆盖式的 */
        width: 100%;
        max-width: 100%;
    }
    
    .content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .screen {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    
    .page-image {
        max-width: 100vw;
    }
    
    /* 第三屏和第四屏在手机端合并为一屏 */
    .screen-3 {
        height: 40vh !important; /* 改为40% - 使用!important覆盖基础样式 */
        min-height: 40vh !important; /* 覆盖min-height */
        max-height: 40vh !important; /* 限制最大高度 */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .screen-3 .content-wrapper {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .screen-3 .page-image {
        width: auto;
        height: auto;
        max-width: 90vw;
        max-height: 35vh; /* 调整图片最大高度以适应40vh的容器 */
        object-fit: contain;
    }
    
    /* 第二屏在小屏幕下的内容调整 */
    .screen-2 {
        height: 80vh !important; /* 占80%高度 */
        min-height: 80vh !important; /* 覆盖min-height */
        max-height: 80vh !important; /* 限制最大高度 */
        display: flex;
        align-items: center; /* 垂直居中 */
        justify-content: center;
        background-image: none; /* 移除整屏背景图 */
    }
    
    .vision-content {
        padding: 40px 20px;
        transform: scale(0.7) !important; /* 保持原有缩放比例，使用!important确保覆盖 */
        transform-origin: center center; /* 从中心缩放 */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* 内容居中 */
        height: auto; /* 让高度自适应 */
    }
    
    .vision-header {
        flex-direction: row; /* 保持左右排列 */
        gap: 15px; /* 减小间距 */
        align-items: flex-start;
        width: 100%;
        position: relative;
        padding: 30px 15px; /* 添加左右内边距 */
        box-sizing: border-box;
    }
    
    .vision-text-wrapper {
        flex: 0 0 60%; /* 占据60%的宽度 */
        min-width: 0; /* 允许缩小 */
    }
    
    /* 在文字后面添加背景图 */
    .vision-header::before {
        content: '';
        position: absolute;
        top: 0; /* 从顶部开始 */
        left: 50%;
        transform: translateX(-50%) translateY(-50%); /* X轴居中，Y轴向上移动50% */
        width: 142vw; /* 宽度超过视口以补偿缩放 (100vw / 0.7 ≈ 142vw) */
        height: 80vw; /* 根据宽度按比例设置高度 */
        background-image: url('../images/page2topbg.png');
        background-size: cover; /* 覆盖整个区域 */
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.9;
        z-index: -1;
    }
    
    .vision-title {
        font-size: 18px; /* 进一步减小字体 */
        text-align: left;
        line-height: 1.5; /* 调整行高 */
    }
    
    .stats-container {
        flex-direction: row; /* 改回水平排列 */
        gap: 20px; /* 两个统计项之间的间距 */
        justify-content: flex-start;
        flex: 0 0 40%; /* 占据40%的宽度 */
        min-width: 0;
        flex-wrap: wrap; /* 允许换行 */
    }
    
    .stat-item {
        text-align: left;
        display: block; /* 改回块级元素，保持上下结构 */
    }
    
    .stat-label {
        font-size: 12px; /* 减小标签字体 */
        white-space: nowrap; /* 防止换行 */
        margin-bottom: 3px; /* 标签和数值之间的间距 */
    }
    
    .stat-value {
        font-size: 20px; /* 减小数值字体 */
    }
    
    .data-source {
        font-size: 9px; /* 移动端更小的字体 */
    }
    
    .gallery-container {
        padding-top: 40px; /* 增加顶部间距 */
        min-height: 200px; /* 改为最小高度 */
        height: auto; /* 自适应高度 */
        width: 100%;
        margin: 0 auto;
        transform: scale(0.65) !important; /* 使用!important确保覆盖 */
        transform-origin: center;
        padding-bottom: 80px; /* 添加底部间距 */
    }
    
    /* 第一屏内容响应式 */
    .hero-content {
        gap: 15px;
    }
    
    .big-logo {
        width: 280px; /* 增大手机端logo */
        max-width: 80vw;
    }
    
    /* 第一屏按钮响应式 */
    .partner-btn {
        min-width: 260px;
        height: 40px;
        padding: 8px 20px;
        border-radius: 80px;
    }
    
    .partner-text {
        font-size: 16px;
    }
    
    /* 第五屏响应式 */
    .screen-5 {
        padding: 80px 0 80px 0; /* 顶部留出导航栏空间，底部留出备案信息空间 */
        min-height: 100vh;
        height: auto; /* 自适应内容高度 */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* 从顶部开始排列 */
        overflow: visible; /* 允许内容正常显示 */
        position: relative;
    }
    
    .about-container {
        padding: 40px 15px 30px; /* 减少底部内边距 */
        transform: scale(1);
        transform-origin: center;
        max-width: 100%;
        width: 100%;
        height: auto; /* 恢复自动高度 */
        overflow: visible; /* 改为visible，不产生内部滚动 */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* 从顶部开始排列 */
    }
    
    .about-title {
        font-size: 18px; /* 增大标题 */
        margin-bottom: 12px;
    }
    
    .about-subtitle {
        font-size: 14px; /* 增大副标题 */
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr); /* 一行2个 */
        gap: 12px; /* 增大间距 */
        overflow: visible; /* 允许内容显示 */
        flex: 0 0 auto; /* 根据内容自动调整 */
    }
    
    .about-card {
        aspect-ratio: auto; /* 让卡片高度根据内容自适应 */
        height: auto;
        display: flex;
        flex-direction: column;
        overflow: hidden; /* 确保内容不溢出 */
        background: #000;
        border: 2px solid transparent;
        background-image: linear-gradient(#000, #000), linear-gradient(135deg, #725326 0%, #000000 100%);
        background-origin: border-box;
        background-clip: padding-box, border-box;
    }
    
    .about-card-image {
        aspect-ratio: 16 / 9; /* 使用固定的宽高比 */
        width: 100%;
        margin: 0;
        border-radius: 10px 10px 0 0;
        object-fit: cover;
        flex: 0 0 auto;
    }
    
    .about-card-title {
        font-size: 13px; /* 增大字体 */
        padding: 8px 10px 4px;
        white-space: nowrap; /* 强制单行 */
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
        flex: 0 0 auto;
    }
    
    .about-card-desc {
        font-size: 11px; /* 增大字体 */
        padding: 0 10px 10px;
        line-height: 1.3;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 最多显示2行 */
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        max-height: 29px; /* 调整高度限制：11px * 1.3 * 2 ≈ 29px */
        flex: 0 0 auto;
    }
    
    /* 第四屏 - 手机端占下半部分 */
    .screen-4 {
        height: 40vh !important; /* 改为40% - 使用!important覆盖基础样式 */
        min-height: 40vh !important; /* 覆盖min-height */
        max-height: 40vh !important; /* 限制最大高度 */
        overflow: hidden;
        position: relative;
        margin-top: 0; /* 移除间距 */
    }
    
    /* 确保内容区域能完整显示 */
    .screen-4 .content-wrapper {
        padding: 0;
        overflow: visible;
        height: 100%;
    }
    
    /* 第四屏时间轴响应式 */
    .timeline-container {
        padding: 0;
        height: 100%; /* 使用100%而非100vh */
        min-height: auto !important; /* 覆盖PC端的min-height */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 时间轴容器 - 手机端优化缩放以适应半屏高度 */
    .timeline-content-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 900px !important;
        max-width: none !important;
        height: 600px;
        transform: translate(-50%, -50%) scale(0.32); /* 减小缩放比例以适应半屏 */
        transform-origin: center;
    }
    
    .timeline-nodes {
        /* 保持PC端的横向布局 */
        flex-direction: row;
        gap: 30px; /* 稍微减小间距 */
        height: 100%;
        align-items: stretch;
        justify-content: center; /* 居中对齐 */
        padding: 0 20px; /* 添加左右内边距 */
    }
    
    .timeline-node {
        /* 保持PC端的节点宽度和布局 */
        width: 24%;
        min-width: 200px;
        max-width: 260px;
        height: 100%;
        justify-content: center !important;
    }
    
    /* 重置所有节点的transform */
    .node-1 .node-wrapper,
    .node-2 .node-wrapper,
    .node-3 .node-wrapper,
    .node-4 .node-wrapper {
        transform: none !important;
    }
    
    /* 保持PC端的位置变换 */
    .node-1 .node-wrapper,
    .node-3 .node-wrapper {
        transform: translateY(calc(50% + 50px)) !important;
    }
    
    .node-2 .node-wrapper,
    .node-4 .node-wrapper {
        transform: translateY(calc(-50% - 0px)) !important;
    }
    
    /* 节点包装器 - 保持PC端样式 */
    .node-wrapper {
        padding: 10px;
        background-color: transparent;
    }
    
    /* 保持线条和圆点 */
    .node-line-wrapper {
        display: flex;
        width: 40px;
    }
    
    .node-content {
        padding: 0;
        min-height: auto !important;
    }
    
    /* 保持PC端字体大小，通过整体缩放来调整 */
    .node-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .node-date {
        font-size: 18px;
        margin: 15px 0 8px 0;
    }
    
    .node-desc {
        font-size: 14px;
        white-space: nowrap; /* 手机端也强制单行显示 */
        line-height: 1.6;
        overflow: visible;
        text-overflow: unset;
    }
    
    /* 确保演进节点（node-4）的版本描述完全显示 */
    .node-4 .node-desc {
        display: block;
        margin-bottom: 2px;
    }
    
    .node-4 .node-version {
        display: block;
        margin-top: 4px;
    }
    
    /* 保持PC端的内容高度 */
    .node-1 .node-content,
    .node-3 .node-content {
        min-height: 230px;
        padding-top: 40px;
    }
    
    .node-2 .node-content,
    .node-4 .node-content {
        min-height: 270px;
        padding-bottom: 40px;
    }
    
    /* 保持PC端线条样式 */
    .node-line {
        display: block !important;
    }
    
    /* 保持PC端圆点大小 */
    .node-dot {
        display: block;
        width: 16px;
        height: 16px;
    }
}

/* 超小屏幕响应式（如iPhone SE） */
@media (max-width: 375px) {
    /* 时间轴容器 - 进一步缩小以适应小屏幕和半屏高度 */
    .timeline-content-wrapper {
        transform: translate(-50%, -50%) scale(0.28) !important;
    }
}

/* 页脚内容整合到第五屏 */
.footer-content {
    position: absolute;
    bottom: 20px; /* 距离底部留一些空间 */
    left: 0;
    right: 0;
    padding: 20px 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.8;
    background-color: rgba(0, 0, 0, 0.8); /* 半透明背景 */
    z-index: 100; /* 确保在最上层 */
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #F0D79F;
}

/* 手机端页脚样式 */
@media (max-width: 768px) {
    .footer-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 20px;
        background-color: rgba(0, 0, 0, 0.9); /* 保持半透明背景 */
        z-index: 10; /* 确保在最上层 */
    }
}