/* template-differentiation.css - 模板差异化增强样式 */

/* ==================== 基础差异化样式 ==================== */

/* 模板类型特定样式 */
body.template-紫色神秘 {
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1), transparent 70%);
}

body.template-绿色自然 {
    background: radial-gradient(circle at 50% 50%, rgba(34, 139, 34, 0.1), transparent 70%);
}

body.template-金色豪华 {
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 70%);
}

body.template-科技未来 {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1), transparent 70%);
}

body.template-简约现代 {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

/* ==================== 差异化动画效果 ==================== */

/* 神秘风格动画 */
.template-紫色神秘 .card,
.template-紫色神秘 .feature-item {
    animation: mysterious-float 3s ease-in-out infinite;
}

@keyframes mysterious-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 自然风格动画 */
.template-绿色自然 .card,
.template-绿色自然 .feature-item {
    animation: natural-pulse 4s ease-in-out infinite;
}

@keyframes natural-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* 豪华风格动画 */
.template-金色豪华 .card,
.template-金色豪华 .feature-item {
    animation: luxury-glow 2s ease-in-out infinite alternate;
}

@keyframes luxury-glow {
    from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
}

/* 科技风格动画 */
.template-科技未来 .card,
.template-科技未来 .feature-item {
    animation: tech-scan 3s linear infinite;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 255, 255, 0.1) 50%,
        transparent 100%);
    background-size: 200% 100%;
}

@keyframes tech-scan {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ==================== 差异化按钮样式 ==================== */

/* 神秘风格按钮 */
.template-紫色神秘 .btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #da70d6 100%);
    border: 2px solid #da70d6;
    position: relative;
    overflow: hidden;
}

.template-紫色神秘 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.template-紫色神秘 .btn-primary:hover::before {
    left: 100%;
}

/* 自然风格按钮 */
.template-绿色自然 .btn-primary {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    border: 2px solid #32cd32;
    border-radius: 25px;
}

.template-绿色自然 .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 139, 34, 0.3);
}

/* 豪华风格按钮 */
.template-金色豪华 .btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
    border: 3px solid #b8860b;
    color: #1a140f;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.template-金色豪华 .btn-primary:hover {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 100%);
    transform: scale(1.05);
}

/* 科技风格按钮 */
.template-科技未来 .btn-primary {
    background: linear-gradient(90deg, #00ffff 0%, #1e90ff 100%);
    border: none;
    position: relative;
    z-index: 1;
}

.template-科技未来 .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #1e90ff 0%, #00ffff 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.template-科技未来 .btn-primary:hover::after {
    opacity: 1;
}

/* 简约风格按钮 */
.template-简约现代 .btn-primary {
    background: #333333;
    border: 2px solid #666666;
    color: #ffffff;
    border-radius: 4px;
}

.template-简约现代 .btn-primary:hover {
    background: #666666;
    transform: translateY(-2px);
}

/* ==================== 差异化卡片样式 ==================== */

