        /* 全局重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        /* 变量定义 */
        :root {
            --primary: #5c7cfa;
            --secondary: #4263eb;
            --accent: #ea4335;
            --green: #0b8043;
            --light-green: #0a6e3a;
            --yellow: #fbbc05;
            --light: #f8f9fa;
            --dark: #202124;
            --nature: #0b8043;
            --humanities: #8e24aa;
            --arts: #e67c73;
            --summary: #4285f4;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --page-width: 1400px;
        }
        
        /* 基础样式 */
        body {
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        /* 整合后的导航栏样式 */
        .detailed-navbar {
            background-color: #fdfdfe;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .detailed-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            min-height: 100px;
            max-width: var(--page-width);
            margin: 0 auto;
            width: 100%;
        }
        
        /* Logo 区域 */
        .detailed-logo {
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
            flex-shrink: 0;
        }
        
        .detailed-logo-icon {
            width: 60px;
            height: 60px;
            background: #f5f7ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 5px 15px rgba(92, 124, 250, 0.15);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .detailed-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }
        
        .detailed-logo:hover .detailed-logo-icon {
            transform: rotate(10deg) scale(1.05);
            box-shadow: 0 8px 20px rgba(92, 124, 250, 0.25);
        }
        
        .detailed-logo-text {
            font-size: 32px;
            font-weight: 800;
            color: #4a5568;
            letter-spacing: 0.8px;
            white-space: nowrap;
        }
        
        .detailed-logo-text span {
            background: linear-gradient(90deg, #5c7cfa, #4263eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* 导航菜单 */
        .detailed-nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 5px 0;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .detailed-nav-menu::-webkit-scrollbar {
            display: none;
        }
        
        .detailed-nav-item {
            position: relative;
            padding: 5px 0;
            flex-shrink: 0;
        }
        
        .detailed-nav-link {
            text-decoration: none;
            color: #4a5568;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            padding: 15px 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        /* 图标样式 */
        .detailed-nav-icon {
            display: inline-block;
            width: 24px;
            text-align: center;
            margin-right: 10px;
            font-size: 18px;
            color: #5c7cfa;
            transition: color 0.3s ease;
        }
        
        .detailed-nav-link:hover .detailed-nav-icon {
            color: currentColor;
        }
        
        .detailed-nav-item.detailed-active .detailed-nav-link .detailed-nav-icon {
            color: white;
        }
        
        /* 选中项样式 */
        .detailed-nav-item.detailed-active .detailed-nav-link {
            background: linear-gradient(135deg, #5c7cfa 0%, #4263eb 100%);
            color: white !important;
            box-shadow: 0 5px 15px rgba(92, 124, 250, 0.25);
        }
        
        .detailed-nav-link:hover {
            color: #5c7cfa;
        }
        
        .detailed-nav-link::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #5c7cfa, #4263eb);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .detailed-nav-link:hover::after {
            width: 60%;
        }
        
        /* 汉堡菜单 - 移到左边 */
        .detailed-hamburger {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 30px;
            position: relative;
            z-index: 100;
            order: -1;
            margin-right: 15px;
        }
        
        .detailed-hamburger span {
            display: block;
            position: absolute;
            height: 4px;
            width: 100%;
            background: #5c7cfa;
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.3s ease;
        }
        
        .detailed-hamburger span:nth-child(1) {
            top: 0;
        }
        
        .detailed-hamburger span:nth-child(2) {
            top: 13px;
            width: 85%;
        }
        
        .detailed-hamburger span:nth-child(3) {
            top: 26px;
        }
        
        /* 汉堡菜单激活状态 */
        .detailed-hamburger.detailed-active span {
            background: #4263eb;
        }
        
        .detailed-hamburger.detailed-active span:nth-child(1) {
            top: 13px;
            transform: rotate(135deg);
        }
        
        .detailed-hamburger.detailed-active span:nth-child(2) {
            opacity: 0;
            left: -30px;
        }
        
        .detailed-hamburger.detailed-active span:nth-child(3) {
            top: 13px;
            transform: rotate(-135deg);
        }
        
        /* 移动端菜单样式 */
        @media (max-width: 992px) {
            .detailed-nav-container {
                padding: 0 30px;
                justify-content: flex-start;
                position: relative;
                min-height: 80px;
            }
            
            .detailed-hamburger {
                display: block;
                margin-right: 15px;
                order: -1;
            }
            
            .detailed-nav-menu {
                position: absolute;
                top: 100%; 
                left: 0;
                width: 100%;
                flex-direction: column;
                background: #fdfdfe;
                padding: 15px 0;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                            opacity 0.4s ease;
                z-index: 99;
                border-radius: 0 0 15px 15px;
                gap: 0;
                opacity: 0;
                visibility: hidden;
                border-top: 1px solid rgba(92, 124, 250, 0.15);
                overflow: visible;
            }
            
            .detailed-nav-menu.detailed-active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .detailed-nav-item {
                width: 100%;
                text-align: center;
                padding: 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .detailed-nav-item:last-child {
                border-bottom: none;
            }
            
            .detailed-nav-link {
                padding: 18px 25px;
                margin: 0 20px;
                border-radius: 8px;
                transition: all 0.2s ease;
                justify-content: center;
            }
            
            .detailed-nav-link:hover {
                background: rgba(92, 124, 250, 0.08);
            }
            
            .detailed-nav-link::after {
                display: none;
            }
            
            .detailed-nav-item.detailed-active .detailed-nav-link {
                margin: 0 20px;
                box-shadow: 0 4px 12px rgba(92, 124, 250, 0.2);
            }
            
            /* 移动端图标显示优化 */
            .detailed-nav-icon {
                display: inline-block;
                margin-right: 12px;
                font-size: 20px;
            }
            
            .detailed-nav-link:active {
                transform: scale(0.96);
            }
            
            /* 调整body的padding-top */
            body {
                padding-top: 0;
            }
            
            .detailed-logo {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                margin: 0;
            }
            
            /* 移动端LOGO尺寸优化 - 缩小LOGO */
            .detailed-logo-icon {
                width: 45px; /* 原50px */
                height: 45px; /* 原50px */
            }
            
            .detailed-logo-text {
                font-size: 24px; /* 原28px */
            }
        }
        
        /* 修复移动端菜单高度问题 */
        @media (max-width: 992px) {
            .detailed-navbar {
                overflow: visible;
                transition: border-radius 0.3s ease;
            }
            
            .detailed-navbar.detailed-menu-expanded {
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }
        }

        /* 更小屏幕尺寸调整 */
        @media (max-width: 768px) {
            .detailed-logo-icon {
                width: 40px; /* 进一步缩小 */
                height: 40px;
            }
            
            .detailed-logo-text {
                font-size: 20px; /* 进一步缩小 */
            }
        }
        
        @media (max-width: 576px) {
            .detailed-nav-container {
                min-height: 70px; /* 减小导航栏高度 */
            }
            
            .detailed-logo-icon {
                width: 36px; /* 再次缩小 */
                height: 36px;
            }
            
            .detailed-logo-text {
                font-size: 18px; /* 再次缩小 */
            }
        }
        
        @media (max-width: 400px) {
            .detailed-logo-text {
                display: none; /* 在超小屏幕上隐藏文字 */
            }
            
            .detailed-logo {
                gap: 0; /* 移除图标和文字间距 */
            }
            
            .detailed-hamburger {
                margin-right: 10px; /* 调整间距 */
            }
        }

        /* 页面内容样式 */
        .singup-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 2rem 0;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            margin-top: 100px;
        }
        
        .singup-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
            z-index: 0;
        }
        
        .singup-header-content {
            position: relative;
            z-index: 1;
            max-width: var(--page-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .singup-h1 {
            font-size: 2.8rem;
            margin-bottom: 0.8rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            font-weight: 600;
        }
        
        .singup-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 1.5rem;
        }
        
        .singup-container {
            max-width: var(--page-width);
            margin: 2.5rem auto;
            padding: 0 20px;
        }
        
        /* 推荐板块 */
        .singup-highlight {
            background: linear-gradient(135deg, #f6e58d 0%, #ffbe76 100%);
            padding: 30px;
            border-radius: 12px;
            margin: 2rem 0;
            color: #333;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .singup-highlight::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            z-index: 0;
        }
        
        .singup-highlight-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }
        
        .singup-highlight h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }
        
        .singup-highlight p {
            margin-bottom: 1.5rem;
            max-width: 600px;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .singup-highlight-btn {
            background: var(--accent);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(234, 67, 53, 0.3);
        }
        
        .singup-highlight-btn:hover {
            background: #d33426;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(234, 67, 53, 0.4);
        }
        
        .singup-highlight-image {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .singup-highlight-image i {
            font-size: 8rem;
            color: rgba(234, 67, 53, 0.15);
        }
        
        /* 竞赛卡片 */
        .singup-competition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 1rem;
            position: relative;
        }
        
        .singup-competition-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .singup-competition-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .singup-card-header {
            padding: 20px 20px 10px;
            border-bottom: none;
        }
        
        .singup-card-category {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 12px;
            font-weight: 500;
        }
        
        .summary-category {
            background: rgba(66, 133, 244, 0.1);
            color: var(--summary);
            border: 1px solid rgba(66, 133, 244, 0.2);
        }
        
        .nature-category {
            background: rgba(11, 128, 67, 0.1);
            color: var(--nature);
            border: 1px solid rgba(11, 128, 67, 0.2);
        }
        
        .humanities-category {
            background: rgba(142, 36, 170, 0.1);
            color: var(--humanities);
            border: 1px solid rgba(142, 36, 170, 0.2);
        }
        
        .arts-category {
            background: rgba(230, 124, 115, 0.1);
            color: var(--arts);
            border: 1px solid rgba(230, 124, 115, 0.2);
        }
        
        .singup-card-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 600;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            white-space: nowrap;
            overflow: hidden;
        }
        
        .singup-card-body {
            padding: 0 20px 15px;
            flex-grow: 1;
        }
        
        .singup-card-info {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 15px;
        }
        
        .singup-info-item {
            display: flex;
            align-items: flex-start;
            color: #555;
        }
        
        .singup-info-item i {
            margin-right: 12px;
            margin-top: 4px;
            min-width: 20px;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }
        
        .summary-item i {
            color: var(--summary);
        }
        
        .nature-item i {
            color: var(--nature);
        }
        
        .humanities-item i {
            color: var(--humanities);
        }
        
        .arts-item i {
            color: var(--arts);
        }
        
        .singup-info-text {
            flex: 1;
        }
        
        .singup-info-text strong {
            color: #333;
            font-weight: 500;
            display: block;
            margin-bottom: 4px;
        }
        
        .singup-card-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 20px;
            background: #f9f9f9;
            border-top: 1px solid #eee;
        }
        
        .singup-time-badge {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .singup-time-badge.enrolling {
            background: rgba(52, 168, 83, 0.1);
            color: var(--secondary);
        }
        
        .singup-time-badge.closed {
            background: rgba(234, 67, 53, 0.1);
            color: var(--accent);
        }
        
        .singup-time-badge.upcoming {
            background: rgba(251, 188, 5, 0.15);
            color: #e6a700;
        }
        
        /* 回到顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 110px; /* 位置下移 */
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: none;
            z-index: 999;
            transition: all 0.3s ease;
            opacity: 1;
            visibility: hidden;
            transform: translateY(20px);
        }
        
        .back-to-top.visible {
            visibility: visible;
            transform: translateY(0);
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #5c7cfa 0%, #4263eb 100%);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            transform: translateY(-3px);
        }
        
        /* 报名咨询按钮 - 绿色渐变胶囊形状 */
        .consult-button {
            position: fixed;
            bottom: 30px; /* 保持在底部 */
            right: 30px;
            padding: 14px 24px;
            border-radius: 30px; /* 胶囊形状 */
            background: linear-gradient(135deg, var(--green), var(--light-green));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(11, 128, 67, 0.5);
            border: none;
            z-index: 998;
            transition: all 0.3s ease;
            overflow: hidden;
            animation: pulse-green 2s infinite;
        }
        
        .consult-button i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .consult-button:hover {
            transform: scale(1.05);
            box-shadow: 0 7px 25px rgba(11, 128, 67, 0.7);
            animation: none;
        }
        
        /* 绿色脉冲动画 */
        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(11, 128, 67, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(11, 128, 67, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(11, 128, 67, 0);
            }
        }
        
        /* 新增遮罩层样式 */
        .competition-mask {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(to top, #f5f7fa, rgba(245, 247, 250, 0.8), transparent);
            z-index: 5;
            pointer-events: none;
        }
        
        .consult-more-btn {
            position: absolute;
            bottom: 100px;
            left: 50%;
            justify-content: center; /* 水平居中（主轴居中） */
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 12px 30px;
            min-width: 120px; /* 设置最小宽度 */
            width: auto; /* 默认自动宽度 */
            border-radius: 30px;
            font-weight: bold;
            font-size: 16px;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(66, 99, 235, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .consult-more-btn:hover {
            transform: translateX(-50%) scale(1.05);
            box-shadow: 0 7px 20px rgba(66, 99, 235, 0.6);
        }
        
        .competition-container {
            position: relative;
            overflow: hidden;
            max-height: 1600px; /* 桌面端最大高度 */
        }
        
        /* ============ 成果展示轮播图（修改为横向滚动） ============ */
        .honor-section {
            padding: 50px 20px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 横向滚动容器 */
        .horizontal-scroll-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
        }
        
        .scroll-wrapper {
            display: flex;
            animation: scroll 30s linear infinite;
            width: max-content; /* 根据内容宽度自适应 */
            min-width: 100%;
        }
        
        .honor-item {
            flex: 0 0 auto;
            width: 300px; /* 固定宽度 */
            margin: 0 15px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .honor-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        
        .honor-title {
            background: white;
            padding: 15px;
            text-align: center;
            font-weight: 600;
            font-size: 1.2rem;
            color: var(--dark);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%); /* 移动一半距离实现无缝滚动 */
            }
        }
        
        .scroll-wrapper:hover {
            animation-play-state: paused;
        }
        
        /* 移动端适配 */
        @media (max-width: 992px) {
            .honor-item {
                width: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .honor-item {
                width: 200px;
            }
            
            .honor-image {
                height: 160px;
            }
        }
        
        @media (max-width: 576px) {
            .honor-item {
                width: 180px;
                margin: 0 10px;
            }
            
            .honor-image {
                height: 140px;
            }
            
            .honor-title {
                font-size: 1rem;
                padding: 10px;
            }
        }
        
        /* ============ 新增的介绍页面样式 ============ */
        /* 定义部分 - 无边框阴影 */
        .definition {
            margin: 60px 0;
        }
        
        .definition-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .definition-header h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .definition-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .definition-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            transition: var(--transition);
            text-align: center;
            position: relative;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            color: var(--secondary);
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary);
            font-family: 'Quicksand', sans-serif;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* 指南部分 - 无边框阴影 */
        .guide {
            margin: 60px 0;
        }
        
        .guide-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .guide-header h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .guide-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .guide-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .guide-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            counter-reset: step-counter;
        }
        
        .step-card {
            background: white;
            border-radius: 12px;
            padding: 35px 25px;
            position: relative;
            counter-increment: step-counter;
            transition: var(--transition);
            min-height: 220px;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
        }
        
        .step-card:before {
            content: counter(step-counter);
            position: absolute;
            top: -20px;
            left: 25px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            font-family: 'Quicksand', sans-serif;
        }
        
        .step-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 1.3rem;
            font-family: 'Quicksand', sans-serif;
        }
        
        .step-card p {
            color: #555;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .guide-download {
            text-align: center;
            margin-top: 40px;
        }
        
        .guide-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
            font-family: 'Quicksand', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .guide-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
        }
        
        /* FAQ部分 - 无边框阴影 */
        .faq-section {
            margin: 60px 0;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .faq-header h2 {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 15px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .faq-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .faq-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            padding: 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--transition);
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .faq-question {
            padding: 15px 0;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            font-size: 1.05rem;
            font-family: 'Quicksand', sans-serif;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: #555;
            line-height: 1.7;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 10px;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--primary);
            min-width: 20px;
            text-align: center;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 行动号召 - 通栏显示 */
        .cta-section {
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            padding: 80px 0;
            margin: 0;
        }
        
        .cta-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            font-family: 'Quicksand', sans-serif;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin: 0 auto 30px;
            opacity: 0.95;
            max-width: 700px;
            line-height: 1.7;
        }
        

        
        /* 移动端优化 */
        @media (max-width: 992px) {
            .detailed-nav-container {
                padding: 0 30px;
            }
            
            .detailed-hamburger {
                display: block;
            }
            
            /* 页面内容移动端优化 */
            .singup-highlight {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }
            
            .singup-highlight-content {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .singup-highlight-image {
                margin-top: 20px;
            }
            
            .singup-highlight-image i {
                font-size: 6rem;
            }
            
            .singup-competition-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .consult-more-btn {
                width: 60%;
                max-width: 65%;
                padding: 12px 20px;
                font-size: 15px;
                box-sizing: border-box;
                margin: 0 auto; /* 水平居中 */
            }
            
            /* 新增部分响应式 */
            .features {
                grid-template-columns: 1fr;
            }
            
            .guide-steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .step-card {
                min-height: auto;
            }
            
            .definition, .guide, .faq-section {
                padding: 0;
            }
            
            .definition-header h2, .guide-header h2, .faq-header h2 {
                font-size: 1.8rem;
            }
            
            .cta-section {
                padding: 60px 0;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .detailed-nav-container {
                min-height: 70px;
            }
            
            .singup-h1 {
                font-size: 1.8rem;
                padding: 0 10px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
                padding: 0 15px;
            }
            
            .singup-highlight {
                padding: 20px 15px;
            }
            
            .singup-highlight h2 {
                font-size: 1.5rem;
            }
            
            .singup-highlight-btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            .singup-card-title {
                font-size: 1.15rem;
            }
            
            .singup-info-item {
                gap: 8px;
            }
            
            .singup-info-item i {
                margin-right: 8px;
                font-size: 1rem;
            }
            
            /* 更小屏幕调整 */
            .singup-header {
                margin-top: 70px;
                padding: 1.2rem 0;
            }
            
            .guide-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .cta-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 400px) {
            .singup-card-footer {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            .consult-button {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        /* 页脚样式 */
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
        }

        .copyright {
            padding: 20px 0;
            font-size: 0.85rem;
            color: white;
            text-align: center;
            background: rgba(0, 0, 0, 0.15);
        }