
        :root {
            --primary-color: #ff6600;
            --secondary-color: #ff8533;
            --bg-light: #fdfdfd;
            --text-dark: #222222;
            --text-gray: #666666;
            --white: #ffffff;
            --spacing-unit: 8px;
            --container-width: 1100px;
        }

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

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

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

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

        /* 导航栏复用结构 */
        .xrcs-xonace {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .xrcs-orasi.xrcs-mekobof {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
        }

        .xrcs-logo img {
            height: 40px;
        }

        .xrcs-opofak {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .xrcs-opofak a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
        }

        .xrcs-opofak a.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .xrcs-opofak a:hover {
            color: var(--primary-color);
        }

        /* 展示区域 - Hero */
        .xrcs-utih {
            padding: 96px 24px;
            background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
            overflow: hidden;
            position: relative;
        }

        .xrcs-xilotey {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .xrcs-xupu {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .xrcs-xupu h1 {
            font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-dark);
            font-weight: 800;
        }

        .xrcs-xupu p {
            font-size: clamp(1rem, 1.2vw + 0.2rem, 1.25rem);
            color: var(--text-gray);
            margin-bottom: 32px;
            max-width: 600px;
        }

        .xrcs-yaje {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .xrcs-yaje:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
            background: var(--secondary-color);
        }

        /* 主内容区域 */
        .xrcs-jigukir {
            padding: 80px 24px;
        }

        .xrcs-jigukir h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 48px;
            font-weight: 700;
        }

        /* 表情包卡片容器 */
        .xrcs-xilotey.xrcs-flex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
        }

        .xrcs-vokun {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid #f0f0f0;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

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

        .xrcs-kiqusu {
            padding: 24px;
            flex-grow: 1;
        }

        .xrcs-kiqusu img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
            background-color: #fafafa;
        }

        .xrcs-kiqusu h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .xrcs-kiqusu p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .xrcs-anap {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 600;
            border-bottom: 2px solid transparent;
            padding-bottom: 2px;
        }

        .xrcs-anap:hover {
            border-bottom-color: var(--primary-color);
        }

        /* 动态内容区块 - 文章资讯 */
        .xrcs-jigukir.xrcs-white-bg {
            background: #ffffff;
            border-top: 1px solid #f5f5f5;
        }

        .xrcs-article-list {
            max-width: var(--container-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .xrcs-article-item {
            flex: 1;
            min-width: 300px;
            padding: 24px;
            border-bottom: 1px solid #eeeeee;
        }

        .xrcs-article-item span {
            font-size: 0.85rem;
            color: #999;
            display: block;
            margin-bottom: 8px;
        }

        /* 页脚区域 */
        .xrcs-cocileq {
            background: #1a1a1a;
            color: #888;
            padding: 64px 24px 32px;
        }

        .xrcs-cocileq .xrcs-xilotey {
            justify-content: space-between;
        }

        .xrcs-footer-brand {
            margin-bottom: 32px;
        }

        .xrcs-footer-brand .brand-name {
            font-size: 1.5rem;
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            display: block;
        }

        .xrcs-vepa {
            border-top: 1px solid #333;
            margin-top: 48px;
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
        }

        .xrcs-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 24px;
        }

        .xrcs-footer-links a:hover {
            color: #fff;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .xrcs-orasi.xrcs-mekobof {
                flex-direction: column;
                padding: 12px;
            }
            .xrcs-opofak {
                justify-content: center;
                gap: 12px;
                margin-top: 16px;
            }
            .xrcs-opofak a {
                font-size: 13px;
            }
            .xrcs-utih {
                padding: 48px 24px;
                text-align: center;
            }
            .xrcs-xupu p {
                margin-left: auto;
                margin-right: auto;
            }
            .xrcs-xilotey.xrcs-flex-grid {
                grid-template-columns: 1fr;
            }
        }
    