/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", Arial, sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    /* 核心修复：给body添加顶部内边距，避开80px高的固定导航 */
    padding-top: 80px;
    /* 新增：平滑滚动 */
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    /* 新增：图片防闪烁 */
    backface-visibility: hidden;
}

/* 容器样式 */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* 新增：垂直居中核心属性 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 如果需要同时水平居中，补充：align-items: center; */
    min-height: 100%; /* 确保容器高度撑满父元素 */
}

/* 按钮样式 - 主色调改为淡蓝色 #4A90E2 */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4A90E2; /* 淡蓝色主色 */
    color: #fff;
    border-radius: 8px; /* 优化：圆角统一为8px */
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease; /* 优化：全属性过渡 */
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.btn-primary:hover {
    background-color: #3A80D2; /* hover加深 */
    transform: translateY(-3px); /* 优化：上浮效果 */
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background-color: #6BA5F5; /* 更浅的蓝色 */
    color: #fff;
    border-radius: 8px; /* 优化：圆角统一为8px */
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease; /* 优化：全属性过渡 */
    box-shadow: 0 3px 10px rgba(107, 165, 245, 0.15);
}

.btn-secondary:hover {
    background-color: #5B95E5; /* hover加深 */
    transform: translateY(-2px); /* 优化：上浮效果 */
    box-shadow: 0 5px 15px rgba(107, 165, 245, 0.2);
}

/* 标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title h2 span {
    color: #4A90E2; /* 淡蓝色强调色 */
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.text-center {
    text-align: center !important;
}

/* 头部导航样式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* 优化：导航栏顺滑过渡 */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* 滚动时导航栏样式优化 */
.header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 24px;
    color: #4A90E2; /* 淡蓝色logo */
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    position: relative;
    margin-left: 30px;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    /* 优化：添加底部边框过渡效果 */
    border-bottom: 2px solid transparent;
}

.main-nav li.active a,
.main-nav a:hover {
    color: #4A90E2; /* 淡蓝色导航高亮 */
    border-bottom: 2px solid #4A90E2; /* 优化：底部边框高亮 */
}

/* 下拉菜单 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    display: none;
    z-index: 999;
    border-radius: 8px; /* 优化：添加圆角 */
    overflow: hidden; /* 优化：裁剪圆角 */
}

.dropdown-menu li {
    margin: 0;
    padding: 0 15px;
}

.dropdown-menu a {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    border-bottom-width: 1px; /* 修复：边框宽度 */
}

.dropdown-menu li:last-child a {
    border-bottom: none; /* 优化：最后一项无边框 */
}

.dropdown:hover .dropdown-menu {
    display: block;
    /* 优化：下拉菜单淡入 */
    animation: fadeIn 0.3s ease;
}

/* 淡入动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Banner样式 - 调整为淡蓝色渐变 */
.banner {
    background: linear-gradient(135deg, rgba(232, 244, 253, 0.8), rgba(209, 231, 253, 0.95)),url("../img/banner.png") no-repeat center center; /* 淡蓝色渐变背景 */
    background-size: cover; /* 新增：背景图铺满 */
    color: #333; /* 文字改为深色提高可读性 */
    padding: 120px 0 80px;
    text-align: center;
    height: 820px;
    /* 优化：添加视差效果 */
    background-attachment: fixed;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2D7CD0; /* 稍深的蓝色标题 */
    font-weight: 700;
}

.banner-content h2 {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #444;
}

/* 关于我们样式 */
.about {
    padding: 80px 0; /* 优化：增加上下内边距 */
    background-color: #f9f9f9;
}

.about-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px; /* 优化：添加间距 */
}

.about-img {
    flex: 1;
    min-width: 300px;
    /* 优化：移除右侧内边距，改用gap */
}

