:root {
            --qlx-z8-primary: #f7a355;
            --qlx-z8-secondary: #ff8c21;
            --qlx-z8-bg: #ffffff;
            --qlx-z8-text: #2d3436;
            --qlx-z8-deep: #1a1a1a;
            --qlx-z8-soft: #fdf2e9;
            --qlx-z8-radius: 22px;
            --qlx-z8-transition: 0.25s ease;
        }

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

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

        /* 强制复用导航栏 */
        .qlx-z8-orbit-vessel {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(247, 163, 85, 0.1);
        }

        .qlx-z8-logo img {
            height: 40px;
            width: auto;
        }

        .qlx-z8-steer-nexus {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .qlx-z8-nav-link {
            text-decoration: none;
            color: #444;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--qlx-z8-transition);
        }

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

        .qlx-z8-spark-jolt {
            background: var(--qlx-z8-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--qlx-z8-transition);
            display: inline-block;
            text-align: center;
            min-width: 0;
            word-break: break-word;
        }

        .qlx-z8-spark-jolt:hover {
            background: var(--qlx-z8-secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(247, 163, 85, 0.3);
        }

        /* Cinematic Strip Hero 布局 */
        .qlx-z8-vista-flare {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 500px;
            background: var(--qlx-z8-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .qlx-z8-vista-flare::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(247, 163, 85, 0.15) 0%, transparent 70%);
            animation: pulse-glow 8s infinite alternate;
        }

        @keyframes pulse-glow {
            from { opacity: 0.5; transform: scale(1); }
            to { opacity: 0.8; transform: scale(1.1); }
        }

        .qlx-z8-vista-nexus {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            padding: 0 40px;
            text-align: center;
            width: 100%;
        }

        .qlx-z8-vista-nexus h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: #fff;
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 800;
            word-break: keep-all;
        }

        .qlx-z8-vista-nexus p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            word-break: break-word;
        }

        /* 内容板块 */
        .qlx-z8-surge-realm {
            padding: 100px 5%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .qlx-z8-surge-nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
            margin-bottom: 120px;
        }

        .qlx-z8-surge-nexus:nth-child(even) {
            flex-direction: row-reverse;
        }

        .qlx-z8-surge-info {
            flex: 1;
            min-width: 320px;
        }

        .qlx-z8-surge-info h2 {
            font-size: 2.2rem;
            color: var(--qlx-z8-deep);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .qlx-z8-surge-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--qlx-z8-primary);
            border-radius: 2px;
        }

        .qlx-z8-surge-info p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 25px;
        }

        .qlx-z8-surge-visual {
            flex: 1;
            min-width: 320px;
            background: var(--qlx-z8-soft);
            border-radius: var(--qlx-z8-radius);
            padding: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: inset 0 0 40px rgba(247, 163, 85, 0.05);
        }

        /* 核心卡片 shard */
        .qlx-z8-pulse-vessel {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        .qlx-z8-shard-nexus {
            flex: 1;
            min-width: 280px;
            background: #fff;
            padding: 40px;
            border-radius: var(--qlx-z8-radius);
            border: 1px solid #f0f0f0;
            transition: var(--qlx-z8-transition);
            position: relative;
            overflow: hidden;
        }

        .qlx-z8-shard-nexus:hover {
            transform: translateY(-10px);
            border-color: var(--qlx-z8-primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .qlx-z8-shard-icon {
            width: 60px;
            height: 60px;
            background: var(--qlx-z8-soft);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--qlx-z8-primary);
        }

        .qlx-z8-shard-nexus h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--qlx-z8-deep);
        }

        /* 极客参数表格 */
        .qlx-z8-spec-realm {
            background: #fdfdfd;
            border-radius: var(--qlx-z8-radius);
            padding: 60px 40px;
            margin-top: 80px;
            border: 1px dashed #ddd;
        }

        .qlx-z8-spec-realm h2 {
            text-align: center;
            margin-bottom: 50px;
        }

        .qlx-z8-spec-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .qlx-z8-spec-item {
            border-left: 3px solid var(--qlx-z8-primary);
            padding-left: 20px;
        }

        .qlx-z8-spec-label {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 5px;
        }

        .qlx-z8-spec-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--qlx-z8-deep);
        }

        /* 页脚 */
        .qlx-z8-echo-vessel {
            background: var(--qlx-z8-deep);
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 5% 40px;
            margin-top: 100px;
        }

        .qlx-z8-echo-nexus {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 50px;
        }

        .qlx-z8-trace-realm {
            flex: 1;
            min-width: 250px;
        }

        .qlx-z8-trace-realm h4 {
            color: #fff;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

        .qlx-z8-trace-realm a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--qlx-z8-transition);
        }

        .qlx-z8-trace-realm a:hover {
            color: var(--qlx-z8-primary);
        }

        .qlx-z8-echo-copyright {
            text-align: center;
            padding-top: 40px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .qlx-z8-steer-nexus { gap: 15px; }
            .qlx-z8-surge-nexus { gap: 30px; margin-bottom: 60px; }
            .qlx-z8-surge-visual { padding: 30px; }
            .qlx-z8-vista-flare { height: auto; padding: 100px 0; }
        }

