
        /* 全局样式：与 Pillar 页完全统一，保证品牌视觉一致性 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Open Sans", "Open Sans Regular", Arial, sans-serif;
            font-weight: 400;
            color: #333;
            background-color: #fafafa;
            line-height: 1.7;
        }
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 24px;
        }
        .content-inner {
            background: #ffffff;
            padding: 40px 50px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }
        /* 标题层级：与 Pillar 页视觉统一 */
        h1 {
            color: #1a1a1a;
            font-size: 42px;
            margin: 0 0 24px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            position: relative;
            padding-left: 20px;
            border-left: 6px solid #2e967f;
        }
        h1::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 20px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #2e967f, rgba(46, 150, 127, 0.4));
            border-radius: 1px;
        }
        h2 {
            color: #2e967f;
            font-size: 32px;
            margin: 48px 0 24px;
            font-weight: 600;
            line-height: 1.35;
            position: relative;
            padding-left: 20px;
            border-left: 6px solid #2e967f;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 20px;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #2e967f, rgba(46, 150, 127, 0.4));
            border-radius: 1px;
        }
        h3 {
            color: #222;
            font-size: 26px;
            margin: 32px 0 16px;
            font-weight: 600;
            line-height: 1.35;
        }
        h4 {
            color: #2e967f;
            font-size: 20px;
            margin: 24px 0 12px;
            font-weight: 600;
            line-height: 1.35;
        }
        /* 正文与列表 */
        p {
            color: #444;
            font-size: 16px;
            margin: 0 0 18px;
            line-height: 1.75;
        }
        ul {
            padding-left: 28px;
            color: #444;
            margin: 0 0 20px;
        }
        li {
            margin-bottom: 12px;
            line-height: 1.65;
            position: relative;
        }
        li::before {
            content: "•";
            position: absolute;
            left: -18px;
            color: #2e967f;
            font-weight: 700;
        }
        /* 场景卡片：与 Pillar 页样式统一，强化视觉一致性 */
        .scene-card {
            background: linear-gradient(145deg, #f5f9f8, #eaf6f4);
            padding: 32px 36px;
            border-radius: 16px;
            margin: 30px 0;
            border: 1px solid #e8f4f2;
            box-shadow: 0 6px 16px rgba(46, 150, 127, 0.06);
            transition: all 0.3s ease;
        }
        .scene-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(46, 150, 127, 0.1);
            border-color: #2e967f;
        }
        .scene-card h3 {
            margin-top: 0;
            color: #2e967f;
            position: relative;
            padding-bottom: 8px;
        }
        .scene-card h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #2e967f;
            border-radius: 1px;
        }
        /* 产品卡片：与 Pillar 页样式统一 */
        .product-card {
            background: linear-gradient(145deg, #fefefe, #f9f9f9);
            padding: 28px 32px;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid #f0f0f0;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            border-color: #e8f4f2;
        }
        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #2e967f, #44b89d);
        }
        .product-card h3 {
            margin-top: 0;
            margin-bottom: 12px;
        }
        /* 按钮样式：与 Pillar 页完全统一 */
        .cta-btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 10px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .cta-btn-primary {
            background: linear-gradient(135deg, #2e967f, #247d68);
            color: #fff;
        }
        .cta-btn-primary:hover {
            background: linear-gradient(135deg, #247d68, #1e6b59);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 150, 127, 0.2);
            color: #fff;
        }
        .cta-btn-secondary {
            background: #ffffff;
            color: #2e967f;
            border: 2px solid #2e967f;
            box-shadow: 0 4px 12px rgba(46, 150, 127, 0.05);
        }
        .cta-btn-secondary:hover {
            background: #2e967f;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(46, 150, 127, 0.15);
        }
        .cta-btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        .cta-btn:active::after {
            width: 300px;
            height: 300px;
            opacity: 0;
        }
        /* 链接样式：与 Pillar 页统一 */
        .blog-link {
            color: #2e967f;
            text-decoration: none;
            font-weight: 500;
            position: relative;
        }
        .blog-link::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #2e967f, #44b89d);
            transition: width 0.3s ease;
        }
        .blog-link:hover {
            color: #247d68;
        }
        .blog-link:hover::after {
            width: 100%;
        }
        /* 锚点导航：快速跳转，提升体验 */
        .anchor-nav {
            background: #f9f9f9;
            padding: 16px 24px;
            border-radius: 10px;
            margin: 20px 0 30px;
            border: 1px solid #eee;
        }
        .anchor-nav a {
            color: #2e967f;
            text-decoration: none;
            font-weight: 600;
            margin-right: 20px;
            position: relative;
        }
        .anchor-nav a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2e967f;
            transition: width 0.3s ease;
        }
        .anchor-nav a:hover::after {
            width: 100%;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .page-container {
                padding: 20px 16px;
            }
            .content-inner {
                padding: 24px 20px;
                border-radius: 12px;
            }
            h1 {
                font-size: 32px;
                margin-bottom: 20px;
            }
            h2 {
                font-size: 26px;
                margin: 36px 0 20px;
            }
            h3 {
                font-size: 22px;
            }
            .scene-card, .product-card {
                padding: 24px 20px;
            }
            .cta-btn {
                width: 100%;
                text-align: center;
            }
            .anchor-nav {
                padding: 12px 16px;
            }
            .anchor-nav a {
                display: block;
                margin: 8px 0;
            }
        }
    