:root {
            --primary-bg: #0a0d14;
            --secondary-bg: #141824;
            --accent-color: #007bff;
            --accent-glow: rgba(0, 123, 255, 0.4);
            --text-main: #e0e6ed;
            --text-dim: #94a3b8;
            --border-color: #2d3748;
            --code-bg: #1e293b;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-main);
            line-height: 1.6;
            word-break: break-word;
            overflow-x: hidden;
        }

        /* 导航栏复用 */
        .p6od-iyagaw {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 13, 20, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .p6od-jeke {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .p6od-sule {
            display: flex;
            gap: 24px;
        }

        .p6od-nav-link {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .p6od-nav-link:hover, .p6od-nav-link.active {
            color: var(--accent-color);
        }

        /* 核心展示区 - 独特布局 */
        .p6od-fiweye {
            padding: 160px 24px 80px;
            background: radial-gradient(circle at top right, #1e293b 0%, #0a0d14 60%);
            overflow: hidden;
            position: relative;
        }

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

        .p6od-omomay {
            flex: 1;
            min-width: 320px;
        }

        .p6od-omomay h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #007bff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .p6od-omomay p {
            font-size: 1.1rem;
            color: var(--text-dim);
            margin-bottom: 32px;
            max-width: 600px;
        }

        /* 极速引擎图形模拟 */
        .p6od-zizika {
            flex: 1;
            min-width: 320px;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .p6od-engine-viz {
            width: 100%;
            max-width: 500px;
            background: var(--secondary-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        /* 原理卡片组件 */
        .p6od-niselog {
            padding: 80px 24px;
            background-color: var(--primary-bg);
        }

        .p6od-azugig-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .p6od-azugig {
            background: var(--secondary-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .p6od-azugig:hover {
            transform: translateY(-8px);
            border-color: var(--accent-color);
        }

        .p6od-icon-badge {
            width: 56px;
            height: 56px;
            background: rgba(0, 123, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--accent-color);
        }

        .p6od-azugig h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: #fff;
        }

        .p6od-azugig p {
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        /* 技术流程细节 */
        .p6od-zajoxuy {
            padding: 80px 24px;
            background: #0f172a;
        }

        .p6od-flow-box {
            max-width: 900px;
            margin: 0 auto;
            border-left: 2px dashed var(--accent-color);
            padding-left: 40px;
            position: relative;
        }

        .p6od-flow-step {
            position: relative;
            margin-bottom: 48px;
        }

        .p6od-flow-step::before {
            content: "";
            position: absolute;
            left: -49px;
            top: 0;
            width: 16px;
            height: 16px;
            background: var(--accent-color);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--accent-glow);
        }

        .p6od-flow-step h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--accent-color);
        }

        .p6od-flow-step div {
            background: var(--code-bg);
            padding: 20px;
            border-radius: 8px;
            font-family: "Cascadia Code", Consolas, monospace;
            font-size: 0.9rem;
            color: #94a3b8;
            border: 1px solid #334155;
        }

        /* 按钮设计 */
        .p6od-qabujiy {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 16px;
        }

        .p6od-qabujiy:hover {
            background: #0056b3;
            box-shadow: 0 8px 20px var(--accent-glow);
            transform: translateY(-2px);
        }

        /* 页脚复用 */
        .p6od-rebuma {
            background: #07090e;
            padding: 80px 24px 40px;
            border-top: 1px solid var(--border-color);
        }

        .p6od-ujisoh.footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
        }

        .p6od-avuji h4 {
            color: #fff;
            margin-bottom: 24px;
            font-size: 1rem;
        }

        .p6od-footer-link {
            display: block;
            color: var(--text-dim);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .p6od-footer-link:hover {
            color: var(--accent-color);
        }

        .p6od-footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            display: block;
            margin-bottom: 16px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .p6od-sule {
                display: none; /* 简化移动端，实际项目中应有汉堡菜单 */
            }
            .p6od-ujisoh {
                flex-direction: column;
                text-align: center;
            }
            .p6od-omomay h1 {
                font-size: 2.5rem;
            }
            .p6od-flow-box {
                margin-left: 20px;
            }
        }

.p6od-hdr-iyagaw {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.p6od-hdr-iyagaw,
.p6od-hdr-iyagaw *,
.p6od-hdr-iyagaw *::before,
.p6od-hdr-iyagaw *::after {
    box-sizing: border-box;
}

.p6od-hdr-iyagaw nav,
.p6od-hdr-iyagaw div,
.p6od-hdr-iyagaw section,
.p6od-hdr-iyagaw article,
.p6od-hdr-iyagaw aside,
.p6od-hdr-iyagaw p,
.p6od-hdr-iyagaw h1,
.p6od-hdr-iyagaw h2,
.p6od-hdr-iyagaw h3,
.p6od-hdr-iyagaw h4,
.p6od-hdr-iyagaw h5,
.p6od-hdr-iyagaw h6,
.p6od-hdr-iyagaw a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.p6od-hdr-iyagaw p,
.p6od-hdr-iyagaw h1,
.p6od-hdr-iyagaw h2,
.p6od-hdr-iyagaw h3,
.p6od-hdr-iyagaw h4,
.p6od-hdr-iyagaw h5,
.p6od-hdr-iyagaw h6 {
    text-decoration: none;
}

.p6od-hdr-iyagaw img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.p6od-hdr-iyagaw {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.p6od-hdr-iyagaw a.p6od-hdr-nav-link {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.p6od-hdr-iyagaw a.p6od-hdr-nav-link,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link:hover,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link:focus,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link:active,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link.active,
.p6od-hdr-iyagaw a.p6od-hdr-nav-link[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.p6od-hdr-iyagaw .p6od-hdr-jeke{
            width: 100%;
            display: block;
        }

.p6od-hdr-iyagaw{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            height: 72px;
        }

.p6od-hdr-iyagaw .p6od-hdr-jeke{
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.p6od-hdr-iyagaw .p6od-hdr-logo{
            flex: 0 0 auto;
        }

.p6od-hdr-iyagaw .p6od-hdr-logo img{
            height: 36px;
            width: auto;
            display: block;
        }

.p6od-hdr-iyagaw .p6od-hdr-sule{
            display: flex;
            gap: 32px;
            align-items: center;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link{
            text-decoration: none;
            color: #1d1d1f;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link:hover{
            color: #0066cc;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link.active{
            color: #0066cc;
        }

.p6od-hdr-iyagaw .p6od-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #0066cc;
        }

@media (max-width: 768px){.p6od-hdr-iyagaw .p6od-hdr-sule{
                display: none; 
            }}

.p6od-ftr-rebuma {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.p6od-ftr-rebuma,
.p6od-ftr-rebuma *,
.p6od-ftr-rebuma *::before,
.p6od-ftr-rebuma *::after {
    box-sizing: border-box;
}

.p6od-ftr-rebuma nav,
.p6od-ftr-rebuma div,
.p6od-ftr-rebuma section,
.p6od-ftr-rebuma article,
.p6od-ftr-rebuma aside,
.p6od-ftr-rebuma p,
.p6od-ftr-rebuma h1,
.p6od-ftr-rebuma h2,
.p6od-ftr-rebuma h3,
.p6od-ftr-rebuma h4,
.p6od-ftr-rebuma h5,
.p6od-ftr-rebuma h6,
.p6od-ftr-rebuma a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.p6od-ftr-rebuma p,
.p6od-ftr-rebuma h1,
.p6od-ftr-rebuma h2,
.p6od-ftr-rebuma h3,
.p6od-ftr-rebuma h4,
.p6od-ftr-rebuma h5,
.p6od-ftr-rebuma h6 {
    text-decoration: none;
}

.p6od-ftr-rebuma img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.p6od-ftr-rebuma {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.p6od-ftr-rebuma a,
.p6od-ftr-rebuma a:hover,
.p6od-ftr-rebuma a:focus,
.p6od-ftr-rebuma a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.p6od-ftr-rebuma .p6od-ftr-ujisoh{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.p6od-ftr-rebuma .p6od-ftr-niselog{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

.p6od-ftr-rebuma{
            background: #f5f5f7;
            padding: 80px 0 40px;
            border-top: 1px solid #e5e5e7;
        }

.p6od-ftr-rebuma .p6od-ftr-niselog{
            justify-content: space-between;
            margin-bottom: 60px;
        }

.p6od-ftr-rebuma .p6od-ftr-avuji{
            flex: 1;
            min-width: 200px;
        }

.p6od-ftr-rebuma .p6od-ftr-avuji h4{
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            color: #1d1d1f;
        }

.p6od-ftr-rebuma .p6od-ftr-footer-brand{
            font-size: 24px;
            font-weight: 800;
            color: #1d1d1f;
            margin-bottom: 16px;
            display: block;
        }

.p6od-ftr-rebuma .p6od-ftr-footer-link{
            display: block;
            text-decoration: none;
            color: #6e6e73;
            font-size: 14px;
            margin-bottom: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

.p6od-ftr-rebuma .p6od-ftr-footer-link:hover{
            color: #0066cc;
        }

.p6od-ftr-rebuma .p6od-ftr-copyright{
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: #6e6e73;
            font-size: 13px;
        }