:root {
    --primary-color: #004a99;    
    --secondary-color: #007bff;     
    --light-bg: #f9f9fb;            
    --card-bg: white;              
    --text-color: #2c3e50;          
    --soft-border: #e6e6e9;        
    --shadow-elevation: 0 4px 12px rgba(0, 0, 0, 0.08); 
    --radius: 8px;             
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

.tag-page-container a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s;
}
.tag-page-container a:hover {
    color: var(--primary-color);
}

.tag-page-container {
    max-width: 1430px; 
    margin: 0 auto;
    padding: 20px 30px 60px 30px;
}

header {
    background-color: var(--primary-color); 
    color: white; 
    padding: 20px 30px; 
    text-align: left; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.breadcrumb {
    background-color: var(--card-bg);
    padding: 15px 30px;
    font-size: 0.9em;
    border-bottom: 1px solid var(--soft-border);
}

.tag-hero-section {
    padding: 40px 0;
    margin-bottom: 30px;
}

.tag-title {
    font-size: 3.5em; 
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    text-align: center;
}
.tag-hero-section .hero-section-p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.editor-content-1 {
    font-size: 16px;
    color: #555;
    padding: 20px;
    background-color: #e6f0ff;
    border-radius: var(--radius);
    line-height: 1.8;
    border-left: 5px solid var(--secondary-color);
}
.editor-content-1 strong {
    font-weight: bold;
}
.product-preview-section .list {
  margin-top: 50px;
}


/*--- 产品列表 3列2行 强制静态布局开始 --- */

/* 静态网格布局样式 - 直接内联确保立即生效 */
.related-products-static {
    position: relative;
    z-index: 100;
}

.related-products-static .static-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.related-products-static .static-products-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    
    /* 防止JS修改 */
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.related-products-static .product-column {
    width: 100% !important;
    float: none !important;
    position: static !important;
    display: block !important;
    margin: 0 !important;
}

.related-products-static .product-card {
    background: var(--card-bg, white);
    border: 1px solid var(--soft-border, #e6e6e9);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.related-products-static .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.related-products-static .product-image {
    width: 100%;
    padding-top: 100%; /* 1:1 正方形 */
    position: relative;
    overflow: hidden;
}

.related-products-static .product-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.related-products-static .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.related-products-static .product-card:hover .product-image img {
    transform: scale(1.05);
}

.related-products-static .product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-products-static .product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.4;
    color: var(--text-color, #2c3e50);
    flex-grow: 1;
}

.related-products-static .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.related-products-static .product-title a:hover {
    color: var(--secondary-color, #007bff);
}

.related-products-static .product-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color, #007bff);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
    transition: all 0.3s;
}

.related-products-static .product-link:hover {
    color: var(--primary-color, #004a99);
}

.related-products-static .product-link span {
    margin-right: 8px;
}

.related-products-static .product-link img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.related-products-static .product-link:hover img {
    transform: translateX(4px);
}

/* 响应式设计 */
@media (max-width: 991px) {
    .related-products-static .static-products-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    .related-products-static .static-products-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* 防止其他CSS覆盖 */
.related-products-static .swiper-container,
.related-products-static .swiper-wrapper,
.related-products-static .swiper-slide,
.related-products-static .slick-list,
.related-products-static .slick-track {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* ==================== 按钮样式 ==================== */

/* View All Products 按钮容器 */
.view-all-wrap {
    margin-top: 60px !important;
    text-align: center !important;
    padding: 30px 0 !important;
    position: relative !important;
}

/* 添加装饰线 */
.view-all-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* 主按钮样式 */
.view-all-btn {
    /* 基础样式 */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 50px !important;
    
    /* 颜色和背景 */
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%) !important;
    color: white !important;
    
    /* 字体 */
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    
    /* 边框和圆角 */
    border: none !important;
    border-radius: 50px !important;
    
    /* 阴影效果 */
    box-shadow: 
        0 4px 15px rgba(0, 74, 153, 0.3),
        0 8px 25px rgba(0, 123, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    
    /* 过渡效果 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    
    /* 其他 */
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 220px !important;
    
    /* 添加渐变边框效果 */
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    position: relative !important;
}

/* 渐变边框效果 */
.view-all-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color)) !important;
    border-radius: 50px !important;
    z-index: -1 !important;
    opacity: 0.8 !important;
    transition: opacity 0.4s !important;
}

/* 悬浮效果 */
.view-all-btn:hover {
    /* 颜色变化 */
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0056b3 100%) !important;
    
    /* 3D效果 */
    transform: translateY(-4px) scale(1.02) !important;
    
    /* 阴影增强 */
    box-shadow: 
        0 10px 25px rgba(0, 123, 255, 0.3),
        0 15px 35px rgba(0, 74, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    
    /* 文字颜色微调 */
    color: white !important;
}

.view-all-btn:hover::before {
    opacity: 1 !important;
}

/* 点击效果 */
.view-all-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
    box-shadow: 
        0 3px 10px rgba(0, 74, 153, 0.3),
        0 5px 15px rgba(0, 123, 255, 0.15) !important;
    transition: all 0.1s !important;
}

/* 添加箭头图标 */
.view-all-btn::after {
    content: '→';
    margin-left: 12px;
    font-size: 20px;
    transition: transform 0.3s ease !important;
    display: inline-block !important;
}

.view-all-btn:hover::after {
    transform: translateX(5px) !important;
}

/* 添加光晕效果 */
.view-all-btn .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.view-all-btn:hover .glow-effect {
    opacity: 1;
}

/* ==================== 响应式调整 ==================== */
@media (max-width: 768px) {
    .view-all-wrap {
        margin-top: 40px !important;
        padding: 20px 0 !important;
    }
    
    .view-all-btn {
        padding: 14px 40px !important;
        font-size: 16px !important;
        min-width: 180px !important;
    }
    
    .view-all-btn::after {
        font-size: 18px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .view-all-btn {
        padding: 12px 35px !important;
        font-size: 15px !important;
        min-width: 160px !important;
    }
    
    .view-all-btn::after {
        font-size: 16px;
        margin-left: 8px;
    }
}

/* ==================== 动画效果（可选） ==================== */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(0, 74, 153, 0.3),
            0 8px 25px rgba(0, 123, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    }
    50% {
        box-shadow: 
            0 4px 20px rgba(0, 74, 153, 0.4),
            0 10px 30px rgba(0, 123, 255, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }
}

/* 添加脉动效果（可选） */
.view-all-btn.pulse {
    animation: pulse-glow 2s infinite !important;
}

/* --- 产品列表 强制静态布局结束 --- */

.product-preview-section .list span.swiper-notification {
  display: none;
}
.product-preview-section .list .box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.product-preview-section .list .newbox1 {
  padding: 10px;
  background: #eeeeee;
}
.product-preview-section .box .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-preview-section .list .box .con {
  margin-top: 20px;
}
.product-preview-section .list .box .con p {
    font-size: 14px;
}
.product-preview-section .list .box .con h6 {
  font-size: 16px;
  font-family: Roboto;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  text-transform: capitalize;
}

/* ==================== 创新下滑式页面设计 ==================== */

/* 重置默认间距 */
.content-matrix {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 通用模块基础样式 */
.content-matrix > * {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out forwards;
    animation-play-state: paused;
}

/* 动画定义 */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== 模块1：创新卡片设计 ==================== */
.info-column1.editor-module {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 74, 153, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    animation-delay: 0.1s;
}

/* 装饰性浮动元素 */
.info-column1.editor-module::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 200, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.info-column1.editor-module::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

/* 内容区域 */
.info-column1.editor-module > * {
    position: relative;
    z-index: 2;
}

.info-column1.editor-module h2 {
    color: #5D8AA8;
    font-size: 2.8em;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #5D8AA8, #7DB9DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(125, 185, 222, 0.2);
}

.info-column1.editor-module table {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.info-column1.editor-module th {
    background: linear-gradient(135deg, rgba(125, 185, 222, 0.1), rgba(125, 185, 222, 0.2));
    color: #5D8AA8;
    font-weight: 500;
}

/* ==================== 模块2：波浪形设计 ==================== */
.editor-module1 {
    background: linear-gradient(135deg, #F8FAFF, #F0F5FF);
    border-radius: 0 24px 24px 24px;
    padding: 50px;
    position: relative;
    margin-left: 30px;
    animation-delay: 0.2s;
}

/* 波浪边缘效果 */
.editor-module1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(240, 245, 255, 0.8));
    border-radius: 24px 0 0 24px;
}

/* 装饰性圆点网格 */
.editor-module1::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 10px 10px, 
        rgba(125, 185, 222, 0.3) 2px, 
        transparent 3px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.editor-module1 h3, .editor-module1 h4 {
    color: #6C8EA4;
    font-size: 1.8em;
    font-weight: 300;
    position: relative;
    
    padding-bottom: 8px;
}

.editor-module1 h3::after, .editor-module1 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(125, 185, 222, 0.5), 
        transparent);
}

/* ==================== 模块3：折角设计 ==================== */
.main-content-column .editor-module {
    background: white;
    border-radius: 16px;
    padding: 50px;
    position: relative;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 
        0 10px 40px rgba(0, 74, 153, 0.05),
        15px 15px 0 rgba(125, 185, 222, 0.1);
    animation-delay: 0.3s;
}

/* 折角效果 */
.main-content-column .editor-module::before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-bottom: 30px solid rgba(125, 185, 222, 0.1);
    border-radius: 0 0 10px 0;
}

