
        :root {
            --g_7-brand: #D42D2D;
            --g_7-deep: #1A1A1A;
            --g_7-light: #F8F9FA;
            --g_7-accent: #FF5C5C;
            --g_7-gray: #666666;
            --g_7-space-sm: 16px;
            --g_7-space-md: 32px;
            --g_7-space-lg: 64px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "PingFang SC", "Microsoft YaHei", sans-serif; line-height: 1.6; color: var(--g_7-deep); background-color: #fff; }

        /* 导航复用样式 */
        .g_7-ugoyene { background: #fff; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
        .g_7-vedupom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 72px; flex-wrap: wrap; }
        .g_7-logo { flex-shrink: 0; }
        .g_7-logo img { height: 32px; display: block; }
        .g_7-hovigig { display: flex; list-style: none; flex-wrap: wrap; gap: 20px; }
        .g_7-hovigig li a { text-decoration: none; color: #333; font-size: 14px; font-weight: 500; transition: color 0.3s; }
        .g_7-hovigig li a:hover, .g_7-hovigig li a.active { color: var(--g_7-brand); }

        /* 创意展示区 - Nicaxe (Hero) */
        .g_7-nicaxe { 
            background: radial-gradient(circle at top right, #fff5f5, #ffffff);
            padding: var(--g_7-space-lg) 24px;
            overflow: hidden;
        }
        .g_7-ujovev { 
            max-width: 1100px; 
            margin: 0 auto; 
            display: flex; 
            flex-wrap: wrap; 
            align-items: center;
            gap: 40px;
        }
        .g_7-bawewe { flex: 1; min-width: 300px; word-break: break-word; }
        .g_7-bawewe h1 { 
            font-size: clamp(2rem, 5vw, 3.5rem); 
            line-height: 1.2; 
            margin-bottom: 24px; 
            color: var(--g_7-deep);
            font-weight: 800;
        }
        .g_7-bawewe p { 
            font-size: clamp(1rem, 2vw + 0.2rem, 1.25rem); 
            color: var(--g_7-gray); 
            margin-bottom: 32px;
            max-width: 540px;
        }
        .g_7-simo { 
            display: inline-block; 
            padding: 16px 40px; 
            background: var(--g_7-brand); 
            color: #fff; 
            text-decoration: none; 
            border-radius: 8px; 
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .g_7-simo:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 45, 45, 0.2); }

        /* 分类筛选区 - Gavux */
        .g_7-gavux { background: var(--g_7-light); padding: var(--g_7-space-md) 24px; }
        .g_7-ujovev-inner { 
            max-width: 1100px; 
            margin: 0 auto; 
            display: flex; 
            flex-wrap: wrap; 
            gap: 12px;
            justify-content: center;
        }
        .g_7-exeba { 
            padding: 10px 24px; 
            background: #fff; 
            border: 1px solid #ddd; 
            border-radius: 25px; 
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            color: var(--g_7-gray);
        }
        .g_7-exeba:hover, .g_7-exeba.active { 
            background: var(--g_7-brand); 
            color: #fff; 
            border-color: var(--g_7-brand);
        }

        /* 模版列表区 - Gunu */
        .g_7-gunu { padding: var(--g_7-space-lg) 24px; }
        .g_7-ujovev-grid { 
            max-width: 1100px; 
            margin: 0 auto; 
            display: flex; 
            flex-wrap: wrap; 
            gap: 30px;
        }
        .g_7-ezef { 
            flex: 1; 
            min-width: 320px; 
            background: #fff; 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid #f0f0f0;
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
        }
        .g_7-ezef:hover { transform: translateY(-8px); border-color: #eee; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
        .g_7-ezef-img { 
            width: 100%; 
            height: 200px; 
            background: #f5f5f5; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            position: relative;
        }
        .g_7-ezef-img::after { content: '2026 New'; position: absolute; top: 12px; right: 12px; background: var(--g_7-brand); color: #fff; font-size: 10px; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
        .g_7-ezef-info { padding: 24px; flex-grow: 1; }
        .g_7-ezef-info h3 { font-size: 18px; margin-bottom: 12px; color: var(--g_7-deep); }
        .g_7-ezef-info p { font-size: 14px; color: var(--g_7-gray); margin-bottom: 20px; line-height: 1.5; }
        .g_7-ejotixa { 
            display: inline-block; 
            padding: 8px 20px; 
            border: 1.5px solid var(--g_7-brand); 
            color: var(--g_7-brand); 
            text-decoration: none; 
            border-radius: 6px; 
            font-size: 14px; 
            font-weight: 600;
            transition: all 0.3s;
        }
        .g_7-ejotixa:hover { background: var(--g_7-brand); color: #fff; }

        /* 页脚区域 - Quwaci */
        .g_7-quwaci { background: var(--g_7-deep); color: #fff; padding: var(--g_7-space-lg) 24px var(--g_7-space-md); }
        .g_7-agidego { 
            max-width: 1100px; 
            margin: 0 auto; 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: space-between; 
            border-bottom: 1px solid #333;
            padding-bottom: 40px;
            gap: 40px;
        }
        .g_7-footer-col { flex: 1; min-width: 200px; }
        .g_7-footer-col h4 { margin-bottom: 24px; font-size: 18px; color: #fff; }
        .g_7-footer-col ul { list-style: none; }
        .g_7-footer-col ul li { margin-bottom: 12px; }
        .g_7-footer-col ul li a { color: #aaa; text-decoration: none; font-size: 14px; transition: color 0.3s; }
        .g_7-footer-col ul li a:hover { color: #fff; }
        .g_7-copyright { 
            max-width: 1100px; 
            margin: 24px auto 0; 
            text-align: center; 
            color: #666; 
            font-size: 13px; 
            word-break: break-word;
        }

        @media (max-width: 768px) {
            .g_7-hovigig { display: none; }
            .g_7-bawewe h1 { font-size: 2.2rem; }
            .g_7-ezef { min-width: 100%; }
        }
    