:root {
            --oydoB0-primary: #007AFF;
            --oydoB0-accent: #5856D6;
            --oydoB0-bg: #0a0a0c;
            --oydoB0-surface: #16161a;
            --oydoB0-text: #ffffff;
            --oydoB0-muted: #a1a1aa;
            --oydoB0-border: rgba(255,255,255,0.1);
            --oydoB0-glass: rgba(255, 255, 255, 0.03);
            --oydoB0-radius: 12px;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        .oydoB0-dinosi {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
        }

        .oydoB0-logo img {
            height: 32px;
        }

        .oydoB0-mopupe {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .oydoB0-nav-link {
            padding: 8px 16px;
            font-size: 0.95rem;
            color: var(--oydoB0-muted);
            border-radius: 6px;
        }

        .oydoB0-nav-link:hover {
            color: var(--oydoB0-text);
            background: var(--oydoB0-glass);
        }

        .oydoB0-nav-link.active {
            color: var(--oydoB0-text);
            font-weight: 600;
            background: rgba(0, 122, 255, 0.15);
        }

        /* 独特Hero布局 - 异形分割 */
        .oydoB0-umufibu {
            padding: 160px 0 100px;
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(88, 86, 214, 0.15) 0%, transparent 50%);
        }

        .oydoB0-wakilen {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .oydoB0-xile {
            flex: 1;
            min-width: 320px;
        }

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

        .oydoB0-xile p {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--oydoB0-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .oydoB0-icofico {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .oydoB0-vumuy {
            position: relative;
            z-index: 2;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 1px solid var(--oydoB0-border);
            transform: perspective(1000px) rotateY(-5deg);
        }

        /* 功能区块 - 脚本自动化 */
        .oydoB0-awesaca {
            padding: 80px 0;
            background: var(--oydoB0-surface);
        }

        .oydoB0-awesaca-inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row-reverse;
            align-items: center;
            gap: 64px;
        }

        .oydoB0-text-content {
            flex: 1;
            min-width: 300px;
        }

        .oydoB0-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(88, 86, 214, 0.2);
            color: #a29bfe;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
            border: 1px solid rgba(88, 86, 214, 0.3);
        }

        .oydoB0-text-content h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 20px;
        }

        .oydoB0-image-wrapper {
            flex: 1.2;
            min-width: 320px;
        }

        .oydoB0-image-wrapper img {
            border-radius: var(--oydoB0-radius);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* 插件卡片网格 */
        .oydoB0-icofico-grid {
            padding: 100px 0;
            max-width: 1140px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .oydoB0-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .oydoB0-avisa {
            background: var(--oydoB0-glass);
            border: 1px solid var(--oydoB0-border);
            padding: 32px;
            border-radius: var(--oydoB0-radius);
            transition: transform 0.3s ease, background 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .oydoB0-avisa:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.06);
            border-color: var(--oydoB0-primary);
        }

        .oydoB0-icon-box {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--oydoB0-primary), var(--oydoB0-accent));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .oydoB0-icon-box svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .oydoB0-avisa h3 {
            font-size: 1.4rem;
        }

        .oydoB0-avisa p {
            color: var(--oydoB0-muted);
            font-size: 1rem;
            line-height: 1.5;
        }

        /* 按钮样式 */
        .oydoB0-usuy {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: var(--oydoB0-primary);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }

        .oydoB0-usuy:hover {
            background: #0062cc;
            transform: scale(1.02);
        }

        .oydoB0-lucebu {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: transparent;
            color: white;
            border: 1px solid var(--oydoB0-border);
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
        }

        .oydoB0-lucebu:hover {
            background: var(--oydoB0-glass);
            border-color: white;
        }

        /* 页脚复用及微调 */
        .oydoB0-lukeh {
            background: #050507;
            padding: 80px 0 40px;
            border-top: 1px solid var(--oydoB0-border);
        }

        .oydoB0-arocedi {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
        }

        .oydoB0-arocedi-col {
            flex: 1;
            min-width: 200px;
        }

        .oydoB0-arocedi-brand {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--oydoB0-text);
        }

        .oydoB0-arocedi-title {
            font-size: 1.1rem;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .oydoB0-arocedi-link {
            display: block;
            color: var(--oydoB0-muted);
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .oydoB0-arocedi-link:hover {
            color: var(--oydoB0-primary);
        }

        .oydoB0-copyright {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid var(--oydoB0-border);
            text-align: center;
            color: #555;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .oydoB0-wakilen, .oydoB0-awesaca-inner {
                flex-direction: column;
                text-align: center;
            }
            .oydoB0-xile p {
                margin-left: auto;
                margin-right: auto;
            }
            .oydoB0-vumuy {
                transform: none;
            }
            .oydoB0-mopupe {
                display: none; /* 移动端可根据需要实现汉堡菜单 */
            }
        }

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

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

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

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

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

.oydoB0-hdr-ibux a.oydoB0-hdr-nav-link {
    --aisite-shell-nav-padding: 8px 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;
}

.oydoB0-hdr-ibux a.oydoB0-hdr-nav-link,
.oydoB0-hdr-ibux a.oydoB0-hdr-nav-link:hover,
.oydoB0-hdr-ibux a.oydoB0-hdr-nav-link:focus,
.oydoB0-hdr-ibux a.oydoB0-hdr-nav-link:active,
.oydoB0-hdr-ibux a.oydoB0-hdr-nav-link.active,
.oydoB0-hdr-ibux a.oydoB0-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);
}

.oydoB0-hdr-ibux .oydoB0-hdr-dinosi{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

.oydoB0-hdr-ibux{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-dinosi{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-logo{
            flex-shrink: 0;
            min-width: 0;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-logo img{
            height: 40px;
            width: auto;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-mopupe{
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
            min-width: 0;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-nav-link{
            font-size: clamp(0.9rem, 1vw, 1.1rem);
            font-weight: 500;
            color: #888888;
            position: relative;
            padding: 8px 0;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-nav-link:hover, .oydoB0-hdr-ibux .oydoB0-hdr-nav-link.active{
            color: #00ffaa;
        }

.oydoB0-hdr-ibux .oydoB0-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #00ffaa;
            box-shadow: 0 0 10px #00ffaa;
        }

@media (max-width: 768px){.oydoB0-hdr-ibux .oydoB0-hdr-mopupe{
                display: none;
            }}

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

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

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

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

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

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

.oydoB0-ftr-lukeh .oydoB0-ftr-dinosi{
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

.oydoB0-ftr-lukeh{
            padding: 96px 0 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: #000;
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-arocedi{
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            margin-bottom: 64px;
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-arocedi-col{
            flex: 1;
            min-width: 200px;
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-arocedi-brand{
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: #fff;
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-arocedi-title{
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            color: #00ffaa;
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-arocedi-link{
            display: block;
            margin-bottom: 12px;
            color: #888888;
            font-size: 0.95rem;
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-arocedi-link:hover{
            color: #00ffaa;
            transform: translateX(5px);
        }

.oydoB0-ftr-lukeh .oydoB0-ftr-copyright{
            text-align: center;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #444;
            font-size: 0.9rem;
        }