
        /* 基础样式复刻与自定义 */
        :root {
            --primary-color: #D44439;
            --accent-color: #4A90E2;
            --bg-light: #ffffff;
            --bg-soft: #f8f9fa;
            --text-main: #2d3436;
            --text-sub: #636e72;
            --spacing-unit: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--bg-light);
        }

        /* 导航栏样式复用 */
        .i_v9rhf6-bajic {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }
        .i_v9rhf6-nojipur {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }
        .i_v9rhf6-logo img {
            height: 32px;
            display: block;
        }
        .i_v9rhf6-avixi {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .i_v9rhf6-avixi a {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .i_v9rhf6-avixi a:hover, .i_v9rhf6-avixi a.active {
            color: var(--primary-color);
        }

        /* 独特页面布局 - 创意种子 1775736870861_68891 */
        .i_v9rhf6-patifut {
            padding-top: 160px;
            padding-bottom: 96px;
            background: linear-gradient(135deg, #fff 0%, #fdf2f2 100%);
            position: relative;
            overflow: hidden;
        }

        /* 背景装饰图 */
        .i_v9rhf6-patifut::before {
            content: "";
            position: absolute;
            right: -10%;
            top: 10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212,68,57,0.05) 0%, transparent 70%);
            z-index: 0;
        }

        .i_v9rhf6-uher {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 1;
        }

        .i_v9rhf6-kaqiti {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .i_v9rhf6-ifike {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .i_v9rhf6-ifike h1 {
            font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: #1a1a1a;
            font-weight: 800;
            word-break: keep-all;
        }

        .i_v9rhf6-ifike p {
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            color: var(--text-sub);
            margin-bottom: 40px;
            max-width: 540px;
        }

        .i_v9rhf6-ajekadu {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: white;
            padding: 16px 48px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 20px rgba(212,68,57,0.2);
        }

        .i_v9rhf6-ajekadu:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212,68,57,0.3);
        }

        /* 模拟流程图视觉元素 */
        .i_v9rhf6-hahip {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .i_v9rhf6-visual-box {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1/1;
            background: white;
            border-radius: 24px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.08);
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }

        .i_v9rhf6-node {
            padding: 12px 24px;
            border-radius: 8px;
            background: #f1f3f5;
            border-left: 4px solid var(--accent-color);
            font-size: 14px;
            font-weight: 600;
            align-self: flex-start;
        }

        .i_v9rhf6-node.red { border-left-color: var(--primary-color); background: #fff5f5; align-self: center; }
        .i_v9rhf6-node.blue { border-left-color: #4A90E2; background: #ebf5ff; align-self: flex-end; }

        /* 功能网格区 */
        .i_v9rhf6-kaqiti-grid {
            padding: 96px 0;
            background: #fff;
        }

        .i_v9rhf6-grid-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .i_v9rhf6-grid-title h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 16px;
        }

        .i_v9rhf6-ufap-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .i_v9rhf6-ufap {
            background: var(--bg-soft);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .i_v9rhf6-ufap:hover {
            background: white;
            border-color: #eee;
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .i_v9rhf6-ufap h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .i_v9rhf6-ufap p {
            color: var(--text-sub);
            font-size: 15px;
            line-height: 1.8;
        }

        /* 深度集成区块 */
        .i_v9rhf6-integration {
            padding: 96px 0;
            background: #1a1a1a;
            color: white;
            border-radius: 40px;
            margin: 0 24px 96px;
        }

        .i_v9rhf6-integration .i_v9rhf6-uher {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
        }

        .i_v9rhf6-integration h2 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            margin-bottom: 24px;
            color: #fff;
        }

        .i_v9rhf6-ileco {
            display: inline-block;
            margin-top: 32px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 4px;
        }

        /* 页脚区域 */
        .i_v9rhf6-afob {
            background: #f8f9fa;
            padding: 80px 0 40px;
            border-top: 1px solid #eee;
        }

        .i_v9rhf6-codine {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .i_v9rhf6-footer-brand {
            flex: 1;
            min-width: 240px;
        }

        .i_v9rhf6-footer-brand h4 {
            font-size: 20px;
            margin-bottom: 16px;
            color: var(--primary-color);
        }

        .i_v9rhf6-footer-links {
            display: flex;
            gap: 64px;
            flex-wrap: wrap;
        }

        .i_v9rhf6-link-group h5 {
            margin-bottom: 20px;
            font-size: 16px;
            color: #333;
        }

        .i_v9rhf6-link-group a {
            display: block;
            text-decoration: none;
            color: var(--text-sub);
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .i_v9rhf6-link-group a:hover {
            color: var(--primary-color);
        }

        .i_v9rhf6-copyright {
            width: 100%;
            text-align: center;
            padding-top: 64px;
            color: #999;
            font-size: 13px;
        }

        @media (max-width: 768px) {
            .i_v9rhf6-avixi { display: none; }
            .i_v9rhf6-patifut { padding-top: 120px; }
            .i_v9rhf6-ifike { text-align: center; }
            .i_v9rhf6-ifike p { margin: 0 auto 32px; }
            .i_v9rhf6-integration { margin: 0 12px 64px; border-radius: 20px; }
        }
    