:root {
            --primary: #f22879;
            --primary-hover: #ff4b93;
            --bg: #0b0c10;
            --bg-card: #171923;
            --text: #e2e8f0;
            --text-muted: #94a3b8;
            --radius: 14px;
        }

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

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

        /* 导航栏样式 - 复用首页 */
        .array {
            width: 100%;
            background-color: #050608;
            border-bottom: 1px solid rgba(242, 40, 121, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .sheath {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .emblem {
            display: flex;
            align-items: center;
        }
        .emblem img {
            height: 40px;
            width: auto;
        }
        .steer {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
        }
        .glyph {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.15s ease;
            padding: 5px 10px;
            font-size: 1rem;
        }
        .glyph:hover, .glyph.active {
            color: var(--primary);
        }

        /* 主容器 */
        .matrix {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* 故障排查 Intro */
        .zenith {
            width: 100%;
            background: linear-gradient(to top, rgba(11, 12, 16, 1) 0%, rgba(11, 12, 16, 0.4) 60%, transparent 100%);
            padding: 60px 20px;
            text-align: center;
            border-radius: var(--radius);
            border: 1px solid rgba(242, 40, 121, 0.1);
            margin-bottom: 40px;
        }
        .lore-large {
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            font-size: clamp(2rem, 5vw, 3rem);
            letter-spacing: 1px;
            margin-bottom: 20px;
            word-break: keep-all;
        }
        .whisper-lead {
            color: var(--text-muted);
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: 800px;
            margin: 0 auto 30px auto;
        }

        /* 故障排查主题焦点 */
        .prism-focus {
            margin-bottom: 60px;
        }
        .lore-mid {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #ffffff;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            font-weight: 600;
        }
        .halo-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .bloc-focus {
            flex: 1;
            min-width: 280px;
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid rgba(242, 40, 121, 0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.15s ease, border-color 0.15s ease;
        }
        .bloc-focus:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        .crown-wrap {
            width: 50px;
            height: 50px;
            background: rgba(242, 40, 121, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
        }
        .lore-small {
            font-size: 1.25rem;
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .whisper-packet {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* 核心信息路径 */
        .prism-path {
            margin-bottom: 60px;
        }
        .halo-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .bloc-step {
            flex: 1;
            min-width: 280px;
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .step-num {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(242, 40, 121, 0.15);
            line-height: 1;
        }
        .ignite-wake {
            display: inline-block;
            background-color: var(--primary);
            color: #ffffff;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius);
            box-shadow: 0 4px 15px rgba(242, 40, 121, 0.3);
            text-decoration: none;
            transition: background-color 0.15s ease, transform 0.15s ease;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .ignite-wake:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }

        /* 使用场景与补充说明 */
        .prism-context {
            background-color: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid rgba(242, 40, 121, 0.15);
            margin-bottom: 60px;
        }
        .halo-tether {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .strand-strand {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            min-width: 0;
        }
        .seam-line {
            height: 1px;
            background-color: rgba(242, 40, 121, 0.15);
            margin: 40px 0;
        }

        /* 页脚样式 */
        .crest {
            background-color: #050608;
            border-top: 1px solid rgba(242, 40, 121, 0.15);
            padding: 60px 20px 40px 20px;
            margin-top: 80px;
        }
        .ground {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .brand-info {
            flex: 1.5;
            min-width: 280px;
        }
        .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }
        .crest-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            flex: 2;
            justify-content: flex-end;
        }
        .crest-halo {
            min-width: 140px;
        }
        .crest-lore {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .crest-glyph {
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.15s ease;
            font-size: 0.9rem;
        }
        .crest-glyph:hover {
            color: var(--primary);
        }
        .abyss {
            max-width: 1200px;
            margin: 40px auto 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .sheath {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .steer {
                justify-content: center;
            }
            .ground {
                flex-direction: column;
            }
            .crest-links {
                justify-content: flex-start;
                gap: 20px;
            }
            .prism-context {
                padding: 20px;
            }
        }

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

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

.vector-array p,
.vector-array h1,
.vector-array h2,
.vector-array h3,
.vector-array h4,
.vector-array h5,
.vector-array h6 {
    text-decoration: none;
}

.vector-array img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.vector-array {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.vector-array a.vector-glyph.vector-active,
.vector-array a.vector-glyph {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.vector-array a.vector-glyph.vector-active,
.vector-array a.vector-glyph.vector-active:hover,
.vector-array a.vector-glyph.vector-active:focus,
.vector-array a.vector-glyph.vector-active:active,
.vector-array a.vector-glyph.vector-active.active,
.vector-array a.vector-glyph.vector-active[aria-current="page"],
.vector-array a.vector-glyph,
.vector-array a.vector-glyph:hover,
.vector-array a.vector-glyph:focus,
.vector-array a.vector-glyph:active,
.vector-array a.vector-glyph.active,
.vector-array a.vector-glyph[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);
}

.vector-array{
            background-color: rgba(11, 12, 16, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(242, 40, 121, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

.vector-array .vector-sheath{
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

.vector-array .vector-sheath{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

.vector-array .vector-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.vector-array .vector-emblem img{
            height: 36px;
            width: auto;
            display: block;
        }

.vector-array .vector-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.vector-array .vector-glyph{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

.vector-array .vector-glyph:hover{
            color: #f22879;
        }

.vector-array .vector-glyph.vector-active{
            color: #f22879;
            font-weight: 600;
            border-bottom: 2px solid #f22879;
        }

@media (max-width: 768px){.vector-array .vector-sheath{
                height: auto;
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

.vector-array .vector-steer{
                justify-content: center;
            }}

.vector-array {
    background: rgb(11, 12, 16);
    background-image: none;
}

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

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

.anchor-crest p,
.anchor-crest h1,
.anchor-crest h2,
.anchor-crest h3,
.anchor-crest h4,
.anchor-crest h5,
.anchor-crest h6 {
    text-decoration: none;
}

.anchor-crest img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.anchor-crest {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.anchor-crest a,
.anchor-crest a:hover,
.anchor-crest a:focus,
.anchor-crest a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.anchor-crest .anchor-sheath{
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

.anchor-crest .anchor-glyph{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

.anchor-crest .anchor-glyph:hover{
            color: #f22879;
        }

.anchor-crest .anchor-lore{
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
        }

.anchor-crest h1.anchor-lore{
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

.anchor-crest h2.anchor-lore{
            font-size: clamp(1.5rem, 3vw, 2rem);
            border-left: 4px solid #f22879;
            padding-left: 12px;
            margin-bottom: 20px;
        }

.anchor-crest h3.anchor-lore{
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

.anchor-crest .anchor-whisper{
            color: #94a3b8;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            max-width: 800px;
            margin-bottom: 24px;
        }

.anchor-crest .anchor-halo{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
        }

.anchor-crest{
            background-color: #050608;
            border-top: 1px solid rgba(242, 40, 121, 0.15);
            padding: 60px 0 20px;
            margin-top: auto;
        }

.anchor-crest .anchor-halo{
            justify-content: space-between;
            gap: 40px;
        }

.anchor-crest .anchor-bloc{
            flex: 1 1 250px;
            min-width: 0;
        }

.anchor-crest .anchor-lore{
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.anchor-crest .anchor-anchor{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-crest .anchor-anchor .anchor-glyph{
            padding: 0;
            font-size: 0.9rem;
        }

.anchor-crest .anchor-ground{
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #94a3b8;
            font-size: 0.85rem;
            width: 100%;
        }