/* ==================== 0. 全局本地硬核字体驱动 ==================== */
    /* font-display: block 阻断策略：不解析完字体决不渲染，彻底根除 nav 弹跳 */
    @font-face {
        font-family: 'Noto Serif SC';
        font-style: normal;
        font-weight: 300;
        font-display: block;
        src: url("/static/fonts/NotoSerifSC-Light.woff2") format("woff2");
    }
    @font-face {
        font-family: 'Noto Serif SC';
        font-style: normal;
        font-weight: 400;
        font-display: block;
        src: url("/static/fonts/NotoSerifSC-Regular.woff2") format("woff2");
    }
    @font-face {
        font-family: 'Noto Serif SC';
        font-style: normal;
        font-weight: 700;
        font-display: block;
        src: url("/static/fonts/NotoSerifSC-Bold.woff2") format("woff2");
    }

/* ==================== 🛠️ 凯竹文旅全站视觉统一中枢（全局格式化） ==================== */
    /* 全局html根节点基础配置 */
    html {
        font-size: 18px !important; /* 全局基础字号锁定18px */
        scroll-behavior: smooth; /* 页面平滑滚动 */
        scrollbar-gutter: stable; /* 滚动条预留固定空间，布局不抖动 */
    }

    /* 1. 基础大底座：默认采用绝对合规的【思源黑体】，确保全站导航、电话、普通文本清爽干净 */
    body, html, input, button, select, textarea {
        font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
        -webkit-font-smoothing: antialiased; /* 苹果设备字体抗锯齿优化 */
    }

    /* 2. 高奢文旅视觉舱：所有的标题、大字导语、卡片名字、长文详情，统一强制切换为极具文化厚度的【思源宋体】 */
    h1, h2, h3, h4, h5, h6,
    .nav-brand-premium,
    .highlight-premium,
    .business-hero-summary p,
    .glass-body-舱,
    .style-content,
    .capsule-text-main {
        font-family: 'Noto Serif SC', serif !important;
    }

    /* 3. 数据技术标签舱：序号、Agent日志、芯片，采用工整的等宽数字黑体 */
    .case-serial-num, .card-serial, .news-serial-num, .terminal-logs, .badge, .branch-cyber-badge, .advantage-serial-number, .capsule-text-top {
        font-family: 'Noto Sans SC', monospace !important;
        font-weight: 500 !important;
    }

