:root {
            --p6od-primary: #1a73e8;
            --p6od-primary-dark: #1557b0;
            --p6od-bg-light: #f8f9fa;
            --p6od-bg-dark: #0f172a;
            --p6od-text-main: #1e293b;
            --p6od-text-muted: #64748b;
            --p6od-accent: #38bdf8;
            --p6od-code-bg: #1e1e1e;
            --p6od-border: #e2e8f0;
            --p6od-radius: 12px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--p6od-text-main);
            line-height: 1.6;
            background-color: #ffffff;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 复用导航栏样式 */
        .p6od-iyagaw {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--p6od-border);
            padding: 0 24px;
        }

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

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

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

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

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

        /* 核心展示区 (Hero) */
        .p6od-fiweye {
            background: linear-gradient(135deg, var(--p6od-bg-dark) 0%, #1e293b 100%);
            color: #ffffff;
            padding: 96px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .p6od-ujisoh {
            max-width: 1100px;
            margin: 0 auto;
        }

        .p6od-fiweye h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .p6od-fiweye p {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.4rem);
            color: var(--p6od-accent);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        /* 终端仿真窗口 */
        .p6od-niselog {
            background: var(--p6od-code-bg);
            border-radius: var(--p6od-radius);
            padding: 24px;
            text-align: left;
            font-family: "Cascadia Code", Consolas, monospace;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            margin-top: 48px;
        }

        .p6od-niselog::before {
            content: "•••";
            position: absolute;
            top: 10px;
            left: 20px;
            color: #4b5563;
            font-size: 24px;
            letter-spacing: 2px;
        }

        .p6od-niselog pre {
            margin-top: 20px;
            color: #d1d5db;
            overflow-x: auto;
            white-space: pre-wrap;
        }

        .p6od-niselog span.cmd-p { color: #f472b6; }
        .p6od-niselog span.cmd-v { color: #34d399; }

        /* 内容区块 */
        .p6od-omomay {
            padding: 80px 24px;
            background: var(--p6od-bg-light);
        }

        .p6od-zizika {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }

        /* 卡片组件 */
        .p6od-azugig {
            background: #ffffff;
            border-radius: var(--p6od-radius);
            padding: 32px;
            flex: 1;
            min-width: 320px;
            max-width: 500px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--p6od-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .p6od-azugig:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .p6od-azugig h3 {
            font-size: 24px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--p6od-primary-dark);
        }

        .p6od-azugig svg {
            width: 28px;
            height: 28px;
            fill: var(--p6od-primary);
        }

        .p6od-azugig ul {
            list-style: none;
        }

        .p6od-azugig li {
            margin-bottom: 12px;
            font-size: 15px;
            color: var(--p6od-text-muted);
            border-bottom: 1px dashed var(--p6od-border);
            padding-bottom: 8px;
        }

        .p6od-azugig code {
            background: #f1f5f9;
            padding: 2px 6px;
            border-radius: 4px;
            color: #e11d48;
            font-weight: 600;
        }

        /* 脚本案例区 */
        .p6od-zajoxuy {
            background: #ffffff;
            padding: 80px 24px;
        }

        .p6od-qabujiy {
            display: inline-block;
            background: var(--p6od-primary);
            color: #ffffff;
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 24px;
        }

        .p6od-qabujiy:hover {
            background: var(--p6od-primary-dark);
            transform: scale(1.05);
        }

        /* 页脚区 */
        .p6od-rebuma {
            background: var(--p6od-bg-dark);
            color: #ffffff;
            padding: 64px 24px 32px;
        }

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

        .p6od-footer-brand {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            display: block;
        }

        .p6od-footer-link {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .p6od-footer-link:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .p6od-jeke {
                flex-direction: column;
                height: auto;
                padding: 16px 0;
            }
            .p6od-sule {
                margin-top: 16px;
                justify-content: center;
                gap: 12px;
            }
            .p6od-fiweye {
                padding: 64px 16px;
            }
            .p6od-azugig {
                min-width: 100%;
            }
        }

.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;
        }