:root {
            --primary: #059669;
            --accent: #14b8a6;
            --bg: #f0fdfa;
            --text: #134e4a;
            --card-radius: 20px;
            --btn-radius: 999px;
            --pill-radius: 999px;
            --shadow: 0 12px 30px rgba(5,150,105,0.08);
        }
        * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
        body {
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }
        /* 波浪分隔 */
        .wave-divider {
            position: relative;
            width: 100%;
            height: 80px;
        }
        .wave-divider::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 10px -5px, transparent 12px, #ffffff 13px, #ffffff 20px);
            background-size: 25px 25px;
            background-repeat: repeat-x;
            opacity: 0.2;
        }
        .wave-divider--solid {
            background: var(--primary);
            clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0 100%);
            height: 60px;
            opacity: 0.8;
        }
        /* 胶囊导航 */
        .navbar-pill {
            background: rgba(240,253,250,0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(20,184,166,0.2);
            padding: 0.6rem 1rem;
        }
        .navbar-pill .nav-link {
            background: transparent;
            border-radius: var(--pill-radius);
            padding: 0.5rem 1.2rem;
            margin: 0 0.2rem;
            font-weight: 600;
            color: var(--text);
            transition: all 0.2s;
        }
        .navbar-pill .nav-link:hover {
            background: var(--primary);
            color: white;
        }
        .navbar-pill .navbar-brand {
            font-weight: 900;
            font-size: 1.7rem;
            color: var(--primary);
            letter-spacing: 1px;
            background: linear-gradient(135deg, #059669, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        /* Hero 视差 + 渐变文字 */
        .hero-parallax {
            background-image: url('{随机图片}');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            isolation: isolate;
        }
        .hero-parallax::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(240,253,250,0.6) 0%, rgba(240,253,250,0.2) 100%);
            z-index: -1;
        }
        .hero-grad-text {
            background: linear-gradient(140deg, #0d9488, #059669, #14b8a6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            font-size: calc(3rem + 1.2vw);
        }
        .floating-deco {
            animation: float 3.5s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0); }
        }
        /* 卡片通用 */
        .card-hover {
            border-radius: var(--card-radius);
            background: white;
            box-shadow: var(--shadow);
            transition: transform 0.25s, box-shadow 0.3s;
            border: none;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px rgba(5,150,105,0.12);
        }
        .img-zoom {
            overflow: hidden;
        }
        .img-zoom img {
            transition: transform 0.35s ease;
            width: 100%;
            height: auto;
            display: block;
        }
        .card-hover:hover .img-zoom img {
            transform: scale(1.06);
        }
        .overlay-mask {
            position: relative;
        }
        .overlay-mask::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5,150,105,0.25), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            border-radius: var(--card-radius);
        }
        .card-hover:hover .overlay-mask::after {
            opacity: 1;
        }
        /* 步骤条 */
        .step-item {
            background: white;
            border-radius: 30px;
            padding: 1.5rem 1rem;
            box-shadow: var(--shadow);
            position: relative;
        }
        .step-number {
            background: var(--primary);
            color: white;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: 800;
            font-size: 1.2rem;
        }
        /* CTA按钮全圆 */
        .btn-round {
            border-radius: var(--btn-radius);
            padding: 0.8rem 2.2rem;
            font-weight: 600;
        }
        .btn-outline-primary-round {
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: var(--btn-radius);
        }
        .btn-outline-primary-round:hover {
            background: var(--primary);
            color: white;
        }
        .bg-soft-accent { background: #ccfbf1; }
        .text-primary-dark { color: var(--text); }
        .badge-pill-new { background: var(--accent); border-radius: 30px; padding: 0.3rem 1rem; }
        footer a { color: var(--primary); text-decoration: none; }
        .stats-number { font-size: 3.2rem; font-weight: 900; color: var(--primary); }
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(120deg, #059669, #0d9488);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            letter-spacing: -0.5px;
        }
        .sticky-top-custom {
            position: sticky;
            top: 0;
            z-index: 1050;
        }
        .bg-wave-zone {
            background: linear-gradient(to bottom, var(--bg), #ccfbf1 60%);
        }

/* --- 子页面追加 --- */
/* 本页专属样式补充 */
        .about-hero { background: linear-gradient(135deg, rgba(5,150,105,0.08) 0%, rgba(20,184,166,0.04) 100%); }
.about-section-title { color: var(--text); font-weight: 800; font-size: 1.75rem; }
.about-section-title::after { content: ''; display: block; width: 48px; height: 3px; background: var(--primary); margin-top: 10px; border-radius: 2px; }
.about-card { background: #ffffff; border-radius: var(--card-radius); box-shadow: var(--shadow); padding: 28px; height: 100%; transition: transform .3s ease; border: 1px solid rgba(5,150,105,0.06); }
.about-card:hover { transform: translateY(-4px); }
.about-icon { width: 56px; height: 56px; background: var(--bg); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--primary); font-size: 22px; }
.about-timeline { position: relative; padding-left: 32px; }
.about-timeline::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 2px; }
.about-timeline-item { position: relative; margin-bottom: 28px; }
.about-timeline-item::before { content: ''; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; background: var(--primary); border-radius: 50%; border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--primary); }
.about-timeline-year { color: var(--primary); font-weight: 700; font-size: .95rem; letter-spacing: .5px; }
.about-value-tag { display: inline-block; background: var(--bg); color: var(--text); border: 1px solid rgba(5,150,105,0.15); border-radius: var(--pill-radius); padding: 4px 14px; font-size: .85rem; font-weight: 500; margin: 0 6px 8px 0; }
.about-stat-item { text-align: center; padding: 20px 10px; }
.about-stat-num { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.about-stat-label { font-size: .9rem; color: var(--text); opacity: .75; margin-top: 8px; }
.about-divider { border: none; height: 1px; background: linear-gradient(90deg, transparent, rgba(5,150,105,0.2), transparent); margin: 40px 0; }
.about-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); color: var(--text); border: 1px solid rgba(5,150,105,0.15); border-radius: var(--pill-radius); padding: 6px 16px; font-size: .85rem; font-weight: 600; }
.about-badge i { color: var(--primary); }
.about-quote { border-left: 3px solid var(--primary); background: var(--bg); padding: 16px 20px; border-radius: 0 var(--card-radius) var(--card-radius) 0; font-style: italic; color: var(--text); margin: 24px 0; }