.about-img img {
    border-radius: 12px; /* 优化：图片添加圆角 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* 优化：图片阴影 */
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2D7CD0; /* 淡蓝色标题 */
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* 行动召唤样式 - 改为淡蓝色背景 */
.call-to-action {
    background-color: #4A90E2; /* 优化：统一为主色调 */
    color: #fff;
    padding: 60px 0; /* 优化：增加内边距 */
}

.cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* 优化：添加间距 */
}

.cta-wrap h2 {
    font-size: 32px;
    font-weight: 600;
}

/* 开户流程样式 - 重构为横向长条+箭头连接 */
.process {
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow-x: auto; /* 小屏幕横向滚动，避免挤压 */
}

/* 流程容器：横向排列+垂直居中 */
.process-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-width: fit-content; /* 适配内容宽度 */
    padding: 20px 0;
}

/* 流程步骤项 */
.process-item {
    flex: 0 0 auto; /* 固定宽度，不挤压 */
    width: 180px; /* 统一步骤宽度 */
    background-color: #fff;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease; /* 优化：添加过渡 */
}

/* 优化：步骤项hover效果 */
.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 流程图标 */
.process-icon {
    width: 60px;
    height: 60px;
    background-color: #E8F4FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #4A90E2;
}

.process-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2D7CD0;
    font-weight: 600;
}

.process-item p {
    color: #666;
    line-height: 1.6;
    font-size: 14px; /* 缩小文字，适配横向布局 */
}

/* 箭头连接样式 */
.process-arrow {
    flex: 0 0 auto;
    width: 40px;
    text-align: center;
    color: #4A90E2;
    font-size: 20px;
    opacity: 0.8;
}

/* 响应式适配：小屏幕自动横向滚动 */
.process-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* 移动端顺滑滚动 */
    padding-bottom: 15px; /* 滚动条预留空间 */
}

/* 隐藏滚动条（可选，美化效果） */
.process-wrap::-webkit-scrollbar {
    height: 6px;
}
.process-wrap::-webkit-scrollbar-thumb {
    background-color: #4A90E2;
    border-radius: 3px;
}
.process-wrap::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* 平板适配：调整步骤宽度 */
@media (max-width: 992px) {
    .process-item {
        width: 150px;
        padding: 20px 10px;
    }
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 平台优势样式 */
.features {
    padding: 80px 0;
    background-color: #f3f9ff;
}
/* 新增：优势图标样式 */
.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #E8F4FD; /* 淡蓝色背景 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #4A90E2; /* 淡蓝色图标 */
    transition: all 0.3s ease; /* 优化：添加过渡 */
}

/* 优化：hover时图标变色 */
.feature-item:hover .feature-icon {
    background-color: #4A90E2;
    color: #fff;
    transform: scale(1.1);
}

.features-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px; /* 优化：圆角加大 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease; /* 优化：延长过渡时间 */
    text-align: center; /* 优化：文字居中 */
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2D7CD0; /* 淡蓝色标题 */
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.7;
}
/* 新增：hover悬浮效果 */
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 常见问题样式 */
.faq {
    padding: 80px 0;
}

.faq-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); /* 优化：添加轻微阴影 */
}

.faq-question {
    padding: 18px 20px; /* 优化：增加内边距 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #E8F4FD; /* 淡蓝色背景 */
    font-weight: 600;
    color: #2D7CD0; /* 淡蓝色文字 */
    transition: all 0.3s ease;
}

/* 优化：问题hover效果 */
.faq-question:hover {
    background-color: #D9EEFC;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease; /* 优化：延长过渡时间 */
}

.faq-answer.show {
    padding: 20px;
    max-height: 800px; /* 优化：增大最大高度 */
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* 底部悬浮按钮容器 - 100%宽度半透明层 */
.float-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%; /* 全屏宽度 */
    background-color: rgba(74 144 226 / 25%); /* 优化：加深背景透明度 */
    padding: 15px 0; /* 上下内边距 */
    display: flex;
    justify-content: center; /* 按钮水平居中 */
    align-items: center; /* 按钮垂直居中 */
    gap: 60px; /* 两个按钮之间的间距 */
    box-sizing: border-box;
    z-index: 998; /* 优化：调整层级 */
}

