
        /* 核心重置与基础样式 */
        :root {
            --primary: #FF6600;
            --primary-dark: #E65C00;
            --accent: #4A90E2;
            --text-main: #222222;
            --text-sub: #666666;
            --bg-light: #F8F9FA;
            --white: #FFFFFF;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
            --unit: 8px;
        }

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

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

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

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

        /* 布局容器 - cebow, cirorog, zunipes */
        .doWacr-cebow {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 calc(var(--unit) * 3);
            width: 100%;
        }

        .doWacr-zunipes {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

        /* 导航区域 - iqaka, oloc */
        .doWacr-iqaka {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: calc(var(--unit) * 2) 0;
        }

        .doWacr-iqaka .doWacr-zunipes {
            justify-content: space-between;
            align-items: center;
        }

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

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

        .doWacr-oloc {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--unit) * 3);
            min-width: 0;
        }

        .doWacr-oloc li a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            position: relative;
        }

        .doWacr-oloc li a:hover,
        .doWacr-oloc li a.active {
            color: var(--primary);
        }

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

        /* 展示区域 - xonu, fufohi, eqas */
        .doWacr-xonu {
            padding: 160px 0 96px;
            background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
        }

        .doWacr-fufohi {
            flex: 1;
            min-width: 320px;
            padding-right: calc(var(--unit) * 6);
            word-break: break-word;
        }

        .doWacr-fufohi h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            margin-bottom: calc(var(--unit) * 3);
            color: #1a1a1a;
        }

        .doWacr-fufohi p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--text-sub);
            margin-bottom: calc(var(--unit) * 5);
            max-width: 600px;
        }

        .doWacr-eqas {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .doWacr-eqas img {
            border-radius: 24px;
            box-shadow: var(--shadow);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .doWacr-eqas:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* 按钮组件 - azubef, apedaze */
        .doWacr-azubef {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .doWacr-azubef:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: var(--white);
        }

        .doWacr-apedaze {
            display: inline-block;
            background: transparent;
            color: var(--text-main);
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            border: 2px solid #E0E0E0;
            margin-left: 16px;
        }

        .doWacr-apedaze:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* 卡片组件 - egezo, nayokit */
        .doWacr-cirorog {
            padding: 96px 0;
            background: var(--bg-light);
        }

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

        .doWacr-nayokit {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
            min-width: 0;
            word-break: break-word;
        }

        .doWacr-nayokit:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .doWacr-nayokit h3 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #333;
        }

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

        .doWacr-nayokit ul {
            list-style: none;
        }

        .doWacr-nayokit li {
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
            font-size: 15px;
        }

        .doWacr-nayokit li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* 功能详解区块 */
        .doWacr-feature-block {
            padding: 96px 0;
        }

        .doWacr-feature-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 80px;
            gap: 64px;
        }

        .doWacr-feature-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .doWacr-feature-text {
            flex: 1;
            min-width: 320px;
        }

        .doWacr-feature-text h2 {
            font-size: 32px;
            margin-bottom: 24px;
        }

        .doWacr-feature-image {
            flex: 1;
            min-width: 320px;
        }

        .doWacr-feature-image img {
            border-radius: 20px;
            width: 100%;
        }

        /* 动态内容区块 */
        .doWacr-dynamic-box {
            padding: 80px 0;
            background: #fff;
        }

        .doWacr-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .doWacr-news-item {
            padding: 24px;
            border-bottom: 1px solid #eee;
        }

        .doWacr-news-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 8px;
        }

        .doWacr-news-title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 12px;
            display: block;
        }

        /* 页脚区域 - ujokut, enodoy */
        .doWacr-ujokut {
            background: #1a1a1a;
            color: rgba(255,255,255,0.8);
            padding: 80px 0 40px;
        }

        .doWacr-enodoy {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .doWacr-enodoy h4 {
            color: var(--white);
            margin-bottom: 24px;
            font-size: 18px;
        }

        .doWacr-enodoy ul {
            list-style: none;
        }

        .doWacr-enodoy li {
            margin-bottom: 12px;
        }

        .doWacr-enodoy a:hover {
            color: var(--primary);
        }

        .doWacr-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 14px;
        }

        .doWacr-brand-text {
            font-size: 20px;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 16px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .doWacr-fufohi {
                padding-right: 0;
                text-align: center;
                margin-bottom: 48px;
            }
            .doWacr-fufohi p {
                margin: 0 auto 32px;
            }
            .doWacr-apedaze {
                margin-left: 0;
                margin-top: 16px;
                display: block;
            }
            .doWacr-oloc {
                display: none; /* 移动端可根据JS显示/隐藏 */
            }
            .doWacr-feature-row {
                gap: 32px;
            }
        }
    