
        :root {
            --lmrbri-primary: #ff4d4f;
            --lmrbri-accent: #1890ff;
            --lmrbri-bg: #f8fafc;
            --lmrbri-text: #1e293b;
            --lmrbri-text-light: #64748b;
            --lmrbri-white: #ffffff;
            --lmrbri-gradient: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
            --lmrbri-glass: rgba(255, 255, 255, 0.85);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            background-color: var(--lmrbri-bg);
            color: var(--lmrbri-text);
            line-height: 1.8;
            word-break: keep-all;
            overflow-x: hidden;
        }

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

        /* 强制导航栏样式复用 */
        .lmrbri-uwawu {
            background: var(--lmrbri-glass);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            width: 100%;
        }

        .lmrbri-wapur {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .lmrbri-logo {
            flex-shrink: 0;
            min-width: 0;
        }

        .lmrbri-logo img {
            height: 32px;
            display: block;
        }

        .lmrbri-onilev {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .lmrbri-onilev li a {
            font-size: 16px;
            font-weight: 500;
            color: var(--lmrbri-text);
            padding: 8px 0;
            position: relative;
        }

        .lmrbri-onilev li a.active {
            color: var(--lmrbri-primary);
        }

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

        /* 独特展示区域设计 */
        .lmrbri-iwusesi {
            padding: 96px 24px;
            background: radial-gradient(circle at top right, rgba(255, 77, 79, 0.05), transparent),
                        radial-gradient(circle at bottom left, rgba(24, 144, 255, 0.05), transparent);
            overflow: hidden;
        }

        .lmrbri-zabud {
            max-width: 1100px;
            margin: 0 auto;
        }

        .lmrbri-retowo {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
        }

        .lmrbri-naga {
            flex: 1;
            min-width: 320px;
        }

        .lmrbri-naga h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 32px;
            background: linear-gradient(to right, #1e293b, #475569);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lmrbri-naga p {
            font-size: clamp(1.125rem, 2vw, 1.25rem);
            color: var(--lmrbri-text-light);
            margin-bottom: 48px;
            max-width: 600px;
        }

        .lmrbri-odipiko {
            display: inline-block;
            background: var(--lmrbri-gradient);
            color: white;
            padding: 16px 48px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(255, 77, 79, 0.3);
            transform: translateY(0);
        }

        .lmrbri-odipiko:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255, 77, 79, 0.4);
        }

        /* 核心功能板块 */
        .lmrbri-akuw {
            padding: 96px 24px;
            background: var(--lmrbri-white);
        }

        .lmrbri-cura {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 64px;
        }

        .lmrbri-ebahaf {
            padding: 48px;
            border-radius: 24px;
            background: #fdfdfd;
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            word-break: break-word;
        }

        .lmrbri-ebahaf:hover {
            background: white;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            transform: scale(1.02);
        }

        .lmrbri-ebahaf h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--lmrbri-primary);
        }

        .lmrbri-ebahaf p {
            font-size: 16px;
            color: var(--lmrbri-text-light);
            line-height: 1.8;
        }

        /* FAQ 模块样式 */
        .lmrbri-faq {
            padding: 96px 24px;
            background: #f1f5f9;
        }

        .lmrbri-faq h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 64px;
        }

        .lmrbri-faq-item {
            max-width: 800px;
            margin: 0 auto 24px;
            background: white;
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }

        .lmrbri-faq-item h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: var(--lmrbri-text);
            display: flex;
            align-items: center;
        }

        .lmrbri-faq-item h3::before {
            content: 'Q';
            color: var(--lmrbri-primary);
            font-weight: 800;
            margin-right: 12px;
        }

        .lmrbri-faq-item p {
            color: var(--lmrbri-text-light);
            font-size: 16px;
            padding-left: 30px;
        }

        /* 动态内容区块 */
        .lmrbri-dynamic {
            padding: 80px 24px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        /* 页脚样式 */
        .lmrbri-ipegudo {
            background: #1e293b;
            color: #94a3b8;
            padding: 80px 24px 40px;
        }

        .lmrbri-agepaz {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
        }

        .lmrbri-agepaz .brand-info {
            flex: 2;
            min-width: 300px;
        }

        .lmrbri-agepaz .brand-info h4 {
            color: white;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .lmrbri-agepaz .footer-links {
            flex: 1;
            min-width: 150px;
        }

        .lmrbri-agepaz .footer-links h5 {
            color: white;
            margin-bottom: 24px;
            font-size: 18px;
        }

        .lmrbri-agepaz .footer-links ul {
            list-style: none;
        }

        .lmrbri-agepaz .footer-links ul li {
            margin-bottom: 12px;
        }

        .lmrbri-agepaz .footer-links ul li a:hover {
            color: var(--lmrbri-primary);
        }

        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            .lmrbri-wapur { height: auto; padding: 16px 24px; }
            .lmrbri-onilev { width: 100%; justify-content: space-between; margin-top: 16px; gap: 10px; }
            .lmrbri-onilev li a { font-size: 14px; }
            .lmrbri-retowo { flex-direction: column; text-align: center; }
            .lmrbri-naga p { margin-left: auto; margin-right: auto; }
            .lmrbri-ebahaf { padding: 32px; }
        }
    