        /* ========== 品牌颜色系统 ========== */
        :root {
            --primary-blue: #0044BD;
            --primary-blue-light: #0055D0;
            --primary-blue-dark: #003388;
            --accent-gold: #1FBC78;
            --accent-gold-light: #3BCF8F;
            --accent-green: #166534;
            --bg-white: #FFFFFF;
            --bg-light: #F8FAFB;
            --bg-gray: #F1F5F9;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-muted: #94A3B8;
            --border-color: #E2E8F0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 16px 40px rgba(0,0,0,0.15);
            --container-max: 1280px;
            --header-height: 72px;
        }

        /* ========== 基础样式 ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ========== 按钮样式 ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
            gap: 8px;
            white-space: normal;
        }

        .btn-primary {
            background: var(--accent-gold);
            color: #FFFFFF;
            border: 2px solid var(--accent-gold);
        }

        .btn-primary:hover {
            background: var(--accent-gold-light);
            border-color: var(--accent-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(31, 188, 120, 0.4);
        }

        .btn-blue {
            background: var(--primary-blue);
            color: #FFFFFF;
            border: 2px solid var(--primary-blue);
        }

        .btn-blue:hover {
            background: var(--primary-blue-light);
            border-color: var(--primary-blue-light);
            transform: translateY(-2px);
        }

        /* ========== Header ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            /* border-bottom: 1px solid var(--border-color); */
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            height: 30px;
            width: auto;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            padding: 8px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            border-radius: 6px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue);
            background: rgba(0, 68, 189, 0.05);
        }

        .nav-link.has-dropdown::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 5px solid currentColor;
            margin-left: 2px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 100;
        }

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

        .dropdown-item {
            display: block;
            padding: 10px 14px;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            border-radius: 8px;
            transition: all 0.15s ease;
        }

        .dropdown-item:hover {
            background: rgba(0, 68, 189, 0.05);
            color: var(--primary-blue);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--primary-blue);
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* 移动端导航 */
        .mobile-nav {
            position: fixed;
            top: var(--header-height);
            left: 0;
            right: 0;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            display: block;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-nav-link:last-child {
            border-bottom: none;
        }

        /* ========== Page Header ========== */
        .page-header {
            padding: calc(var(--header-height) + 60px) 0 60px;
            background: linear-gradient(135deg, rgba(0, 47, 108, 0.92) 0%, rgba(0, 102, 204, 0.92) 100%), url('../images/page-header-bg.webp') center/cover no-repeat;
            color: var(--bg-white);
            text-align: center;
        }

        .page-header h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.9;
            max-width: none;
            margin: 0 auto;
            white-space: normal;
        }

        .breadcrumb {
            margin-bottom: 24px;
        }

        .breadcrumb a {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
        }

        .breadcrumb span {
            color: rgba(255,255,255,0.5);
            margin: 0 8px;
        }

        .breadcrumb .current {
            color: var(--accent-gold);
        }

        /* ========== Content Section ========== */
        .content-section {
            padding: 80px 0;
        }

        .content-section.bg-light {
            background: var(--bg-light);
        }

        .section-title {
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            text-align: center;
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        /* ========== Hero Definition ========== */
        .hero-definition {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .definition-content {
            margin: 0 auto;
        }

        .definition-text {
            font-size: 20px;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 40px;
        }

        .definition-highlight {
            background: rgba(0, 68, 189, 0.05);
            border-left: 4px solid var(--primary-blue);
            padding: 24px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 32px;
        }

        .definition-highlight p {
            font-size: 18px;
            font-weight: 500;
            color: var(--primary-blue);
            line-height: 1.7;
        }

        /* ========== Features Grid ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .feature-card {
            text-align: center;
            padding: 32px 24px;
            background: var(--bg-white);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: var(--primary-blue);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: rgba(0, 68, 189, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== Certification Types ========== */
        .cert-types {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .cert-types-content h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .cert-types-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .cert-types-list {
            list-style: none;
            margin-top: 24px;
        }

        .cert-types-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 15px;
            color: var(--text-secondary);
        }

        .cert-types-list li::before {
            content: '✓';
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 18px;
        }

        .cert-types-visual {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
            border-radius: 20px;
            /* height: 400px;
            display: flex;
            align-items: center;
            justify-content: center; */
            color: rgba(255,255,255,0.8);
            font-size: 16px;
        }

        /* ========== Standards Section ========== */
        .standards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .standard-card {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .standard-card:hover {
            border-color: var(--primary-blue);
            box-shadow: var(--shadow-sm);
        }

        .standard-number {
            font-size: 48px;
            font-weight: 700;
            color: rgba(0, 68, 189, 0.2);
            line-height: 1;
            margin-bottom: 16px;
        }

        .standard-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .standard-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========== FAQ Section ========== */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

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

        .faq-item {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border-color);
        }

        .faq-question {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .faq-answer {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ========== CTA Section ========== */
        .cta-section {
            padding: 80px 0;
            background: var(--bg-gray);
        }

        .cta-card {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            border: 1px solid var(--border-color);
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .cta-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        /* ========== Footer ========== */
        .footer {
            background: var(--primary-blue-dark);
            color: var(--bg-white);
            padding: 60px 0 30px;
        }

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

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 16px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        /* ========== 响应式设计 ========== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .standards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .cert-types {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .standards-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-card {
                padding: 40px 24px;
            }
        }

/* ========== Extended page components ========== */
.process-timeline { display: flex; flex-direction: column; gap: 32px; max-width: 900px; margin: 0 auto; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-blue); color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-step h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.process-step .step-meta { font-size: 13px; color: var(--accent-gold); font-weight: 600; margin-bottom: 12px; }
.process-step ul { list-style: none; }
.process-step li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 15px; color: var(--text-secondary); line-height: 1.6; text-align: left; }
.process-step li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; padding: 32px; transition: all 0.25s ease; }
.service-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--primary-blue); }
.service-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag { font-size: 13px; padding: 6px 12px; background: rgba(0, 68, 189, 0.06); color: var(--primary-blue); border-radius: 6px; }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.pain-card { background: var(--bg-white); border-radius: 12px; padding: 24px; border-left: 4px solid var(--accent-gold); box-shadow: var(--shadow-sm); }
.pain-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compare-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; padding: 28px; text-align: center; }
.compare-card.featured { border-color: var(--primary-blue); box-shadow: var(--shadow-lg); position: relative; }
.compare-card.featured::before { content: '推荐'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-gold); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 20px; }
.compare-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 16px; color: var(--primary-blue); }
.compare-card ul { list-style: none; text-align: left; }
.compare-card li { font-size: 14px; color: var(--text-secondary); padding: 8px 0; border-bottom: 1px solid var(--border-color); }
.compare-card li:last-child { border-bottom: none; }
.image-showcase { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); background: var(--bg-white); }
.image-showcase img { width: 100%; display: block; }
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* .case-card { aspect-ratio: 4/3; background: var(--bg-gray); border: 1px dashed var(--border-color); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px; transition: all 0.2s ease; } */
.case-card:hover { border-color: var(--primary-blue); background: rgba(0, 68, 189, 0.03); }
.case-card .case-num { font-size: 28px; font-weight: 700; color: rgba(0, 68, 189, 0.2); }
.case-card .case-label { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: all 0.25s ease; }
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.insight-card .insight-body { padding: 24px; }
.insight-card h3 { font-size: 17px; font-weight: 600; line-height: 1.5; margin-bottom: 12px; }
.insight-card .insight-date { font-size: 13px; color: var(--text-muted); }
.insight-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue)); color: #fff; border: none; border-radius: 20px; overflow: hidden; }
.insight-featured .insight-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.insight-featured h2 { font-size: 28px; margin-bottom: 16px; }
.insight-featured p { opacity: 0.9; line-height: 1.7; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 48px 0; }
.stat-box { text-align: center; padding: 28px; background: var(--bg-white); border-radius: 16px; border: 1px solid var(--border-color); }
.stat-box .stat-val { font-size: 36px; font-weight: 700; color: var(--primary-blue); }
.stat-box .stat-lbl { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-grid-5 { grid-template-columns: repeat(5, 1fr); margin-top: 40px; }
.category-card { padding: 24px; background: var(--bg-white); border-radius: 12px; border: 1px solid var(--border-color); }
.category-card-img { padding: 0; overflow: hidden; display: flex; flex-direction: column; text-align: center; }
.category-card-img .category-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.category-card-img .category-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card-img h4 { font-size: 16px; font-weight: 600; color: var(--primary-blue); margin: 16px 16px 8px; }
.category-card-img p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; padding: 0 16px 20px; }
.category-card h4 { font-size: 17px; font-weight: 600; color: var(--primary-blue); margin-bottom: 10px; }
.consultant-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.consultant-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--bg-white); }
.consultant-table th { background: var(--primary-blue); color: #fff; padding: 14px 16px; text-align: left; font-weight: 600; white-space: normal; }
.consultant-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.consultant-table tr:nth-child(even) td { background: var(--bg-light); }
.consultant-table tr:hover td { background: rgba(0, 68, 189, 0.04); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--bg-light); border-radius: 16px; padding: 32px; border: 1px solid var(--border-color); }
.contact-info-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 20px; color: var(--primary-blue); }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; color: var(--text-secondary); }
.contact-form-box { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text-primary); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 15px; font-family: inherit; }
.form-group textarea { min-height: 120px; resize: vertical; }
.qr-placeholder { width: 180px; height: 180px; background: var(--bg-gray); border: 2px dashed var(--border-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-muted); text-align: center; margin: 0 auto 16px; }
@media (max-width: 1024px) {
    .services-grid, .comparison-grid, .insights-grid, .category-grid:not(.category-grid-5) { grid-template-columns: repeat(2, 1fr); }
    .category-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .cases-grid { grid-template-columns: repeat(3, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .insight-featured { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .services-grid, .pain-grid, .comparison-grid, .contact-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { grid-template-columns: 1fr; }
    .category-grid, .category-grid-5, .insights-grid { grid-template-columns: 1fr; }
}

/* ========== About Page Carousel ========== */
.about-header {
    padding-bottom: 0;
}

.about-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    padding-bottom: 80px;
}

.about-carousel-wrapper::before,
.about-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.about-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 47, 108, 0.92), transparent);
}

.about-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 47, 108, 0.92), transparent);
}

.about-carousel-track {
    display: flex;
    gap: 20px;
    animation: aboutCarouselScroll 60s linear infinite;
    width: max-content;
}

.about-carousel-track:hover {
    animation-play-state: paused;
}

.about-carousel-track img {
    height: 200px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
    object-fit: cover;
}

@keyframes aboutCarouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========== 咨询顾问表格 ========== */
.consultant-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.consultant-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 800px;
}

.consultant-table thead {
    background: var(--primary-blue);
    color: #fff;
}

.consultant-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    white-space: normal;
}

.consultant-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.5;
}

.consultant-table tbody tr:last-child td {
    border-bottom: none;
}

.consultant-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.consultant-table tbody tr:hover {
    background: #EEF4FF;
}

.consultant-table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

.consultant-table .role-sub {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .consultant-table {
        font-size: 14px;
    }
    .consultant-table th,
    .consultant-table td {
        padding: 12px 14px;
    }
}
