:root {
    --primary-color: #004a99;
    --secondary-color: #ffcc00; /* 改为黄色作为强调色 */
    --accent-color: #ffaa00; /* 更深的黄色 */
    --light-bg: #f9f9fb;
    --card-bg: white;
    --text-color: #2c3e50;
    --text-secondary: #666666;
    --soft-border: #e6e6e9;
    --shadow-elevation: 0 4px 16px rgba(0, 0, 0, 0.1);
    --radius: 10px;
    --transition: all 0.3s ease;
}

/* 基础优化 - 增加字体大小 */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    font-size: 16px; /* 增加基础字体大小 */
}

.tag-page-container {
    max-width: 1480px; /* 增加页面宽度 */
    margin: 0 auto;
    padding: 20px 40px 60px; /* 增加左右内边距 */
}

.tag-page-container a {
    text-decoration: none;
 
    transition: var(--transition);
    font-weight: 500;
}
h4.mfg-h4{
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    font-weight: 700;
    text-align: center;
}
.tag-page-container a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 标题区域优化 - 加大字体，更突出 */
.tag-hero-section {
    padding: 50px 0 40px;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid var(--soft-border);
}

.tag-title {
    font-size: 3.2em; /* 进一步加大标题 */
    font-weight: 800; /* 更粗的字体 */
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-hero-section .hero-section-p {
    font-size: 1.3em; /* 加大副标题 */
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* 主要内容区域优化 */
.content-matrix {
    display: grid;
    gap: 50px; /* 增加间距 */
    grid-template-columns: 2fr 1fr;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .content-matrix {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tag-page-container {
        padding: 20px 30px 50px;
    }
}

/* 内容模块通用样式 - 增加字体大小和层次感 */
.editor-module,
.editor-module1,
.editor-module-faq {
    background-color: var(--card-bg);
    padding: 35px 40px; /* 增加内边距 */
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.editor-module:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* 标题层次优化 */
.editor-module h2 {
    font-size: 2em; /* 加大二级标题 */
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color); /* 使用黄色边框 */
    font-weight: 800;
    text-align: left;
    position: relative;
}

.editor-module h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.editor-module1 h3,
.editor-module1 h4,
.editor-module-faq h4 {
    font-size:16px; /* 加大三级标题 */
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    font-weight: 700;
    text-align: center;
}
li.mfg-li{
    font-size: 16px;
    line-height: 30px;
}
.editor-module1 h3::after,
.editor-module1 h4::after,
.editor-module-faq h4::after {
    display: none;
}

/* 内容段落优化 - 增加字体大小 */
.editor-content-1 {
    font-size: 16px; /* 增加字体大小 */
    color: var(--text-color);
    padding: 30px;
    background-color: #fff9e6; /* 浅黄色背景 */
    border-radius: var(--radius);
    line-height: 1.8;
    border-left: 5px solid var(--secondary-color); /* 黄色左边框 */
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.1);
}

.editor-module p,
.editor-module1 p {
    font-size: 16px; /* 增加段落字体大小 */
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.editor-module strong {
    font-weight: 700;
    color: var(--primary-color);
}

/* 列表样式优化 - 使用黄色标记 */
.editor-module ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.editor-module li {
    padding: 14px 0;
    border-bottom: 1px solid var(--soft-border);
    position: relative;
    padding-left: 32px; /* 增加左边距 */
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05em;
}

.editor-module li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    background-color: #fff9e6;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.jinfeng-ul-1 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 35px 0;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.jinfeng-ul-1 li {
    flex: 1;
    min-width: 220px;
    background-color: var(--card-bg);
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 0;
    border-bottom: none;
}

.jinfeng-ul-1 li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
    background-color: #fffdf0;
}

.jinfeng-ul-1 li::before {
    content: '⭐';
    font-size: 28px;
    margin-right: 15px;
    color: var(--secondary-color);
    position: static;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline;
    top: auto;
    transform: none;
}

.jinfeng-ul-1 li span {
    font-size: 1.2em; /* 加大字体 */
    color: var(--primary-color);
    font-weight: 700;
}

/* 表格优化 */
.spec-table,
.info-column1 table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0 35px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.spec-table th,
.spec-table td,
.info-column1 table th,
.info-column1 table td {
    padding: 18px 22px;
    text-align: left;
    font-size: 16px; /* 加大表格字体 */
    border: 1px solid var(--soft-border);
}

.spec-table th,
.info-column1 table th {
    background-color: #fff9e6; /* 浅黄色背景 */
    color: var(--primary-color);
    font-weight: 700;
    text-transform: none;
    font-size: 16px;
}

.spec-table tr:nth-child(even),
.info-column1 table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.spec-table tr:hover,
.info-column1 table tr:hover {
    background-color: #fff9e6;
}

/* 产品预览优化 - 加大字体和卡片 */
.product-preview-section {
    padding-top: 60px;
    margin-top: 60px;
    border-top: 3px solid var(--secondary-color); /* 黄色顶部边框 */
}

.product-preview-section h2 {
    font-size: 2.2em; /* 加大标题 */
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
}

.product-preview-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.product-preview-section .list .box {
    max-width: 100%;
    margin: 0;
    text-align: center;
    transition: var(--transition);
}

.product-preview-section .list .newbox1 {
    padding: 25px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-elevation);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-preview-section .list .newbox1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
}

