
     :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;
}


.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: grid;
            gap: 40px;
            grid-template-columns: 2fr 1fr; 
        }

        .editor-module {
            font-size: 14px;
            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;
        }
        .editor-module1 h3, .editor-module1 h4, .editor-module-faq 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, .editor-module-faq 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;
}
.editor-module-faq {
    background-color: #fcfcfc;
    padding: 15px 10px; 
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
}
.editor-module-faq 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;
}
.editor-module-faq ul {
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden; 
}
.editor-module-faq li {
    padding: 15px;
    transition: background-color 0.3s ease;
}
.editor-module-faq li:first-child {
    font-weight: bold;
    cursor: pointer; 
    background-color: #f7f7f7;
    color: #333;
    border-bottom: 1px solid #ddd;
    position: relative; 
}
.editor-module-faq li:first-child::after {
    content: '+'; 
    position: absolute;
    right: 5px;
    font-size: 1.2em;
    line-height: 1;
    top: 50%; 
    transform: translateY(-50%); 
    transition: transform 0.3s ease, content 0.3s ease;
}
.editor-module-faq li:first-child.expanded::after {
    content: '-'; 
}
.editor-module-faq li:last-child {
    background-color: #ffffff;
    color: #555;
    max-height: 0; 
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease;
}
.editor-module-faq li:last-child.active {
    max-height: 500px; 
    padding: 15px;
    opacity: 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;

    text-align: center;
}
.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: inline-block; 
    text-decoration: none; 
    color: #2980b9;
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7; 
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    
    white-space: nowrap; 
    transition: all 0.2s;


    margin: 0 12px 12px 0;
}

.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) {
            .content-matrix {
                grid-template-columns: 1fr; 
                gap: 20px;
            }
            .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;
            }
        }
}




@media (max-width: 900px) {
    .content-matrix{

       display: inline;
          gap: 20px;

}


        .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: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

}



/* ========================================
   产品详情页格式优化样式 - 强力版本
   直接覆盖所有现有样式
   ======================================== */

/* 1. 表格样式 - 使用最高优先级 */
table,
.content table,
.article table,
.product table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 25px 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    background-color: #fff !important;
}

table thead,
.content table thead,
.article table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
}

table th,
.content table th,
.article table th {
    background-color: #667eea !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    text-align: left !important;
    padding: 15px 18px !important;
    border: 1px solid #5568d3 !important;
}

table td,
.content table td,
.article table td {
    padding: 12px 18px !important;
    border: 1px solid #e0e0e0 !important;
    vertical-align: top !important;
    color: #555555 !important;
}

table tr:nth-child(even),
.content table tr:nth-child(even),
.article table tr:nth-child(even) {
    background-color: #f8f9fa !important;
}

table tr:nth-child(odd),
.content table tr:nth-child(odd),
.article table tr:nth-child(odd) {
    background-color: #ffffff !important;
}

table tr:hover,
.content table tr:hover,
.article table tr:hover {
    background-color: #e3f2fd !important;
    transition: background-color 0.3s ease !important;
}

/* 2. 标题样式 - h4级别（页面使用的标题） */
h4,
.content h4,
.article h4,
.product h4 {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    margin: 35px 0 20px 0 !important;
    line-height: 1.3 !important;
    border-left: 4px solid #667eea !important;
    padding-left: 15px !important;
    padding-bottom: 10px !important;
}

/* 第一个标题（Introduction）特殊处理 */
h4:first-of-type,
.content h4:first-of-type {
    margin-top: 20px !important;
    border-bottom: 2px solid #e0e0e0 !important;
    border-left: none !important;
    padding-left: 0 !important;
}

/* 3. 段落文本样式 */
p,
.content p,
.article p,
.product p {
    line-height: 1.8 !important;
    margin-bottom: 18px !important;
    text-align: justify !important;
    color: #555555 !important;
    font-size: 15px !important;
}

/* 4. 列表样式优化 */
ul,
ol,
.content ul,
.content ol,
.article ul,
.article ol {
    margin: 20px 0 !important;
    padding-left: 25px !important;
}

ul li,
ol li,
.content ul li,
.content ol li,
.article ul li,
.article ol li {
    margin-bottom: 14px !important;
    line-height: 1.7 !important;
    color: #555555 !important;
    font-size: 15px !important;
    list-style-type: disc !important;
}