/* 悬浮按钮样式 */
.float-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4A90E2; /* 淡蓝色主色调 */
    color: #fff;
    text-decoration: none;
    border-radius: 8px; /* 优化：圆角统一 */
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 300px; /* 按钮最小宽度，保证文字不换行 */
    text-align: center; /* 按钮文字居中 */
}

/* 按钮hover效果 */
.float-btn:hover {
    background-color: #3A80D2; /* 加深蓝色 */
    transform: translateY(-2px); /* 轻微上移，提升交互感 */
    color: #fff; /* 确保文字颜色不变 */
    text-decoration: none; /* 去除下划线 */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* 响应式适配 - 小屏幕按钮换行+宽度自适应 */
@media (max-width: 768px) {
    .float-buttons {
        gap: 15px; /* 优化：增大间距 */
    }
    .float-btn {
        min-width: 200px; /* 优化：减小最小宽度 */
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .float-buttons {
        flex-direction: column; /* 竖排 */
        gap: 10px; /* 缩小间距 */
        padding: 10px 0;
    }
    .float-btn {
        width: 90%; /* 占屏幕90%宽度 */
        min-width: auto;
        padding: 10px 0;
    }
}

/* APP下载弹窗 */
.app-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.app-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #4A90E2; /* 优化：hover变色 */
    transform: rotate(90deg); /* 优化：旋转效果 */
}

.modal-content {
    background-color: #fff;
    border-radius: 12px; /* 优化：加大圆角 */
    padding: 30px; /* 优化：增加内边距 */
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* 优化：添加阴影 */
    /* 优化：弹窗淡入 */
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-item {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.modal-item:last-child {
    border-bottom: none;
}

.download-btn {
    padding: 12px 24px; /* 优化：增加内边距 */
    background-color: #4A90E2; /* 淡蓝色按钮 */
    color: #fff;
    border: none;
    border-radius: 8px; /* 优化：圆角统一 */
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px; /* 优化：增加间距 */
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #3A80D2; /* hover加深 */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.modal-item img {
    max-width: 200px;
    margin: 0 auto;
    border-radius: 8px; /* 优化：图片圆角 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 优化：图片阴影 */
}

/* 底部APP下载按钮 */
.app-float-tab {
    position: fixed;
    right: 30px;
    bottom: 100px;
    background-color: #4A90E2; /* 淡蓝色背景 */
    color: #fff;
    padding: 12px 24px; /* 优化：增加内边距 */
    border-radius: 30px;
    cursor: pointer;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.app-float-tab:hover {
    background-color: #3A80D2; /* hover加深 */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 80px 0 40px; /* 优化：增加上内边距 */
    margin-bottom: 70px; /* 优化：增加底部间距 */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px; /* 优化：增大间距 */
    margin-bottom: 50px; /* 优化：增加底部间距 */
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    font-size: 20px; /* 优化：增大字体 */
    color: #fff;
    margin-bottom: 25px; /* 优化：增加间距 */
    padding-bottom: 10px;
    border-bottom: 2px solid #4A90E2; /* 优化：添加底部边框 */
    display: inline-block; /* 优化：边框宽度适配文字 */
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column; /* 优化：垂直排列 */
    gap: 12px; /* 优化：调整间距 */
}

.footer-links a {
    font-size: 15px; /* 优化：调整字体 */
}

.footer-links a:hover {
    color: #4A90E2; /* 淡蓝色hover */
    padding-left: 5px; /* 优化：hover缩进 */
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #444;
}

.copyright {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa; /* 优化：调整颜色 */
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #4A90E2; /* 淡蓝色背景 */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #3A80D2; /* hover加深 */
    transform: scale(1.1); /* 优化：缩放效果 */
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.3);
}

/* 分类页/文章页专属样式优化（避免内容拥挤） */
.category-banner {
    padding: 60px 0; /* 优化：调整内边距 */
    background-color: #f3f9ff; /* 优化：添加背景色 */
    text-align: center; /* 优化：文字居中 */
}

.category-banner h1 {
    font-size: 36px;
    color: #2D7CD0;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-banner p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.single-article {
    padding-top: 20px;
    padding-bottom: 40px;
}
.article-list {
    padding: 60px 0 80px; /* 优化：调整内边距 */
    background-color: #fff;
}
.article-item {
    margin-bottom: 30px;
    padding: 30px; /* 优化：增加内边距 */
    background: #fff;
    border-radius: 12px; /* 优化：加大圆角 */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex; /* 优化：flex布局 */
    gap: 20px; /* 优化：添加间距 */
    transition: all 0.3s ease; /* 优化：添加过渡 */
}

/* 优化：文章项hover效果 */
.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* 优化：文章图片容器 */
.article-item .article-img {
    flex: 0 0 280px; /* 优化：固定宽度 */
    height: 180px; /* 优化：固定高度 */
    border-radius: 8px; /* 优化：添加圆角 */
    overflow: hidden; /* 优化：裁剪圆角 */
}

.article-item .article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; /* 优化：图片过渡 */
}

.article-item:hover .article-img img {
    transform: scale(1.05); /* 优化：图片缩放 */
}

/* 优化：文章内容容器 */
.article-item .article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-item h2 {
    font-size: 22px; /* 优化：调整字体 */
    margin-bottom: 15px;
    font-weight: 600;
}

.article-item h2 a:hover {
    color: #4A90E2; /* 优化：hover变色 */
}

.article-item .article-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
    display: flex;
    gap: 20px;
}

.article-item .article-meta i {
    color: #4A90E2; /* 优化：图标颜色 */
    margin-right: 5px;
}

.article-item .article-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1; /* 优化：自动填充 */
}

