
        :root {
            --rh-s-primary: #D44027;
            --rh-s-primary-grad: linear-gradient(135deg, #FF5F43 0%, #D44027 100%);
            --rh-s-bg: #F8F9FB;
            --rh-s-text: #1D1D1F;
            --rh-s-text-sec: #636366;
            --rh-s-white: #FFFFFF;
            --rh-s-gap: 8px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--rh-s-bg);
            color: var(--rh-s-text);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* 强制导航栏样式复用 */
        .rh-s-yeqejat { width: 100%; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .rh-s-ritun { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 16px 24px; }
        .rh-s-logo img { height: 32px; display: block; }
        .rh-s-jeti { display: flex; flex-wrap: wrap; list-style: none; gap: 32px; }
        .rh-s-jeti li a { text-decoration: none; color: var(--rh-s-text); font-weight: 500; font-size: 16px; transition: color 0.3s; }
        .rh-s-jeti li a:hover, .rh-s-jeti li a.active { color: var(--rh-s-primary); }

        /* 布局容器 */
        .rh-s-xohujux { width: 92vw; max-width: 1360px; margin: 0 auto; padding: 64px 0; }
        
        /* 展示区域 - Hero */
        .rh-s-ruyoj { 
            background: var(--rh-s-white);
            border-radius: 40px;
            padding: 80px 40px;
            text-align: center;
            margin-bottom: 48px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
        }
        .rh-s-ruyoj::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -10%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(212,64,39,0.05) 0%, transparent 70%);
            transform: rotate(-15deg);
        }
        .rh-s-ruyoj h1 { 
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem); 
            line-height: 1.2; 
            margin-bottom: 24px; 
            font-weight: 800;
            word-break: keep-all;
        }
        .rh-s-ruyoj p { 
            font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--rh-s-text-sec);
        }

        /* 按钮组件 */
        .rh-s-dahu {
            display: inline-block;
            padding: 16px 48px;
            background: var(--rh-s-primary-grad);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 10px 20px rgba(212,64,39,0.2);
        }
        .rh-s-dahu:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212,64,39,0.3);
        }

        /* 类别过滤区 */
        .rh-s-axomi {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 48px;
            justify-content: center;
        }
        .rh-s-giti {
            padding: 10px 24px;
            background: var(--rh-s-white);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 12px;
            color: var(--rh-s-text);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }
        .rh-s-giti:hover, .rh-s-giti.active {
            background: var(--rh-s-primary);
            color: white;
            border-color: var(--rh-s-primary);
        }

        /* 模板网格容器 */
        .rh-s-saje {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            margin-bottom: 96px;
        }

        /* 模板卡片 */
        .rh-s-wubiso {
            background: var(--rh-s-white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(0,0,0,0.03);
            min-width: 0;
        }
        .rh-s-wubiso:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        }
        .rh-s-wubiso-img {
            aspect-ratio: 4/3;
            background: #eee;
            position: relative;
            overflow: hidden;
        }
        .rh-s-wubiso-img::after {
            content: "PREVIEW";
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.02);
            font-size: 12px;
            letter-spacing: 2px;
            color: #ccc;
        }
        .rh-s-wubiso-content {
            padding: 24px;
        }
        .rh-s-wubiso-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
            white-space: normal;
        }
        .rh-s-wubiso-content p {
            font-size: 14px;
            color: var(--rh-s-text-sec);
            margin-bottom: 16px;
        }

        /* 深度内容区块 */
        .rh-s-kived {
            background: var(--rh-s-white);
            border-radius: 32px;
            padding: 64px;
            margin-bottom: 64px;
            word-break: break-word;
        }
        .rh-s-kived h2 { font-size: 32px; margin-bottom: 32px; text-align: center; }
        .rh-s-kived h3 { font-size: 22px; margin: 24px 0 12px; color: var(--rh-s-primary); }
        .rh-s-kived p { margin-bottom: 24px; line-height: 1.8; color: #444; }

        /* FAQ模块 */
        .rh-s-faq {
            background: #f1f3f5;
            border-radius: 32px;
            padding: 64px 40px;
            margin-bottom: 64px;
        }
        .rh-s-faq h2 { text-align: center; margin-bottom: 48px; font-size: 28px; }
        .rh-s-faq-item {
            background: var(--rh-s-white);
            padding: 32px;
            border-radius: 16px;
            margin-bottom: 16px;
        }
        .rh-s-faq-item h3 { margin-bottom: 12px; font-size: 18px; color: var(--rh-s-text); }
        .rh-s-faq-item p { color: var(--rh-s-text-sec); font-size: 15px; }

        /* 页脚区域 */
        .rh-s-kakafoz {
            background: #1d1d1f;
            color: white;
            padding: 80px 0 40px;
        }
        .rh-s-yikimi {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
        }
        .rh-s-yikimi p { font-size: 14px; color: #86868b; }
        .rh-s-brand-text { font-size: 24px; font-weight: 700; margin-bottom: 16px; display: block; }

        @media (max-width: 768px) {
            .rh-s-saje { grid-template-columns: 1fr; }
            .rh-s-ruyoj { padding: 48px 20px; border-radius: 0; }
            .rh-s-kived { padding: 32px 20px; }
            .rh-s-jeti { gap: 16px; justify-content: center; width: 100%; margin-top: 16px; }
            .rh-s-ritun { justify-content: center; }
        }
    