
        :root {
            --i_v9rhf6-primary: #D43F33;
            --i_v9rhf6-primary-grad: linear-gradient(135deg, #FF5F52 0%, #D43F33 100%);
            --i_v9rhf6-text-dark: #1D1D1F;
            --i_v9rhf6-text-gray: #6E6E73;
            --i_v9rhf6-bg-light: #F5F5F7;
            --i_v9rhf6-white: #FFFFFF;
        }

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

        /* 导航栏复用与修正 */
        .i_v9rhf6-bajic {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .i_v9rhf6-nojipur {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
            flex-wrap: wrap;
        }
        .i_v9rhf6-logo img {
            height: 32px;
            width: auto;
        }
        .i_v9rhf6-avixi {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .i_v9rhf6-avixi a {
            text-decoration: none;
            color: var(--i_v9rhf6-text-dark);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .i_v9rhf6-avixi a:hover, .i_v9rhf6-avixi a.active {
            color: var(--i_v9rhf6-primary);
        }

        /* 展示区域设计 - Patifut (Hero) */
        .i_v9rhf6-patifut {
            padding: 160px 24px 100px;
            background: radial-gradient(circle at top right, rgba(212,63,51,0.05), transparent),
                        radial-gradient(circle at bottom left, rgba(212,63,51,0.03), transparent);
            text-align: center;
            overflow: hidden;
        }
        .i_v9rhf6-kaqiti {
            max-width: 1100px;
            margin: 0 auto;
            word-break: break-word;
        }
        .i_v9rhf6-patifut h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(to bottom, #1d1d1f, #434343);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .i_v9rhf6-patifut p {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            color: var(--i_v9rhf6-text-gray);
            max-width: 700px;
            margin: 0 auto 48px;
        }

        /* 按钮组件 - Ajekadu */
        .i_v9rhf6-ajekadu {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: var(--i_v9rhf6-primary-grad);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 30px rgba(212, 63, 51, 0.3);
            min-width: 0;
        }
        .i_v9rhf6-ajekadu:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 63, 51, 0.4);
        }

        /* 内容区块 - Ifike */
        .i_v9rhf6-ifike {
            padding: 96px 24px;
            background: var(--i_v9rhf6-bg-light);
        }
        .i_v9rhf6-uher {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            align-items: center;
        }
        .i_v9rhf6-ifike-text {
            flex: 1;
            min-width: 320px;
        }
        .i_v9rhf6-ifike-text h2 {
            font-size: 36px;
            margin-bottom: 24px;
            word-break: keep-all;
        }
        .i_v9rhf6-ifike-image {
            flex: 1;
            min-width: 320px;
            background: var(--i_v9rhf6-white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.05);
            text-align: center;
        }

        /* 特色网格 - Hahip */
        .i_v9rhf6-hahip {
            padding: 96px 24px;
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        /* 卡片组件 - Ufap */
        .i_v9rhf6-ufap {
            padding: 48px 32px;
            background: var(--i_v9rhf6-white);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 24px;
            transition: all 0.3s ease;
            min-width: 0;
            word-break: break-word;
        }
        .i_v9rhf6-ufap:hover {
            border-color: var(--i_v9rhf6-primary);
            transform: translateY(-8px);
        }
        .i_v9rhf6-ufap h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--i_v9rhf6-primary);
        }
        .i_v9rhf6-ufap p {
            color: var(--i_v9rhf6-text-gray);
        }

        /* 页脚区域 - Afob */
        .i_v9rhf6-afob {
            padding: 80px 24px 40px;
            background: #111;
            color: #888;
        }
        .i_v9rhf6-codine {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .i_v9rhf6-afob h4 {
            color: white;
            margin-bottom: 24px;
        }
        .i_v9rhf6-afob a {
            display: block;
            color: #888;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .i_v9rhf6-afob a:hover {
            color: white;
        }
        .i_v9rhf6-afob-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #222;
            text-align: center;
            font-size: 13px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .i_v9rhf6-nojipur { height: auto; padding: 16px; }
            .i_v9rhf6-avixi { order: 2; width: 100%; justify-content: center; margin-top: 15px; font-size: 12px; gap: 10px; }
            .i_v9rhf6-patifut { padding-top: 120px; }
            .i_v9rhf6-uher { flex-direction: column; text-align: center; }
        }
    