
        :root {
            --primary: #1e5aa8;
            --primary-dark: #0f3d7a;
            --primary-deep: #0a2a5e;
            --primary-light: #2563eb;
            --primary-gradient: linear-gradient(135deg, #1e5aa8 0%, #0f3d7a 100%);
            --primary-gradient-r: linear-gradient(to right, #1e5aa8 0%, #0f3d7a 100%);
            --primary-gradient-deep: linear-gradient(135deg, #0f3d7a 0%, #1e5aa8 100%);
            --primary-bg: #eef4fb;
            --primary-bg-light: #f5f9ff;
            --primary-bg-soft: #f0f5fc;
            --accent: #c8161d;
            --accent-light: #e53935;
            --gold: #c9a961;
            --gold-dark: #a88b4a;
            --gold-gradient: linear-gradient(135deg, #d9b97a 0%, #c9a961 50%, #a88b4a 100%);
            --gold-gradient-r: linear-gradient(to right, #d9b97a 0%, #a88b4a 100%);
            --text-title: #0a2a5e;
            --text-body: #333333;
            --text-secondary: #666666;
            --text-tertiary: #999999;
            --bg-page: #f8f9fb;
            --bg-card: #ffffff;
            --bg-alt: #f9fafc;
            --border: #e8ecf1;
            --border-light: #f0f2f5;
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(30, 90, 168, 0.15);
            --shadow-lg: 0 16px 48px rgba(30, 90, 168, 0.18);
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 14px;
            --max-width: 1240px;
            --topbar-height: 32px;
            --nav-height: 68px;
            --section-gap: 20px;
            --ease: cubic-bezier(0.4, 0, 0.2, 1);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; max-width: 100%; }
        body { max-width: 100%; }
        section { scroll-margin-top: 80px; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
            font-size: 15px;
            color: var(--text-body);
            background: var(--bg-page);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: clip;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--primary); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--accent); }
        ul, ol { list-style: none; }
        h1, h2, h3, h4 {
            font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
            font-weight: 700;
            color: var(--text-title);
            line-height: 1.25;
            letter-spacing: 0.5px;
        }
        h2 { font-size: 28px; }
        h3 { font-size: 20px; }
        h4 { font-size: 16px; }
        p { margin-bottom: 12px; line-height: 1.8; }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .section { padding: var(--section-gap) 0; }
        .section-alt { background: var(--bg-alt); }
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            z-index: 9999;
            transition: width 0.3s ease;
        }
        .top-bar {
            background: #f0f3f7;
            border-bottom: 1px solid #e5e8ed;
            font-size: 12px;
            color: #666;
            height: var(--topbar-height);
            line-height: var(--topbar-height);
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left span { margin-right: 12px; }
        .top-bar-right { display: flex; align-items: center; gap: 16px; }
        .top-bar-right .hotline-mini { color: var(--primary-dark); font-weight: 600; }
        header {
            background: rgba(255, 255, 255, 0.85);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom-color: transparent;
        }
        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: var(--nav-height);
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-mark {
            width: 44px;
            height: 44px;
            background: var(--primary-gradient);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .logo-mark svg {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: #fff;
            stroke-width: 1.5;
        }
        .logo-text .main {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-title);
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .logo-text .sub {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-top: 2px;
            letter-spacing: 0.5px;
        }
        .main-nav { flex: 1; display: flex; justify-content: center; }
        .main-nav ul { display: flex; gap: 2px; }
        .main-nav li { position: relative; }
        .main-nav a {
            display: flex;
            align-items: center;
            height: var(--nav-height);
            padding: 0 18px;
            color: var(--text-body);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            border-radius: 4px;
            transition: color 0.3s ease;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .main-nav a:hover { color: var(--primary); }
        .main-nav a.active { color: var(--primary); font-weight: 600; }
        .main-nav a.active::after { width: 32px; }
        .header-right { display: flex; align-items: center; gap: 20px; }
        .header-phone { display: flex; align-items: center; gap: 8px; }
        .header-phone .phone-icon {
            width: 36px; height: 36px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
        }
        .header-phone .phone-icon svg { width: 18px; height: 18px; }
        .header-phone .phone-text { text-align: right; line-height: 1.2; }
        .header-phone .phone-text .label { font-size: 11px; color: var(--text-tertiary); }
        .header-phone .phone-text .num {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 0.5px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 32px;
            height: 48px;
            background: var(--gold-gradient-r);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        .btn-primary:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 169, 97, 0.45);
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 28px;
            height: 48px;
            background: #fff;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            position: relative;
            overflow: hidden;
        }
        .btn-secondary:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(30, 90, 168, 0.3);
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0 28px;
            height: 48px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            border: 2px solid rgba(255,255,255,0.7);
            border-radius: var(--radius-sm);
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        .btn-ghost:hover {
            background: #fff;
            color: var(--primary-deep);
            transform: translateY(-2px);
            border-color: #fff;
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s ease;
        }
        .menu-toggle:hover,
        .menu-toggle:active { background: var(--primary-bg); }
        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--primary-deep);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .menu-toggle.open span:nth-child(2) { opacity: 0; }
        .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .nav-overlay.show { opacity: 1; visibility: visible; }
        .hero {
            position: relative;
            width: 100%;
            height: 580px;
            overflow: hidden;
            background: var(--primary-dark);
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease;
            animation: kenburns 20s ease-in-out infinite alternate;
        }
        @keyframes kenburns {
            0% { transform: scale(1); }
            100% { transform: scale(1.08); }
        }
        .hero-bg.active { opacity: 1; }
        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(15,61,122,0.9) 0%, rgba(15,61,122,0.55) 40%, rgba(15,61,122,0.2) 70%, transparent 100%);
        }
        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            align-items: center;
            gap: 60px;
        }
        .hero-left { color: #fff; }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--gold);
            padding: 0;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            border-radius: 0;
            letter-spacing: 2px;
        }
        .hero-tag::before {
            content: '';
            width: 32px; height: 2px;
            background: var(--gold);
            border-radius: 0;
            animation: none;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        .hero-sub {
            font-size: 18px;
            color: rgba(255,255,255,0.95);
            margin-bottom: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-weight: 500;
        }
        .hero-sub span { position: relative; }
        .hero-sub span:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            transform: translateY(-50%);
        }
        .hero-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            max-width: 560px;
            margin-bottom: 32px;
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            margin-bottom: 28px;
        }
        .hero-trust {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-trust svg {
            width: 18px; height: 18px;
            fill: none;
            stroke: var(--gold);
            stroke-width: 1.5;
            flex-shrink: 0;
        }
        .hero-card {
            background: rgba(255,255,255,0.12);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-lg);
            padding: 28px 28px 24px;
            color: #fff;
            width: 360px;
            margin-left: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
        }
        .hero-card h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-card h3::before {
            content: '';
            width: 3px; height: 18px;
            background: var(--gold);
            border-radius: 2px;
        }
        .timeline-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 16px;
        }
        .tl-item {
            display: flex;
            gap: 14px;
            position: relative;
        }
        .tl-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 8px;
            top: 22px;
            width: 2px;
            height: calc(100% + 2px);
            background: rgba(255,255,255,0.15);
        }
        .tl-dot {
            width: 18px; height: 18px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: 3px solid var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .tl-item.active .tl-dot {
            background: var(--gold);
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.3);
        }
        .tl-body .tl-date {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            line-height: 1.3;
        }
        .tl-body .tl-text {
            font-size: 12.5px;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
            line-height: 1.5;
        }
        .hero-card-note {
            font-size: 12px;
            color: var(--gold);
            text-align: center;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.12);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .hero-scroll-down {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: rgba(255,255,255,0.8);
            font-size: 12px;
            letter-spacing: 2px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: bounceDown 2s ease-in-out infinite;
        }
        .hero-scroll-down svg {
            width: 20px; height: 20px;
            stroke: var(--gold);
            stroke-width: 2;
            fill: none;
        }
        @keyframes bounceDown {
            0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
            50% { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
        }
        .hero-dots {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }
        .hero-dot {
            width: 32px;
            height: 4px;
            background: rgba(255,255,255,0.4);
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .hero-dot.active {
            background: var(--gold);
            width: 48px;
        }
        .stats-section {
            background: var(--primary-gradient-deep);
            padding: 56px 0;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at top, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .stats-card {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            z-index: 1;
        }
        .stat-item {
            text-align: center;
            padding: 8px 20px;
            position: relative;
        }
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60px;
            background: rgba(255,255,255,0.15);
        }
        .stat-num {
            font-size: 56px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1.1;
            margin-bottom: 6px;
            font-family: "PingFang SC", sans-serif;
            letter-spacing: -1px;
        }
        .stat-num .unit { font-size: 22px; font-weight: 600; margin-left: 4px; color: var(--gold); }
        .stat-label { font-size: 16px; color: rgba(255,255,255,0.9); letter-spacing: 1px; margin-top: 8px; }
        .stat-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 10px auto 0;
            border-radius: 1px;
            opacity: 0.6;
        }
        .section-head {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-head .en {
            font-size: 13px;
            color: var(--gold);
            letter-spacing: 4px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }
        .section-head h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-title);
            position: relative;
            display: inline-block;
            padding-bottom: 18px;
            letter-spacing: 1px;
        }
        .section-head h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 3px;
            background: var(--gold-gradient-r);
            border-radius: 2px;
        }
        .section-head .sub {
            font-size: 15px;
            color: var(--text-secondary);
            margin-top: 16px;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
        }
        .panel-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .panel-title-bar {
            width: 4px; height: 22px;
            background: var(--gold-gradient);
            border-radius: 2px;
            position: relative;
        }
        .panel-title-bar::after {
            content: '';
            position: absolute;
            left: -3px; top: 50%;
            transform: translateY(-50%);
            width: 2px; height: 16px;
            background: var(--accent);
            border-radius: 1px;
        }
        .panel-title h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-title);
            letter-spacing: 0.5px;
        }
        .panel-head .more {
            font-size: 14px;
            color: var(--gold-dark);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            font-weight: 500;
        }
        .panel-head .more:hover { color: var(--gold); }
        .panel-head .more svg { width: 14px; height: 14px; transition: transform 0.3s ease; stroke: currentColor; }
        .panel-head .more:hover svg { transform: translateX(3px); }
        .gaoqi-grid {
            display: grid;
            grid-template-columns: 7fr 3fr;
            gap: 32px;
        }
        .gaoqi-main > p {
            text-indent: 2em;
            color: var(--text-body);
            margin-bottom: 14px;
            text-align: justify;
            line-height: 1.8;
            font-size: 15px;
        }
        .gaoqi-main > p:last-child { margin-bottom: 0; }
        .gaoqi-main p .hl-num {
            color: var(--gold-dark);
            font-weight: 700;
            font-size: 1.05em;
        }
        .policy-intro-block {
            background: var(--primary-bg-soft);
            border-left: 4px solid var(--primary);
            padding: 20px 24px;
            margin-bottom: 20px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-size: 15px;
            color: var(--primary-dark);
            line-height: 1.8;
            text-indent: 0 !important;
            position: relative;
        }
        .policy-intro-block::before {
            content: '';
            position: absolute;
            left: -4px;
            top: 20px;
            width: 4px;
            height: 40px;
            background: var(--gold);
            border-radius: 0 2px 2px 0;
        }
        .policy-intro-block .hl-num {
            color: var(--gold-dark);
            font-weight: 700;
        }
        .conditions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 20px;
        }
        .condition-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 20px 22px 18px 28px;
            display: flex;
            gap: 14px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .condition-card::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: var(--gold-gradient);
            transition: var(--transition);
        }
        .condition-card:hover::before {
            background: var(--accent);
            width: 6px;
        }
        .cond-num {
            flex-shrink: 0;
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            font-family: "PingFang SC", sans-serif;
            padding-top: 2px;
            opacity: 0.9;
        }
        .cond-body { flex: 1; min-width: 0; position: relative; }
        .cond-body h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .cond-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }
        .cond-body .cond-file {
            display: block;
            font-size: 12px;
            color: var(--text-tertiary);
            margin-top: 10px;
            text-align: right;
        }
        .sidebar { display: flex; flex-direction: column; gap: 20px; }
        .side-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .side-card:hover {
            box-shadow: var(--shadow-md);
        }
        .side-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .side-card h4::before {
            content: '';
            width: 4px; height: 16px;
            background: var(--gold-gradient);
            border-radius: 2px;
        }
        .benefit-quick-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .bq-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-body);
            padding: 8px 0;
            line-height: 1.5;
            border-bottom: 1px dashed var(--border-light);
            transition: var(--transition);
        }
        .bq-item:last-child { border-bottom: none; }
        .bq-item:hover {
            color: var(--gold-dark);
            padding-left: 4px;
        }
        .bq-item::before {
            content: '';
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
        }
        .bq-item .bq-tag {
            display: none;
        }
        .time-remind {
            background: var(--primary-gradient-deep);
            color: #fff;
            border: none;
            position: relative;
            overflow: hidden;
        }
        .time-remind::before {
            content: '';
            position: absolute;
            top: -40px; right: -40px;
            width: 120px; height: 120px;
            border-radius: 50%;
            background: rgba(201, 169, 97, 0.1);
        }
        .time-remind h4 {
            color: var(--gold);
            border-bottom-color: rgba(255,255,255,0.15);
            position: relative;
            z-index: 1;
        }
        .time-remind h4::before { background: var(--gold); }
        .tr-main {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }
        .tr-sub {
            font-size: 13.5px;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .tr-btn {
            display: inline-block;
            padding: 10px 24px;
            background: var(--gold-gradient-r);
            color: #fff;
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-weight: 600;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        .tr-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4); }
        .eval-entry { text-align: center; }
        .eval-entry p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 14px;
            line-height: 1.7;
        }
        .eval-entry .btn-primary {
            width: 100%;
            justify-content: center;
            height: 44px;
            font-size: 15px;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .benefit-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold);
        }
        .benefit-icon {
            width: 56px; height: 56px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: var(--transition);
        }
        .benefit-card:hover .benefit-icon {
            background: var(--gold-gradient);
            transform: scale(1.08);
        }
        .benefit-icon svg {
            width: 28px; height: 28px;
            stroke: #fff;
            stroke-width: 1.8;
            fill: none;
            transition: var(--transition);
        }
        .benefit-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .benefit-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 0;
        }
        .benefit-card .b-file {
            display: block;
            font-size: 12px;
            color: var(--gold-dark);
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px dashed var(--border);
            font-weight: 500;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .service-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            border-color: var(--gold);
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .service-icon {
            width: 56px; height: 56px;
            flex-shrink: 0;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            margin-bottom: 16px;
        }
        .service-card:hover .service-icon { background: var(--gold-gradient); }
        .service-icon svg {
            width: 28px; height: 28px;
            stroke: #fff;
            stroke-width: 1.8;
            fill: none;
            transition: var(--transition);
        }
        .service-body { flex: 1; display: flex; flex-direction: column; }
        .service-body h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .service-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 14px;
            flex: 1;
        }
        .service-card .service-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--gold-dark);
            font-weight: 600;
            opacity: 0;
            transform: translateY(4px);
            transition: var(--transition);
        }
        .service-card:hover .service-more { opacity: 1; transform: translateY(0); }
        .service-card .service-more svg { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.3s ease; }
        .service-card:hover .service-more svg { transform: translateX(4px); }
        .process-section {
            background: var(--primary-gradient-deep);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }
        .process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        .process-section .section-head h2 { color: #fff; }
        .process-section .section-head .en { color: var(--gold); }
        .process-section .section-head .sub { color: rgba(255,255,255,0.7); }
        .process-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 0;
            margin-bottom: 28px;
        }
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 23px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: repeating-linear-gradient(to right, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
            z-index: 0;
            opacity: 0.6;
        }
        .p-step {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 0 4px;
        }
        .p-step-circle {
            width: 48px; height: 48px;
            margin: 0 auto 14px;
            background: transparent;
            border: 3px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            transition: var(--transition);
            position: relative;
        }
        .p-step:hover .p-step-circle {
            background: var(--gold);
            color: var(--primary-deep);
            transform: scale(1.12);
            box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.25);
        }
        .p-step h4 {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }
        .p-step p {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            line-height: 1.5;
            margin-bottom: 0;
        }
        .process-detail {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: var(--radius-md);
            padding: 20px 28px;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .process-detail p { margin-bottom: 6px; }
        .process-detail p:last-child { margin-bottom: 0; }
        .process-detail strong { color: var(--gold); }
        .materials-wrap {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px 32px;
            box-shadow: var(--shadow-sm);
        }
        .materials-tip {
            background: var(--primary-bg-soft);
            border-left: 4px solid var(--primary);
            padding: 14px 20px;
            margin-bottom: 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-size: 14px;
            color: var(--primary-dark);
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .materials-tip svg {
            width: 18px; height: 18px;
            stroke: var(--primary);
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .materials-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 40px;
            counter-reset: mat;
        }
        .materials-list li {
            padding: 14px 0 14px 52px;
            position: relative;
            font-size: 15px;
            color: var(--text-body);
            border-bottom: 1px dashed var(--border);
            line-height: 1.6;
            counter-increment: mat;
            transition: background 0.3s ease;
            margin: 0 -10px;
            padding-left: 52px;
            border-radius: 4px;
            font-weight: 500;
        }
        .materials-list li::before {
            content: counter(mat);
            position: absolute;
            left: 10px;
            top: 14px;
            width: 32px; height: 32px;
            background: var(--primary-gradient);
            color: #fff;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
        }
        .materials-list li:hover {
            background: var(--primary-bg-light);
            color: var(--text-title);
        }
        .materials-list li:hover::before {
            background: var(--gold-gradient);
            transform: scale(1.1);
        }
        .materials-list .mat-desc {
            display: block;
            font-size: 13px;
            color: var(--text-tertiary);
            margin-top: 4px;
            font-weight: 400;
            line-height: 1.5;
        }
        .assessment-wrap {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 32px 36px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .assessment-wrap:hover { box-shadow: var(--shadow-md); }
        .progress-bar-wrap {
            margin-bottom: 24px;
        }
        .progress-bar-wrap .pb-label {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .progress-bar-wrap .pb-track {
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
        }
        .progress-bar-wrap .pb-fill {
            height: 100%;
            width: 0;
            background: var(--primary-gradient-r);
            border-radius: 3px;
            transition: width 0.3s ease;
        }
        .assessment-form {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px 28px;
            margin-bottom: 24px;
        }
        .assessment-form label {
            font-size: 14px;
            color: var(--text-secondary);
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        .assessment-form select,
        .assessment-form input {
            width: 100%;
            padding: 0 16px;
            height: 44px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: var(--transition);
            color: var(--text-body);
        }
        .assessment-form select:focus,
        .assessment-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
        }
        .assessment-submit { text-align: center; }
        .assessment-submit {
            display: flex;
            gap: 14px;
            align-items: center;
            justify-content: center;
        }
        .assessment-submit button {
            height: 48px;
            padding: 0 44px;
            background: var(--gold-gradient-r);
            color: #fff;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 16px;
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            transition: var(--transition);
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        .assessment-submit button::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        .assessment-submit button:hover::before { left: 100%; }
        .assessment-result {
            display: none;
            margin-top: 20px;
            padding: 20px 28px;
            border-radius: var(--radius-md);
            font-size: 14.5px;
            line-height: 1.8;
            border-left: 4px solid var(--gold);
        }
        .assessment-result.show { display: block; }
        .assessment-result.pass {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #166534;
        }
        .assessment-result.fail {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #991b1b;
        }
        .assessment-result strong {
            font-size: 16px;
            display: block;
            margin-bottom: 6px;
        }
        .assessment-result.pass strong { color: #15803d; }
        .assessment-result.fail strong { color: #b91c1c; }
        .case-mobile-cards { display: none; }
        .cases-table-wrap {
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            border: 1px solid var(--border);
        }
        .cases-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .cases-table th {
            background: var(--primary-deep);
            color: #fff;
            padding: 16px 18px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            border-bottom: 2px solid var(--gold);
            height: 52px;
            letter-spacing: 0.5px;
        }
        .cases-table td {
            padding: 18px 18px;
            border-bottom: 1px solid var(--border-light);
            vertical-align: middle;
            line-height: 1.6;
            font-size: 14px;
            height: 56px;
        }
        .cases-table tr:last-child td { border-bottom: none; }
        .cases-table tr:nth-child(even) { background: #f8f9fb; }
        .cases-table tr:hover { background: var(--primary-bg-light); }
        .cases-table .col-city { width: 80px; white-space: nowrap; font-weight: 500; }
        .cases-table .col-industry { width: 110px; white-space: nowrap; color: var(--text-secondary); }
        .cases-table .col-date { width: 80px; white-space: nowrap; color: var(--text-tertiary); }
        .cases-table .col-result { width: 120px; white-space: nowrap; }
        .cases-table .case-name {
            font-weight: 700;
            color: var(--text-title);
            font-size: 15px;
            letter-spacing: 0.3px;
        }
        .cases-table .case-desc {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 4px;
            line-height: 1.6;
        }
        .result-pass {
            display: inline-block;
            padding: 4px 14px;
            background: #e8f5e9;
            color: #2e7d32;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .result-pending {
            display: inline-block;
            padding: 4px 14px;
            background: #fff8e1;
            color: #f57f17;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .result-doing {
            display: inline-block;
            padding: 4px 14px;
            background: #e3f2fd;
            color: #1565c0;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 24px;
        }
        .news-featured {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .news-featured:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .news-featured-img {
            height: 200px;
            background: var(--primary-gradient-r);
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 24px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        .news-featured-img::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 42, 94, 0.9) 0%, transparent 60%);
            pointer-events: none;
        }
        .news-featured:hover .news-featured-img::after {
            transform: scale(1.08);
        }
        .news-featured-img h3 {
            color: #fff;
            font-size: 20px;
            line-height: 1.4;
            font-weight: 700;
            max-width: 100%;
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
        }
        .news-featured-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
        .news-meta {
            font-size: 13px;
            color: var(--text-tertiary);
            margin-bottom: 10px;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .news-meta .doc-num { color: var(--gold-dark); font-weight: 600; }
        .news-featured-body p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            text-indent: 2em;
            margin-bottom: 0;
            flex: 1;
        }
        .news-list-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .news-list-items li {
            border-bottom: 1px solid var(--border-light);
            transition: background 0.3s ease;
        }
        .news-list-items li:last-child { border-bottom: none; }
        .news-list-items a {
            display: flex;
            padding: 14px 20px;
            gap: 16px;
            align-items: center;
            color: var(--text-body);
            position: relative;
            transition: var(--transition);
            min-height: 52px;
        }
        .news-list-items a::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 0;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        .news-list-items li:hover { background: var(--bg-page); }
        .news-list-items li:hover a::before { width: 4px; }
        .news-list-items li:hover a { color: var(--gold-dark); padding-left: 24px; }
        .news-date-tag {
            flex-shrink: 0;
            text-align: center;
            min-width: 56px;
            background: var(--gold-gradient);
            border-radius: 6px;
            padding: 6px 4px;
            color: #fff;
        }
        .news-date-tag .day {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }
        .news-date-tag .month {
            font-size: 11px;
            color: rgba(255,255,255,0.9);
            margin-top: 3px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .news-text { flex: 1; min-width: 0; }
        .news-text .title {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--text-title);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        .news-list-items li:hover .news-text .title { color: var(--gold-dark); }
        .news-text .source { font-size: 13px; color: var(--text-tertiary); }
        .featured-watermark {
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 84px;
            font-weight: 900;
            color: rgba(255,255,255,0.07);
            line-height: 1;
            letter-spacing: -3px;
            z-index: 0;
            font-style: italic;
            pointer-events: none;
        }
        .featured-cat-tag {
            position: absolute;
            top: 20px;
            left: 24px;
            background: rgba(255,255,255,0.16);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            color: #fff;
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 1.5px;
            z-index: 2;
            border: 1px solid rgba(255,255,255,0.22);
        }
        .meta-hits {
            color: var(--text-tertiary);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .meta-hits::before {
            content: '';
            display: inline-block;
            width: 14px;
            height: 14px;
            background: var(--text-tertiary);
            -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/><circle cx='12' cy='12' r='3'/></svg>") center / contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><path d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/><circle cx='12' cy='12' r='3'/></svg>") center / contain no-repeat;
        }
        .featured-desc { flex: 1; margin-bottom: 0; }
        .featured-readmore {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            align-self: flex-start;
            padding-bottom: 3px;
            border-bottom: 2px solid var(--primary);
        }
        .featured-readmore:hover {
            color: var(--gold-dark);
            gap: 12px;
            border-bottom-color: var(--gold);
        }
        .featured-readmore span { transition: transform 0.3s ease; }
        .featured-readmore:hover span { transform: translateX(4px); }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 40px;
        }
        .faq-list {
            background: transparent;
            border: none;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 18px 0;
        }
        .faq-item:last-child { border-bottom: none; }
        .faq-q {
            padding: 0 0 0 44px;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-title);
            background: transparent;
            display: flex;
            gap: 0;
            align-items: flex-start;
            line-height: 1.6;
            position: relative;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
        }
        .faq-q .q-tag {
            position: absolute;
            left: 0; top: 2px;
            font-size: 26px;
            font-weight: 800;
            color: var(--gold);
            width: auto;
            height: auto;
            background: transparent;
            text-align: left;
            line-height: 1;
            border-radius: 0;
            margin-top: 0;
            font-style: italic;
        }
        .faq-a {
            padding: 0 0 0 44px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            position: relative;
        }
        .faq-a::before {
            content: 'A';
            position: absolute;
            left: 0; top: 2px;
            font-size: 22px;
            font-weight: 700;
            color: var(--border);
            width: auto;
            height: auto;
            background: transparent;
            text-align: left;
            line-height: 1;
            border-radius: 0;
            font-style: italic;
        }
        .faq-a p { margin-bottom: 8px; }
        .faq-a p:last-child { margin-bottom: 0; }
        .about-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
        }
        .about-text p {
            text-indent: 2em;
            color: var(--text-body);
            margin-bottom: 14px;
            text-align: justify;
            line-height: 1.85;
            font-size: 15px;
        }
        .about-side {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            height: fit-content;
            transition: var(--transition);
        }
        .about-side:hover { box-shadow: var(--shadow-md); }
        .about-side h3 {
            font-size: 18px;
            color: var(--text-title);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--gold);
            display: inline-block;
            letter-spacing: 0.5px;
        }
        .about-side ul li {
            padding: 10px 0 10px 28px;
            position: relative;
            font-size: 15px;
            color: var(--text-secondary);
            border-bottom: 1px dashed var(--border-light);
            line-height: 1.7;
            font-weight: 500;
        }
        .about-side ul li::before {
            content: '';
            position: absolute;
            left: 0; top: 16px;
            width: 18px; height: 18px;
            background: var(--gold);
            -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
        }
        .about-side ul li:last-child { border-bottom: none; }
        footer {
            background: var(--primary-deep);
            color: rgba(255,255,255,0.65);
        }
        .footer-main {
            padding: 64px 0 40px;
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
            gap: 32px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 20px;
            padding-bottom: 14px;
            position: relative;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 36px; height: 2px;
            background: var(--gold);
            border-radius: 1px;
        }
        .footer-about .brand-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }
        .footer-about .brand-logo {
            width: 44px; height: 44px;
            background: rgba(255,255,255,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .footer-about .brand-name {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .footer-about p {
            font-size: 14px;
            line-height: 1.9;
            margin-bottom: 16px;
            opacity: 0.75;
        }
        .footer-contact-list { margin-top: 12px; }
        .footer-contact-list li {
            font-size: 14px;
            line-height: 2.2;
            display: flex;
            gap: 8px;
            opacity: 0.8;
        }
        .footer-contact-list strong { color: rgba(255,255,255,0.9); font-weight: 500; flex-shrink: 0; }
        .footer-links li { font-size: 14px; padding: 5px 0; line-height: 2.2; }
        .footer-links a {
            color: rgba(255,255,255,0.6);
            transition: var(--transition);
            position: relative;
            padding-left: 0;
        }
        .footer-links a:hover { color: var(--gold); padding-left: 4px; }
        .footer-cities {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 13.5px;
        }
        .footer-cities span { color: rgba(255,255,255,0.5); transition: color 0.3s ease; cursor: default; }
        .footer-cities span:hover { color: var(--gold); }
        .footer-qr-wrap { display: flex; gap: 16px; }
        .footer-qr { text-align: center; }
        .footer-qr-img {
            width: 100px; height: 100px;
            background: #fff;
            border-radius: var(--radius-sm);
            padding: 4px;
            margin: 0 auto 10px;
        }
        .footer-qr-img img { width: 100%; height: 100%; object-fit: contain; }
        .footer-qr p {
            font-size: 12.5px;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            margin-bottom: 0;
        }
        .friend-links {
            background: #081f47;
            padding: 18px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .friend-links .container {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 13px;
            flex-wrap: wrap;
        }
        .friend-links .fl-label {
            color: rgba(255,255,255,0.55);
            flex-shrink: 0;
            padding-top: 0;
            font-weight: 500;
            letter-spacing: 1px;
        }
        .friend-links .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 20px;
            flex: 1;
        }
        .friend-links a {
            color: rgba(255,255,255,0.45);
            transition: color 0.3s ease;
            padding: 3px 0;
        }
        .friend-links a:hover { color: var(--gold); }
        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 2;
            border-top: 1px solid rgba(255,255,255,0.06);
            background: #061733;
        }
        .footer-bottom a { color: rgba(255,255,255,0.55); margin: 0 8px; }
        .footer-bottom a:hover { color: var(--gold); }
        .back-to-top {
            position: fixed;
            bottom: 36px;
            right: 36px;
            width: 50px; height: 50px;
            background: rgba(30, 90, 168, 0.85);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.18);
            color: #fff;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }
        .back-to-top.show { opacity: 1; visibility: visible; }
        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .float-cta { display: none; }
        .mobile-tabbar {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            height: 58px;
            background: rgba(255,255,255,0.95);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--border);
            z-index: 900;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .mobile-tabbar ul {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            height: 58px;
        }
        .mobile-tabbar a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2px;
            color: var(--text-secondary);
            font-size: 11px;
            height: 100%;
            transition: color 0.2s ease;
        }
        .mobile-tabbar a:hover { color: var(--primary); }
        .mobile-tabbar a.active { color: var(--primary); }
        .mobile-tabbar a svg {
            width: 22px; height: 22px;
            stroke: currentColor;
            stroke-width: 1.5;
            fill: none;
        }
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 1024px) {
            :root { --max-width: 960px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .process-timeline { grid-template-columns: repeat(5, 1fr); gap: 20px 0; }
            .process-timeline::before { display: none; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .news-grid { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
            .hero { height: 480px; }
            .hero-title { font-size: 32px; }
            .hero-inner { gap: 30px; }
            .gaoqi-grid { grid-template-columns: 1fr; }
            .sidebar {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            .about-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            :root {
                --nav-height: 56px;
                --topbar-height: 0;
                --section-gap: 56px;
            }
            body { font-size: 14px; padding-bottom: 62px; line-height: 1.7; }
            h2 { font-size: 22px; }
            h3 { font-size: 16px; }
            .section { padding: var(--section-gap) 0; }
            .container { padding: 0 16px; }
            .gaoqi-grid > *, .conditions-grid > *, .services-grid > *, .benefits-grid > *,
            .process-timeline > *, .materials-list > *, .assessment-form > *,
            .news-grid > *, .faq-grid > *, .about-grid > *, .footer-main > *,
            .stats-card > *, .case-m-card, .case-m-info > * { min-width: 0; }
            p, h1, h2, h3, h4, li, span { word-wrap: break-word; word-break: break-word; }
            .top-bar { display: none; }
            .header-main { height: var(--nav-height); }
            .logo-mark { width: 36px; height: 36px; border-radius: 6px; }
            .logo-mark svg { width: 20px; height: 20px; }
            .logo-text .main { font-size: 17px; letter-spacing: 0.5px; }
            .logo-text .sub { display: none; }
            .main-nav {
                position: fixed;
                top: 0; right: -100%;
                width: 75%;
                max-width: 320px;
                height: 100vh;
                background: #fff;
                z-index: 1001;
                display: block;
                box-shadow: -4px 0 20px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                overflow-y: auto;
                padding-top: 20px;
            }
            .main-nav.open { right: 0; }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                padding: 10px 0 100px;
            }
            .main-nav li { border-bottom: 1px solid var(--border-light); }
            .main-nav a { padding: 14px 24px; font-size: 15px; }
            .main-nav a::after { display: none; }
            .main-nav a.active {
                background: var(--primary-bg);
                color: var(--primary);
            }
            .header-right { display: none; }
            .menu-toggle { display: flex; }
            .hero { height: 480px; }
            .hero-bg::before {
                background: linear-gradient(to bottom, rgba(15,61,122,0.85) 0%, rgba(15,61,122,0.6) 50%, rgba(15,61,122,0.3) 100%);
            }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 0 16px;
                align-items: center;
                height: 100%;
            }
            .hero-right { display: none; }
            .hero-tag { font-size: 12px; margin-bottom: 14px; letter-spacing: 2px; }
            .hero-title { font-size: 28px; margin-bottom: 12px; line-height: 1.2; }
            .hero-sub { font-size: 14px; margin-bottom: 10px; gap: 10px; flex-wrap: wrap; }
            .hero-sub span:not(:last-child)::after { display: none; }
            .hero-desc { font-size: 13px; margin-bottom: 20px; line-height: 1.7; }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 16px;
            }
            .hero-btns .btn-primary,
            .hero-btns .btn-ghost {
                width: 100%;
                justify-content: center;
                height: 48px;
                font-size: 15px;
            }
            .hero-card { display: none; }
            .hero-trust { font-size: 12px; gap: 12px; }
            .hero-trust-item svg { width: 16px; height: 16px; }
            .hero-scroll-down { display: none; }
            .hero-dots { bottom: 24px; }
            .section-head { margin-bottom: 32px; }
            .section-head h2 { font-size: 24px; padding-bottom: 12px; }
            .section-head h2::after { width: 32px; height: 2px; }
            .section-head .sub { font-size: 13px; margin-top: 10px; line-height: 1.6; }
            .section-head .en { font-size: 11px; margin-bottom: 6px; letter-spacing: 3px; }
            .panel-head { margin-bottom: 10px; padding-bottom: 6px; }
            .panel-title-bar { width: 3px; height: 14px; }
            .panel-title h3 { font-size: 15px; }
            .stats-card { grid-template-columns: repeat(2, 1fr); gap: 0; }
            .stat-item { padding: 16px 8px; }
            .stat-num { font-size: 32px; }
            .stat-label { font-size: 13px; }
            .stat-item:not(:last-child)::after { display: none; }
            .stat-item:nth-child(odd)::after {
                content: '';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 50px;
                background: rgba(255,255,255,0.12);
                display: block;
            }
            .gaoqi-grid { grid-template-columns: 1fr; gap: 10px; }
            .gaoqi-main p { font-size: 12.5px; margin-bottom: 8px; line-height: 1.55; }
            .conditions-grid { grid-template-columns: repeat(2, 1fr); gap: 6px 8px; }
            .condition-card {
                padding: 8px;
                gap: 4px;
                flex-direction: column;
            }
            .cond-num { font-size: 16px; line-height: 1; }
            .cond-body h4 { font-size: 12px; font-weight: 600; margin-bottom: 0; line-height: 1.35; }
            .cond-body p { display: none; }
            .cond-body .cond-file { display: none; }
            .sidebar {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .side-card { padding: 10px 12px; }
            .side-card h4 { font-size: 12.5px; margin-bottom: 6px; padding-bottom: 5px; }
            .benefit-quick-list {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 5px 6px;
            }
            .bq-item {
                font-size: 10.5px;
                gap: 4px;
                padding: 4px 5px;
                background: var(--primary-bg-light);
                border-radius: 3px;
                line-height: 1.3;
                justify-content: center;
            }
            .bq-item .bq-tag {
                display: none;
            }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .benefit-card { padding: 12px 10px; }
            .benefit-icon { width: 32px; height: 32px; margin-bottom: 6px; }
            .benefit-icon svg { width: 16px; height: 16px; }
            .benefit-card h4 { font-size: 13px; margin-bottom: 3px; }
            .benefit-card p { font-size: 11.5px; line-height: 1.5; }
            .benefit-card .b-file { font-size: 10.5px; margin-top: 4px; padding-top: 4px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .service-card {
                padding: 10px;
                flex-direction: column;
                gap: 6px;
            }
            .service-icon {
                width: 32px; height: 32px;
                border-radius: var(--radius-sm);
            }
            .service-icon svg { width: 18px; height: 18px; }
            .service-body h4 { font-size: 13px; margin-bottom: 3px; }
            .service-body p {
                font-size: 11.5px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                line-height: 1.5;
            }
            .process-section { padding: 48px 0; }
            .process-timeline {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px 4px;
                margin-bottom: 16px;
            }
            .process-timeline::before { display: none; }
            .p-step {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                text-align: center;
                padding: 4px 2px;
            }
            .p-step-circle {
                width: 32px; height: 32px;
                margin: 0;
                flex-shrink: 0;
                font-size: 13px;
                border-width: 2px;
            }
            .p-step-body { flex: none; padding-top: 0; width: 100%; }
            .p-step h4 {
                font-size: 11px;
                margin-bottom: 0;
                line-height: 1.3;
                font-weight: 600;
                white-space: normal;
                word-break: break-all;
            }
            .p-step p { display: none; }
            .process-detail { padding: 14px 18px; font-size: 13px; line-height: 1.7; }
            .materials-wrap { padding: 12px 14px; border-radius: var(--radius-md); }
            .materials-list { grid-template-columns: 1fr; gap: 0; }
            .materials-list li {
                padding: 6px 0 6px 28px;
                font-size: 12.5px;
                margin: 0;
                line-height: 1.5;
            }
            .materials-list li::before {
                left: 4px; top: 6px;
                width: 18px; height: 18px;
                line-height: 18px;
                font-size: 10px;
            }
            .assessment-wrap { padding: 14px; }
            .assessment-form { grid-template-columns: 1fr; gap: 10px; margin-bottom: 12px; }
            .assessment-form label { font-size: 12px; margin-bottom: 3px; }
            .assessment-form select, .assessment-form input { height: 36px; font-size: 13px; }
            .assessment-submit button { width: 100%; height: 38px; font-size: 13px; padding: 0 20px; }
            .cases-table-wrap { border: none; box-shadow: none; background: transparent; }
            .cases-table { display: none; }
            .case-mobile-cards { display: flex; flex-direction: column; gap: 10px; }
            .case-m-card {
                background: #fff;
                border: 1px solid var(--border);
                border-radius: var(--radius-md);
                padding: 10px 12px;
                box-shadow: var(--shadow-sm);
            }
            .case-m-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 6px;
                padding-bottom: 6px;
                border-bottom: 1px dashed var(--border-light);
            }
            .case-m-title { font-size: 13px; font-weight: 600; color: var(--text-title); }
            .case-m-status { flex-shrink: 0; margin-left: 6px; font-size: 11px; padding: 1px 8px; }
            .case-m-info {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 3px 12px;
                font-size: 11.5px;
            }
            .case-m-info div { display: flex; gap: 4px; color: var(--text-secondary); line-height: 1.45; }
            .case-m-info strong { color: var(--text-tertiary); font-weight: 500; flex-shrink: 0; }
            .case-m-desc {
                margin-top: 6px;
                font-size: 11.5px;
                color: var(--text-tertiary);
                line-height: 1.5;
                padding-top: 6px;
                border-top: 1px dashed var(--border-light);
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .panel-head { margin-bottom: 12px; padding-bottom: 8px; }
            .panel-title-bar { width: 4px; height: 16px; }
            .panel-title h3 { font-size: 16px; }
            .news-grid { grid-template-columns: 1fr; gap: 16px; }
            .news-featured-img { height: 140px; }
            .news-featured-img h3 { font-size: 17px; padding: 0 16px; }
            .news-featured-body { padding: 16px 20px; }
            .news-meta { font-size: 12px; margin-bottom: 8px; gap: 10px; }
            .news-featured-body p { font-size: 13.5px; line-height: 1.7; margin-bottom: 0; }
            .news-list-items a { padding: 14px 18px; gap: 14px; min-height: 52px; }
            .news-list-items li:hover a { padding-left: 18px; }
            .news-date-tag { min-width: 50px; padding: 6px 4px; }
            .news-date-tag .day { font-size: 18px; }
            .news-date-tag .month { font-size: 11px; margin-top: 2px; }
            .news-text .title { font-size: 14.5px; margin-bottom: 4px; -webkit-line-clamp: 2; line-height: 1.5; }
            .news-text .source { font-size: 12px; }
            .featured-watermark { font-size: 56px; top: 8px; right: 10px; }
            .featured-cat-tag { top: 14px; left: 16px; font-size: 11px; padding: 4px 10px; letter-spacing: 1px; }
            .featured-readmore { margin-top: 14px; font-size: 13px; }
            .faq-grid { grid-template-columns: 1fr; gap: 0; }
            .faq-item { padding: 14px 0; }
            .faq-q { padding: 0 0 0 36px; font-size: 15px; line-height: 1.5; margin-bottom: 8px; }
            .faq-q .q-tag { font-size: 22px; top: 1px; }
            .faq-a { padding: 0 0 0 36px; font-size: 13px; line-height: 1.7; }
            .faq-a::before { font-size: 18px; top: 2px; }
            .about-grid { gap: 20px; }
            .about-text p { font-size: 14px; margin-bottom: 10px; line-height: 1.8; }
            .about-side { padding: 20px 24px; }
            .about-side h3 { font-size: 16px; margin-bottom: 12px; padding-bottom: 8px; }
            .about-side ul li { padding: 8px 0 8px 24px; font-size: 14px; line-height: 1.6; }
            .footer-main {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 28px 0 20px;
            }
            .footer-qr-wrap { justify-content: flex-start; }
            .friend-links .container { flex-direction: column; gap: 6px; font-size: 12px; }
            .footer-bottom { font-size: 11px; padding: 12px 0; }
            .footer-col h4 { font-size: 14px; margin-bottom: 12px; padding-bottom: 8px; }
            .back-to-top {
                width: 42px; height: 42px;
                bottom: 76px; right: 16px;
            }
            .float-cta { display: none; }
            .mobile-tabbar { display: block; }
        }
        @media (max-width: 480px) {
            .hero { height: 400px; }
            .hero-title { font-size: 22px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .wx-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s ease; padding: 20px; }
        .wx-modal-overlay.show { opacity: 1; visibility: visible; }
        .wx-modal { background: #fff; border-radius: 16px; width: 100%; max-width: 380px; padding: 32px 28px 28px; text-align: center; position: relative; transform: translateY(20px) scale(.95); transition: transform .3s ease; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
        .wx-modal-overlay.show .wx-modal { transform: translateY(0) scale(1); }
        .wx-modal-close { position: absolute; top: 12px; right: 14px; width: 32px; height: 32px; border: none; background: var(--bg-alt); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-tertiary); transition: all .3s ease; }
        .wx-modal-close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }
        .wx-modal-close svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }
        .wx-modal-title { font-size: 20px; font-weight: 700; color: var(--text-title); margin-bottom: 6px; letter-spacing: .5px; }
        .wx-modal-subtitle { font-size: 13px; color: var(--text-tertiary); margin-bottom: 20px; }
        .wx-qr-wrap { width: 200px; height: 200px; margin: 0 auto 16px; padding: 10px; background: #fff; border: 2px solid var(--gold); border-radius: 12px; }
        .wx-qr-wrap img { width: 100%; height: 100%; object-fit: contain; }
        .wx-modal-phone { font-size: 22px; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; letter-spacing: .5px; }
        .wx-modal-phone-label { font-size: 12px; color: var(--text-tertiary); margin-bottom: 16px; }
        .wx-modal-tip { font-size: 13px; color: var(--text-secondary); line-height: 1.7; padding: 12px 16px; background: var(--primary-bg-light); border-radius: 8px; border-left: 3px solid var(--gold); text-align: left; }
        .wx-modal-tip strong { color: var(--gold-dark); }
    
@media (max-width:768px){.footer-main{display:none!important}}
a.wx-modal-phone{text-decoration:none;display:block}

.policy-note{background:var(--primary-bg-light);padding:14px 18px;border-radius:0 8px 8px 0;font-size:13px;color:var(--text-secondary);line-height:1.7;margin-top:16px}
