
        /* 基础重置 */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
            background-color: #fcfcfc;
        }

        /* 统一变量与工具类 */
        :root {
            --g_7-primary: #0061FF;
            --g_7-secondary: #ff4d4f;
            --g_7-text-main: #262626;
            --g_7-text-sub: #595959;
            --g_7-bg-light: #f5f7fa;
            --g_7-white: #ffffff;
            --g_7-gap: 8px;
        }

        .g_7-bawewe { width: 100%; position: relative; }
        .g_7-vedupom { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
        .g_7-ujovev { display: flex; flex-wrap: wrap; min-width: 0; }

        /* 导航栏复用与修正 */
        .g_7-ugoyene {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #eee;
            width: 100%;
        }
        .g_7-vedupom.g_7-flex-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .g_7-logo img { height: 32px; width: auto; }
        .g_7-hovigig {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
            min-width: 0;
        }
        .g_7-hovigig li a {
            text-decoration: none;
            color: var(--g_7-text-main);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s;
            word-break: break-word;
        }
        .g_7-hovigig li a:hover, .g_7-hovigig li a.active {
            color: var(--g_7-primary);
        }

        /* 创意展示区 - 独特轨道式布局 */
        .g_7-nicaxe {
            padding: 96px 0;
            background: radial-gradient(circle at top right, #e6f7ff 0%, #ffffff 70%);
            overflow: hidden;
            position: relative;
        }
        .g_7-ujovev.g_7-orbit-layout {
            align-items: center;
        }
        .g_7-nicaxe-info {
            flex: 1;
            min-width: 320px;
            padding-right: 48px;
        }
        .g_7-nicaxe-info h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: #1a1a1a;
            font-weight: 800;
        }
        .g_7-nicaxe-info p {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--g_7-text-sub);
            margin-bottom: 40px;
            max-width: 540px;
        }
        .g_7-nicaxe-visual {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        /* 纯CSS创意同步视觉 */
        .g_7-sync-core {
            width: 180px;
            height: 180px;
            background: var(--g_7-primary);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
            box-shadow: 0 20px 40px rgba(0, 97, 255, 0.3);
            z-index: 2;
        }
        .g_7-sync-ring {
            position: absolute;
            border: 2px dashed #0061ff33;
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        .g_7-ring-1 { width: 300px; height: 300px; }
        .g_7-ring-2 { width: 450px; height: 450px; }
        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        /* 卡片组件 */
        .g_7-gavux {
            padding: 80px 0;
            background: #fff;
        }
        .g_7-title-center {
            text-align: center;
            margin-bottom: 64px;
        }
        .g_7-title-center h2 {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .g_7-grid-sync {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .g_7-ezef {
            background: var(--g_7-bg-light);
            padding: 40px;
            border-radius: 24px;
            transition: transform 0.3s, background 0.3s;
            border: 1px solid transparent;
        }
        .g_7-ezef:hover {
            transform: translateY(-8px);
            background: #fff;
            border-color: #0061ff22;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }
        .g_7-ezef-icon {
            font-size: 32px;
            margin-bottom: 24px;
            display: block;
        }
        .g_7-ezef h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #111;
        }
        .g_7-ezef p {
            color: var(--g_7-text-sub);
            font-size: 1rem;
        }

        /* 详情展示区 */
        .g_7-gunu {
            padding: 80px 0;
            background: #050a1a;
            color: #fff;
        }
        .g_7-ujovev.g_7-feature-detail {
            align-items: center;
            gap: 64px;
        }
        .g_7-exeba {
            flex: 1;
            min-width: 320px;
        }
        .g_7-exeba h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
            color: #fff;
        }
        .g_7-exeba ul {
            list-style: none;
        }
        .g_7-exeba li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .g_7-exeba li b {
            color: var(--g_7-primary);
            font-size: 1.2rem;
        }

        /* 按钮样式 */
        .g_7-simo {
            display: inline-block;
            padding: 16px 40px;
            background: var(--g_7-primary);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .g_7-simo:hover {
            background: #0052d9;
            box-shadow: 0 8px 20px rgba(0, 97, 255, 0.4);
            transform: scale(1.02);
        }
        .g_7-ejotixa {
            display: inline-block;
            padding: 16px 40px;
            background: transparent;
            color: var(--g_7-text-main);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid #ddd;
            transition: all 0.3s;
            margin-left: 16px;
        }
        .g_7-ejotixa:hover {
            border-color: var(--g_7-primary);
            color: var(--g_7-primary);
        }

        /* 页脚 */
        .g_7-quwaci {
            background: #f8f9fa;
            padding: 64px 0 32px;
            border-top: 1px solid #eee;
        }
        .g_7-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 48px;
        }
        .g_7-footer-col h4 {
            margin-bottom: 24px;
            font-size: 1.1rem;
            color: #111;
        }
        .g_7-footer-col a {
            display: block;
            color: #666;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        .g_7-footer-col a:hover {
            color: var(--g_7-primary);
        }
        .g_7-agidego {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #e5e5e5;
            color: #999;
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .g_7-hovigig { display: none; } /* 移动端简化 */
            .g_7-nicaxe { padding: 60px 0; text-align: center; }
            .g_7-nicaxe-info { padding-right: 0; margin-bottom: 48px; }
            .g_7-nicaxe-info p { margin-left: auto; margin-right: auto; }
            .g_7-ejotixa { margin-left: 0; margin-top: 16px; width: 100%; }
            .g_7-simo { width: 100%; }
            .g_7-sync-ring { display: none; }
        }
    