:root {
            --t8w7hzya-primary: #ea594f;
            --t8w7hzya-primary-soft: rgba(234, 89, 79, 0.1);
            --t8w7hzya-dark: #1a1a1a;
            --t8w7hzya-light: #ffffff;
            --t8w7hzya-gray: #f5f5f7;
            --t8w7hzya-text: #333333;
            --t8w7hzya-text-muted: #666666;
            --t8w7hzya-radius: 18px;
            --t8w7hzya-shadow: 0 10px 30px rgba(0,0,0,0.08);
            --t8w7hzya-transition: 0.25s ease;
        }

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

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

        /* 导航栏复用与修正 */
        .t8w7hzya-streak {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .t8w7hzya-cloak-nav {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

        .t8w7hzya-glide {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .t8w7hzya-nav-link {
            text-decoration: none;
            color: var(--t8w7hzya-text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--t8w7hzya-transition);
        }

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

        /* Hero区 - fullbleed_overlay 原型实现 */
        .t8w7hzya-apex {
            position: relative;
            height: 80vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--t8w7hzya-light);
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            overflow: hidden;
            text-align: center;
            padding: 0 20px;
        }

        .t8w7hzya-apex::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(234, 89, 79, 0.15) 0%, transparent 70%);
            z-index: 1;
        }

        .t8w7hzya-lumen {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .t8w7hzya-lumen h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
        }

        .t8w7hzya-lumen p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* 内容板块结构 */
        .t8w7hzya-void {
            padding: 80px 0;
        }

        .t8w7hzya-prism {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .t8w7hzya-blaze {
            margin-bottom: 100px;
        }

        .t8w7hzya-blaze h2 {
            font-size: 2.2rem;
            margin-bottom: 40px;
            text-align: center;
            color: var(--t8w7hzya-dark);
        }

        /* 故障排查网格布局 */
        .t8w7hzya-shard-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .t8w7hzya-shard {
            background: var(--t8w7hzya-light);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: var(--t8w7hzya-radius);
            padding: 40px;
            transition: var(--t8w7hzya-transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .t8w7hzya-shard:hover {
            transform: translateY(-8px);
            box-shadow: var(--t8w7hzya-shadow);
            border-color: var(--t8w7hzya-primary-soft);
        }

        .t8w7hzya-facet-icon {
            width: 60px;
            height: 60px;
            background: var(--t8w7hzya-primary-soft);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--t8w7hzya-primary);
        }

        .t8w7hzya-shard h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            color: var(--t8w7hzya-dark);
        }

        .t8w7hzya-shard p {
            color: var(--t8w7hzya-text-muted);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* 交互按钮 */
        .t8w7hzya-jolt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background: var(--t8w7hzya-primary);
            color: var(--t8w7hzya-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--t8w7hzya-transition);
            border: none;
            cursor: pointer;
        }

        .t8w7hzya-jolt:hover {
            background: #d4483e;
            box-shadow: 0 4px 15px rgba(234, 89, 79, 0.3);
        }

        .t8w7hzya-snap {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--t8w7hzya-primary);
            text-decoration: none;
            font-weight: 600;
            margin-top: auto;
        }

        /* 文本详情页布局 */
        .t8w7hzya-article-flow {
            max-width: 850px;
            margin: 0 auto;
            background: var(--t8w7hzya-gray);
            padding: 60px;
            border-radius: var(--t8w7hzya-radius);
        }

        .t8w7hzya-article-flow p {
            margin-bottom: 24px;
            font-size: 1.1rem;
        }

        .t8w7hzya-article-flow ul {
            margin-bottom: 24px;
            padding-left: 20px;
        }

        .t8w7hzya-article-flow li {
            margin-bottom: 12px;
        }

        /* 页脚 */
        .t8w7hzya-abyss {
            background: var(--t8w7hzya-dark);
            color: rgba(255,255,255,0.6);
            padding: 80px 0 40px;
        }

        .t8w7hzya-trace {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .t8w7hzya-trace-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--t8w7hzya-light);
            text-decoration: none;
        }

        .t8w7hzya-trace-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .t8w7hzya-trace-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: var(--t8w7hzya-transition);
        }

        .t8w7hzya-trace-links a:hover {
            color: var(--t8w7hzya-light);
        }

        .t8w7hzya-copyright {
            width: 100%;
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.9rem;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .t8w7hzya-cloak-nav {
                height: auto;
                padding: 15px 20px;
                justify-content: center;
                gap: 15px;
            }
            .t8w7hzya-glide {
                justify-content: center;
                gap: 12px;
            }
            .t8w7hzya-apex {
                height: auto;
                padding: 120px 20px 80px;
            }
            .t8w7hzya-article-flow {
                padding: 30px;
            }
            .t8w7hzya-trace {
                flex-direction: column;
                text-align: center;
            }
        }

.t8w7hzya-hdr-streak {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--t8w7hzya-text);
}
.t8w7hzya-hdr-streak,
.t8w7hzya-hdr-streak *,
.t8w7hzya-hdr-streak *::before,
.t8w7hzya-hdr-streak *::after {
    box-sizing: border-box;
}

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

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

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

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

.t8w7hzya-hdr-streak a.t8w7hzya-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;
}

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

.t8w7hzya-hdr-streak{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-cloak-nav{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-logo{
            height: 40px;
            display: flex;
            align-items: center;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-logo img{
            height: 100%;
            width: auto;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-glide{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link{
            font-weight: 500;
            font-size: 15px;
            color: #333333;
            position: relative;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link:hover, .t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link.active{
            color: #ea594f;
        }

.t8w7hzya-hdr-streak .t8w7hzya-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ea594f;
        }

@media (max-width: 768px){.t8w7hzya-hdr-streak .t8w7hzya-hdr-glide{
                display: none; 
            }}

.t8w7hzya-hdr-streak {
    background: rgb(255, 255, 255);
    background-image: none;
}

.t8w7hzya-ftr-abyss {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--t8w7hzya-text);
}
.t8w7hzya-ftr-abyss,
.t8w7hzya-ftr-abyss *,
.t8w7hzya-ftr-abyss *::before,
.t8w7hzya-ftr-abyss *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.t8w7hzya-ftr-abyss{
            background: #1a1a1a;
            color: #ffffff;
            padding: 80px 24px 40px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-prism-abyss{
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 60px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer{
            flex: 1;
            min-width: 200px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer h4{
            font-size: 18px;
            margin-bottom: 24px;
            color: #ffffff;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul{
            list-style: none;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li{
            margin-bottom: 12px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li a{
            color: rgba(255,255,255,0.6);
            font-size: 15px;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-shard-footer ul li a:hover{
            color: #ea594f;
        }

.t8w7hzya-ftr-abyss .t8w7hzya-ftr-trace{
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            text-align: center;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
        }