
        :root {
            --i_v9rhf6-primary: #1e88e5;
            --i_v9rhf6-secondary: #ff4d4f;
            --i_v9rhf6-dark: #262626;
            --i_v9rhf6-light: #f5f5f7;
            --i_v9rhf6-white: #ffffff;
            --i_v9rhf6-gray: #8c8c8c;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: var(--i_v9rhf6-dark);
            background-color: var(--i_v9rhf6-white);
            word-break: keep-all;
            overflow-x: hidden;
        }

        /* 强制导航栏样式复用 */
        .i_v9rhf6-bajic {
            position: sticky;
            top: 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;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .i_v9rhf6-logo img {
            height: 32px;
            display: block;
        }

        .i_v9rhf6-avixi {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .i_v9rhf6-avixi a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            min-width: 0;
        }

        .i_v9rhf6-avixi a:hover, 
        .i_v9rhf6-avixi a.active {
            color: var(--i_v9rhf6-primary);
        }

        /* 独特展示区域设计 */
        .i_v9rhf6-uher {
            width: 100%;
            padding: 96px 24px;
            background: radial-gradient(circle at top right, #e3f2fd, #ffffff);
            overflow: hidden;
        }

        .i_v9rhf6-kaqiti {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

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

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

        .i_v9rhf6-patifut p {
            font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
            color: var(--i_v9rhf6-gray);
            margin-bottom: 32px;
            max-width: 600px;
        }

        .i_v9rhf6-ifike {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        /* 模拟云端视觉元素 */
        .i_v9rhf6-hahip {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(30, 136, 229, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
            position: relative;
        }

        /* 卡片组件 */
        .i_v9rhf6-nojipur-cards {
            max-width: 1100px;
            margin: 0 auto;
            padding: 64px 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .i_v9rhf6-ufap {
            background: var(--i_v9rhf6-white);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #f0f0f0;
            transition: transform 0.3s, box-shadow 0.3s;
            min-width: 0;
            word-break: break-word;
        }

        .i_v9rhf6-ufap:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.05);
        }

        .i_v9rhf6-ufap h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--i_v9rhf6-dark);
        }

        .i_v9rhf6-ufap p {
            color: var(--i_v9rhf6-gray);
            font-size: 16px;
            line-height: 1.8;
        }

        .i_v9rhf6-sefaq {
            font-size: 32px;
            margin-bottom: 24px;
            display: inline-block;
        }

        /* 按钮组件 */
        .i_v9rhf6-ajekadu {
            display: inline-block;
            padding: 16px 40px;
            background-color: var(--i_v9rhf6-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
            border: none;
            cursor: pointer;
        }

        .i_v9rhf6-ajekadu:hover {
            background-color: #1565c0;
            transform: scale(1.05);
        }

        .i_v9rhf6-ileco {
            display: inline-block;
            margin-left: 16px;
            padding: 16px 40px;
            background-color: transparent;
            color: var(--i_v9rhf6-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--i_v9rhf6-primary);
            transition: all 0.3s;
        }

        .i_v9rhf6-ileco:hover {
            background-color: var(--i_v9rhf6-primary);
            color: white;
        }

        /* 详情区块 */
        .i_v9rhf6-kaqiti-alt {
            background-color: #fafafa;
            padding: 80px 24px;
        }

        .i_v9rhf6-codine {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
        }

        .i_v9rhf6-codine:nth-child(even) {
            flex-direction: row-reverse;
        }

        .i_v9rhf6-afob-text {
            flex: 1;
            min-width: 300px;
            word-break: break-word;
        }

        .i_v9rhf6-afob-text h2 {
            font-size: 32px;
            margin-bottom: 24px;
        }

        .i_v9rhf6-afob-text ul {
            list-style: none;
        }

        .i_v9rhf6-afob-text li {
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
            color: #555;
        }

        .i_v9rhf6-afob-text li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--i_v9rhf6-primary);
            font-weight: bold;
        }

        /* 页脚区域 */
        .i_v9rhf6-afob {
            background-color: #1a1a1a;
            color: white;
            padding: 64px 24px 32px;
        }

        .i_v9rhf6-codine-footer {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            border-bottom: 1px solid #333;
            padding-bottom: 48px;
            margin-bottom: 32px;
        }

        .i_v9rhf6-afob h4 {
            font-size: 18px;
            margin-bottom: 24px;
            color: white;
        }

        .i_v9rhf6-afob a {
            display: block;
            color: #aaa;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .i_v9rhf6-afob a:hover {
            color: white;
        }

        .i_v9rhf6-afob-brand {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 16px;
        }

        .i_v9rhf6-afob-copy {
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .i_v9rhf6-nojipur {
                height: auto;
                padding: 16px;
            }
            .i_v9rhf6-avixi {
                width: 100%;
                margin-top: 16px;
                gap: 12px;
                justify-content: center;
            }
            .i_v9rhf6-patifut, .i_v9rhf6-ifike {
                min-width: 100%;
                text-align: center;
            }
            .i_v9rhf6-patifut p {
                margin: 0 auto 32px;
            }
            .i_v9rhf6-ileco {
                margin-left: 0;
                margin-top: 16px;
                width: 100%;
            }
            .i_v9rhf6-ajekadu {
                width: 100%;
            }
        }
    