.main-content-column .editor-module h2 {
    color: #7DB9DE;
    font-size: 2.2em;
    font-weight: 300;
    padding-left: 20px;
    border-left: 4px solid #7DB9DE;
}

/* ==================== 模块4：渐变侧边栏 ==================== */
.editor-module-service.editor-module {
    background: linear-gradient(135deg, 
        rgba(248, 250, 255, 0.9),
        rgba(232, 240, 255, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(125, 185, 222, 0.2);
    box-shadow: 
        0 15px 40px rgba(125, 185, 222, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    animation-delay: 0.4s;
}

.editor-module-service.editor-module::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(135deg, 
        transparent,
        rgba(125, 185, 222, 0.05),
        rgba(125, 185, 222, 0.1));
    transform: skewX(-15deg);
}

.editor-module-service.editor-module h3 {
    color: #6C8EA4;
    font-size: 1.6em;
    font-weight: 400;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.editor-module-service.editor-module h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7DB9DE, transparent);
    border-radius: 2px;
}

/* ====== 通用模块标题样式 ====== */
.editor-module .module-title,
.info-column1 .module-title,
.editor-module1 .module-title,
.editor-module-service .module-title {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    position: relative;

}

/* 添加装饰元素 */
.editor-module .module-title::after,
.info-column1 .module-title::after,
.editor-module1 .module-title::after,
.editor-module-service .module-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}


