:root {
            --p6od-primary: #0066ff;
            --p6od-accent: #00f2fe;
            --p6od-bg-dark: #050a15;
            --p6od-text: #e0e6ed;
            --p6od-text-dim: #94a3b8;
            --p6od-glass: rgba(255, 255, 255, 0.05);
            --p6od-border: rgba(255, 255, 255, 0.1);
        }

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

        /* 导航复用样式 */
        .p6od-iyagaw {
            background: rgba(5, 10, 21, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--p6od-border);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .p6od-jeke {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        .p6od-logo img {
            height: 40px;
            display: block;
        }
        .p6od-sule {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .p6od-nav-link {
            color: var(--p6od-text-dim);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .p6od-nav-link:hover, .p6od-nav-link.active {
            color: white;
        }
        .p6od-nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--p6od-primary);
            box-shadow: 0 0 10px var(--p6od-primary);
        }

        /* 独特展示区 */
        .p6od-fiweye {
            padding: 160px 24px 100px;
            background: radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 40%),
                        radial-gradient(circle at 20% 80%, rgba(0, 242, 254, 0.1) 0%, transparent 40%);
            text-align: center;
        }
        .p6od-ujisoh {
            max-width: 1000px;
            margin: 0 auto;
        }
        .p6od-fiweye h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(to right, #fff, var(--p6od-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        .p6od-fiweye p {
            font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
            color: var(--p6od-text-dim);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* 校验卡片布局 */
        .p6od-zizika {
            padding: 80px 24px;
            max-width: 1300px;
            margin: 0 auto;
        }
        .p6od-niselog {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }
        .p6od-azugig {
            background: var(--p6od-glass);
            border: 1px solid var(--p6od-border);
            border-radius: 24px;
            padding: 48px;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            min-width: 0;
        }
        .p6od-azugig:hover {
            transform: translateY(-12px);
            border-color: var(--p6od-primary);
            background: rgba(255, 255, 255, 0.08);
        }
        .p6od-azugig svg {
            width: 56px;
            height: 56px;
            margin-bottom: 24px;
            fill: var(--p6od-primary);
        }
        .p6od-azugig h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: white;
        }
        .p6od-azugig p {
            color: var(--p6od-text-dim);
            font-size: 16px;
            margin-bottom: 0;
        }

        /* 流程逻辑区 */
        .p6od-omomay {
            padding: 100px 24px;
            background: rgba(255, 255, 255, 0.02);
        }
        .p6od-zajoxuy {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .p6od-zajoxuy > div {
            flex: 1;
            min-width: 300px;
        }
        .p6od-zajoxuy h2 {
            font-size: 36px;
            margin-bottom: 24px;
            color: white;
        }
        .p6od-zajoxuy ul {
            list-style: none;
            padding: 0;
        }
        .p6od-zajoxuy li {
            padding: 16px 0;
            border-bottom: 1px solid var(--p6od-border);
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .p6od-zajoxuy li span {
            color: var(--p6od-accent);
            font-weight: bold;
        }

        /* 按钮组件 */
        .p6od-qabujiy {
            display: inline-block;
            padding: 18px 48px;
            background: linear-gradient(135deg, var(--p6od-primary), #00d2ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
            transition: all 0.3s ease;
        }
        .p6od-qabujiy:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.5);
        }
        .p6od-mozunot {
            display: inline-block;
            padding: 17px 47px;
            border: 2px solid var(--p6od-border);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            margin-left: 20px;
            transition: all 0.3s ease;
        }
        .p6od-mozunot:hover {
            background: var(--p6od-border);
        }

        /* 页脚 */
        .p6od-rebuma {
            background: #02050a;
            padding: 80px 24px 40px;
            border-top: 1px solid var(--p6od-border);
        }
        .p6od-avuji {
            min-width: 200px;
            margin-bottom: 40px;
        }
        .p6od-avuji h4 {
            color: white;
            margin-bottom: 24px;
            font-size: 18px;
        }
        .p6od-footer-link {
            display: block;
            color: var(--p6od-text-dim);
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .p6od-footer-link:hover {
            color: var(--p6od-primary);
        }
        .p6od-footer-brand {
            font-size: 24px;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
            display: block;
        }

        @media (max-width: 768px) {
            .p6od-jeke { height: auto; padding: 20px; flex-direction: column; gap: 20px; }
            .p6od-sule { justify-content: center; gap: 15px; }
            .p6od-fiweye { padding-top: 140px; }
            .p6od-mozunot { margin-left: 0; margin-top: 15px; width: 100%; box-sizing: border-box; text-align: center;}
            .p6od-qabujiy { width: 100%; box-sizing: border-box; text-align: center;}
        }

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