.pagination {
    margin-top: 60px; /* 优化：增加间距 */
    text-align: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 18px; /* 优化：增加内边距 */
    margin: 0 5px;
    border: 1px solid #eee;
    border-radius: 8px; /* 优化：圆角统一 */
    transition: all 0.3s ease; /* 优化：添加过渡 */
}
.pagination a:hover, .pagination .current {
    background-color: #4A90E2;
    color: #fff;
    border-color: #4A90E2;
    transform: translateY(-2px); /* 优化：上浮效果 */
}

/* 响应式样式 */
@media (max-width: 992px) {
    .about {
        padding: 60px 0;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .article-item {
        flex-direction: column; /* 优化：移动端垂直布局 */
    }
    
    .article-item .article-img {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    /* 移动端适配：调整body顶部内边距，匹配移动端导航高度 */
    body {
        padding-top: 70px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 998;
    }
    
    .main-nav.show {
        max-height: 80vh; /* 优化：限制最大高度 */
        overflow-y: auto; /* 优化：超出滚动 */
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        background-color: #f9f9f9;
    }
    
    .banner {
        height: auto; /* 优化：移动端高度自适应 */
        padding: 80px 0 60px;
        background-attachment: scroll; /* 优化：取消视差 */
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .banner-content h2 {
        font-size: 20px;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .cta-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-wrap h2 {
        margin-bottom: 20px;
        font-size: 26px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .process {
        padding: 60px 0;
    }
    
    .feature-item {
        min-width: 100%; /* 优化：移动端全屏宽度 */
    }
    
    .footer-top {
        gap: 40px;
    }
}

/* 小屏移动端额外适配 */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .header-wrap {
        height: 60px; /* 优化：移动端导航高度 */
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .article-item {
        padding: 20px;
    }
    
    .pagination a, .pagination span {
        padding: 8px 12px; /* 优化：移动端分页按钮 */
    }
}