/*.editor-module-faq {
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    border-radius: 24px;
    padding: 50px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    animation-delay: 0.5s;
    border: 1px solid rgba(0, 123, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 74, 153, 0.08);
}


.editor-module-faq::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.editor-module-faq::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.editor-module-faq h4 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    z-index: 2;
}

.editor-module-faq h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}


.faq-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}


.faq-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


.faq-left {
    transform: translateY(0);
}

.faq-right {
    transform: translateY(20px);
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
}


.faq-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 74, 153, 0.3);
}


.faq-content {
    position: relative;
}


.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 123, 255, 0.1);
}

.question-icon {
    font-size: 24px;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question h5 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}


.faq-answer {
    display: flex;
    align-items: flex-start;
}

.answer-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #27ae60;
    flex-shrink: 0;
    margin-top: 2px;
}

.answer-text {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.answer-text p {
    margin: 0 0 10px 0;
}

.answer-text p:last-child {
    margin-bottom: 0;
}


.faq-card:nth-child(odd) {
    border-left: 4px solid var(--primary-color);
}

.faq-card:nth-child(even) {
    border-left: 4px solid var(--secondary-color);
}

.faq-card:nth-child(4n+1) {
    background: linear-gradient(to right, white 0%, rgba(52, 152, 219, 0.02) 100%);
}

.faq-card:nth-child(4n+3) {
    background: linear-gradient(to right, white 0%, rgba(46, 204, 113, 0.02) 100%);
}

@media (max-width: 992px) {
    .faq-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-right {
        transform: translateY(0);
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .editor-module-faq {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .faq-card {
        padding: 25px 20px;
    }
    
    .faq-number {
        left: 15px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .faq-question h5 {
        font-size: 17px;
    }
    
    .answer-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .editor-module-faq h4 {
        font-size: 24px;
    }
    
    .faq-question h5 {
        font-size: 16px;
    }
    
    .faq-card {
        padding: 20px 15px;
    }
    
    .question-icon, .answer-icon {
        margin-right: 10px;
    }
}*/
.editor-module-faq {
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
    border-radius: 24px;
    padding: 50px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    animation-delay: 0.5s;
    border: 1px solid rgba(0, 123, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 74, 153, 0.08);
}

