/* 主样式文件 - 汽车雨刷制造商专业版 */
:root {
    --primary-color: #0056b3;     /* 主蓝色 - 专业感 */
    --secondary-color: #28a745;    /* 次要绿色 - 成功/可靠 */
    --accent-color: #ff6b35;      /* 强调橙色 - 行动号召 */
    --dark-color: #1a365d;        /* 深蓝色 - 标题/重要内容 */
    --light-bg: #f8f9fa;          /* 浅背景 */
    --card-bg: #ffffff;           /* 卡片背景 */
    --text-color: #2c3e50;        /* 主文本颜色 */
    --light-text: #6c757d;        /* 浅文本颜色 */
    --border-color: #e9ecef;      /* 边框颜色 */
    --shadow: 0 10px 30px rgba(0, 86, 179, 0.1); /* 主阴影 */
    --shadow-hover: 0 15px 40px rgba(0, 86, 179, 0.15); /* 悬停阴影 */
    --radius: 10px;               /* 圆角 */
    --transition: all 0.3s ease;  /* 过渡效果 */
}

/* 全局样式 */
body {
    font-family: 'Roboto', 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 14px; /* 基础字体大小 */
}

.tag-page-container a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

.tag-page-container a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 主容器 */
.tag-page-container {
    max-width: 1430px;
    margin: 0 auto;
    padding: 30px 15px 80px;
}

/* 主标题区域 */
.tag-hero-section {
    padding: 60px 0 40px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.tag-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tag-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-hero-section .hero-section-p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editor-content-1 {
    font-size: 16px;
    color: var(--text-color);
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--radius);
    line-height: 1.8;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

/* 标题样式系统 */
h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 30px 0 20px;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 25px 0 18px;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin: 20px 0 15px;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 18px 0 12px;
    position: relative;
    padding-bottom: 10px;
}

h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 15px 0 10px;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
    margin: 12px 0 8px;
}

/* det内容区域样式 */
.det-content {
    font-size: 14px;
    line-height: 1.8;
}

.det-content h4 {
    font-size: 24px;
    color: var(--dark-color);
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    line-height: 1.2;
}

.det-content h5 {
    font-size: 20px;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.det-content h6 {
    font-size: 18px;
    color: var(--light-text);
    margin-top: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.det-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.det-content ul, .det-content ol {
    margin: 15px 0 20px 25px;
    padding-left: 15px;
}

.det-content li {
    margin-bottom: 8px;
    line-height: 1.8;
    position: relative;
    padding-left: 25px;
}

.det-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
}

.det-content ol {
    counter-reset: item;
}

.det-content ol li {
    counter-increment: item;
}

.det-content ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 内容矩阵布局 */
.content-matrix {
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr;
    margin-top: 50px;
    margin-bottom: 50px;
}

.main-content-column, .sidebar-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 编辑器模块样式 */
.editor-module {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.editor-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.editor-module:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.editor-module h2 {
    color: var(--dark-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.2;
}

.editor-module h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
    padding-top: 10px;
}

.editor-module h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
    border-radius: 2px;
}

/* info-column1 特定样式 */
.info-column1 .det-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.info-column1 .det-content table th {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    font-weight: 600;
    padding: 12px 15px;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
}

.info-column1 .det-content table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 1.8;
}

.info-column1 .det-content table tbody tr:nth-child(even) {
    background-color: rgba(0, 86, 179, 0.05);
}

.info-column1 .det-content table tbody tr:hover {
    background-color: rgba(0, 86, 179, 0.1);
}

/* editor-module1 样式 */
.editor-module1 {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 35px 30px;
    border-radius: var(--radius);
    margin: 30px 0;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.editor-module1 h3, .editor-module1 h4 {
    text-align: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-top: 20px;
    font-weight: 600;
    position: relative;
    line-height: 1.2;
}

.editor-module1 h3::after, .editor-module1 h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 10px auto 0;
    border-radius: 2px;
}

.jinfeng-ul-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.jinfeng-ul-1 li {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 86, 179, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.jinfeng-ul-1 li:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-color);
}

