/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    color: white;
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    border-color: #2563eb;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* 头部样式 */
.header {
    background: linear-gradient(135deg, #001529, #002140);
    box-shadow: 0 2px 20px rgba(0, 21, 41, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    color: #1890ff;
    font-size: 24px;
    font-weight: 600;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: flex;
    align-items: center;
    height: 40px;
}

.nav-list a:hover {
    color: #1890ff;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #1890ff;
}

/* 移动端菜单按钮样式已迁移到homepage.css */

/* 主要内容区域 */
main {
    margin-top: 80px;
}

/* 首页特殊处理：去除顶部间距 */
body.homepage main {
    margin-top: 0;
}

/* 英雄区块 */
.hero {
    background: linear-gradient(135deg, #0a0f23 0%, #1a2447 30%, #2563eb 70%, #1d4ed8 100%);
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-bg {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(29, 78, 216, 0.4) 50%, rgba(59, 130, 246, 0.3) 100%);
    border-radius: 24px;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        opacity: 0.9; 
    }
}

/* 功能特色区块 */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    will-change: transform;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 48px rgba(37, 99, 235, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 
        0 12px 24px rgba(37, 99, 235, 0.3),
        0 4px 8px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    will-change: transform;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    z-index: -1;
}

.feature-item:hover .feature-icon {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 
        0 12px 24px rgba(37, 99, 235, 0.3),
        0 4px 8px rgba(37, 99, 235, 0.2);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* 课程区块 */
.courses {
    padding: 100px 0;
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.course-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.course-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    position: relative;
}

.course-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 12px;
}

.course-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-info {
    display: flex;
    gap: 15px;
}

.course-info span {
    padding: 6px 12px;
    background: #f0f9ff;
    color: #1890ff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* 统计数据区块 */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #001529, #002140);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1890ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* 联系区块 */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #333;
}

.contact-item i {
    width: 20px;
    color: #1890ff;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 页脚样式 */
.footer {
    background: #001529;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #1890ff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #1890ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* 页面级样式 */
.page-hero {
    background: linear-gradient(135deg, #001529, #002140);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 24px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.content-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.base-image {
    height: 400px;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.point i {
    color: #1890ff;
    font-size: 18px;
}

/* 公司使命愿景样式 */
.company-mission {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon i {
    font-size: 32px;
    color: white;
}

.mission-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* 团队样式 */
.company-team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-avatar i {
    font-size: 32px;
    color: white;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 8px;
}

.position {
    color: #1890ff;
    font-weight: 500;
    margin-bottom: 16px;
}

.description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 发展历程时间轴 */
.company-achievements {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1890ff;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 50px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: calc(50% + 50px);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* 基地相关样式 */
.base-overview {
    padding: 100px 0;
    background: white;
}

.base-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1890ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.facilities {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.facility-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.facility-icon i {
    font-size: 32px;
    color: white;
}

.facility-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.facility-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* 环境样式 */
.environment {
    padding: 100px 0;
    background: white;
}

.environment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.environment-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
    margin-top: 32px;
}

.environment-text h3:first-child {
    margin-top: 0;
}

.environment-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.environment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(24, 144, 255, 0.12);
}

.feature-card i {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 12px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 位置信息样式 */
.location {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
    margin-top: 32px;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.transport-list {
    list-style: none;
    padding-left: 0;
}

.transport-list li {
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.transport-list strong {
    color: #001529;
}

.contact-info {
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.contact-item i {
    width: 20px;
    color: #1890ff;
}

.location-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1890ff;
    border: 2px dashed #b3e0ff;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 500;
}

/* 荣誉资质页面样式 */
.certifications {
    padding: 100px 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.cert-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.cert-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cert-logo i {
    font-size: 32px;
    color: white;
}

.cert-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.cert-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.cert-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f9ff;
    color: #1890ff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.honors {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.honor-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.honor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #faad14, #d48806);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.honor-icon i {
    font-size: 32px;
    color: white;
}

.honor-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.honor-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.honor-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff7e6;
    color: #d48806;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.quality-system {
    padding: 100px 0;
    background: white;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.quality-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
    margin-top: 32px;
}

.quality-text h3:first-child {
    margin-top: 0;
}

.quality-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.quality-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(24, 144, 255, 0.12);
}

.quality-item i {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 12px;
}

.quality-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 8px;
}

.quality-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.achievements-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #001529, #002140);
    color: white;
}

.achievements-stats .section-title {
    color: white;
}

.achievements-stats .section-title::after {
    background: linear-gradient(90deg, #1890ff, #096dd9);
}

/* 教育产品页面样式 */
.course-categories {
    padding: 60px 0;
    background: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-color: #1890ff;
    color: white;
}

.courses-showcase {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e8f4f8);
}

.course-level {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.course-level.beginner {
    background: #e6f7ff;
    color: #1890ff;
}

.course-level.intermediate {
    background: #fff7e6;
    color: #faad14;
}

.course-level.advanced {
    background: #f6ffed;
    color: #52c41a;
}

.course-price {
    font-size: 20px;
    font-weight: 700;
    color: #ff4d4f;
}

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.course-icon i {
    font-size: 32px;
    color: white;
}

.course-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #001529;
    margin: 0 20px 12px;
    text-align: center;
}

.course-card > p {
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
    text-align: center;
    font-size: 15px;
}

.course-info {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.info-item i {
    color: #1890ff;
    font-size: 16px;
}

.course-features {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 4px 8px;
    background: #f0f9ff;
    color: #1890ff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.course-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: linear-gradient(135deg, #096dd9, #0050b3);
    transform: translateY(-2px);
}

/* 学习路径样式 */
.learning-path {
    padding: 100px 0;
    background: white;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.path-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.path-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.path-icon i {
    font-size: 32px;
    color: white;
}

.path-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 24px;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #1890ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    text-align: left;
    color: #333;
    font-weight: 500;
}

.path-duration {
    background: #e6f7ff;
    color: #1890ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

/* 报名流程样式 */
.enrollment-process {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 32px;
    color: white;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 8px;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.process-arrow {
    color: #1890ff;
    font-size: 24px;
}

/* 培训认证页面样式 */
.vendor-certifications {
    padding: 100px 0;
    background: white;
}

.vendor-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.vendor-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.vendor-header {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e8f4f8);
    border-bottom: 2px solid #1890ff;
}

.vendor-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

.vendor-logo.huawei {
    background: linear-gradient(135deg, #ff4757, #ff3742);
}

.vendor-logo.cisco {
    background: linear-gradient(135deg, #0065bd, #004d8b);
}

.vendor-logo.redhat {
    background: linear-gradient(135deg, #ee0000, #cc0000);
}

.vendor-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #001529;
    margin-bottom: 8px;
}

.vendor-subtitle {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.cert-levels {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cert-level {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    padding: 30px;
    background: #fafafa;
    border-radius: 16px;
    border-left: 4px solid #1890ff;
}

.level-badge {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.level-badge.hcia, .level-badge.ccna, .level-badge.rhcsa {
    border: 3px solid #1890ff;
}

.level-badge.hcip, .level-badge.ccnp, .level-badge.rhce {
    border: 3px solid #faad14;
}

.level-badge.hcie, .level-badge.ccie, .level-badge.rhca {
    border: 3px solid #52c41a;
}

.level-name {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #001529;
    margin-bottom: 8px;
}

.level-desc {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.level-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.level-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.level-info li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #333;
    line-height: 1.5;
}

.level-info li::before {
    content: '•';
    color: #1890ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cert-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff4d4f;
    background: #fff2f0;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* 认证优势样式 */
.cert-advantages {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.advantage-icon i {
    font-size: 32px;
    color: white;
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 16px;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* 认证流程样式 */
.cert-process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1890ff;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-icon i {
    font-size: 28px;
    color: white;
}

.timeline-content {
    width: calc(50% - 50px);
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 50px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: calc(50% + 50px);
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* 成功案例样式 */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.story-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.story-avatar i {
    font-size: 24px;
    color: white;
}

.story-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #001529;
    margin-bottom: 4px;
}

.story-cert {
    color: #1890ff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 16px;
}

.story-text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    font-style: italic;
}

.story-result {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.result-tag {
    padding: 4px 8px;
    background: #f0f9ff;
    color: #1890ff;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 认证数据样式 */
.cert-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #001529, #002140);
    color: white;
}

.cert-stats .section-title {
    color: white;
}

.cert-stats .section-title::after {
    background: linear-gradient(90deg, #1890ff, #096dd9);
}

/* 导航活动状态 */
.nav-list a.active,
.dropdown-menu a.active {
    color: #1890ff !important;
}

/* 统一各页面主容器垂直间距，避免块间距不一致 */
section { padding-top: 60px; padding-bottom: 60px; }
main > .hero { padding: 0; }



/* 响应式设计 */
@media (max-width: 768px) {
    /* 移动端导航样式已迁移到homepage.css */
    
    .hero {
        min-height: 600px;
        padding: 40px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-bg {
        height: 300px;
        margin-top: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 60px;
    }
    
    .partner-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .partner-logos .logo {
        max-width: 280px;
        width: 100%;
    }
    
    /* 页面特定响应式 */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .content-image {
        order: -1;
    }
    
    .image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 500px;
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-bg {
        height: 250px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item,
    .course-item {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .nav-wrapper {
        padding: 12px 0;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    .partner-logos .logo {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    /* 确保所有卡片在小屏幕上有足够间距 */
    .features,
    .courses,
    .partners,
    .stats,
    .contact {
        padding: 60px 0;
    }
    
    .page-hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .page-hero-content p {
        font-size: 16px;
    }
}

/* ===== 全新人才服务页面样式 ===== */

/* 人才服务页面英雄区域 */
.talent-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 60%, #475569 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.talent-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

.talent-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.talent-hero .hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.talent-hero .hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
    display: block;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.floating-card:nth-child(1) {
    transform: translateX(-20px);
    animation: floatLeft 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    transform: translateX(20px);
    animation: floatRight 6s ease-in-out infinite 2s;
}

.floating-card:nth-child(3) {
    transform: translateX(-10px);
    animation: floatLeft 6s ease-in-out infinite 4s;
}

@keyframes floatLeft {
    0%, 100% { transform: translateX(-20px) translateY(0); }
    50% { transform: translateX(-20px) translateY(-15px); }
}

@keyframes floatRight {
    0%, 100% { transform: translateX(20px) translateY(0); }
    50% { transform: translateX(20px) translateY(-15px); }
}

.floating-card i {
    font-size: 32px;
    color: #10b981;
    margin-bottom: 16px;
}

.floating-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.floating-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* 核心优势 */
.talent-advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
}

.advantage-icon i {
    font-size: 36px;
    color: white;
}

.advantage-item:hover .advantage-icon {
    transform: rotate(10deg) scale(1.1);
}

.advantage-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.advantage-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
}

/* 服务流程 */
.talent-process {
    padding: 100px 0;
    background: white;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.process-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.process-arrow {
    color: #cbd5e1;
    font-size: 24px;
    margin: 0 10px;
}

/* 成功案例 */
.talent-success {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.success-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.success-item {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-item.featured {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.05);
}

.success-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #b45309);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.success-item.featured::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    transform: scaleX(1);
}

.success-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.success-item:hover::before {
    transform: scaleX(1);
}

.success-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.success-item.featured .success-avatar {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.success-avatar i {
    font-size: 32px;
    color: white;
}

.success-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-item.featured .success-info h3 {
    color: white;
}

.success-info .position {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 4px;
}

.success-item.featured .success-info .position {
    color: rgba(255, 255, 255, 0.9);
}

.success-info .company {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.success-item.featured .success-info .company {
    color: rgba(255, 255, 255, 0.8);
}

.salary-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.success-item.featured .salary-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.success-path {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.success-path .from,
.success-path .to {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* 合作企业 */
.talent-partners {
    padding: 100px 0;
    background: white;
}

.partners-showcase {
    margin-top: 60px;
}

.partner-tier {
    margin-bottom: 60px;
}

.partner-tier h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    margin-bottom: 30px;
}

.tier-companies {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-badge {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    min-width: 180px;
}

.company-badge.tier-1 {
    border: 2px solid #fbbf24;
}

.company-badge.tier-2 {
    border: 2px solid #94a3b8;
}

.company-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.company-badge i {
    font-size: 48px;
    margin-bottom: 16px;
}

.company-badge.tier-1 i {
    color: #f59e0b;
}

.company-badge.tier-2 i {
    color: #64748b;
}

.company-badge span {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

/* 立即咨询 */
.talent-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* 人才服务页面响应式设计 */
@media (max-width: 768px) {
    .talent-hero {
        padding: 80px 0 60px;
    }
    
    .talent-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .talent-hero .hero-content h1 {
        font-size: 36px;
    }
    
    .talent-hero .hero-content p {
        font-size: 16px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 28px;
    }
    
    .floating-card {
        padding: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-item {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 28px;
    }
    
    .advantage-item h3 {
        font-size: 20px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .success-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .success-item.featured {
        transform: none;
    }
    
    .tier-companies {
        gap: 20px;
    }
    
    .company-badge {
        min-width: 140px;
        padding: 20px;
    }
    
    .company-badge i {
        font-size: 36px;
    }
    
    .company-badge span {
        font-size: 16px;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-actions {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .talent-hero {
        padding: 60px 0 40px;
    }
    
    .talent-hero .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .floating-card {
        padding: 15px;
        margin: 0 20px;
    }
    
    .advantage-item {
        padding: 25px 15px;
    }
    
    .process-item {
        padding: 20px 15px;
    }
    
    .success-item {
        padding: 25px 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* ===== 全新考试服务页面样式 ===== */

/* 考试服务英雄区域 */
.exam-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #3730a3 60%, #4338ca 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.exam-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexgrid" width="28" height="24" patternUnits="userSpaceOnUse"><path d="M 14,2 L 22,7 L 22,17 L 14,22 L 6,17 L 6,7 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexgrid)"/></svg>');
    opacity: 0.8;
}

.exam-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.feature-tag i {
    color: #a855f7;
    font-size: 16px;
}

.hero-cta .btn-large {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.hero-cta .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.exam-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

.dashboard-stats {
    margin-bottom: 24px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.stat-value {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.dashboard-activity {
    margin-top: 24px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    flex-shrink: 0;
}

/* 认证体系 */
.exam-certifications {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.cert-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.cert-category {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-category.featured {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(67, 56, 202, 0.3);
}

.cert-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7, #8b5cf6, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cert-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.2);
}

.cert-category:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.3);
    transition: all 0.4s ease;
}

.cert-category.featured .cert-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.cert-icon i {
    font-size: 36px;
    color: white;
}

.cert-category:hover .cert-icon {
    transform: rotate(10deg) scale(1.1);
}

.cert-category h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cert-category.featured h3 {
    color: white;
}

.cert-category p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cert-category.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.cert-levels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.level-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.level-badge.hcia { background: #dbeafe; color: #3b82f6; }
.level-badge.hcip { background: #dcfce7; color: #16a34a; }
.level-badge.hcie { background: #fef3c7; color: #d97706; }
.level-badge.aws-basic { background: #fef3c7; color: #d97706; }
.level-badge.aws-pro { background: #fee2e2; color: #dc2626; }
.level-badge.ccna { background: #dbeafe; color: #3b82f6; }
.level-badge.ccnp { background: #dcfce7; color: #16a34a; }
.level-badge.rhcsa { background: #fee2e2; color: #dc2626; }
.level-badge.rhce { background: #fecaca; color: #991b1b; }

.cert-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}

.cert-stats .stat-item {
    text-align: center;
}

.cert-stats .number {
    font-size: 24px;
    font-weight: 700;
    color: #f59e0b;
    display: block;
    margin-bottom: 4px;
}

.cert-category.featured .cert-stats .number {
    color: #fbbf24;
}

.cert-stats .label {
    font-size: 12px;
    color: #64748b;
}

.cert-category.featured .cert-stats .label {
    color: rgba(255, 255, 255, 0.8);
}

/* 考试流程 */
.exam-process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1, #e2e8f0);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    border: 4px solid white;
}

.timeline-marker i {
    font-size: 36px;
    color: white;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.4);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.timeline-time {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

/* 考试环境 */
.exam-environment {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.env-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.env-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.env-text p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.env-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.env-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.env-feature i {
    font-size: 24px;
    color: #8b5cf6;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.feature-info p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.env-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.gallery-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.gallery-item.main {
    grid-row: 1 / -1;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
    border-color: #8b5cf6;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.image-placeholder i {
    font-size: 48px;
    color: #8b5cf6;
}

.gallery-item.main .image-placeholder i {
    font-size: 64px;
}

.image-placeholder span {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

/* 热门考试 */
.popular-exams {
    padding: 100px 0;
    background: white;
}

.exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.exam-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.exam-card.hot {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.exam-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.exam-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.exam-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.exam-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.exam-logo.huawei { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }
.exam-logo.aws { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.exam-logo.cisco { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }

.exam-logo i {
    font-size: 24px;
    color: white;
}

.exam-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.exam-info p {
    color: #64748b;
    font-size: 14px;
}

.exam-details {
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: #64748b;
    font-size: 14px;
}

.detail-row .value {
    color: #0f172a;
    font-weight: 600;
}

.exam-action .btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* 考试预约 */
.exam-booking {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.booking-header {
    text-align: center;
    margin-bottom: 48px;
}

.booking-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.booking-header p {
    color: #64748b;
    font-size: 16px;
}

.form-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.step.active .step-label {
    color: #0f172a;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-control {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 24px;
}

.form-actions .btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* FAQ样式 */
.exam-faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #8b5cf6;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.faq-question i {
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 考试服务页面响应式设计 */
@media (max-width: 768px) {
    .exam-hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .exam-dashboard {
        padding: 24px;
    }
    
    .cert-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cert-category.featured {
        transform: none;
    }
    
    .cert-icon {
        width: 70px;
        height: 70px;
    }
    
    .cert-icon i {
        font-size: 28px;
    }
    
    .cert-stats {
        gap: 20px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-marker {
        width: 80px;
        height: 80px;
    }
    
    .timeline-marker i {
        font-size: 28px;
    }
    
    .env-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .env-gallery {
        grid-template-columns: 1fr 1fr;
        height: 300px;
    }
    
    .gallery-item.main {
        grid-row: auto;
        grid-column: 1 / -1;
    }
    
    .exams-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-container {
        margin: 0 20px;
        padding: 32px 24px;
    }
    
    .booking-header h2 {
        font-size: 28px;
    }
    
    .form-steps {
        margin-bottom: 32px;
    }
    
    .form-steps::before {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .exam-hero {
        padding: 60px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        justify-content: center;
    }
    
    .exam-dashboard {
        padding: 20px;
    }
    
    .cert-category {
        padding: 30px 20px;
    }
    
    .cert-levels {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-marker {
        width: 70px;
        height: 70px;
    }
    
    .timeline-marker i {
        font-size: 24px;
    }
    
    .env-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-item {
        height: 120px;
    }
    
    .exam-card {
        padding: 24px 20px;
    }
    
    .booking-container {
        margin: 0 15px;
        padding: 24px 20px;
    }
    
    .booking-header h2 {
        font-size: 24px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* 服务流程时间线 */
.service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e6f7ff);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 20px;
    color: #001529;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    margin-bottom: 12px;
}

.timeline-duration {
    background: #f0f9ff;
    color: #1890ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* 联系表单样式 */
.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    color: #001529;
    margin-bottom: 16px;
}

.contact-info p {
    color: #666;
    margin-bottom: 32px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #52c41a;
}

.benefit-item i {
    font-size: 16px;
}

.benefit-item span {
    color: #333;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* 人才需求分析样式 */
.talent-demand {
    padding: 80px 0;
    background: white;
}

.demand-overview {
    margin-top: 60px;
}

.demand-intro {
    text-align: center;
    margin-bottom: 60px;
}

.demand-intro h3 {
    font-size: 28px;
    color: #001529;
    margin-bottom: 16px;
}

.demand-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.chart-container h4 {
    font-size: 20px;
    color: #001529;
    margin-bottom: 30px;
}

/* 饼图样式 */
.pie-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-segment {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid var(--color);
    background: rgba(24, 144, 255, 0.05);
}

.segment-label {
    font-weight: 500;
    color: #333;
}

/* 柱状图样式 */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bar-label {
    min-width: 80px;
    text-align: left;
    font-weight: 500;
    color: #333;
}

.bar-fill {
    height: 24px;
    border-radius: 12px;
    transition: width 0.8s ease;
    min-width: 20px;
}

.bar-value {
    min-width: 40px;
    text-align: right;
    font-weight: 500;
    color: #666;
}

/* 洞察卡片样式 */
.demand-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.insight-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
    border-radius: 16px;
    border: 1px solid rgba(24, 144, 255, 0.1);
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    font-size: 24px;
    color: white;
}

.insight-content h4 {
    font-size: 18px;
    color: #001529;
    margin-bottom: 8px;
}

.insight-content p {
    color: #666;
}

/* 就业明星增强样式 */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.story-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.tag {
    background: #f0f9ff;
    color: #1890ff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: linear-gradient(135deg, #1890ff, #096dd9);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(24, 144, 255, 0.3);
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* 企业展示增强样式 */
.companies-grid {
    transition: all 0.3s ease;
}

.company-item {
    transition: all 0.3s ease;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 12px 0;
}

.company-size,
.company-positions {
    font-size: 12px;
    color: #666;
}

.partnership-benefits {
    margin-top: 60px;
    text-align: center;
}

.partnership-benefits h3 {
    font-size: 28px;
    color: #001529;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.benefit-card i {
    font-size: 48px;
    color: #1890ff;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    color: #001529;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
}

/* 移动端响应式优化 */
@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demand-charts {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .demand-insights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .chart-container {
        padding: 20px;
    }
}

/* 考试服务页面专用样式 */

/* 考试类型展示 */
.exam-types {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e6f7ff);
}

.exam-categories {
    margin-top: 60px;
}

.exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.exam-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.exam-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
    border-color: #1890ff;
}

.exam-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.exam-logo i {
    font-size: 24px;
    color: white;
}

.exam-item h4 {
    font-size: 20px;
    color: #001529;
    margin-bottom: 8px;
}

.exam-item p {
    color: #666;
    margin-bottom: 16px;
}

.exam-details {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.exam-level,
.exam-duration,
.exam-price {
    background: #f0f9ff;
    color: #1890ff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.exam-price {
    background: #fff2e8;
    color: #fa8c16;
}

.exam-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.exam-tags .tag {
    background: #f6ffed;
    color: #52c41a;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 考试预约样式 */
.exam-booking {
    padding: 80px 0;
    background: white;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.booking-info h3 {
    font-size: 24px;
    color: #001529;
    margin-bottom: 30px;
}

.booking-requirements {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #1890ff;
}

.requirement-item i {
    font-size: 20px;
    color: #1890ff;
    margin-top: 4px;
    flex-shrink: 0;
}

.requirement-item h4 {
    font-size: 16px;
    color: #001529;
    margin-bottom: 4px;
}

.requirement-item p {
    color: #666;
    font-size: 14px;
}

.booking-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.booking-form h3 {
    font-size: 24px;
    color: #001529;
    margin-bottom: 30px;
    text-align: center;
}

/* 考试环境设施 */
.exam-facilities {
    padding: 80px 0;
    background: #f8fafc;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.facility-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(24, 144, 255, 0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1890ff, #096dd9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.facility-icon i {
    font-size: 32px;
    color: white;
}

.facility-item h4 {
    font-size: 20px;
    color: #001529;
    margin-bottom: 12px;
}

.facility-item p {
    color: #666;
}

/* FAQ样式 */
.exam-faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

/* ===== 全站新增优化样式 ===== */
/* 移动端导航展开样式已迁移到homepage.css */

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 首页英雄区视觉增强 */
.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    right: -200px;
    top: -150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(29, 78, 216, 0.3) 35%, rgba(59, 130, 246, 0.2) 60%, transparent 80%);
    filter: blur(60px);
    opacity: 0.8;
    border-radius: 50%;
    animation: floatOrb 20s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-bg { 
    animation: heroGlow 15s ease-in-out infinite alternate;
    will-change: box-shadow;
}

@keyframes heroGlow {
    from { 
        box-shadow: 
            0 25px 50px rgba(37, 99, 235, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
    to { 
        box-shadow: 
            0 30px 60px rgba(37, 99, 235, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

@keyframes floatOrb {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(0, 20px, 0) scale(1.03); }
}

/* 添加额外的装饰性元素 */
.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(30px);
    animation: floatDecor 8s ease-in-out infinite alternate;
}

@keyframes floatDecor {
    from { transform: translate(0, 0) scale(1); opacity: 0.6; }
    to   { transform: translate(20px, -10px) scale(1.2); opacity: 0.8; }
}

/* 首页 - 合作伙伴 */
.partners { 
    padding: 80px 0; 
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.partners .section-title { 
    margin-bottom: 50px; 
    font-size: 42px;
    color: #0f172a;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-logos .logo {
    flex: 1 1 140px;
    min-width: 140px;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
    color: #64748b;
    border: 2px solid transparent;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    filter: grayscale(1);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.partner-logos .logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 
        0 20px 40px rgba(37, 99, 235, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.partner-logos .logo i {
    margin-right: 8px;
    font-size: 20px;
}

.faq-item {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f9ff;
    color: #1890ff;
}

.faq-question h4 {
    font-size: 16px;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 20px 24px;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 移动端响应式优化 */
@media (max-width: 768px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exams-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .exam-details {
        justify-content: center;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .requirement-item i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .exam-item {
        padding: 20px;
    }
    
    .facility-item {
        padding: 20px;
    }
    
    .booking-form {
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-answer {
        padding: 16px 20px;
    }
}

/* ===== 产教融合页面专用样式 ===== */

/* 产教融合概览 */
.integration-overview {
    padding: 100px 0;
    background: white;
}

.integration-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.integration-stats .stat-item {
    text-align: center;
    flex: 1;
}

.integration-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    display: block;
}

.integration-stats .stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* 合作模式 */
.cooperation-models {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.model-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.model-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.model-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.model-item:hover::before {
    transform: scaleX(1);
}

.model-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.model-icon i {
    font-size: 28px;
    color: white;
}

.model-item:hover .model-icon {
    transform: rotate(5deg) scale(1.1);
}

.model-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.model-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.model-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.model-item li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

.model-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* 合作高校 */
.partner-universities {
    padding: 100px 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.partner-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.partner-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.partner-logo i {
    font-size: 28px;
    color: white;
}

.partner-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.partner-item p {
    color: #64748b;
    font-size: 14px;
}

/* 成功案例 */
.success-cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.case-item:hover::before {
    transform: scaleX(1);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.case-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    flex: 1;
}

.case-tag {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 16px;
}

.case-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
}

.case-results {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.result-item {
    background: #f0fdf4;
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ===== 优化人才服务页面的故事卡片 ===== */
.story-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-info {
    margin-bottom: 20px;
}

.story-position {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 4px;
}

.story-company {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 4px;
}

.story-salary {
    font-size: 16px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 12px;
}

.story-quote {
    font-style: italic;
    color: #64748b;
    line-height: 1.6;
    border-left: 4px solid #e2e8f0;
    padding-left: 16px;
    margin-top: 20px;
}

/* 职位列表样式 */
.job-board {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.job-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.job-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.job-info {
    flex: 1;
}

.job-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.job-meta span {
    color: #64748b;
    font-size: 14px;
    position: relative;
}

.job-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 10px;
    color: #d1d5db;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tags .tag {
    background: #f0f9ff;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.job-action .btn {
    white-space: nowrap;
}

/* 移动端适配改进 */
@media (max-width: 768px) {
    .integration-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .case-tag {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .job-item {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .job-meta {
        justify-content: center;
    }
    
    .job-action {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-stats {
        padding: 20px;
    }
    
    .model-item,
    .case-item,
    .story-card {
        padding: 30px 20px;
    }
    
    .job-item {
        padding: 20px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .job-meta span::after {
        display: none;
    }
}

/* ===== 企业内训页面专用样式 ===== */

/* 培训概览 */
.training-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    text-align: center;
}

.overview-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.training-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.training-stats .stat-item {
    text-align: center;
}

.training-stats .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    display: block;
}

.training-stats .stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* 培训类型 */
.training-types {
    padding: 100px 0;
    background: white;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.type-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.type-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.type-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.type-item:hover::before {
    transform: scaleX(1);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.type-icon i {
    font-size: 28px;
    color: white;
}

.type-item:hover .type-icon {
    transform: rotate(5deg) scale(1.1);
}

.type-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.type-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

/* 培训流程 */
.training-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    transition: all 0.4s ease;
}

.step-icon i {
    font-size: 28px;
    color: white;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}

.process-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-step p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* 客户案例 */
.client-testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #b45309);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.2);
}

.testimonial-item:hover::before {
    transform: scaleX(1);
}

.client-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.client-logo i {
    font-size: 28px;
    color: white;
}

.testimonial-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.testimonial-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.training-type {
    background: #fef3c7;
    color: #d97706;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
}

/* 联系CTA */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.cta-actions .btn i {
    font-size: 18px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .training-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .overview-content h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .training-overview,
    .training-types,
    .training-process,
    .client-testimonials,
    .contact-cta {
        padding: 60px 0;
    }
    
    .type-item,
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .training-stats {
        gap: 30px;
    }
    
    .process-steps {
        gap: 30px;
    }
    
    .overview-content h2 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}