:root {
            --qlx-z8-primary: #f7a355;
            --qlx-z8-primary-soft: rgba(247, 163, 85, 0.1);
            --qlx-z8-dark: #1a1a1a;
            --qlx-z8-text: #333333;
            --qlx-z8-light: #ffffff;
            --qlx-z8-gray: #f9f9f9;
            --qlx-z8-radius: 20px;
            --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;
            color: var(--qlx-z8-text);
            line-height: 1.7;
            background-color: var(--qlx-z8-light);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 导航栏复用样式 */
        .qlx-z8-orbit-vessel {
            display: flex;
            flex-wrap: wrap;
            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(0, 0, 0, 0.05);
        }

        .qlx-z8-logo {
            flex-shrink: 0;
        }

        .qlx-z8-logo img {
            height: 40px;
            display: block;
        }

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

        .qlx-z8-nav-link {
            text-decoration: none;
            color: var(--qlx-z8-text);
            font-weight: 500;
            font-size: 0.95rem;
            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-flex;
            align-items: center;
            justify-content: center;
        }

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

        /* Cinematic Strip Hero 独特设计 */
        .qlx-z8-surge-vista {
            position: relative;
            background: #0d0d0d;
            padding: 80px 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qlx-z8-flare-pulse {
            max-width: 1100px;
            width: 90%;
            margin: 0 auto;
            text-align: center;
            color: white;
            z-index: 10;
        }

        .qlx-z8-flare-pulse h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 20px;
            letter-spacing: -1px;
            word-break: keep-all;
        }

        .qlx-z8-flare-pulse p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .qlx-z8-strip-realm {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            width: 100%;
            padding: 0 20px;
            transform: skewY(-2deg);
        }

        .qlx-z8-strip-shard {
            min-width: 280px;
            flex: 1;
            height: 350px;
            background: linear-gradient(135deg, #222, #111);
            border-radius: var(--qlx-z8-radius);
            border: 1px solid rgba(247, 163, 85, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px;
            transition: transform 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .qlx-z8-strip-shard:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--qlx-z8-primary);
        }

        .qlx-z8-strip-shard svg {
            width: 64px;
            height: 64px;
            margin-bottom: 20px;
            fill: var(--qlx-z8-primary);
        }

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

        .qlx-z8-strip-shard span {
            color: #aaa;
            text-align: center;
            font-size: 0.95rem;
        }

        /* 内容区块 */
        .qlx-z8-nexus-vessel {
            padding: 100px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

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

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

        .qlx-z8-text-realm {
            flex: 1;
            min-width: 320px;
        }

        .qlx-z8-text-realm h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--qlx-z8-dark);
            position: relative;
        }

        .qlx-z8-text-realm h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--qlx-z8-primary);
            margin-top: 15px;
            border-radius: 2px;
        }

        .qlx-z8-text-realm p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .qlx-z8-visual-nexus {
            flex: 1;
            min-width: 320px;
            background: var(--qlx-z8-gray);
            border-radius: var(--qlx-z8-radius);
            padding: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        /* 技术指标网格 */
        .qlx-z8-grid-realm {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .qlx-z8-metric-shard {
            padding: 40px;
            background: var(--qlx-z8-light);
            border: 1px solid #eee;
            border-radius: var(--qlx-z8-radius);
            transition: var(--qlx-z8-transition);
        }

        .qlx-z8-metric-shard:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border-color: var(--qlx-z8-primary-soft);
        }

        .qlx-z8-metric-shard h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--qlx-z8-primary);
        }

        /* 页脚 */
        .qlx-z8-echo-trace {
            background: #111;
            color: #999;
            padding: 60px 5% 30px;
            text-align: center;
        }

        .qlx-z8-echo-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 40px;
        }

        .qlx-z8-echo-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--qlx-z8-transition);
        }

        .qlx-z8-echo-links a:hover {
            color: var(--qlx-z8-primary);
        }

        .qlx-z8-brand-echo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .qlx-z8-steer-nexus {
                display: none;
            }
            .qlx-z8-flare-pulse h1 {
                font-size: 2.2rem;
            }
            .qlx-z8-strip-shard {
                min-width: 100%;
            }
            .qlx-z8-pulse-shard {
                margin-bottom: 60px;
                gap: 30px;
            }
        }

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