.editor-module-faq::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.editor-module-faq::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.editor-module-faq h4 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    z-index: 2;
}

.editor-module-faq h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* 针对 FAQ 内容的样式 - 直接作用于你现有的内容 */
.editor-module-faq > :not(h4) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* 为 FAQ 内容中的常见元素添加卡片样式 */
.editor-module-faq > :not(h4) > div,
.editor-module-faq > :not(h4) > p,
.editor-module-faq > :not(h4) > section,
.editor-module-faq > :not(h4) > article {
    background: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e3eaf2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    counter-increment: faq-card;
}

/* 卡片顶部装饰条 */
.editor-module-faq > :not(h4) > *::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}



/* 问题标题样式 */
.editor-module-faq > :not(h4) > * h3,
.editor-module-faq > :not(h4) > * h4,
.editor-module-faq > :not(h4) > * h5,
.editor-module-faq > :not(h4) > * h6,
.editor-module-faq > :not(h4) > * strong:first-child {
    color: #1a365d;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

/* 问题图标 */
.editor-module-faq > :not(h4) > * h3::before,
.editor-module-faq > :not(h4) > * h4::before,
.editor-module-faq > :not(h4) > * h5::before,
.editor-module-faq > :not(h4) > * h6::before,
.editor-module-faq > :not(h4) > * strong:first-child::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    background: rgba(0, 123, 255, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* 答案内容样式 */
.editor-module-faq > :not(h4) > * p:not(:first-child),
.editor-module-faq > :not(h4) > * > :not(h3):not(h4):not(h5):not(h6):not(strong:first-child) {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    padding-left: 24px;
}

/* 答案图标 */
.editor-module-faq > :not(h4) > * p:not(:first-child)::before,
.editor-module-faq > :not(h4) > * > :not(h3):not(h4):not(h5):not(h6):not(strong:first-child):first-child::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 14px;
    background: rgba(46, 204, 113, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* 答案段落间距 */
.editor-module-faq > :not(h4) > * p {
    margin: 0 0 12px 0;
}

.editor-module-faq > :not(h4) > * p:last-child {
    margin-bottom: 0;
}

/* 分隔线 */
.editor-module-faq > :not(h4) > *::before {
    content: '';
    display: block;
    margin-top: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    position: relative;
}

/* 悬停效果 */
.editor-module-faq > :not(h4) > *:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 123, 255, 0.2);
}

.editor-module-faq > :not(h4) > *:hover::before {
    opacity: 1;
}

.editor-module-faq > :not(h4) > *:hover::after {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05);
}

