
        :root {
            --egx_lr-primary: #ff4d4f;
            --egx_lr-primary-hover: #ff7875;
            --egx_lr-bg-light: #f9f9f9;
            --egx_lr-text-main: #333333;
            --egx_lr-text-sub: #666666;
            --egx_lr-white: #ffffff;
            --egx_lr-gradient: linear-gradient(135deg, #ff4d4f 0%, #ff7a45 100%);
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--egx_lr-text-main);
            line-height: 1.6;
            background-color: var(--egx_lr-white);
            overflow-x: hidden;
        }

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

        img {
            max-width: 100%;
            display: block;
        }

        /* 布局容器 */
        .egx_lr-hidoco {
            width: 100%;
        }

        .egx_lr-guhu {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* 导航栏样式复用 */
        .egx_lr-oxacine {
            height: 72px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }

        .egx_lr-logo {
            height: 72px;
            display: flex;
            align-items: center;
            margin-right: 48px;
        }

        .egx_lr-logo img {
            height: 32px;
        }

        .egx_lr-acudo-list {
            display: flex;
            flex-wrap: wrap;
            height: 72px;
            align-items: center;
            min-width: 0;
        }

        .egx_lr-acudo {
            padding: 0 16px;
            font-size: 15px;
            color: #333;
            font-weight: 500;
        }

        .egx_lr-acudo:hover, .egx_lr-acudo.active {
            color: var(--egx_lr-primary);
        }

        /* 独特展示区 */
        .egx_lr-iyibaf {
            padding: 160px 0 100px;
            background: radial-gradient(circle at top right, #fff5f5, #ffffff);
            overflow: hidden;
        }

        .egx_lr-ofid-text {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .egx_lr-ofid-title {
            font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 24px;
            background: var(--egx_lr-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .egx_lr-ofid-subtitle {
            font-size: 1.2rem;
            color: var(--egx_lr-text-sub);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .egx_lr-ofub {
            display: inline-block;
            padding: 16px 40px;
            background: var(--egx_lr-gradient);
            color: #fff;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(255, 77, 79, 0.2);
        }

        .egx_lr-ofub:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 77, 79, 0.3);
        }

        .egx_lr-ofid-media {
            flex: 1;
            min-width: 320px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .egx_lr-ofid-media img {
            border-radius: 24px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
        }

        /* 核心特性区块 */
        .egx_lr-tica {
            padding: 100px 0;
            background-color: var(--egx_lr-white);
        }

        .egx_lr-tica-h2 {
            width: 100%;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 64px;
            font-weight: 700;
        }

        .egx_lr-arip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            width: 100%;
        }

        .egx_lr-fojitaf {
            padding: 48px;
            background: #fff;
            border: 1px solid #f0f0f0;
            border-radius: 24px;
            transition: all 0.4s ease;
            word-break: break-word;
        }

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

        .egx_lr-fojitaf-icon {
            font-size: 40px;
            margin-bottom: 24px;
            background: #fff1f0;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            color: var(--egx_lr-primary);
            font-weight: bold;
        }

        .egx_lr-fojitaf-h3 {
            font-size: 22px;
            margin-bottom: 16px;
            color: #111;
        }

        .egx_lr-fojitaf-p {
            color: var(--egx_lr-text-sub);
            font-size: 16px;
            margin-bottom: 24px;
        }

        .egx_lr-fojitaf-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .egx_lr-fojitaf-tag {
            background: #f5f5f5;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 13px;
            color: #555;
        }

        /* 交互展示区 */
        .egx_lr-hayase {
            padding: 100px 0;
            background: #fbfbfb;
        }

        .egx_lr-hayase-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            margin-bottom: 100px;
            width: 100%;
        }

        .egx_lr-hayase-wrap:nth-child(even) {
            flex-direction: row-reverse;
        }

        .egx_lr-hayase-info {
            flex: 1;
            min-width: 320px;
        }

        .egx_lr-hayase-tag {
            color: var(--egx_lr-primary);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            display: block;
        }

        .egx_lr-hayase-h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .egx_lr-hayase-list {
            list-style: none;
        }

        .egx_lr-hayase-li {
            padding: 12px 0;
            padding-left: 28px;
            position: relative;
            font-size: 16px;
            color: #444;
        }

        .egx_lr-hayase-li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--egx_lr-primary);
            font-weight: bold;
        }

        .egx_lr-hayase-image {
            flex: 1;
            min-width: 320px;
        }

        .egx_lr-hayase-image img {
            border-radius: 20px;
            width: 100%;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        /* 页脚区域 */
        .egx_lr-ofaf {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0 40px;
        }

        .egx_lr-ofaf-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            width: 100%;
            margin-bottom: 64px;
        }

        .egx_lr-ofaf-brand-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--egx_lr-primary);
        }

        .egx_lr-olohut-group h4 {
            font-size: 18px;
            margin-bottom: 24px;
            color: #fff;
        }

        .egx_lr-olohut-list {
            list-style: none;
        }

        .egx_lr-olohut {
            margin-bottom: 12px;
        }

        .egx_lr-olohut a {
            color: #aaa;
            font-size: 14px;
        }

        .egx_lr-olohut a:hover {
            color: #fff;
        }

        .egx_lr-ofaf-copy {
            width: 100%;
            padding-top: 32px;
            border-top: 1px solid #333;
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .egx_lr-ofaf-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .egx_lr-iyibaf {
                padding-top: 120px;
                text-align: center;
            }
            .egx_lr-ofid-media {
                margin-top: 48px;
            }
            .egx_lr-ofid-media img {
                transform: none;
            }
            .egx_lr-acudo-list {
                display: none; /* 移动端简化 */
            }
            .egx_lr-ofaf-grid {
                grid-template-columns: 1fr;
            }
            .egx_lr-hayase-wrap, .egx_lr-hayase-wrap:nth-child(even) {
                flex-direction: column;
            }
        }
    