:root {
            --primary-color: #0066cc;
            --accent-color: #00d4ff;
            --text-dark: #1d1d1f;
            --text-light: #6e6e73;
            --bg-white: #ffffff;
            --bg-gray: #f5f5f7;
            --container-max: 1320px;
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        /* 布局容器 */
        .p6od-ujisoh {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

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

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

        /* 导航 iyagaw */
        .p6od-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-iyagaw .p6od-jeke {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

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

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

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

        .p6od-nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition-smooth);
            position: relative;
        }

        .p6od-nav-link:hover {
            color: var(--primary-color);
        }

        .p6od-nav-link.active {
            color: var(--primary-color);
        }

        .p6od-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
        }

        /* 展示区域 fiweye - Hero */
        .p6od-fiweye {
            padding-top: 140px;
            padding-bottom: 80px;
            background: radial-gradient(circle at top right, #f0f7ff 0%, #ffffff 50%);
            overflow: hidden;
        }

        .p6od-fiweye .p6od-niselog {
            align-items: center;
        }

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

        .p6od-hero-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 102, 204, 0.1);
            color: var(--primary-color);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .p6od-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            color: #0a0a0b;
        }

        .p6od-hero-subtitle {
            font-size: clamp(1.1rem, 1vw + 0.8rem, 1.4rem);
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .p6od-hero-image {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .p6od-hero-image img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: var(--transition-smooth);
        }

        .p6od-hero-image:hover img {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }

        /* 按钮组件 qabujiy / mozunot */
        .p6od-qabujiy {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 600;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
        }

        .p6od-qabujiy:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
            background: #005bb8;
        }

        .p6od-mozunot {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: transparent;
            color: var(--text-dark);
            text-decoration: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 600;
            transition: var(--transition-smooth);
            border: 2px solid #e5e5e7;
            margin-left: 16px;
        }

        .p6od-mozunot:hover {
            border-color: var(--text-dark);
            background: rgba(0,0,0,0.02);
        }

        /* 性能分析区 omomay */
        .p6od-omomay {
            padding: 100px 0;
            background: #ffffff;
        }

        .p6od-section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .p6od-section-header h2 {
            font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .p6od-section-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* 卡片组件 azugig / zajoxuy */
        .p6od-azugig {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .p6od-zajoxuy {
            background: var(--bg-gray);
            border-radius: 24px;
            padding: 40px;
            transition: var(--transition-smooth);
            border: 1px solid transparent;
        }

        .p6od-zajoxuy:hover {
            background: #ffffff;
            border-color: #e5e5e7;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transform: translateY(-10px);
        }

        .p6od-stat-icon {
            width: 64px;
            height: 64px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
        }

        .p6od-stat-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--primary-color);
        }

        .p6od-stat-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .p6od-stat-detail {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .p6od-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        /* 界面展示 zizika */
        .p6od-zizika {
            padding: 100px 0;
            background: #0a0a0b;
            color: white;
            border-radius: 48px;
            margin: 0 24px 80px;
        }

        .p6od-zizika .p6od-ujisoh {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
        }

        .p6od-zizika-img {
            flex: 1.2;
            min-width: 320px;
        }

        .p6od-zizika-img img {
            width: 100%;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .p6od-zizika-content {
            flex: 0.8;
            min-width: 300px;
        }

        .p6od-zizika-content h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
        }

        .p6od-feature-list {
            list-style: none;
        }

        .p6od-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .p6od-feature-item svg {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            fill: var(--accent-color);
            margin-top: 4px;
        }

        /* 动态内容区 */
        .p6od-latest-news {
            padding: 80px 0;
            background: #fff;
        }

        /* 页脚 rebuma / avuji */
        .p6od-rebuma {
            background: var(--bg-gray);
            padding: 80px 0 40px;
            border-top: 1px solid #e5e5e7;
        }

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

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

        .p6od-avuji h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .p6od-footer-brand {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            display: block;
        }

        .p6od-footer-link {
            display: block;
            text-decoration: none;
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 12px;
            transition: var(--transition-smooth);
        }

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

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

        /* 响应式适配 */
        @media (max-width: 768px) {
            .p6od-sule {
                display: none; /* 移动端应有菜单切换，此处简化 */
            }
            .p6od-fiweye {
                padding-top: 100px;
            }
            .p6od-hero-image img {
                transform: none !important;
            }
            .p6od-mozunot {
                margin-left: 0;
                margin-top: 16px;
                width: 100%;
            }
            .p6od-qabujiy {
                width: 100%;
            }
            .p6od-zizika {
                margin: 0 12px 40px;
                padding: 60px 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;
        }