/* --- 子页面追加 --- */
.disclaimer-hero {
            background: linear-gradient(135deg, rgba(5,150,105,0.1) 0%, rgba(20,184,166,0.05) 100%);
            border-radius: 24px;
            padding: 3.5rem 2.5rem;
            position: relative;
            overflow: hidden;
        }
.disclaimer-hero::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: rgba(5,150,105,0.08);
            border-radius: 50%;
        }
.disclaimer-section {
            background: rgba(255,255,255,0.6);
            border: 1px solid rgba(5,150,105,0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
.disclaimer-section:hover {
            box-shadow: var(--shadow);
            transform: translateY(-2px);
        }
.disclaimer-section h3 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
.disclaimer-section h3 i {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(5,150,105,0.1);
            border-radius: 10px;
            font-size: 1rem;
            color: var(--primary);
        }
.disclaimer-section p {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
.disclaimer-section ul {
            color: var(--text);
            line-height: 1.8;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
.disclaimer-section ul li {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
.highlight-box {
            background: rgba(5,150,105,0.05);
            border-left: 4px solid var(--primary);
            padding: 1.25rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
.last-updated {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.7;
            margin-top: 2rem;
            text-align: right;
        }

/* --- 子页面追加 --- */
/* 本页专属补充样式 —— 覆盖 Bootstrap 自带白底黑字 */
        .privacy-section {
            background: var(--bg);
            color: var(--text);
        }
.privacy-card {
            background: #ffffff;
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            padding: 2.5rem;
            border: 1px solid rgba(5, 150, 105, 0.12);
        }
.privacy-card h2 {
            color: var(--primary);
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 1.2rem;
        }
.privacy-card h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.3rem;
            width: 0.35rem;
            height: 1.2rem;
            background: var(--accent);
            border-radius: var(--pill-radius);
        }
.privacy-card p {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.98rem;
            margin-bottom: 1.2rem;
        }
.privacy-card ul {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.98rem;
            padding-left: 1.2rem;
            margin-bottom: 1.5rem;
        }
.privacy-card li {
            margin-bottom: 0.5rem;
        }
.privacy-card strong {
            color: var(--primary);
            font-weight: 600;
        }
.privacy-note {
            background: rgba(20, 184, 166, 0.08);
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            border-left: 4px solid var(--accent);
            margin: 1.8rem 0;
        }
.privacy-note p {
            margin-bottom: 0;
            font-size: 0.95rem;
        }
.privacy-date {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            border-radius: var(--pill-radius);
            padding: 0.4rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.8rem;
        }
.breadcrumb-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(5, 150, 105, 0.08);
            color: var(--primary);
            border-radius: var(--pill-radius);
            padding: 0.5rem 1.4rem;
            font-size: 0.85rem;
            font-weight: 600;
        }
.breadcrumb-pill a {
            color: var(--accent);
            text-decoration: none;
        }
.breadcrumb-pill a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
/* 导航高亮当前页 */
        .nav-item .nav-link.active-page {
            color: var(--accent) !important;
            font-weight: 700;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.card { background:rgba(0,0,0,.03) !important; color:#134e4a !important; border-color:rgba(0,0,0,.12) !important; }
.card-body { background:transparent !important; color:#134e4a !important; }
.card-title { color:#134e4a !important; }
.card-text { color:#134e4a !important; }
.accordion-item { background:rgba(0,0,0,.03) !important; color:#134e4a !important; border-color:rgba(0,0,0,.12) !important; }
.accordion-button { background:rgba(0,0,0,.03) !important; color:#134e4a !important; }
.accordion-body { background:transparent !important; color:#134e4a !important; }
.accordion-header { background:transparent !important; }
