
        :root {
            --d6ecr-primary: #ff4d00;
            --d6ecr-secondary: #1a1a1a;
            --d6ecr-accent: #00ff9d;
            --d6ecr-text: #e0e0e0;
            --d6ecr-bg: #0a0a0b;
            --d6ecr-gap: 8px;
        }

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

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

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

        /* 导航栏复用与修正 */
        .d6ecr-dosub {
            background: rgba(10, 10, 11, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .d6ecr-lihixa {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            flex-wrap: wrap;
        }

        .d6ecr-fitega {
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .d6ecr-igidu {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .d6ecr-igidu a {
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            padding: 8px 0;
        }

        .d6ecr-igidu a:hover, .d6ecr-igidu a.active {
            color: var(--d6ecr-primary);
        }

        .d6ecr-igidu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--d6ecr-primary);
        }

        /* 展示区域 - 独特布局 */
        .d6ecr-huyip {
            padding: 96px 0;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 80% 20%, rgba(255, 77, 0, 0.05) 0%, transparent 50%);
        }

        .d6ecr-arajiy {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .d6ecr-huyip-text {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .d6ecr-huyip-text h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .d6ecr-huyip-text p {
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin-bottom: 48px;
        }

        /* 模拟监测面板布局 */
        .d6ecr-xazof {
            padding: 64px 0;
            background: #0d0d0e;
        }

        .d6ecr-grid-lihixa {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .d6ecr-bidaqez {
            background: #141416;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 4px;
            transition: transform 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 0;
        }

        .d6ecr-bidaqez:hover {
            transform: translateY(-8px);
            border-color: var(--d6ecr-primary);
        }

        .d6ecr-bidaqez h3 {
            font-size: 24px;
            color: var(--d6ecr-primary);
            margin-bottom: 8px;
        }

        .d6ecr-bidaqez .d6ecr-data-meta {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.4);
        }

        .d6ecr-bidaqez p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* 核心详情区 */
        .d6ecr-ebosuw {
            padding: 96px 0;
        }

        .d6ecr-ebosuw-lihixa {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .d6ecr-isuji {
            margin-bottom: 64px;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .d6ecr-isuji:nth-child(even) {
            flex-direction: row-reverse;
        }

        .d6ecr-isuji-content {
            flex: 1;
            min-width: 300px;
        }

        .d6ecr-isuji-content h2 {
            font-size: 32px;
            margin-bottom: 24px;
            color: #fff;
        }

        .d6ecr-isuji-content p {
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.6);
        }

        .d6ecr-isuji-visual {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(45deg, #1a1a1c, #252528);
            height: 300px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .d6ecr-isuji-visual::before {
            content: 'LIVE DATA STREAM';
            font-size: 12px;
            letter-spacing: 4px;
            color: var(--d6ecr-accent);
            opacity: 0.5;
        }

        /* 按钮组件 */
        .d6ecr-inoxan {
            display: inline-block;
            padding: 16px 40px;
            background: var(--d6ecr-primary);
            color: #fff;
            font-weight: 700;
            border-radius: 2px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .d6ecr-inoxan:hover {
            background: #ff6a26;
            box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
            transform: translateY(-2px);
        }

        .d6ecr-laweve {
            display: inline-block;
            padding: 16px 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-weight: 600;
            margin-left: 16px;
        }

        .d6ecr-laweve:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        /* 页脚区域 */
        .d6ecr-eziq {
            background: #050505;
            padding: 80px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .d6ecr-ixugev {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }

        .d6ecr-footer-brand {
            flex: 1;
            min-width: 250px;
        }

        .d6ecr-footer-brand h2 {
            font-size: 24px;
            color: #fff;
            margin-bottom: 16px;
        }

        .d6ecr-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
        }

        .d6ecr-footer-group h4 {
            color: #fff;
            margin-bottom: 24px;
            font-size: 14px;
            text-transform: uppercase;
        }

        .d6ecr-footer-group a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 12px;
            font-size: 14px;
        }

        .d6ecr-footer-group a:hover {
            color: var(--d6ecr-primary);
        }

        .d6ecr-copyright {
            width: 100%;
            margin-top: 80px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .d6ecr-fitega {
                height: auto;
                padding: 24px 0;
                flex-direction: column;
                gap: 24px;
            }
            .d6ecr-igidu {
                justify-content: center;
                gap: 12px;
            }
            .d6ecr-huyip {
                padding: 64px 0;
                text-align: center;
            }
            .d6ecr-huyip-text p {
                margin: 0 auto 32px;
            }
            .d6ecr-laweve {
                margin-left: 0;
                margin-top: 16px;
                width: 100%;
            }
            .d6ecr-inoxan {
                width: 100%;
            }
            .d6ecr-isuji {
                flex-direction: column !important;
            }
        }
    