﻿*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a
{
    text-decoration: none;
    color: #2c3e4e;
}

a:hover, a.active
{
    color: var(--primary-deep);
}

body
{
    font-family: system-ui, -apple-system, 'Segoe UI' , Roboto, 'Helvetica Neue' , Helvetica, 'Noto Sans' , sans-serif;
    background-color: #f0f7ff;
    color: #1a2c3e;
    line-height: 1.5;
}

:root
{
    --primary-light: #e6f2fc;
    --primary-mid: #7ab3c8;
    --primary-deep: #2c7da0;
    --accent: #1f6390;
    --gray-light: #f8fafc;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
}

.container
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container1
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: Arial, "Microsoft YaHei" , sans-serif;
}
/* 头部导航 与首页风格一致 */
.navbar
{
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1
{
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f6390, #4a9fc7);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.logo span
{
    font-size: 0.85rem;
    color: #5c7f8c;
    display: block;
    font-weight: normal;
}

.nav-links
{
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a
{
    text-decoration: none;
    font-weight: 500;
    color: #2c3e4e;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active
{
    color: var(--primary-deep);
}

.menu-toggle
{
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-deep);
}

/* 页面主内容 */
.page-header
{
    background: linear-gradient(135deg, #cde6f5, #b3d9ef);
    padding: 48px 0 40px;
    text-align: center;
    margin-bottom: 24px;
}

.page-header h1
{
    font-size: 2.4rem;
    color: #134b6b;
    margin-bottom: 12px;
}

.page-header p
{
    font-size: 1.1rem;
    color: #2a637f;
    max-width: 700px;
    margin: 0 auto;
}

/* 通用section */
.section
{
    padding: 50px 48px 0px;
    border-bottom: 1px solid rgba(122, 179, 200, 0.2);
}

.section:last-child
{
    border-bottom: none;
}

.section-title
{
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a4b6e;
    position: relative;
}

.section-title:after
{
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary-deep);
    margin: 12px auto 0;
    border-radius: 4px;
}


/* 视频区域 */
.video-wrapper
{
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(122, 179, 200, 0.3);
}

.video-container
{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-container video
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption
{
    text-align: center;
    padding: 16px;
    background: #f9fdfe;
    color: #3f6b86;
    font-size: 0.9rem;
}

/* 荣誉资质 卡片网格 */
.honor-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.honor-card
{
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s;
    text-align: center;
    padding: 28px 20px 24px;
    border: 1px solid #e2eff8;
}

.honor-card:hover
{
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.honor-icon
{
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.honor-card h3
{
    font-size: 1.35rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.honor-card p
{
    color: #4f6f87;
    font-size: 0.9rem;
}

.honor-badge
{
    display: inline-block;
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-top: 16px;
}

/* 形象照片墙 */
.gallery-grid1
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.gallery-item1
{
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item1:hover
{
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-img1
{
    width: 100%;
    height: 200px;
    display: block;
    background: #cde0ea;
    transition: transform 0.4s;
}

.gallery-caption1
{
    padding: 14px 16px;
    background: white;
    font-weight: 500;
    color: #2c607b;
    text-align: center;
    border-top: 1px solid #eaf3fa;
}
/* 形象照片墙 */
.gallery-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.gallery-item
{
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover
{
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-img
{
    width: 100%;
    height: 200px;
    display: block;
    background: #cde0ea;
    transition: transform 0.4s;
}

.gallery-caption
{
    padding: 14px 16px;
    background: white;
    font-weight: 500;
    color: #2c607b;
    text-align: center;
    border-top: 1px solid #eaf3fa;
}

/* 公司深度介绍区域 (增加文化/团队照片融合) */
.about-deep
{
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-top: 16px;
}

.about-deep p
{
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.stats-row
{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    margin: 40px 0 20px;
}

.stat-circle
{
    text-align: center;
    background: var(--primary-light);
    border-radius: 48px;
    padding: 18px 28px;
    min-width: 140px;
}

.stat-number-lg
{
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-deep);
}

/* 面包屑或返回首页按钮 */
.back-link
{
    display: inline-block;
    margin-bottom: 24px;
    color: var(--primary-deep);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover
{
    text-decoration: underline;
}

/* 页脚 */
.footer
{
    background-color: #ffffffd9;
    border-top: 1px solid #cde3ef;
    padding: 40px 0 24px;
    margin-top: 40px;
}

.footer-content
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    line-height: 30px;
}

.copyright
{
    text-align: center;
    margin-top: 32px;
    font-size: 0.8rem;
    color: #7a98ae;
}

@media (max-width: 768px)
{
    .nav-container
    {
        flex-wrap: wrap;
    }
    .menu-toggle
    {
        display: block;
    }
    .nav-links
    {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 20px 0 10px;
        text-align: center;
    }
    .nav-links.active
    {
        display: flex;
    }
    .page-header h1
    {
        font-size: 1.9rem;
    }
    .section-title
    {
        font-size: 1.6rem;
    }
    .honor-grid, .gallery-grid
    {
        grid-template-columns: 1fr;
    }
    .about-deep
    {
        padding: 24px;
    }
}

/* 简易模态框 查看大图 */
.modal
{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.modal img
{
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
}
.modal-close
{
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

/* 特色院校推荐区域 (重点展示) */
.featured-school
{
    background: linear-gradient(135deg, #e9f3fa, #ddecf5);
    border-radius: 32px;
    padding: 32px;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.featured-img
{
    flex: 1;
    min-width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
}

.featured-info
{
    flex: 2;
}

.featured-info h3
{
    font-size: 1.7rem;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.featured-info p
{
    color: #2c4a66;
    margin-bottom: 16px;
}
.btn-detail
{
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--primary-deep);
    color: var(--primary-deep);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
    margin-top: 12px;
}

.btn-detail:hover
{
    background: var(--primary-deep);
    color: white;
}

/* 学校卡片网格 */
.school-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.school-card
{
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #e2eff8;
}

.school-card:hover
{
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.school-banner
{
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.school-banner .school-tag
{
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(44, 125, 160, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.school-content
{
    padding: 20px 22px 24px;
}

.school-content h3
{
    font-size: 1.4rem;
    color: var(--primary-deep);
    margin-bottom: 8px;
}

.school-meta
{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 12px 0;
    font-size: 0.8rem;
    color: #6f8ea3;
}

.school-meta span
{
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
}

.school-desc
{
    color: #4f6f87;
    line-height: 1.5;
    margin: 12px 0;
    font-size: 0.9rem;
}

.school-features
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.feature-badge
{
    background: #eef3fc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-deep);
}

.btn-detail
{
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--primary-deep);
    color: var(--primary-deep);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
    margin-top: 12px;
}

.btn-detail:hover
{
    background: var(--primary-deep);
    color: white;
}
/* 招生简章表格区域 */
.enrollment-table-wrapper
{
    overflow-x: auto;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

.enrollment-table
{
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.enrollment-table th, .enrollment-table td
{
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid #e2eff8;
}

.enrollment-table th
{
    background: var(--primary-light);
    color: var(--primary-deep);
    font-weight: 600;
}

.enrollment-table tr:hover
{
    background: #f9fdfe;
}

/* 报名流程 */
.steps-container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 32px 0;
}

.step-item
{
    flex: 1;
    min-width: 180px;
    text-align: center;
    background: white;
    border-radius: 24px;
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2eff8;
}

.step-number
{
    width: 48px;
    height: 48px;
    background: var(--primary-deep);
    color: white;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step-title
{
    font-weight: 700;
    color: var(--primary-deep);
    margin-bottom: 8px;
}

/* 常见问题 */
.faq-item
{
    background: white;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #e2eff8;
}

.faq-question
{
    padding: 18px 24px;
    background: #f9fdfe;
    font-weight: 600;
    color: #1a4b6e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover
{
    background: var(--primary-light);
}

.faq-answer
{
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #4f6f87;
    line-height: 1.6;
}

.faq-item.open .faq-answer
{
    padding: 18px 24px;
    max-height: 300px;
}

.faq-icon
{
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.faq-item.open .faq-icon
{
    transform: rotate(45deg);
}

/* 活动介绍 */
.intro-section
{
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--primary-light);
}

.intro-section h3
{
    font-size: 1.5rem;
    color: var(--primary-deep);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-section p
{
    color: #2c4a66;
    line-height: 1.8;
    margin-bottom: 16px;
}
/* 学员感言 */
.testimonial-section
{
    background: var(--primary-light);
    border-radius: 28px;
    padding: 32px;
    margin: 40px 0;
}

.testimonial-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.testimonial-card
{
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text
{
    font-style: italic;
    color: #2c4a66;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author
{
    font-weight: 600;
    color: var(--primary-deep);
}
