 :root {
            --primary: #128FE8;
            --primary-dark: #0066CC;
            --secondary: #f8fafc;
            --accent: #f59e0b;
            --dark: #1e293b;
            --light: #f1f5f9;
            --text: #334155;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }
        
        .top-bar {
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s;
        }
        
        .top-bar a:hover {
            color: var(--accent);
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 12px 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 26px;
        }
        
        .navbar-brand span {
            color: var(--accent);
        }
        
        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            padding: 8px 5px !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
        }
        
        .btn-accent {
            background: linear-gradient(135deg, var(--accent), #e67e22);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
            color: white;
        }
        
        /* 页面标题样式 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }
        
        .page-header h1 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
            padding: 0;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* 通用部分样式 */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 20px auto 0;
            border-radius: 2px;
        }
        
        /* 卡片样式 */
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        /* 条件卡片样式 */
        .condition-card {
            text-align: center;
            padding: 30px 20px;
            height: 100%;
            border-left: 4px solid var(--primary);
        }
        
        .condition-card i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .condition-card h4 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* 流程步骤样式 */
        .process-step {
            position: relative;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            z-index: 1;
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }
        
        .process-content {
            margin-top: 15px;
        }
        
        /* 报名入口样式 */
        .entry-card {
            text-align: center;
            padding: 40px 30px;
            background: linear-gradient(135deg, var(--secondary) 0%, #e6f0ff 100%);
            border-radius: 12px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .entry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .entry-card i {
            font-size: 60px;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        .entry-card h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        /* FAQ样式 */
        .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
        }
        
        .faq-question {
            background: var(--primary);
            color: white;
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
        }
        
        .faq-question:after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 20px;
            transition: all 0.3s;
        }
        
        .faq-question.active:after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            background: white;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
        
        /* CTA区域样式 */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 15px;
        }
        
        /* 时间轴样式 */
        .timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 50%;
            padding-right: 40px;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 40px;
            padding-right: 0;
        }
        
        .timeline-content {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .timeline-content:after {
            content: '';
            position: absolute;
            top: 30px;
            right: -10px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
        }
        
        .timeline-item:nth-child(even) .timeline-content:after {
            right: auto;
            left: -10px;
        }
        
        .timeline-dot {
            position: absolute;
            top: 30px;
            right: -13px;
            width: 26px;
            height: 26px;
            background: var(--primary);
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            right: auto;
            left: -13px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
                padding-left: 70px;
            }
            
            .timeline-content:after {
                right: auto;
                left: -10px;
            }
            
            .timeline-dot {
                right: auto;
                left: 17px;
            }
            
            .timeline-item:nth-child(even) .timeline-dot {
                left: 17px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .page-header {
                padding: 60px 0 40px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
        }
        
        /* 页脚样式 */
        footer {
            background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
            color: white;
            padding: 80px 0 30px;
        }
        
        footer h5 {
            color: #fff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 600;
        }
        
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
            margin-bottom: 12px;
            display: block;
        }
        
        footer a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .contact-info {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 15px;
            color: var(--accent);
            font-size: 18px;
            width: 20px;
        }
        
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 25px;
            margin-top: 60px;
            text-align: center;
            color: #94a3b8;
        }