.jinfeng-ul-1 li::before {
    content: '✓';
    font-size: 24px;
    margin-right: 15px;
    color: var(--secondary-color);
    font-weight: bold;
    background: rgba(40, 167, 69, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jinfeng-ul-1 li span {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.6;
}

/* 服务模块样式 */
.editor-module-service h3 {
    color: var(--dark-color);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    font-weight: 600;
    text-align: left;
    line-height: 1.2;
}

/* FAQ模块样式 */
.editor-module-faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.editor-module-faq h4 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-top: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.editor-module-faq h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 10px auto 0;
    border-radius: 2px;
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.editor-module-faq li {
    padding: 20px;
    transition: background-color 0.3s ease;
}

.editor-module-faq li:first-child {
    font-weight: 600;
    cursor: pointer;
    background-color: #ffffff;
    color: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    padding-right: 40px;
}

.editor-module-faq li:first-child:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.editor-module-faq li:first-child::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.editor-module-faq li:first-child.expanded::after {
    content: '−';
    font-weight: 300;
}

.editor-module-faq li:last-child {
    background-color: #ffffff;
    color: var(--text-color);
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    font-size: 14px;
    line-height: 1.8;
}

.editor-module-faq li:last-child.active {
    max-height: 500px;
    padding: 0 20px 20px;
    opacity: 1;
    border-top: 1px solid var(--border-color);
}

.related-products-section {
    padding: 80px 0;
    margin: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.related-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.6;
    max-width: 600px;
    margin: 25px auto 0;
}

/* 产品网格布局 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px 30px;
    margin-bottom: 60px;
}

/* 产品卡片 */
.product-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* 产品图片容器 */
.product-image-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 86, 179, 0) 0%, rgba(0, 86, 179, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    background: var(--accent-color);
    border-radius: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .view-details {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-text {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 产品信息 */
.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.product-name a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: block;
}

.product-name a:hover {
    color: var(--accent-color);
}

.product-actions {
    margin-top: auto;
}

.view-button {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

.view-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* 查看所有产品按钮 */
.section-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.view-all-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
}

.view-all-button::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 ease;
}

.view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
    color: white !important;
}

.view-all-button:hover::before {
    left: 100%;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .related-products-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name a {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .view-button {
        font-size: 14px;
        line-height: 1.4;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .view-all-button {
        padding: 12px 30px;
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* 公司介绍区域 */
.simple-about-section {
    padding: 60px 0;
    margin: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* 图片区域 */
.about-image-column {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    height: 450px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-main-image {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 86, 179, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.badge-years {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* 文字区域 */
.about-content-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.company-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.company-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.company-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.company-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-intro a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 关键数据展示 */
.key-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    background: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-wrapper {
        gap: 40px;
    }
    
    .about-image-container {
        height: 400px;
    }
    
    .company-title {
        font-size: 24px;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .simple-about-section {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-container {
        height: 300px;
    }
    
    .company-title {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .company-intro p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .key-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-image-container {
        height: 250px;
    }
    
    .company-title {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .image-badge {
        padding: 8px 15px;
        bottom: 15px;
        left: 15px;
    }
    
    .badge-years {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .badge-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .key-stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 100%;
        padding: 15px;
    }
}

/* 询盘表单区域 */
.contact-page {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 60px 0;
    border-radius: var(--radius);
    margin: 60px 0;
}

.contact-page .font-48 {
    font-size: 36px;
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-page .txt-center {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* 推荐文章区域 */
.more-info {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.recommended-articles h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    line-height: 1.2;
    margin-top: 20px;
}

.article-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.article-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    transition: var(--transition);
    text-decoration: none;
}

.article-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .tag-title {
        font-size: 36px;
    }
    
    .content-matrix {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-box.three {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tag-page-container {
        padding: 20px 15px 60px;
    }
    
    .tag-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .tag-hero-section {
        padding: 40px 0 30px;
    }
    
    .editor-content-1 {
        padding: 20px;
        font-size: 15px;
    }
    
    .grid-box.three {
        grid-template-columns: 1fr;
    }
    
    .jinfeng-ul-1 {
        grid-template-columns: 1fr;
    }
    
    .editor-module,
    .editor-module1,
    .editor-module-faq {
        padding: 25px 20px;
    }
    
    .content-matrix {
        gap: 20px;
    }
    
    /* 移动端字体调整 */
    h1 { font-size: 28px; line-height: 1.2; }
    h2 { font-size: 24px; line-height: 1.2; }
    h3 { font-size: 20px; line-height: 1.2; }
    h4 { font-size: 18px; line-height: 1.4; }
    h5 { font-size: 16px; line-height: 1.4; }
    h6 { font-size: 15px; line-height: 1.6; }
    
    .det-content h4 {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .det-content h5 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .det-content h6 {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .det-content p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .det-content li {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .tag-title {
        font-size: 24px;
    }
    
    .editor-content-1 {
        font-size: 14px;
    }
    
    .seo-honor .font-45 {
        font-size: 24px;
    }
    
    .grid-box.two {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-links {
        justify-content: center;
    }
    
    .article-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 打印样式 */
@media print {
    .tag-page-container {
        max-width: 100%;
        padding: 0;
    }
    
    .editor-module,
    .editor-module1,
    .editor-module-faq {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .grid-box.three .box {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* 公司实力展示板块样式 */
.company-strength-section {
    padding: 70px 0;
    margin: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.company-strength-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.strength-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.strength-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.strength-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.strength-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.2);
    transition: var(--transition);
}

.strength-card:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.3);
}

.strength-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.strength-card-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
}

.strength-card-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

/* 技术特色展示 */
.technology-features {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.features-title {
    font-size: 28px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 25px;
    background: var(--card-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
}

.feature-item-title {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.feature-item-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .strength-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .company-strength-section {
        padding: 50px 0;
    }
    
    .strength-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .strength-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .strength-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strength-card {
        padding: 25px;
    }
    
    .technology-features {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .strength-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .strength-card-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .strength-card-content p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .feature-item-title {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .feature-item-desc {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* ===========================================
   FAQ板块样式 - 简化修复版
   =========================================== */

.main-content-column .editor-module-faq {
    margin-top: 20px;
    margin-bottom: 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.main-content-column .faq-container h4 {
    font-size: 24px;
    color: var(--dark-color);
    text-align: left;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

.main-content-column .faq-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.main-content-column .faq-list li {
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.main-content-column .faq-list li.question-item {
    font-weight: 600;
    cursor: pointer;
    background-color: #ffffff;
    color: var(--dark-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    padding-right: 40px;
}

.main-content-column .faq-list li.question-item:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.main-content-column .faq-list li.question-item::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.main-content-column .faq-list li.question-item.expanded::after {
    content: '−';
}

.main-content-column .faq-list li.answer-item {
    background-color: #ffffff;
    color: var(--text-color);
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid transparent;
}

.main-content-column .faq-list li.answer-item.active {
    max-height: 500px;
    padding: 0 20px 15px;
    opacity: 1;
    border-top: 1px solid var(--border-color);
}

/* FAQ响应式设计 */
@media (max-width: 768px) {
    .main-content-column .editor-module-faq {
        padding: 25px 20px;
    }
    
    .main-content-column .faq-container h4 {
        font-size: 20px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .main-content-column .editor-module-faq {
        padding: 20px 15px;
    }
    
    .main-content-column .faq-container h4 {
        font-size: 18px;
        line-height: 1.4;
    }
}