        :root {
            --primary-color: #1a3a6d;
            --primary-light: #e6f2ff;
            --secondary-color: #f5f7fa;
            --accent-color: #ff6b00;
            --text-color: #333;
            --light-text: #666;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: var(--secondary-color);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width:1400px;
            padding: 50px 0px;
            margin:50px auto;
            background-color: var(--white);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: var(--shadow);
            border-radius: 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .section-header h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        

        .section-header p {
            color: var(--light-text);
            max-width: 700px;
            margin: 0px auto;
        }
        
        section#about{
            background: var(--secondary-color);
        }
        /* 卡片样式 */
        .card {
            max-width:1200px;
            margin:0px auto;
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin:0px auto;
        }
        
        .card h3 {
            color: var(--primary-color);
            margin: 20px 0;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .card h3 i {
            margin-right: 10px;
            background-color: rgba(26, 58, 109, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .card p{
            font-size: 1.2rem;
            line-height:1.6;
        }
        .card p b{
            color:var(--primary-color);
        }
        /* 条件列表 */
        .requirements-list {
            list-style: none;
            display: flex;
            gap:30px;
        }
        
        .requirements-list li {
            flex:1;
            padding: 0  30px;
            position: relative;
            height:200px;
            line-height: 200px;
            background:var(--primary-color);
            color:var(--white);
            align-items: center;
            justify-content: center;
            place-items: center;
            text-align:center;
        }
        
        .requirements-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 15px;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .requirements-list.school li{
            background-size:cover;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor:pointer;
        }
        .requirements-list.school li:nth-child(1){
            background-image:url(../images/xiaoqu1.jpg);
        } 
       .requirements-list.school li:nth-child(2){
            background-image:url(../images/xiaoqu2.jpg);
        } 
       .requirements-list.school li:nth-child(3){
            background-image:url(../images/xiaoqu3.jpg);
        } 
        .requirements-list.school li:hover{
            transform: translateY(-10px);
        }
        

        
        /* 报名按钮 */
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
            cursor: pointer;
            margin-top: 20px;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .btn-lg {
            padding: 16px 40px;
            font-size: 1.2rem;
        }
        
        .cta-section {
            text-align: center;
            padding: 80px 0;
            background: var(--primary-color);
            color: var(--primary-color);
        }
        
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color:var(--white);
            font-weight:300;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-section .container{
            background:none;
            padding: 0 0;
            box-shadow:none;
        }
        .btn-accent {
            background: var(--white);
            color: var(--primary-color);
            border:0;
            width:300px;
            border-radius: 10px;
            font-weight:600;
        }
        
        .btn-accent:hover {
            background: var(--accent-color);
            color: var(--white);
        }
        .btn-accent span{
            font-size: 1rem;
            display:block;
            font-weight:300;
        }
        /* Swiper样式 */
        .swiper-school {
            position:relative;
        }
        .swiper-container {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: var(--shadow);
            position:relative;
        }
        
        .swiper-slide {
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .swiper-slide:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow);
        }
        .swiper-pagination-bullet{

        }
        
        .swiper-pagination-bullet-active {
            background: linear-gradient(to right, #0F62FE, #70BE58);
            width:40px;
            border-radius: 4px;
        }
        
        .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
            bottom:-30px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .swiper-container {
                height: 300px;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                max-width: 100%;
                width: 100%;
            }
        }
        

        
        /* 特色卡片 */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            max-width:1200px;
            margin:0px auto;
        }
        
        .feature-card {
            background: var(--secondary-color);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--white);
        }
        
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* 考试内容表格 */
        .exam-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .exam-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .exam-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
        }
        
        .exam-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .exam-table tr:hover {
            background-color: #f1f5ff;
        }
        
        /* 选项卡样式 */
        .tabs-container {
            margin-top: 40px;
            border-radius: 16px;
            overflow: hidden;
            max-width:1200px;
            margin:0px auto;
            margin-top:50px;
        }
        
        .tabs-header {
            display: flex;
            background: var(--primary-color);
            border-radius: 16px 16px 0 0;
            overflow-x: auto;
        }
        
        .tab-btn {
            flex: 1;
            min-width: 160px;
            padding: 20px 10px;
            text-align: center;
            background: var(--primary-color);
            border: none;
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }
        
        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .tab-btn.active {
            color: var(--white);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .tab-btn.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
        }
        
        .tabs-content {
            background: var(--primary-light);
            padding: 40px;
            border-radius: 0 0 16px 16px;
        }
        
        .tab-pane {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .tab-pane.active {
            display: block;
        }
        
        .tab-content-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .tab-number {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .tab-title {
            font-size: 1.6rem;
            color: var(--primary);
        }
        
        .tab-details {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        
        .tab-image {
            display:none;
            flex: 1;
            min-width: 300px;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .tab-info {
            flex: 1;
            min-width: 300px;
        }
        
        .tab-info h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .tab-info ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .tab-info li {
            padding: 10px 0 10px 30px;
            position: relative;
        }
        
        .tab-info li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 10px;
            color: var(--accent);
            font-weight: bold;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .tabs-header {
                flex-wrap: nowrap;
                overflow-x: auto;
            }
            
            .tab-btn {
                min-width: 140px;
                font-size: 1rem;
                padding: 15px 5px;
            }
            
            .tabs-content {
                padding: 25px 20px;
            }
            
            .tab-details {
                flex-direction: column;
            }
            
            .tab-image {
                height: 250px;
            }
        }
        