/* 奇偶卡片背景色微调 */
.editor-module-faq > :not(h4) > *:nth-child(odd) {
    background: linear-gradient(to bottom, white 0%, #fafcff 100%);
    font-size: 18px;
}

.editor-module-faq > :not(h4) > *:nth-child(even) {
    background: linear-gradient(to bottom, white 0%, #f8fbff 100%);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .editor-module-faq > :not(h4) {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .editor-module-faq > :not(h4) > * {
        padding: 28px;
    }
    
    .editor-module-faq > :not(h4) > *:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .editor-module-faq {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 30px 0;
    }
    
    .editor-module-faq h4 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .editor-module-faq > :not(h4) > * {
        padding: 24px 20px;
        border-radius: 14px;
    }
    
    .editor-module-faq > :not(h4) > *::after {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .editor-module-faq > :not(h4) > * h3,
    .editor-module-faq > :not(h4) > * h4,
    .editor-module-faq > :not(h4) > * h5,
    .editor-module-faq > :not(h4) > * h6,
    .editor-module-faq > :not(h4) > * strong:first-child {
        font-size: 17px;
        padding-left: 28px;
    }
    
    .editor-module-faq > :not(h4) > * h3::before,
    .editor-module-faq > :not(h4) > * h4::before,
    .editor-module-faq > :not(h4) > * h5::before,
    .editor-module-faq > :not(h4) > * h6::before,
    .editor-module-faq > :not(h4) > * strong:first-child::before {
        width: 18px;
        height: 18px;
        font-size: 14px;
    }
    
    .editor-module-faq > :not(h4) > * p:not(:first-child),
    .editor-module-faq > :not(h4) > * > :not(h3):not(h4):not(h5):not(h6):not(strong:first-child) {
        padding-left: 28px;
        font-size: 14px;
    }
    
    .editor-module-faq > :not(h4) > * p:not(:first-child)::before,
    .editor-module-faq > :not(h4) > * > :not(h3):not(h4):not(h5):not(h6):not(strong:first-child):first-child::before {
        left: 0;
        width: 18px;
        height: 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .editor-module-faq h4 {
        font-size: 22px;
    }
    
    .editor-module-faq > :not(h4) > * {
        padding: 20px 16px;
    }
    
    .editor-module-faq > :not(h4) > * h3,
    .editor-module-faq > :not(h4) > * h4,
    .editor-module-faq > :not(h4) > * h5,
    .editor-module-faq > :not(h4) > * h6,
    .editor-module-faq > :not(h4) > * strong:first-child {
        font-size: 16px;
        padding-left: 24px;
    }
    
    .editor-module-faq > :not(h4) > * p:not(:first-child),
    .editor-module-faq > :not(h4) > * > :not(h3):not(h4):not(h5):not(h6):not(strong:first-child) {
        padding-left: 24px;
    }
}

/* 如果内容没有按预期样式显示，提供备用方案 */
.editor-module-faq .faq-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e3eaf2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 打印样式 */
@media print {
    .editor-module-faq {
        border: 1px solid #ddd;
        box-shadow: none;
        padding: 30px;
    }
    
    .editor-module-faq::before,
    .editor-module-faq::after {
        display: none;
    }
    
    .editor-module-faq > :not(h4) > * {
        break-inside: avoid;
        border: 1px solid #eee;
        box-shadow: none;
        margin-bottom: 20px;
    }
    
    .editor-module-faq > :not(h4) > *:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ==================== 滚动触发动画 ==================== */
@media (prefers-reduced-motion: no-preference) {
    .content-matrix > * {
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .content-matrix > *.visible {
        animation-play-state: running;
    }
}

/* ==================== 其他样式 ==================== */

.editor-module {
    font-size: 18px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow-elevation);
    transition: transform 0.3s;
}
.editor-module:hover {
    transform: translateY(-2px);
}
.editor-module strong {
    font-weight: bold;
}
.editor-module h2 {
    font-size: 1.8em;
    color: var(--text-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
}

.editor-module h3,.editor-module h4 {
     color: var(--primary-color);
     margin-bottom: 10px;
     font-weight: bold;
     font-size: 24px;
     text-align: center;
}

.editor-module ul {
    list-style: none;
    padding-left: 0;
}
.editor-module li {
    padding: 5px 0;
    border-bottom: 1px dotted var(--soft-border);
    position: relative;
    padding-left: 20px;
    line-height: 2;
}
.editor-module li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.info-column1 table th, .info-column1 table td{
    padding: 5px 10px;
    border: 1px solid #666;
    width: 50%;
}
.info-column1 table th {
    font-weight: bold;
}
.info-column1 table tbody tr td:first-of-type {
    font-weight: bold;
}
.spec-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    margin-top: 15px;
    border-radius: var(--radius);
    overflow: hidden;
}
.spec-table th, .spec-table td {
    padding: 15px;
    text-align: left;
    font-size: 0.95em;
    border-bottom: 1px solid var(--soft-border);
}
.spec-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 400;
    text-transform: uppercase;
}
.spec-table tr:last-child td {
    border-bottom: none;
}
.product-preview-section {
    padding-top: 40px;
    border-top: 1px solid var(--soft-border);
    margin-bottom: 40px;
}
.product-preview-section h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.product-preview-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.preview-card {
    width: 300px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevation);
    transition: box-shadow 0.3s;
    text-align: center;
}
.preview-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.preview-card img {
    border-radius: 4px;
    transition: opacity 0.3s;
}
.preview-card:hover img {
    opacity: 0.9;
}
.preview-card h3 {
    font-size: 1.2em;
    color: var(--text-color);
    margin: 15px 0 5px 0;
}
.preview-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
}
.preview-card a:hover {
    background-color: var(--primary-color);
}
.editor-module1 {
    margin: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 16px;
}
.editor-module1 h3, .editor-module1 h4 {
    text-align: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-top: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}
.editor-module1 h3::after,.editor-module1 h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}
.jinfeng-ul-1 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 30px;
}
.jinfeng-ul-1 li {
    flex: 1 1 auto; 
    min-width: min-content; 
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.jinfeng-ul-1 li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}
.jinfeng-ul-1 li::before {
    content: '⭐';
    font-size: 36px; 
    margin-right: 15px;
    color: #ffc107;
    line-height: 1;
}
.jinfeng-ul-1 li span {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    display: inline;
}
.editor-module-service h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
    text-align: left;
}