/* 神秘风格卡片 */
.template-紫色神秘 .card {
    background: rgba(42, 31, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
}

/* 自然风格卡片 */
.template-绿色自然 .card {
    background: rgba(31, 42, 31, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: 20px;
}

/* 豪华风格卡片 */
.template-金色豪华 .card {
    background: rgba(42, 36, 31, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    position: relative;
}

.template-金色豪华 .card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #daa520, #b8860b, #ffd700);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
}

/* 科技风格卡片 */
.template-科技未来 .card {
    background: rgba(26, 26, 42, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

/* 简约风格卡片 */
.template-简约现代 .card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ==================== 差异化标题样式 ==================== */

/* 神秘风格标题 */
.template-紫色神秘 h1,
.template-紫色神秘 h2,
.template-紫色神秘 h3 {
    background: linear-gradient(90deg, #8a2be2, #da70d6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(138, 43, 226, 0.2);
}

/* 自然风格标题 */
.template-绿色自然 h1,
.template-绿色自然 h2,
.template-绿色自然 h3 {
    color: #228b22;
    position: relative;
    padding-bottom: 10px;
}

.template-绿色自然 h1::after,
.template-绿色自然 h2::after,
.template-绿色自然 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #32cd32;
}

/* 豪华风格标题 */
.template-金色豪华 h1,
.template-金色豪华 h2,
.template-金色豪华 h3 {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.template-金色豪华 h1::before,
.template-金色豪华 h2::before,
.template-金色豪华 h3::before {
    content: '👑';
    margin-right: 10px;
}

/* 科技风格标题 */
.template-科技未来 h1,
.template-科技未来 h2,
.template-科技未来 h3 {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* 简约风格标题 */
.template-简约现代 h1,
.template-简约现代 h2,
.template-简约现代 h3 {
    color: #333333;
    font-weight: 300;
    letter-spacing: -0.5px;
}

/* ==================== 差异化导航样式 ==================== */

/* 神秘风格导航 */
.template-紫色神秘 .navbar {
    background: rgba(26, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #8a2be2;
}

/* 自然风格导航 */
.template-绿色自然 .navbar {
    background: rgba(15, 26, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #228b22;
}

/* 豪华风格导航 */
.template-金色豪华 .navbar {
    background: rgba(26, 20, 15, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 3px solid #ffd700;
}

/* 科技风格导航 */
.template-科技未来 .navbar {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #00ffff;
}

/* 简约风格导航 */
.template-简约现代 .navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ==================== 差异化页脚样式 ==================== */

/* 神秘风格页脚 */
.template-紫色神秘 footer {
    background: linear-gradient(135deg, #1a0f1a 0%, #2a1f2a 100%);
    border-top: 2px solid #8a2be2;
}

/* 自然风格页脚 */
.template-绿色自然 footer {
    background: linear-gradient(135deg, #0f1a0f 0%, #1f2a1f 100%);
    border-top: 2px solid #228b22;
}

/* 豪华风格页脚 */
.template-金色豪华 footer {
    background: linear-gradient(135deg, #1a140f 0%, #2a241f 100%);
    border-top: 3px solid #ffd700;
}

/* 科技风格页脚 */
.template-科技未来 footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
    border-top: 1px solid #00ffff;
}

/* 简约风格页脚 */
.template-简约现代 footer {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

/* ==================== 差异化图标样式 ==================== */

/* 神秘风格图标 */
.template-紫色神秘 .feature-icon {
    color: #da70d6;
    font-size: 2em;
    filter: drop-shadow(0 0 5px rgba(218, 112, 214, 0.5));
}

/* 自然风格图标 */
.template-绿色自然 .feature-icon {
    color: #32cd32;
    font-size: 2em;
    filter: drop-shadow(0 0 5px rgba(50, 205, 50, 0.5));
}

/* 豪华风格图标 */
.template-金色豪华 .feature-icon {
    color: #ffd700;
    font-size: 2.2em;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* 科技风格图标 */
.template-科技未来 .feature-icon {
    color: #00ffff;
    font-size: 2em;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.7));
    animation: tech-icon-pulse 2s infinite;
}

@keyframes tech-icon-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 简约风格图标 */
.template-简约现代 .feature-icon {
    color: #333333;
    font-size: 1.8em;
    opacity: 0.8;
}

/* ==================== 差异化响应式调整 ==================== */

@media (max-width: 768px) {
    /* 移动端减少动画效果 */
    .template-紫色神秘 .card,
    .template-绿色自然 .card,
    .template-金色豪华 .card,
    .template-科技未来 .card {
        animation: none;
    }

    /* 移动端简化按钮效果 */
    .template-紫色神秘 .btn-primary::before,
    .template-科技未来 .btn-primary::after {
        display: none;
    }

    /* 移动端调整标题样式 */
    .template-绿色自然 h1::after,
    .template-绿色自然 h2::after,
    .template-绿色自然 h3::after {
        width: 30px;
    }

    .template-金色豪华 h1::before,
    .template-金色豪华 h2::before,
    .template-金色豪华 h3::before {
        margin-right: 5px;
    }
}

/* ==================== 差异化打印样式 ==================== */

@media print {
    /* 打印时移除所有动画和特效 */
    .template-紫色神秘 .card,
    .template-绿色自然 .card,
    .template-金色豪华 .card,
    .template-科技未来 .card,
    .template-海洋深邃 .card,
    .template-火焰热情 .card,
    .template-星空宇宙 .card,
    .template-森林秘境 .card,
    .template-冰雪纯净 .card,
    .template-沙漠黄昏 .card,
    .template-宝石璀璨 .card,
    .template-复古经典 .card,
    .template-霓虹炫彩 .card,
    .template-极光梦幻 .card,
    .template-机械工业 .card,
    .template-水墨中国 .card,
    .template-糖果甜蜜 .card {
        animation: none !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    /* 打印时使用黑色文字 */
    .template-紫色神秘 h1,
    .template-紫色神秘 h2,
    .template-紫色神秘 h3,
    .template-绿色自然 h1,
    .template-绿色自然 h2,
    .template-绿色自然 h3,
    .template-金色豪华 h1,
    .template-金色豪华 h2,
    .template-金色豪华 h3,
    .template-科技未来 h1,
    .template-科技未来 h2,
    .template-科技未来 h3,
    .template-海洋深邃 h1,
    .template-海洋深邃 h2,
    .template-海洋深邃 h3,
    .template-火焰热情 h1,
    .template-火焰热情 h2,
    .template-火焰热情 h3,
    .template-星空宇宙 h1,
    .template-星空宇宙 h2,
    .template-星空宇宙 h3,
    .template-森林秘境 h1,
    .template-森林秘境 h2,
    .template-森林秘境 h3,
    .template-冰雪纯净 h1,
    .template-冰雪纯净 h2,
    .template-冰雪纯净 h3,
    .template-沙漠黄昏 h1,
    .template-沙漠黄昏 h2,
    .template-沙漠黄昏 h3,
    .template-宝石璀璨 h1,
    .template-宝石璀璨 h2,
    .template-宝石璀璨 h3,
    .template-复古经典 h1,
    .template-复古经典 h2,
    .template-复古经典 h3,
    .template-霓虹炫彩 h1,
    .template-霓虹炫彩 h2,
    .template-霓虹炫彩 h3,
    .template-极光梦幻 h1,
    .template-极光梦幻 h2,
    .template-极光梦幻 h3,
    .template-机械工业 h1,
    .template-机械工业 h2,
    .template-机械工业 h3,
    .template-水墨中国 h1,
    .template-水墨中国 h2,
    .template-水墨中国 h3,
    .template-糖果甜蜜 h1,
    .template-糖果甜蜜 h2,
    .template-糖果甜蜜 h3 {
        color: #000000 !important;
        text-shadow: none !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
    }

    .template-金色豪华 h1::before,
    .template-金色豪华 h2::before,
    .template-金色豪华 h3::before {
        content: '' !important;
    }

    /* 打印时移除背景和渐变 */
    body.template-紫色神秘,
    body.template-绿色自然,
    body.template-金色豪华,
    body.template-科技未来,
    body.template-简约现代,
    body.template-海洋深邃,
    body.template-火焰热情,
    body.template-星空宇宙,
    body.template-森林秘境,
    body.template-冰雪纯净,
    body.template-沙漠黄昏,
    body.template-宝石璀璨,
    body.template-复古经典,
    body.template-霓虹炫彩,
    body.template-极光梦幻,
    body.template-机械工业,
    body.template-水墨中国,
    body.template-糖果甜蜜 {
        background: #ffffff !important;
    }
}

/* ==================== 新增模板差异化样式（ID 11-15） ==================== */

/* 海洋深邃模板样式 */
body.template-海洋深邃 {
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.1), transparent 70%);
}

.template-海洋深邃 .card,
.template-海洋深邃 .feature-item {
    animation: ocean-wave 4s ease-in-out infinite;
}

@keyframes ocean-wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(5px); }
}

.template-海洋深邃 .btn-primary {
    background: linear-gradient(135deg, #0066cc 0%, #00cccc 100%);
    border: 2px solid #00cccc;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.template-海洋深邃 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.template-海洋深邃 .btn-primary:hover::before {
    left: 100%;
}

.template-海洋深邃 .card {
    background: rgba(26, 42, 58, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 102, 204, 0.4);
    border-radius: 18px;
}

.template-海洋深邃 h1,
.template-海洋深邃 h2,
.template-海洋深邃 h3 {
    background: linear-gradient(90deg, #0066cc, #00cccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}

.template-海洋深邃 .navbar {
    background: rgba(10, 26, 42, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #0066cc;
}

.template-海洋深邃 footer {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 100%);
    border-top: 2px solid #0066cc;
}

.template-海洋深邃 .feature-icon {
    color: #00cccc;
    font-size: 2.1em;
    filter: drop-shadow(0 0 8px rgba(0, 204, 204, 0.5));
    animation: ocean-icon-float 3s infinite;
}

@keyframes ocean-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 火焰热情模板样式 */
body.template-火焰热情 {
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 0, 0.1), transparent 70%);
}

.template-火焰热情 .card,
.template-火焰热情 .feature-item {
    animation: fire-flicker 2s ease-in-out infinite alternate;
}

@keyframes fire-flicker {
    from { transform: scale(1); box-shadow: 0 0 20px rgba(255, 51, 0, 0.3); }
    to { transform: scale(1.02); box-shadow: 0 0 30px rgba(255, 102, 0, 0.4); }
}

.template-火焰热情 .btn-primary {
    background: linear-gradient(135deg, #ff3300 0%, #ff6600 100%);
    border: 2px solid #ff6600;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.template-火焰热情 .btn-primary:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.5);
}

.template-火焰热情 .card {
    background: rgba(42, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 51, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 51, 0, 0.2);
}

.template-火焰热情 h1,
.template-火焰热情 h2,
.template-火焰热情 h3 {
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    font-weight: bold;
}

.template-火焰热情 .navbar {
    background: rgba(26, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid #ff3300;
}

.template-火焰热情 footer {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
    border-top: 3px solid #ff3300;
}

.template-火焰热情 .feature-icon {
    color: #ff6600;
    font-size: 2.2em;
    filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.7));
    animation: fire-icon-pulse 1.5s infinite;
}

@keyframes fire-icon-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* 星空宇宙模板样式 */
body.template-星空宇宙 {
    background: radial-gradient(circle at 50% 50%, rgba(102, 51, 204, 0.1), transparent 70%);
}

.template-星空宇宙 .card,
.template-星空宇宙 .feature-item {
    animation: star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.template-星空宇宙 .btn-primary {
    background: linear-gradient(135deg, #6633cc 0%, #9966ff 100%);
    border: 2px solid #9966ff;
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.template-星空宇宙 .btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #9966ff, #6633cc, #330099);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.template-星空宇宙 .btn-primary:hover::after {
    opacity: 0.5;
}

.template-星空宇宙 .card {
    background: rgba(26, 26, 42, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 51, 204, 0.3);
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(153, 102, 255, 0.2);
}

.template-星空宇宙 h1,
.template-星空宇宙 h2,
.template-星空宇宙 h3 {
    color: #9966ff;
    text-shadow: 0 0 15px rgba(153, 102, 255, 0.4);
    letter-spacing: 1.5px;
}

.template-星空宇宙 .navbar {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #6633cc;
}

.template-星空宇宙 footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
    border-top: 2px solid #6633cc;
}

.template-星空宇宙 .feature-icon {
    color: #9966ff;
    font-size: 2.3em;
    filter: drop-shadow(0 0 15px rgba(153, 102, 255, 0.6));
    animation: star-icon-rotate 4s infinite linear;
}

@keyframes star-icon-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 森林秘境模板样式 */
body.template-森林秘境 {
    background: radial-gradient(circle at 50% 50%, rgba(34, 136, 51, 0.1), transparent 70%);
}

.template-森林秘境 .card,
.template-森林秘境 .feature-item {
    animation: forest-sway 5s ease-in-out infinite;
}

@keyframes forest-sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.template-森林秘境 .btn-primary {
    background: linear-gradient(135deg, #228833 0%, #44aa55 100%);
    border: 2px solid #44aa55;
    border-radius: 30px;
    font-weight: 600;
}

.template-森林秘境 .btn-primary:hover {
    background: linear-gradient(135deg, #44aa55 0%, #228833 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(34, 136, 51, 0.3);
}

.template-森林秘境 .card {
    background: rgba(26, 42, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(34, 136, 51, 0.4);
    border-radius: 25px;
}

.template-森林秘境 h1,
.template-森林秘境 h2,
.template-森林秘境 h3 {
    color: #44aa55;
    position: relative;
    padding-bottom: 15px;
}

.template-森林秘境 h1::after,
.template-森林秘境 h2::after,
.template-森林秘境 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #228833, #44aa55);
    border-radius: 2px;
}

.template-森林秘境 .navbar {
    background: rgba(10, 26, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #228833;
}

.template-森林秘境 footer {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2a1a 100%);
    border-top: 2px solid #228833;
}

.template-森林秘境 .feature-icon {
    color: #44aa55;
    font-size: 2.1em;
    filter: drop-shadow(0 0 8px rgba(68, 170, 85, 0.4));
    animation: leaf-fall 3s infinite;
}

@keyframes leaf-fall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

/* 冰雪纯净模板样式 */
body.template-冰雪纯净 {
    background: radial-gradient(circle at 50% 50%, rgba(102, 204, 255, 0.1), transparent 70%);
}

.template-冰雪纯净 .card,
.template-冰雪纯净 .feature-item {
    animation: snow-sparkle 4s ease-in-out infinite;
}

@keyframes snow-sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.template-冰雪纯净 .btn-primary {
    background: linear-gradient(135deg, #66ccff 0%, #99ddff 100%);
    border: 2px solid #99ddff;
    color: #0a1a2a;
    font-weight: 600;
    border-radius: 15px;
}

.template-冰雪纯净 .btn-primary:hover {
    background: linear-gradient(135deg, #99ddff 0%, #66ccff 100%);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(153, 221, 255, 0.4);
}

.template-冰雪纯净 .card {
    background: rgba(26, 42, 58, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 204, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(102, 204, 255, 0.1);
}

.template-冰雪纯净 h1,
.template-冰雪纯净 h2,
.template-冰雪纯净 h3 {
    color: #99ddff;
    text-shadow: 0 2px 8px rgba(153, 221, 255, 0.3);
    font-weight: 300;
    letter-spacing: 1px;
}

.template-冰雪纯净 .navbar {
    background: rgba(10, 26, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #66ccff;
}

.template-冰雪纯净 footer {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 100%);
    border-top: 1px solid #66ccff;
}

.template-冰雪纯净 .feature-icon {
    color: #99ddff;
    font-size: 2em;
    filter: drop-shadow(0 0 10px rgba(153, 221, 255, 0.5));
    animation: snow-icon-float 2.5s infinite;
}

@keyframes snow-icon-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

/* ==================== 新增模板响应式调整 ==================== */

@media (max-width: 768px) {
    /* 移动端减少新增模板的动画效果 */
    .template-海洋深邃 .card,
    .template-火焰热情 .card,
    .template-星空宇宙 .card,
    .template-森林秘境 .card,
    .template-冰雪纯净 .card {
        animation: none;
    }

    /* 移动端简化新增模板的按钮效果 */
    .template-海洋深邃 .btn-primary::before,
    .template-星空宇宙 .btn-primary::after {
        display: none;
    }

    /* 移动端调整新增模板的标题样式 */
    .template-森林秘境 h1::after,
    .template-森林秘境 h2::after,
    .template-森林秘境 h3::after {
        width: 40px;
    }

    /* 移动端减少新增模板的阴影效果 */
    .template-火焰热情 .btn-primary:hover,
    .template-冰雪纯净 .btn-primary:hover {
        transform: scale(1.02);
        box-shadow: none;
    }
}

/* ==================== 新增模板差异化样式（ID 16-20） ==================== */

/* 沙漠黄昏模板样式 */
body.template-沙漠黄昏 {
    background: radial-gradient(circle at 50% 50%, rgba(204, 102, 0, 0.1), transparent 70%);
}

.template-沙漠黄昏 .card,
.template-沙漠黄昏 .feature-item {
    animation: desert-wind 6s ease-in-out infinite;
}

@keyframes desert-wind {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
}

.template-沙漠黄昏 .btn-primary {
    background: linear-gradient(135deg, #cc6600 0%, #ff9933 100%);
    border: 2px solid #ff9933;
    border-radius: 25px;
    font-weight: bold;
    color: #1a140a;
}

.template-沙漠黄昏 .btn-primary:hover {
    background: linear-gradient(135deg, #ff9933 0%, #cc6600 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 102, 0, 0.3);
}

.template-沙漠黄昏 .card {
    background: rgba(42, 36, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(204, 102, 0, 0.4);
    border-radius: 20px;
}

.template-沙漠黄昏 h1,
.template-沙漠黄昏 h2,
.template-沙漠黄昏 h3 {
    color: #ff9933;
    text-shadow: 0 2px 6px rgba(204, 102, 0, 0.3);
    position: relative;
}

.template-沙漠黄昏 h1::after,
.template-沙漠黄昏 h2::after,
.template-沙漠黄昏 h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #cc6600, #ff9933);
    border-radius: 2px;
}

.template-沙漠黄昏 .navbar {
    background: rgba(26, 20, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #cc6600;
}

.template-沙漠黄昏 footer {
    background: linear-gradient(135deg, #1a140a 0%, #2a241a 100%);
    border-top: 2px solid #cc6600;
}

.template-沙漠黄昏 .feature-icon {
    color: #ff9933;
    font-size: 2.2em;
    filter: drop-shadow(0 0 8px rgba(255, 153, 51, 0.4));
    animation: desert-sun 4s infinite;
}

@keyframes desert-sun {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 宝石璀璨模板样式 */
body.template-宝石璀璨 {
    background: radial-gradient(circle at 50% 50%, rgba(0, 153, 204, 0.1), transparent 70%);
}

.template-宝石璀璨 .card,
.template-宝石璀璨 .feature-item {
    animation: gem-sparkle 3s ease-in-out infinite;
}

@keyframes gem-sparkle {
    0%, 100% { opacity: 1; box-shadow: 0 0 20px rgba(0, 153, 204, 0.3); }
    50% { opacity: 0.9; box-shadow: 0 0 30px rgba(51, 204, 255, 0.4); }
}

.template-宝石璀璨 .btn-primary {
    background: linear-gradient(135deg, #0099cc 0%, #33ccff 100%);
    border: 2px solid #33ccff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.template-宝石璀璨 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: -1;
    transition: left 0.5s;
}

.template-宝石璀璨 .btn-primary:hover::before {
    left: 100%;
}

.template-宝石璀璨 .card {
    background: rgba(26, 42, 58, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 153, 204, 0.3);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(51, 204, 255, 0.2);
}

.template-宝石璀璨 h1,
.template-宝石璀璨 h2,
.template-宝石璀璨 h3 {
    background: linear-gradient(90deg, #0099cc, #33ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(0, 153, 204, 0.2);
}

.template-宝石璀璨 .navbar {
    background: rgba(10, 26, 42, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #0099cc;
}

.template-宝石璀璨 footer {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 100%);
    border-top: 2px solid #0099cc;
}

.template-宝石璀璨 .feature-icon {
    color: #33ccff;
    font-size: 2.3em;
    filter: drop-shadow(0 0 12px rgba(51, 204, 255, 0.6));
    animation: gem-rotate 5s infinite linear;
}

@keyframes gem-rotate {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* 复古经典模板样式 */
body.template-复古经典 {
    background: radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.1), transparent 70%);
}

.template-复古经典 .card,
.template-复古经典 .feature-item {
    animation: vintage-fade 4s ease-in-out infinite;
}

@keyframes vintage-fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.template-复古经典 .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
    border: 3px solid #654321;
    color: #f5f5dc;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.template-复古经典 .btn-primary:hover {
    background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.template-复古经典 .card {
    background: rgba(42, 36, 31, 0.9);
    backdrop-filter: blur(8px);
    border: 3px solid rgba(139, 69, 19, 0.5);
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.template-复古经典 h1,
.template-复古经典 h2,
.template-复古经典 h3 {
    color: #d2691e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Old English Text MT', serif;
    letter-spacing: 2px;
}

.template-复古经典 .navbar {
    background: rgba(26, 20, 15, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid #8b4513;
}

.template-复古经典 footer {
    background: linear-gradient(135deg, #1a140f 0%, #2a241f 100%);
    border-top: 3px solid #8b4513;
}

.template-复古经典 .feature-icon {
    color: #d2691e;
    font-size: 2.4em;
    filter: drop-shadow(0 0 10px rgba(210, 105, 30, 0.5));
    animation: vintage-pulse 3s infinite;
}

@keyframes vintage-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 霓虹炫彩模板样式 */
body.template-霓虹炫彩 {
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1), transparent 70%);
}

.template-霓虹炫彩 .card,
.template-霓虹炫彩 .feature-item {
    animation: neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
    from { box-shadow: 0 0 20px rgba(255, 0, 255, 0.4); }
    to { box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
}

.template-霓虹炫彩 .btn-primary {
    background: linear-gradient(135deg, #ff00ff 0%, #00ffff 100%);
    border: none;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.template-霓虹炫彩 .btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.template-霓虹炫彩 .btn-primary:hover::after {
    opacity: 0.7;
}

.template-霓虹炫彩 .card {
    background: rgba(26, 26, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 0, 255, 0.4);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.template-霓虹炫彩 h1,
.template-霓虹炫彩 h2,
.template-霓虹炫彩 h3 {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
    font-weight: bold;
    letter-spacing: 1px;
}

.template-霓虹炫彩 .navbar {
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #ff00ff;
}

.template-霓虹炫彩 footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
    border-top: 2px solid #ff00ff;
}

.template-霓虹炫彩 .feature-icon {
    color: #ffff00;
    font-size: 2.5em;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.8));
    animation: neon-pulse 1.5s infinite;
}

@keyframes neon-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* 极光梦幻模板样式 */
body.template-极光梦幻 {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 153, 0.1), transparent 70%);
}

.template-极光梦幻 .card,
.template-极光梦幻 .feature-item {
    animation: aurora-flow 5s ease-in-out infinite;
}

@keyframes aurora-flow {
    0%, 100% { transform: translateY(0); background-position: 0% 50%; }
    50% { transform: translateY(-5px); background-position: 100% 50%; }
}

.template-极光梦幻 .btn-primary {
    background: linear-gradient(135deg, #00ff99 0%, #00ccff 100%);
    border: 2px solid #00ccff;
    border-radius: 20px;
    color: #0a1a2a;
    font-weight: 600;
}

.template-极光梦幻 .btn-primary:hover {
    background: linear-gradient(135deg, #00ccff 0%, #00ff99 100%);
    transform: translateY(-4px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 255, 153, 0.3);
}

.template-极光梦幻 .card {
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.8), rgba(26, 42, 58, 0.6));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 153, 0.3);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.template-极光梦幻 h1,
.template-极光梦幻 h2,
.template-极光梦幻 h3 {
    background: linear-gradient(90deg, #00ff99, #00ccff, #9966ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 8px rgba(0, 255, 153, 0.2);
}

.template-极光梦幻 .navbar {
    background: rgba(10, 26, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #00ff99;
}

.template-极光梦幻 footer {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a2a3a 100%);
    border-top: 2px solid #00ff99;
}

.template-极光梦幻 .feature-icon {
    color: #9966ff;
    font-size: 2.2em;
    filter: drop-shadow(0 0 10px rgba(153, 102, 255, 0.6));
    animation: aurora-dance 3s infinite;
}

@keyframes aurora-dance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(5deg); }
    75% { transform: translateY(5px) rotate(-5deg); }
}

/* ==================== 新增模板响应式调整（ID 16-20） ==================== */

@media (max-width: 768px) {
    /* 移动端减少新增模板的动画效果 */
    .template-沙漠黄昏 .card,
    .template-宝石璀璨 .card,
    .template-复古经典 .card,
    .template-霓虹炫彩 .card,
    .template-极光梦幻 .card {
        animation: none;
    }

    /* 移动端简化新增模板的按钮效果 */
    .template-宝石璀璨 .btn-primary::before,
    .template-霓虹炫彩 .btn-primary::after {
        display: none;
    }

    /* 移动端调整新增模板的标题样式 */
    .template-沙漠黄昏 h1::after,
    .template-沙漠黄昏 h2::after,
    .template-沙漠黄昏 h3::after {
        width: 30px;
    }

    /* 移动端减少新增模板的阴影效果 */
    .template-沙漠黄昏 .btn-primary:hover,
    .template-复古经典 .btn-primary:hover,
    .template-极光梦幻 .btn-primary:hover {
        transform: scale(1.02);
        box-shadow: none;
    }

    /* 移动端调整新增模板的字体大小 */
    .template-复古经典 h1,
    .template-复古经典 h2,
    .template-复古经典 h3 {
        font-size: 1.2em;
        letter-spacing: 1px;
    }
}

/* ==================== 新增模板差异化样式（ID 21-23） ==================== */

/* 机械工业模板样式 */
body.template-机械工业 {
    background: radial-gradient(circle at 50% 50%, rgba(102, 102, 102, 0.1), transparent 70%);
}

.template-机械工业 .card,
.template-机械工业 .feature-item {
    animation: gear-rotate 4s linear infinite;
}

@keyframes gear-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.template-机械工业 .btn-primary {
    background: linear-gradient(135deg, #666666 0%, #999999 100%);
    border: 2px solid #333333;
    color: #cccccc;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.template-机械工业 .btn-primary:hover {
    background: linear-gradient(135deg, #999999 0%, #666666 100%);
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(102, 102, 102, 0.3);
}

.template-机械工业 .card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid #666666;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.template-机械工业 h1,
.template-机械工业 h2,
.template-机械工业 h3 {
    color: #999999;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Consolas', monospace;
    letter-spacing: 1px;
}

.template-机械工业 .navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 2px solid #666666;
}

.template-机械工业 footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 2px solid #666666;
}

.template-机械工业 .feature-icon {
    color: #999999;
    font-size: 2.1em;
    filter: drop-shadow(0 0 8px rgba(153, 153, 153, 0.4));
    animation: gear-pulse 2s infinite;
}

@keyframes gear-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 水墨中国模板样式 */
body.template-水墨中国 {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.template-水墨中国 .card,
.template-水墨中国 .feature-item {
    animation: ink-spread 3s ease-in-out infinite;
}

@keyframes ink-spread {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.template-水墨中国 .btn-primary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border: 2px solid #666666;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    font-family: 'SimSun', serif;
}

.template-水墨中国 .btn-primary:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.template-水墨中国 .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #cccccc;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.template-水墨中国 h1,
.template-水墨中国 h2,
.template-水墨中国 h3 {
    color: #000000;
    font-family: 'KaiTi', serif;
    position: relative;
    padding-bottom: 10px;
}

.template-水墨中国 h1::after,
.template-水墨中国 h2::after,
.template-水墨中国 h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #000000, #333333);
}

.template-水墨中国 .navbar {
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #cccccc;
}

.template-水墨中国 footer {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    border-top: 1px solid #cccccc;
}

.template-水墨中国 .feature-icon {
    color: #333333;
    font-size: 2em;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    animation: ink-flow 4s infinite;
}

@keyframes ink-flow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* 糖果甜蜜模板样式 */
body.template-糖果甜蜜 {
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 204, 0.1), transparent 70%);
}

.template-糖果甜蜜 .card,
.template-糖果甜蜜 .feature-item {
    animation: candy-bounce 2s ease-in-out infinite;
}

@keyframes candy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.template-糖果甜蜜 .btn-primary {
    background: linear-gradient(135deg, #ff66cc 0%, #ff99dd 100%);
    border: 2px solid #ff99dd;
    color: #ffffff;
    font-weight: bold;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.template-糖果甜蜜 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s;
}

.template-糖果甜蜜 .btn-primary:hover::before {
    left: 100%;
}

.template-糖果甜蜜 .card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 102, 204, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 102, 204, 0.15);
}

.template-糖果甜蜜 h1,
.template-糖果甜蜜 h2,
.template-糖果甜蜜 h3 {
    background: linear-gradient(90deg, #ff66cc, #ff99dd, #cc66ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 5px rgba(255, 102, 204, 0.2);
}

.template-糖果甜蜜 .navbar {
    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #ff66cc;
}

.template-糖果甜蜜 footer {
    background: linear-gradient(135deg, #ffffff 0%, #fff0f5 100%);
    border-top: 2px solid #ff66cc;
}

.template-糖果甜蜜 .feature-icon {
    color: #ff66cc;
    font-size: 2.3em;
    filter: drop-shadow(0 0 10px rgba(255, 102, 204, 0.4));
    animation: candy-spin 3s infinite linear;
}

@keyframes candy-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== 新增模板响应式调整（ID 21-23） ==================== */

@media (max-width: 768px) {
    /* 移动端减少新增模板的动画效果 */
    .template-机械工业 .card,
    .template-水墨中国 .card,
    .template-糖果甜蜜 .card {
        animation: none;
    }

    /* 移动端简化新增模板的按钮效果 */
    .template-糖果甜蜜 .btn-primary::before {
        display: none;
    }

    /* 移动端调整新增模板的标题样式 */
    .template-水墨中国 h1::after,
    .template-水墨中国 h2::after,
    .template-水墨中国 h3::after {
        width: 30px;
    }

    /* 移动端减少新增模板的阴影效果 */
    .template-机械工业 .btn-primary:hover,
    .template-水墨中国 .btn-primary:hover {
        transform: none;
        box-shadow: none;
    }

    /* 移动端调整新增模板的字体大小 */
    .template-机械工业 h1,
    .template-机械工业 h2,
    .template-机械工业 h3 {
        font-size: 1.1em;
    }
}