:root {
            --bg: #f3f0eb;
            --panel: #ffffff;
            --line: #ddd8d1;
            --text: #1d232d;
            --muted: #6a7380;
            --brand: #ff6b3d;
            --brand-deep: #243349;
            --brand-soft: #fff0e9;
        }
        body {
            margin: 0;
            padding: 22px 18px 36px;
            color: var(--text);
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.82;
            background:
                radial-gradient(circle at top left, rgba(255, 107, 61, 0.12), transparent 24%),
                radial-gradient(circle at bottom right, rgba(36, 51, 73, 0.08), transparent 28%),
                linear-gradient(180deg, #f8f6f1 0%, #f2efea 100%);
        }
        header {
            max-width: 1180px;
            margin: 0 auto 18px;
            padding: 0;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(135deg, #1f2b3c 0%, #304661 54%, #ff6b3d 100%);
            color: #fff;
            box-shadow: 0 24px 48px rgba(27, 35, 49, 0.2);
        }
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            min-height: 210px;
        }
        .hero-copy {
            padding: 38px 34px 40px;
        }
        .hero-side {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px 28px;
            background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.14));
        }
        .hero-note {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 18px;
            border-radius: 18px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.16);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
        }
        .hero-note span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.14);
            font-size: 13px;
            color: rgba(255,255,255,0.92);
            font-weight: 700;
        }
        .site-title {
            margin: 0 0 12px;
            max-width: 760px;
            font-size: 42px;
            line-height: 1.18;
            font-weight: 700;
        }
        .site-subtitle {
            margin: 0;
            max-width: 620px;
            font-size: 15px;
            color: rgba(255,255,255,0.9);
        }
        .top-nav-container {
            width: fit-content;
            max-width: calc(100% - 36px);
            margin: -6px auto 24px;
            padding: 14px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 14px 28px rgba(32, 42, 58, 0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-btn {
            display: inline-flex;
            align-items: center;
            min-height: 40px;
            padding: 0 16px;
            border-radius: 12px;
            background: #f7f8fb;
            border: 1px solid #d9e0ea;
            color: var(--brand-deep);
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }
        .article-shell {
            max-width: 1180px;
            margin: 0 auto;
            background: var(--panel);
            border: 1px solid #e2ddd7;
            border-radius: 28px;
            box-shadow: 0 20px 44px rgba(34, 42, 52, 0.08);
            overflow: hidden;
        }
        .meta-band {
            padding: 18px 24px;
            background: linear-gradient(135deg, #243349 0%, #314663 100%);
        }
        .meta-band .page-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            color: #eef3fb;
            font-size: 13px;
        }
        .meta-band .page-meta span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
        }
        .article-body {
            padding: 0 38px 46px;
        }
        .breadcrumb-wrap {
            margin: 22px 0 18px;
            padding: 14px 18px;
            border-radius: 16px;
            background: #faf6f2;
            border: 1px solid #ece4da;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            color: var(--muted);
            font-size: 13px;
        }
        .breadcrumb a {
            color: var(--brand);
            text-decoration: none;
            font-weight: 700;
        }
        .breadcrumb-sep {
            color: #a6aeba;
        }
        h1 {
            margin: 0 0 22px;
            max-width: 950px;
            font-size: 38px;
            line-height: 1.28;
            color: var(--brand-deep);
            letter-spacing: -0.01em;
        }
        h2 {
            margin-top: 40px;
            margin-bottom: 16px;
            display: inline-block;
            padding: 10px 16px;
            border-radius: 14px;
            background: #243349;
            color: #fff;
            font-size: 24px;
        }
        h3 {
            margin-top: 30px;
            margin-bottom: 10px;
            color: #243349;
            font-size: 20px;
        }
        p, li {
            font-size: 17px;
            color: #38414d;
        }
        ul, ol {
            padding-left: 24px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #dfe5ed;
        }
        th, td {
            padding: 14px 12px;
            border-bottom: 1px solid #dfe5ed;
            text-align: left;
            vertical-align: top;
        }
        th {
            background: #f2f6fb;
            color: var(--brand-deep);
        }
        blockquote, .alert-box {
            margin: 24px 0;
            padding: 18px 20px;
            border-radius: 18px;
            background: linear-gradient(180deg, #fff7f2 0%, #fffdfb 100%);
            border: 1px solid #ffe2d5;
            box-shadow: 0 10px 20px rgba(255, 107, 61, 0.06);
        }
        .content-img {
            margin: 32px 0;
            text-align: center;
        }
        .content-img img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 16px 34px rgba(38, 49, 64, 0.14);
        }
        .highlight {
            padding: 2px 7px;
            border-radius: 6px;
            background: var(--brand-soft);
            color: #ce4e24;
            font-weight: 700;
        }
        .home-section {
            margin-top: 42px;
        }
        .article-card-grid,
        .feature-panel-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 18px;
            margin-top: 18px;
        }
        .article-card,
        .feature-panel {
            position: relative;
            padding: 20px;
            border-radius: 20px;
            border: 1px solid #e2e7ee;
            background: #fff;
            box-shadow: 0 12px 24px rgba(31, 43, 60, 0.05);
        }
        .article-card::before,
        .feature-panel::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #243349 0%, #ff6b3d 100%);
            border-radius: 20px 20px 0 0;
        }
        .article-card-meta,
        .feature-panel-head {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--muted);
            font-size: 12px;
        }
        .article-card-cat {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 999px;
            background: #f4f6fb;
            color: var(--brand-deep);
            font-weight: 700;
        }
        .article-card-title,
        .feature-panel h3 {
            margin: 0 0 10px;
            font-size: 19px;
            line-height: 1.46;
        }
        .article-card-title a,
        .feature-panel h3 a,
        .feature-panel-head a {
            color: var(--text);
            text-decoration: none;
        }
        .feature-panel-head a {
            color: var(--brand);
            font-weight: 700;
        }
        .article-card-excerpt,
        .feature-panel p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }
        .category-overview {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }
        .category-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid #dde4ec;
            background: #f9fafc;
            color: #2a3440;
            font-weight: 700;
            text-decoration: none;
        }
        .category-pill span {
            display: inline-block;
            min-width: 22px;
            padding: 2px 6px;
            border-radius: 999px;
            background: #fff0e8;
            color: var(--brand);
            text-align: center;
            font-size: 12px;
        }
        .context-link-box {
            margin: 18px 0 10px;
            padding: 16px 18px;
            border-radius: 16px;
            background: #f7f8fb;
            border: 1px solid #e1e6ed;
            color: #525c69;
            font-size: 14px;
            line-height: 1.8;
        }
        .context-link-box a,
        a[data-auto-link="1"] {
            color: var(--brand);
            text-decoration: none;
            font-weight: 700;
        }
        a[data-auto-link="1"] {
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .context-link-sep {
            margin: 0 8px;
            color: #a6b0bc;
        }
        .footer-nav-container {
            max-width: 1180px;
            margin: 24px auto 0;
            padding: 28px 24px;
            border-radius: 24px;
            background: linear-gradient(135deg, #243349 0%, #2d405a 100%);
            text-align: center;
            color: #fff;
            box-shadow: 0 16px 36px rgba(25, 34, 46, 0.18);
        }
        .nav-title {
            display: block;
            margin-bottom: 18px;
            font-size: 18px;
            color: #fff4ef;
        }
        .tag-link {
            display: inline-block;
            margin: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }
        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }
            .hero-side {
                justify-content: flex-start;
                padding: 0 22px 24px;
            }
            .top-nav-container {
                width: auto;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            body { padding: 12px; }
            .site-title { font-size: 32px; }
            .hero-copy { padding: 28px 22px 26px; }
            .hero-side { padding: 0 22px 24px; }
            .meta-band { padding: 14px 16px; }
            .meta-band .page-meta span {
                min-height: 30px;
                font-size: 12px;
            }
            .article-body { padding: 0 18px 30px; }
            h1 {
                font-size: 31px;
            }
        }

:root { --home-shell-width: 1180px; }
        .top-nav-container {
            box-sizing: border-box;
            width: 100%;
            max-width: var(--home-shell-width);
            justify-content: center;
        }
        .site-group-nav-promo {
            box-sizing: border-box;
            width: 100%;
            max-width: var(--home-shell-width);
            margin: 14px auto 24px;
            padding: 0 16px;
        }
        .site-group-nav-promo-link {
            display: block;
            border-radius: 22px;
            overflow: hidden;
            background: #f4f7fb;
            box-shadow: 0 18px 38px rgba(24, 48, 79, 0.10);
        }
        .site-group-nav-promo-link img,
        .site-group-nav-promo-image {
            display: block;
            width: 100%;
            height: auto;
            max-height: 280px;
            object-fit: cover;
            border: 0;
        }
        .manual-ad-module {
            box-sizing: border-box;
            width: 100%;
            margin: 0 0 28px;
        }
        .manual-ad-module-inner,
        .manual-ad-module-media {
            box-sizing: border-box;
            width: 100%;
        }
        .manual-ad-module-media:empty {
            display: none;
        }
        .manual-ad-module-media img {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: 22px;
            background: #f4f7fb;
            box-shadow: 0 18px 38px rgba(24, 48, 79, 0.10);
        }
        .site-group-copy-widget {
            position: fixed;
            left: 50%;
            right: auto;
            bottom: 12px;
            transform: translateX(-50%);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            box-sizing: border-box;
            width: min(520px, calc(100vw - 28px));
            min-height: 58px;
            padding: 9px 10px 9px 14px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(13, 35, 63, 0.96), rgba(11, 73, 82, 0.96));
            box-shadow: 0 18px 46px rgba(8, 18, 33, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            color: #fff;
            font-family: inherit;
        }
        .site-group-copy-widget-info {
            display: grid;
            grid-template-columns: auto minmax(0, auto);
            align-items: baseline;
            gap: 2px 10px;
            min-width: 0;
        }
        .site-group-copy-widget-title {
            margin: 0;
            font-size: 12px;
            font-weight: 800;
            color: rgba(219, 244, 255, 0.92);
            white-space: nowrap;
        }
        .site-group-copy-widget-value {
            margin: 0;
            font-size: 18px;
            font-weight: 900;
            letter-spacing: 0.04em;
            word-break: break-all;
            color: #fff;
        }
        .site-group-copy-widget-tip {
            grid-column: 1 / -1;
            margin: 0;
            font-size: 11px;
            line-height: 1.4;
            color: rgba(223, 238, 246, 0.76);
        }
        .site-group-copy-widget-button {
            flex: 0 0 auto;
            width: auto;
            min-width: 116px;
            min-height: 42px;
            padding: 0 18px;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
            color: #183047;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 10px 22px rgba(253, 160, 133, 0.24);
            transition: transform .16s ease, box-shadow .16s ease;
        }
        .site-group-copy-widget-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(253, 160, 133, 0.32);
        }
        .site-group-copy-widget-button:focus {
            outline: 3px solid rgba(255, 255, 255, 0.28);
            outline-offset: 2px;
        }
        .enterprise-section { margin-top: 42px; }
        .home-slot-wrap {
            display: block;
            width: 100%;
            min-height: 0;
            margin: 0;
            padding: 0;
            border: 0;
        }
        .home-slot-wrap[data-home-slot="after_top_nav"]:not(:empty) {
            box-sizing: border-box;
            max-width: var(--home-shell-width);
            margin: 0 auto 24px;
            padding: 0 38px 38px;
            border: 1px solid #e2ddd7;
            border-radius: 28px;
            background: #fff;
            box-shadow: 0 20px 44px rgba(34, 42, 52, 0.08);
            overflow: hidden;
        }
        .home-slot-wrap[data-home-slot="after_top_nav"]:not(:empty) > .home-section:first-child {
            margin-top: 38px !important;
        }
        .home-slot-wrap[data-home-slot="after_top_nav"]:not(:empty) > .home-section:last-child {
            margin-bottom: 0 !important;
        }
        .enterprise-card {
            border: 1px solid rgba(24, 48, 79, 0.10);
            border-radius: 18px;
            padding: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.96) 100%);
            box-shadow: 0 12px 24px rgba(18, 32, 52, 0.05);
        }
        .enterprise-card-head {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
            color: #5d6b7a;
        }
        .enterprise-card-head strong {
            color: #20313c;
            font-size: 18px;
        }
        .enterprise-lead {
            margin: 0 0 16px;
            color: #3a4652;
            font-size: 15px;
            line-height: 1.9;
        }
        .enterprise-meta-pills,
        .enterprise-inline-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 12px;
        }
        .enterprise-pill,
        .enterprise-inline-list span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(18, 86, 138, 0.06);
            border: 1px solid rgba(18, 86, 138, 0.08);
            color: #314150;
            font-size: 13px;
        }
        .enterprise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin-top: 18px;
        }
        .home-section .ai-responsive-grid,
        .home-slot-wrap .ai-responsive-grid {
            display: grid !important;
            grid-template-columns: repeat(var(--ai-module-desktop-cols, 4), minmax(0, 1fr)) !important;
            gap: 18px;
            align-items: stretch;
        }
        .enterprise-mini-card {
            position: relative;
            padding-top: 48px;
        }
        .enterprise-mini-card p {
            margin: 0;
            font-size: 15px;
            color: #3a4652;
            line-height: 1.8;
        }
        .enterprise-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 48px;
            height: 28px;
            border-radius: 999px;
            background: #20313c;
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
        }
        .enterprise-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin-top: 18px;
        }
        .enterprise-step {
            border-radius: 18px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(35, 51, 73, 0.96) 0%, rgba(57, 76, 104, 0.96) 100%);
            color: #fff;
            box-shadow: 0 12px 24px rgba(18, 32, 52, 0.08);
        }
        .enterprise-step p {
            margin: 10px 0 0;
            color: rgba(255,255,255,0.92);
            font-size: 15px;
            line-height: 1.8;
        }
        .enterprise-step-no {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.04em;
        }
        .enterprise-inline-card {
            margin-top: 36px;
            border: 1px solid rgba(24, 48, 79, 0.10);
            border-radius: 20px;
            padding: 22px;
            background: linear-gradient(180deg, rgba(247,250,253,0.98) 0%, rgba(255,255,255,0.98) 100%);
            box-shadow: 0 10px 22px rgba(18, 32, 52, 0.05);
        }
        .enterprise-inline-card p {
            margin: 0;
            color: #3c4956;
            line-height: 1.85;
        }
        .enterprise-footer-box {
            max-width: 1180px;
            margin: 28px auto 0;
            padding: 26px 24px;
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,248,252,0.98) 100%);
            border: 1px solid rgba(24, 48, 79, 0.10);
            box-shadow: 0 16px 28px rgba(18, 32, 52, 0.06);
        }
        .enterprise-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
        }
        .enterprise-footer-item h3 {
            margin: 0 0 12px;
            font-size: 18px;
        }
        .enterprise-footer-item p {
            margin: 0 0 10px;
            color: #46525d;
            font-size: 14px;
            line-height: 1.8;
        }
        .enterprise-footer-list {
            margin: 0;
            padding-left: 18px;
            color: #46525d;
        }
        .enterprise-footer-list li {
            margin-bottom: 8px;
            font-size: 14px;
        }
        .enterprise-contact-stack p strong {
            color: #20313c;
        }
        .enterprise-footer-note {
            margin-top: 12px;
            font-size: 13px;
            color: #66717c;
        }
        @media (max-width: 768px) {
            .site-group-nav-promo {
                margin: 10px auto 18px;
                padding: 0 12px;
            }
            .site-group-nav-promo-link {
                border-radius: 16px;
            }
            .site-group-copy-widget {
                align-items: center;
                bottom: 8px;
                width: calc(100vw - 18px);
                min-height: 58px;
                padding: 10px;
                border-radius: 18px;
                gap: 8px;
            }
            .site-group-copy-widget-info {
                grid-template-columns: auto minmax(0, auto);
                gap: 2px 8px;
            }
            .site-group-copy-widget-title {
                font-size: 12px;
            }
            .site-group-copy-widget-value {
                font-size: 17px;
            }
            .site-group-copy-widget-tip {
                font-size: 11px;
            }
            .site-group-copy-widget-button {
                min-width: 104px;
                min-height: 40px;
                padding: 0 12px;
                font-size: 13px;
            }
            .home-slot-wrap[data-home-slot="after_top_nav"]:not(:empty) {
                padding: 0 18px 30px;
                border-radius: 24px;
            }
            .home-slot-wrap[data-home-slot="after_top_nav"]:not(:empty) > .home-section:first-child {
                margin-top: 30px !important;
            }
            .enterprise-card,
            .enterprise-inline-card,
            .enterprise-footer-box {
                padding: 18px;
            }
            .enterprise-grid,
            .enterprise-steps,
            .enterprise-footer-grid {
                grid-template-columns: 1fr;
            }
            .home-section .ai-responsive-grid,
            .home-slot-wrap .ai-responsive-grid {
                grid-template-columns: repeat(var(--ai-module-mobile-cols, 2), minmax(0, 1fr)) !important;
                gap: 12px;
            }
        }