/* 带粗体文字的列表项（Application, Advantage等） */
ul li strong,
ol li strong,
.content ul li strong,
.content ol li strong {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-right: 5px !important;
}

/* Application列表项 - 绿色背景 */
ul li:has(strong):nth-of-type(1n),
.content ul li:has(strong) {
    padding: 12px 15px !important;
    margin-bottom: 12px !important;
    background: linear-gradient(to right, #f8f9fa, #ffffff) !important;
    border-left: 4px solid #667eea !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    list-style-type: none !important;
}

/* 5. FAQ问答部分样式 */
/* FAQ问题 - 识别包含问号的列表项 */
ul li:-webkit-any(:contains("?")),
ul li:has(strong:contains("?")),
.content ul li {
    margin-top: 20px !important;
    padding: 16px 20px !important;
    background-color: #667eea !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-radius: 6px 6px 0 0 !important;
    cursor: pointer !important;
    list-style-type: none !important;
}

/* FAQ答案 - 问题后面的普通列表项 */
ul li:not(:has(strong)):not(:contains("?")),
.content ul li:not(:has(strong)) {
    padding: 18px 20px !important;
    background-color: #f5f7fa !important;
    color: #555555 !important;
    border-radius: 0 0 6px 6px !important;
    border-top: 2px solid #e0e0e0 !important;
}

/* 6. Related Tags 标签样式 */
.related-tags,
.tags,
.product-tags {
    margin: 35px 0 !important;
    padding: 25px !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    border-radius: 8px !important;
}

.related-tags a,
.tags a,
a[href*="tag"] {
    display: inline-block !important;
    margin: 6px 10px !important;
    padding: 8px 16px !important;
    background-color: #ffffff !important;
    border: 2px solid #667eea !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    color: #667eea !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.related-tags a:hover,
.tags a:hover,
a[href*="tag"]:hover {
    background-color: #667eea !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.4) !important;
}

/* 7. 产品分类列表样式 */
.category-list,
.product-category,
ul:has(h4) {
    margin: 20px 0 !important;
    padding: 0 !important;
}

.category-list li,
.product-category li {
    list-style-type: none !important;
    margin: 10px 0 !important;
    padding: 10px 15px !important;
    background-color: #f8f9fa !important;
    border-radius: 4px !important;
    border-left: 3px solid #4caf50 !important;
}

.category-list h4,
.product-category h4 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 16px !important;
}

/* 8. 通用内容区域样式 */
.content,
.article,
.product-content,
.product-detail {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

/* 9. 粗体文字样式 */
strong,
b,
.content strong,
.article strong {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

/* 10. 链接样式 */
a,
.content a,
.article a {
    color: #667eea !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

a:hover,
.content a:hover,
.article a:hover {
    color: #764ba2 !important;
    text-decoration: underline !important;
}

/* 11. 响应式设计 - 平板和手机 */
@media (max-width: 992px) {
    table,
    .content table {
        font-size: 13px !important;
    }
    
    table th,
    table td {
        padding: 10px 12px !important;
    }
    
    h4 {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    /* 表格响应式处理 */
    table,
    table thead,
    table tbody,
    table th,
    table td,
    table tr {
        display: block !important;
        width: 100% !important;
    }
    
    table thead {
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    
    table tr {
        margin-bottom: 15px !important;
        border: 1px solid #ddd !important;
        border-radius: 5px !important;
        padding: 10px !important;
    }
    
    table td {
        text-align: right !important;
        padding: 8px 10px !important;
        border: none !important;
        border-bottom: 1px solid #eee !important;
    }
    
    table td:first-child {
        text-align: left !important;
        font-weight: bold !important;
        background-color: #f8f9fa !important;
    }
    
    h4 {
        font-size: 17px !important;
    }
    
    p,
    ul li,
    ol li {
        font-size: 14px !important;
    }
}

/* 12. 打印样式 */
@media print {
    table {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    table th,
    table td {
        border: 1px solid #000 !important;
    }
    
    a {
        text-decoration: underline !important;
    }
}
.editor-module table{
display: table;
}

.editor-module table tbody{
display: table-row-group!important;
}



/* 超强覆盖版本 - 针对所有页脚元素 */
.footer *,
#footer *,
footer * {
    color: #7b9cff !important;
}

/* 标题单独设置 */
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6,
#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6,
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #9bb5ff !important;
    font-weight: 600 !important;
}

/* 链接悬停效果 */
.footer a:hover,
#footer a:hover,
footer a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}




