
        :root {
            --brand-color: #ff4d15;
            --brand-gradient: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
            --text-main: #1d1d1f;
            --text-sub: #86868b;
            --bg-light: #f5f5f7;
            --white: #ffffff;
            --spacing-base: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

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

        /* 导航复用结构样式 */
        .doWacr-iqaka {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .doWacr-cebow {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .doWacr-zunipes {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            flex-wrap: wrap;
        }

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

        .doWacr-oloc {
            display: flex;
            list-style: none;
            gap: 24px;
            flex-wrap: wrap;
        }

        .doWacr-oloc li a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        /* 独特展示区域 - 皮肤大赏 */
        .doWacr-xonu {
            padding: 140px 0 80px;
            background: radial-gradient(circle at 90% 10%, rgba(255, 77, 21, 0.05) 0%, transparent 40%);
            text-align: center;
        }

        .doWacr-fufohi {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 32px;
            word-break: break-word;
        }

        .doWacr-fufohi h1 {
            font-size: clamp(2rem, 5vw + 1rem, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .doWacr-fufohi p {
            font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
            color: var(--text-sub);
            margin-bottom: 48px;
        }

        /* 核心卡片容器 */
        .doWacr-cirorog {
            padding: 64px 0;
            background-color: var(--bg-light);
        }

        .doWacr-egezo {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .doWacr-nayokit {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
            min-width: 0;
        }

        .doWacr-nayokit:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .doWacr-nayokit .visual-box {
            width: 100%;
            aspect-ratio: 16 / 10;
            background: #eee;
            position: relative;
            overflow: hidden;
        }

        .doWacr-nayokit .visual-box div {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #f3f3f3, #e9e9e9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .doWacr-nayokit .info-box {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .doWacr-nayokit h3 {
            font-size: 20px;
            margin-bottom: 8px;
        }

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

        /* 按钮组件 */
        .doWacr-azubef {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: var(--brand-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .doWacr-azubef:hover {
            background: #e64513;
            transform: scale(1.05);
        }

        .doWacr-apedaze {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: transparent;
            color: var(--brand-color);
            border: 2px solid var(--brand-color);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .doWacr-apedaze:hover {
            background: var(--brand-color);
            color: var(--white);
        }

        /* 智慧区域 */
        .doWacr-eqas {
            padding: 96px 0;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
        }

        .doWacr-eqas .text-part {
            flex: 1;
            min-width: 320px;
            padding: 0 24px;
        }

        .doWacr-eqas h2 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 24px;
        }

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

        .doWacr-eqas li {
            margin-bottom: 24px;
            padding-left: 20px;
            border-left: 3px solid var(--brand-color);
        }

        .doWacr-eqas li strong {
            display: block;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .doWacr-eqas li span {
            color: var(--text-sub);
            font-size: 14px;
        }

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

        .doWacr-enodoy {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }

        .doWacr-enodoy .brand-info {
            flex: 1;
            min-width: 280px;
        }

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

        .doWacr-enodoy .links-group {
            display: flex;
            gap: 64px;
            flex-wrap: wrap;
        }

        .doWacr-enodoy .link-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .doWacr-enodoy .link-col a {
            display: block;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.3s;
        }

        .doWacr-enodoy .link-col a:hover {
            color: var(--brand-color);
        }

        .doWacr-enodoy .copyright {
            width: 100%;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 48px;
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .doWacr-zunipes {
                height: auto;
                padding: 16px 0;
            }
            .doWacr-oloc {
                margin-top: 16px;
                gap: 12px;
                justify-content: center;
            }
            .doWacr-xonu {
                padding: 120px 0 60px;
            }
            .doWacr-eqas {
                gap: 32px;
            }
        }
    