.qlx-z8-hdr-orbit-vessel {
    font-family: var(--qlx-z8-font);
    line-height: 1.8;
    word-break: keep-all;
    color: var(--qlx-z8-text-main);
}
.qlx-z8-hdr-orbit-vessel,
.qlx-z8-hdr-orbit-vessel *,
.qlx-z8-hdr-orbit-vessel *::before,
.qlx-z8-hdr-orbit-vessel *::after {
    box-sizing: border-box;
}

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

.qlx-z8-hdr-orbit-vessel p,
.qlx-z8-hdr-orbit-vessel h1,
.qlx-z8-hdr-orbit-vessel h2,
.qlx-z8-hdr-orbit-vessel h3,
.qlx-z8-hdr-orbit-vessel h4,
.qlx-z8-hdr-orbit-vessel h5,
.qlx-z8-hdr-orbit-vessel h6 {
    text-decoration: none;
}

.qlx-z8-hdr-orbit-vessel img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.qlx-z8-hdr-orbit-vessel {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.qlx-z8-hdr-orbit-vessel a.qlx-z8-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;
}

.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link:hover,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link:focus,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link:active,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-hdr-nav-link.active,
.qlx-z8-hdr-orbit-vessel a.qlx-z8-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);
}

.qlx-z8-hdr-orbit-vessel{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(247, 163, 85, 0.1);
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-logo{
            width: 120px;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-steer-nexus{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            min-width: 0;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link{
            font-weight: 600;
            font-size: 1rem;
            color: #2d3436;
            position: relative;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link:hover, .qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link.active{
            color: #f7a355;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-nav-link.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #f7a355;
            border-radius: 2px;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-spark-jolt{
            display: inline-flex;
            align-items: center;
            padding: 18px 42px;
            background: #f7a355;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 32px;
            box-shadow: 0 10px 25px rgba(247, 163, 85, 0.4);
            transition: transform 0.25s ease, background 0.25s ease;
            border: none;
            cursor: pointer;
        }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-spark-jolt:hover{
            transform: translateY(-3px);
            background: #ff8c21;
        }

@media (max-width: 768px){.qlx-z8-hdr-orbit-vessel{ padding: 15px 20px; }

.qlx-z8-hdr-orbit-vessel .qlx-z8-hdr-steer-nexus{ display: none; }}

.qlx-z8-hdr-orbit-vessel {
    background: rgb(255, 255, 255);
    background-image: none;
}

.qlx-z8-ftr-echo-trace {
    font-family: var(--qlx-z8-font);
    line-height: 1.8;
    word-break: keep-all;
    color: var(--qlx-z8-text-main);
}
.qlx-z8-ftr-echo-trace,
.qlx-z8-ftr-echo-trace *,
.qlx-z8-ftr-echo-trace *::before,
.qlx-z8-ftr-echo-trace *::after {
    box-sizing: border-box;
}

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

.qlx-z8-ftr-echo-trace p,
.qlx-z8-ftr-echo-trace h1,
.qlx-z8-ftr-echo-trace h2,
.qlx-z8-ftr-echo-trace h3,
.qlx-z8-ftr-echo-trace h4,
.qlx-z8-ftr-echo-trace h5,
.qlx-z8-ftr-echo-trace h6 {
    text-decoration: none;
}

.qlx-z8-ftr-echo-trace img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.qlx-z8-ftr-echo-trace {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.qlx-z8-ftr-echo-trace a,
.qlx-z8-ftr-echo-trace a:hover,
.qlx-z8-ftr-echo-trace a:focus,
.qlx-z8-ftr-echo-trace a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.qlx-z8-ftr-echo-trace{
            background: #fafafa;
            padding: 100px 40px 60px;
            border-top: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-grid{
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            position: relative;
            z-index: 2;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-brand{
            grid-column: span 2;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-brand-text{
            font-size: 2rem;
            font-weight: 900;
            color: #f7a355;
            margin-bottom: 20px;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-title{
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-links{
            list-style: none;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-links li{
            margin-bottom: 12px;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-links a:hover{
            color: #f7a355;
            padding-left: 5px;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-trace-bottom{
            max-width: 1200px;
            margin: 60px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            color: #636e72;
            font-size: 0.9rem;
        }

.qlx-z8-ftr-echo-trace .qlx-z8-ftr-footer-texture{
            position: absolute;
            right: 0;
            bottom: 0;
            width: 300px;
            opacity: 0.4;
            pointer-events: none;
        }