
        :root {
            --egx_lr-primary: #ff6600;
            --egx_lr-primary-dark: #e65c00;
            --egx_lr-bg: #ffffff;
            --egx_lr-text: #333333;
            --egx_lr-gray: #f4f4f7;
            --egx_lr-accent: #4a90e2;
            --egx_lr-gap: 32px;
            --egx_lr-max-w: 1300px;
        }

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

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

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

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

        .egx_lr-hidoco {
            width: 100%;
        }

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

        /* 导航区域 - oxacine */
        .egx_lr-oxacine {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

        .egx_lr-oxacine .egx_lr-guhu {
            height: 80px;
            align-items: center;
            justify-content: space-between;
        }

        .egx_lr-logo {
            flex: 0 0 auto;
            min-width: 0;
        }

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

        .egx_lr-acudo-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            min-width: 0;
        }

        .egx_lr-acudo {
            padding: 0 12px;
            font-size: 15px;
            font-weight: 500;
            color: #555;
            position: relative;
        }

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

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

        /* 展示区域 - iyibaf (Hero) */
        .egx_lr-iyibaf {
            padding-top: 160px;
            padding-bottom: 96px;
            background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .egx_lr-iyibaf .egx_lr-guhu {
            align-items: center;
        }

        .egx_lr-ofid-text {
            flex: 1 1 500px;
            min-width: 0;
            padding-right: 40px;
        }

        .egx_lr-ofid-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            color: #1a1a1a;
            word-break: keep-all;
        }

        .egx_lr-ofid-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .egx_lr-ofid-media {
            flex: 1 1 500px;
            min-width: 0;
            position: relative;
        }

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

        /* 按钮组件 - ofub */
        .egx_lr-ofub {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background-color: var(--egx_lr-primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
        }

        .egx_lr-ofub:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
            background-color: var(--egx_lr-primary-dark);
            color: #fff;
        }

        /* 功能块 - hayase */
        .egx_lr-hayase {
            padding: 96px 0;
            background-color: #fff;
        }

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

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

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

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

        .egx_lr-hayase-image img {
            border-radius: 16px;
            width: 100%;
        }

        .egx_lr-hayase-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 102, 0, 0.1);
            color: var(--egx_lr-primary);
            border-radius: 4px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .egx_lr-hayase-h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 24px;
            font-weight: 700;
        }

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

        .egx_lr-hayase-li {
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
            color: #555;
        }

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

        /* 卡片组件 - arip & fojitaf */
        .egx_lr-tica-bg {
            background-color: var(--egx_lr-gray);
            padding: 96px 0;
        }

        .egx_lr-arip {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            width: 100%;
        }

        .egx_lr-fojitaf {
            flex: 1 1 calc(33.333% - 16px);
            min-width: 300px;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .egx_lr-fojitaf:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .egx_lr-fojitaf-icon {
            font-size: 32px;
            margin-bottom: 24px;
            width: 64px;
            height: 64px;
            background: var(--egx_lr-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            color: var(--egx_lr-primary);
            font-weight: bold;
        }

        .egx_lr-fojitaf-h3 {
            font-size: 22px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .egx_lr-fojitaf-p {
            color: #777;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .egx_lr-fojitaf-tools {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .egx_lr-fojitaf-tag {
            font-size: 12px;
            background: #f0f0f0;
            padding: 4px 10px;
            border-radius: 4px;
            color: #666;
        }

        /* 动态内容标记 */
        .egx_lr-tica-dynamic {
            padding: 96px 0;
        }

        .egx_lr-tica-h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 48px;
            width: 100%;
        }

        /* FAQ - tica */
        .egx_lr-tica-faq {
            padding: 96px 0;
            background: #fff;
        }

        .egx_lr-tica-faq-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .egx_lr-tica-faq-item {
            flex: 1 1 450px;
            min-width: 0;
        }

        .egx_lr-tica-faq-q {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--egx_lr-primary);
        }

        .egx_lr-tica-faq-a {
            color: #666;
        }

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

        .egx_lr-ofaf-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin-bottom: 64px;
        }

        .egx_lr-olohut-group {
            flex: 1 1 200px;
            min-width: 0;
        }

        .egx_lr-olohut-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: var(--egx_lr-primary);
        }

        .egx_lr-ofaf-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

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

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

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .egx_lr-fojitaf {
                flex: 1 1 calc(50% - 16px);
            }
        }

        @media (max-width: 768px) {
            .egx_lr-oxacine .egx_lr-guhu {
                height: auto;
                padding: 16px 24px;
            }
            .egx_lr-acudo-list {
                display: none; /* 简化移动端 */
            }
            .egx_lr-ofid-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 48px;
            }
            .egx_lr-iyibaf {
                padding-top: 120px;
            }
            .egx_lr-fojitaf {
                flex: 1 1 100%;
            }
            .egx_lr-hayase-wrap, .egx_lr-hayase-wrap:nth-child(even) {
                flex-direction: column;
            }
        }
    