.product-preview-section .list .newbox1:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-preview-section .box .img img {
    object-fit: cover;
    width: 100%;
    height: 260px; /* 增加图片高度 */
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.product-preview-section .list .newbox1:hover .img img {
    transform: scale(1.05);
}

.product-preview-section .list .box .con {
    margin-top: 25px;
    padding: 0 10px;
}

.product-preview-section .list .box .con h6 {
    font-size: 1.3em; /* 加大标题 */
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 3.2em;
}

.product-preview-section .list .box .con p {
    font-size: 1.05em; /* 加大描述字体 */
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FAQ优化 */
.editor-module-faq {
    background-color: var(--card-bg);
    padding: 40px;
    margin: 50px 0;
    border-left: 5px solid var(--secondary-color);
}

.editor-module-faq h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    font-weight: 800;
}

.editor-module-faq ul {
    border: none;
    border-radius: 0;
}

.editor-module-faq li {
    padding: 22px;
    border-bottom: 1px solid var(--soft-border);
    transition: background-color 0.3s;
    font-size: 16px;
}

.editor-module-faq li:first-child {
    background-color: #fff9e6;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
}

.editor-module-faq li:first-child:hover {
    background-color: #fff5d6;
}

.editor-module-faq li:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

/* 更多信息标签优化 */
.more-info {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-elevation);
    padding: 35px;
    margin-top: 60px;
    border-top: 4px solid var(--secondary-color);
}

.more-info h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
}

.more-info p {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.7;
}

.more-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.more-info li {
    margin: 0;
}

.more-info a {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    background-color: #fff9e6;
    border: 1px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    transition: var(--transition);
}

.more-info a:hover {
    background-color: var(--secondary-color);
    border-color: var(--accent-color);
    color: #000;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* 响应式优化 */
@media (max-width: 992px) {
    .tag-page-container {
        padding: 15px 25px 40px;
    }
    
    .tag-title {
        font-size: 2.6em;
    }
    
    .tag-hero-section {
        padding: 40px 0 30px;
    }
    
    .editor-module,
    .editor-module1,
    .editor-module-faq {
        padding: 30px;
    }
    
    .content-matrix {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .tag-title {
        font-size: 2.2em;
    }
    
    .tag-hero-section .hero-section-p {
        font-size: 1.1em;
    }
    
    .editor-module h2 {
        font-size: 1.7em;
    }
    
    .editor-module1 h3,
    .editor-module1 h4,
    .editor-module-faq h4 {
        font-size: 1.5em;
    }
    
    .jinfeng-ul-1 {
        flex-direction: column;
        gap: 20px;
    }
    
    .jinfeng-ul-1 li {
        width: 100%;
        justify-content: flex-start;
        padding: 25px;
    }
    
    .product-preview-section h2 {
        font-size: 1.8em;
    }
    
    .more-info {
        padding: 25px;
    }
    
    .more-info h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .tag-title {
        font-size: 1.9em;
    }
    
    .tag-page-container {
        padding: 15px 20px 35px;
    }
    
    .editor-content-1 {
        padding: 20px;
        font-size: 1em;
    }
    
    .editor-module,
    .editor-module1,
    .editor-module-faq {
        padding: 20px;
    }
    
    .spec-table th,
    .spec-table td,
    .info-column1 table th,
    .info-column1 table td {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    
    .product-preview-section .box .img img {
        height: 200px;
    }
}

/* 手机端最简单直接的横向滚动修复 */
@media (max-width: 767px) {
    /* 为所有可能超出的内容容器添加横向滚动 */
    .content-matrix,
    .editor-module,
    .editor-module1,
    .editor-module-faq,
    .more-info {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* 确保表格可以横向滚动 */
    .spec-table,
    .info-column1 table,
    .editor-module table {
        min-width: 600px;
    }
    
    /* 确保技术优势列表可以横向滚动 */
    .jinfeng-ul-1 {
        min-width: 600px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .jinfeng-ul-1 li {
        flex: 0 0 auto;
        width: 260px;
        margin-right: 15px;
    }
}