.more-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.more-info .editor-module {
  margin-bottom: 20px;
}

.more-info .editor-module h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.recommended-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.recommended-links a {
  display: block;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.recommended-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.recommended-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: white;
  color: #667eea;
}

.recommended-links a:hover::before {
  transform: scaleY(1);
}

.recommended-links a:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .more-info {
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
  }
  
  .more-info .editor-module h4 {
    font-size: 1.3rem;
  }
  
  .recommended-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .recommended-links a {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .more-info {
    padding: 16px;
    margin: 10px 0;
  }
  
  .more-info .editor-module h4 {
    font-size: 1.2rem;
    padding-bottom: 10px;
  }
  
  .recommended-links a {
    padding: 12px 16px;
  }
}

/* 悬停动画增强 */
.recommended-links a {
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.3s;
}

/* 添加一个微妙的图标提示 */
.recommended-links a::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  color: #667eea;
  font-weight: bold;
}

.recommended-links a:hover::after {
  opacity: 1;
  right: 16px;
}

/* 为链接添加编号（可选效果） */
.recommended-links {
  counter-reset: link-counter;
}

.recommended-links a {
  counter-increment: link-counter;
  padding-left: 56px;
}

.recommended-links a::before {
  counter-increment: none;
  content: counter(link-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 1;
  transition: all 0.3s ease;
}

.recommended-links a:hover::before {
  background: linear-gradient(135deg, #764ba2, #667eea);
  transform: translateY(-50%) scale(1.1);
}

/*.more-info {
    background-color: #FFFFFF;
    border-radius: 8px;  
    border: 1px solid #E0E0E0; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
    padding: 25px 30px; 
    margin-top: 40px;
}
.more-info h2 {
    color: #2c3e50;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
}
.more-info p {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 20px;
}
.more-info ul {
    list-style: none; 
    padding: 0;
    margin: 0;
    
    display: flex; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
}
.more-info li {
    margin: 0;
    padding: 0;
    margin-right: 15px;
    margin-bottom: 10px;
}
.more-info a {
    display: block; 
    text-decoration: none; 
    color: #2980b9;
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7; 
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    
    white-space: nowrap; 
    transition: all 0.2s;
}

.more-info a:hover {
    background-color: #3498db;
    border-color: #3498db;
    color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3); 
}*/

@media (max-width: 900px) {
    .tag-title {
        font-size: 2.5em;
    }
    .editor-module {
        margin-bottom: 20px;
    }
    .tag-page-container, header, .breadcrumb {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .jinfeng-ul-1 {
        flex-direction: column;
        gap: 15px;
    }
    .jinfeng-ul-1 li {
        width: 100%;
        min-width: unset;
        justify-content: flex-start;
        padding: 15px;
    }
}

table.table-pxe th:first-child, table.table-pxe td:first-child {
    width: 400px;
}
table.table-pxe td, table.table-pxe th {
    padding: 5px 10px;
    border: 1px solid #666;
    height: auto !important;
    text-align: left;
}
table.table-pxe {
    font-size: 16px;
    margin-bottom: 20px;
    word-break: break-word;
    table-layout: fixed;
    width: 100%;
}
table.table-pxe tbody {
    display: contents;
    width: 100% !important;
    min-width: 700px;
}