        :root {
            --primary-color: #5da5a7;
            --secondary-color: #447278;
            --text-color: #333;
            --light-text: white;
            --container-width: min(1300px, 90%);
            --content-width: min(900px, 90%);
        }

           /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 全局重置 - 消除所有边距和空隙 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            position: relative;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: white;
            /* 备用背景色 */
        }

        /* 背景图 - 确保完全覆盖 */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url(/images/background.webp);
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: -1;
        }

        /* 顶部横幅 */
        .top-section {
            width: 100vw;
            height: 150px;
            overflow: hidden;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        .top-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

                /* 导航栏容器 */
.navbar-container {
    width: 100%;
    height: 65px;
    position: relative;
    background-color: #5da5a7;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 桌面导航栏样式 */
.desktop-navbar {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    position: relative;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #447278;
}

/* 导航文本样式 */
.nav-text {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

/* 确保所有导航链接都是白色且无下划线 */
.nav-link a {
    color: white;
    text-decoration: none;
}

/* 桌面导航栏下拉箭头 */
.desktop-dropdown-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 5px;
}

.desktop-dropdown-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-item:hover .desktop-dropdown-arrow {
    transform: rotate(180deg);
}

/* 平板设备导航栏下拉箭头 */
.tablet-dropdown-arrow {
    display: none;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    margin-left: 5px;
}

.tablet-dropdown-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* 下拉菜单样式 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #5da5a7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0 0 5px 5px;
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item:hover {
    background-color: #447278;
    padding-left: 25px;
}

/* 移动端汉堡菜单按钮 */
.mobile-menu-btn {
    display: none;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    background-color: #447278;
    border: none;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* 移动端导航菜单 */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background-color: #5da5a7;
    z-index: 950;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 70px 0 20px 0;
}

.mobile-nav-link-container a {
            color:white;
            text-decoration: none;
        }

.mobile-nav.active {
    left: 0;
    display: block;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #447278;
    padding-left: 30px;
}

.mobile-dropdown {
    display: none;
    background-color: #447278;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 20px 12px 40px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-item:hover {
    background-color: #3a6266;
    padding-left: 45px;
}

.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.dropdown-toggle.active::after {
    transform: rotate(180deg);
}

/* 响应式设计 */
@media (min-width: 1200px) {
    .nav-link {
        padding: 20px 25px;
    }
}

@media (max-width: 991px) {
    .nav-link {
        padding: 20px 15px;
        font-size: 16px;
    }

    .desktop-dropdown-arrow {
        display: none;
    }

    .tablet-dropdown-arrow {
        display: flex;
    }

    .nav-item.tablet-active .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item.tablet-active .tablet-dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* 移动端样式修复 */
@media (max-width: 767px) {
    .desktop-navbar {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* 确保移动端导航栏不会影响页面布局 */
    .mobile-nav {
        z-index: 1000;
    }

    .mobile-nav-overlay {
        z-index: 999;
    }
}

@media (max-width: 575px) {
    .mobile-nav {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        width: 45px;
        height: 45px;
        left: 15px;
    }

    .mobile-menu-btn span {
        width: 25px;
    }

    .mobile-nav {
        width: 220px;
        padding: 60px 0 20px 0;
    }

    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 16px;
    }

    .mobile-dropdown-item {
        padding: 10px 15px 10px 35px;
        font-size: 15px;
    }
}

@media (max-width: 359px) {
    .mobile-nav {
        width: 200px;
    }
}

                /* 顶部标题栏 - 修复版本 */
        .container-1 {
            width: 100%;
            height: 80px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center; /* 主要内容居中 */
            position: relative;
            border-bottom: 1px solid #e0e0e0;
        }

        /* 返回按钮固定在左侧 */
        .back-icon {
            width: 80px;
            height: 40px;
            background-image: url('/images/back.webp');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            z-index: 1;
        }

        /* 标题完美居中 */
        .text {
            font-size: clamp(24px, 6vw, 60px);
            color: #5da5a7;
            text-align: center;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
               .container-1 {
                height: 70px;
            }
            .back-icon {
                width: 60px;
                height: 30px;
                left: 15px;
            }

}

        @media (max-width: 480px) {
             .container-1 {
                height: 60px;
            }
            .back-icon {
                width: 50px;
                height: 25px;
                left: 10px;
            }
            .text {
                font-size: 24px;
            }
        }

        /* 内容区域 */
        .container-2 {
            width: var(--container-width);
            background-color: var(--primary-color);
            margin: 0 auto;
            padding: 1.5rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
        }

        .image {
            width: var(--content-width);
            height: auto;
            max-width: 100%;
            object-fit: contain;
            margin-top: 1.5rem;
        }

        .text-area {
            width: var(--content-width);
            margin-top: 1.5rem;
            padding: 1rem;
            font-size: clamp(1rem, 1.2vw, 1.125rem);
            font-weight: bold;
            background-color: white;
            box-sizing: border-box;
            text-align: center;
            color: var(--primary-color);
            border-radius: 4px;
        }

        /* 下载列表 */
        .download-list {
            width: var(--content-width);
            margin: 1.5rem auto;
        }

        .download-item {
            background-color: white;
            padding: 1.25rem;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border-radius: 4px;
        }

        .download-description {
            width: 100%;
        }

        .download-description h3 {
            margin: 0 0 0.5rem 0;
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        .download-description p {
            margin: 0;
            color: var(--text-color);
        }

        .download-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .preview-btn,
        .download-btn {
            padding: 0.625rem 1.25rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            min-width: 100px;
        }

        .preview-btn {
            background-color: var(--primary-color);
            color: white;
        }

        .download-btn {
            background-color: var(--secondary-color);
            color: white;
        }

        .preview-btn:hover,
        .download-btn:hover {
            opacity: 0.8;
            transform: translateY(-2px);
        }

        /* 模态框基础样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow: auto;
            touch-action: none;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.3s ease;
            max-width: 90%;
            max-height: 90%;
        }

        .modal-img {
            display: block;
            max-width: 100%;
            max-height: 90vh;
            cursor: move;
            user-select: none;
            -webkit-user-drag: none;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        .zoom-controls {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 1001;
        }

        .zoom-btn {
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            color: #333;
            font-size: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reset-btn {
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            color: #333;
            font-size: 16px;
            padding: 0 15px;
            height: 40px;
            border-radius: 20px;
            cursor: pointer;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {

            .back-icon {
                width: 50px;
                height: 40px;
            }
        }

        @media (max-width: 768px) {
            .text {
                font-size: 2rem;
            }

            .download-item {
                padding: 1rem;
            }

            .download-buttons {
                justify-content: center;
            }

            .preview-btn,
            .download-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {

            .back-icon {
                width: 40px;
                height: 30px;
            }

            .text {
                font-size: 1.5rem;
            }

            .text-area {
                padding: 0.75rem;
                font-size: 0.9rem;
            }

            .download-description h3 {
                font-size: 1.1rem;
            }

            .close-modal {
                font-size: 2rem;
                top: 0.5rem;
                right: 1rem;
            }
        }

        .download-description a {
            color: #5da5a7;
            /* 和导航栏同色系但不同颜色 */
            font-weight: bold;
            /* 可选：加粗 */
        }

        .download-description a:hover {
            color: #447278;
            /* 悬停颜色 */
        }

        .text-area a {
            color: #5da5a7;
            /* 和导航栏同色系但不同颜色 */
            font-weight: bolder;
            /* 可选：加粗 */
        }

        .text-area a:hover {
            color: #447278;
            /* 悬停颜色 */
        }

        /* 修改后的頁腳樣式 */
        footer {
            width: 100%;
            height: auto;
            /* 改为自动高度 */
            padding: 10px 0;
            /* 增加上下内边距 */
            background-color: #5da5a7;
            display: flex;
            flex-direction: column;
            /* 改为垂直排列 */
            justify-content: center;
            align-items: center;
            font-size: 14px;
            color: white;
            position: relative;
            bottom: 0;
            z-index: 1;
        }

        .footer-line {
            margin: 2px 0;
            /* 行间距 */
            text-align: center;
            width: 100%;
        }

        #back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3)); /* 添加阴影效果 */
    transition: all 0.3s ease; /* 添加过渡效果使交互更平滑 */
}

#back-to-top:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)); /* 悬浮时阴影更深更扩散 */
}

#back-to-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background-color: white; /* 只在图片区域添加白色背景 */
}

        /* 移除媒体查询中的 max-width 限制 */
        @media (max-width: 480px) {
            #back-to-top {
                width: 50px;
                /* 保持相同大小 */
                height: 50px;
            }
        }