
     :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;
}
.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: 13px;
    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) {
            .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;
            }
        }
/* =========================================
   YESSJET 机械行业 Tag 页面专属优化样式
   ========================================= */

/* 1. 产品列表卡片优化 */
.product-showcase-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.product-showcase-list li {
    flex: 0 0 calc(25% - 15px); /* 电脑端 4 列 */
    box-sizing: border-box;
}
.product-card-item {
    background: #fff;
    border: 1px solid #e8ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card-item:hover {
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.1);
    transform: translateY(-5px);
    border-color: #0056b3;
}
.product-card-item .img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-card-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card-item:hover .img-box img {
    transform: scale(1.05);
}
.view-details-btn {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background: rgba(0, 86, 179, 0.9);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 600;
    transition: bottom 0.3s ease;
}
.product-card-item:hover .view-details-btn {
    bottom: 0;
}
.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-info .tit {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
}
.product-info .tit a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}
.product-info .tit a:hover {
    color: #0056b3;
}
.product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* 2. 核心优势板块 */
.core-advantages-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin: 40px 0;
    border-radius: 8px;
}
.section-title-center {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #003366; /* 工业深蓝 */
    margin-bottom: 40px;
    position: relative;
}
.section-title-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    margin: 15px auto 0;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.adv-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-top: 4px solid #0056b3;
}
.adv-card:hover {
    transform: translateY(-5px);
}
.adv-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.adv-card h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 12px;
}
.adv-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* 3. 底部 CTA 横幅 (工业风) */
.industrial-cta-banner {
    background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
    border-radius: 8px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 60px 0;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
}
.cta-content {
    flex: 1;
    min-width: 300px;
}
.cta-content h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #fff;
}
.cta-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}
.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-primary-cta, .btn-secondary-cta {
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary-cta {
    background-color: #ff9800; /* 橙色按钮在深蓝背景上非常醒目，促转化 */
    color: #fff;
    border: 2px solid #ff9800;
}
.btn-primary-cta:hover {
    background-color: #e68900;
    border-color: #e68900;
}
.btn-secondary-cta {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary-cta:hover {
    background-color: #fff;
    color: #003366;
}

/* 4. 修复公司介绍区的链接样式 */
.seo_content .con a {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
.seo_content .con a:hover {
    color: #003366;
    border-bottom-color: #003366;
}

/* 5. 移动端响应式适配 */
@media (max-width: 992px) {
    .product-showcase-list li {
        flex: 0 0 calc(50% - 10px); /* 平板端 2 列 */
    }
}
@media (max-width: 768px) {
    .product-showcase-list li {
        flex: 0 0 100%; /* 手机端 1 列 */
    }
    .industrial-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .cta-actions {
        margin-top: 25px;
        justify-content: center;
        width: 100%;
    }
    .btn-primary-cta, .btn-secondary-cta {
        width: 100%;
        text-align: center;
    }
}

/* 通用标题样式 */
.section-title-main {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0056b3 0%, #00a8e8 100%);
    border-radius: 2px;
}

/* Specifications 板块样式 */
.specs-section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
    margin: 40px 0;
}


.specs-container {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.specs-table thead {
    background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
    color: #fff;
}

.specs-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.specs-table th:first-child {
    width: 35%;
    border-top-left-radius: 8px;
}

.specs-table th:last-child {
    border-top-right-radius: 8px;
}

.specs-table tbody tr {
    border-bottom: 1px solid #e8ecef;
    transition: background-color 0.3s ease;
}

.specs-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specs-table tbody tr:hover {
    background-color: #f0f7ff;
}

.specs-table td {
    padding: 16px 20px;
    vertical-align: top;
}

.spec-label {
    font-weight: 600;
    color: #003366;
    border-right: 2px solid #e8ecef;
}

.spec-value {
    color: #555;
    line-height: 1.6;
}

/* Application 板块样式 */
.application-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.application-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.06);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.12);
    border-bottom-color: #0056b3;
}

.application-card.featured {
    background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
    color: #fff;
}

.application-card.featured h3,
.application-card.featured p {
    color: #fff;
}

.app-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.application-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 600;
}

.application-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Advantages 板块样式 */
.advantages-section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.08);
    margin: 40px 0;
}

.advantages-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #0056b3;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: #f0f7ff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.1);
}

.advantage-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0056b3 0%, #00a8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.advantage-icon svg {
    width: 22px;
    height: 22px;
}

.advantage-content {
    flex: 1;
}

.advantage-content h4 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 8px;
    font-weight: 600;
}

.advantage-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .specs-section,
    .application-section,
    .advantages-section {
        padding: 30px 20px;
    }
    
    .section-title-main {
        font-size: 26px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        flex-direction: column;
        gap: 15px;
    }
}


/* =========================================
   2. Service Process (服务流程) 板块样式
   ========================================= */
.process-section {
    background: #ffffff;
    padding: 60px 40px;
    margin: 50px 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
}

/* 桌面端的时间轴横线 */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 55px; /* 调整横线高度，使其穿过圆圈中心 */
    left: 5%;
    right: 5%;
    height: 3px;
    background-color: #e8ecef;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
    border: 4px solid #ffffff; /* 白色描边，断开横线 */
}

.step-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.process-step h4 {
    font-size: 18px;
    color: #003366;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   3. 响应式适配 (平板和手机)
   ========================================= */
@media (max-width: 992px) {
    /* 认证板块：平板显示 2 列 */
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* 通用调整 */
    .certifications-section, .process-section {
        padding: 40px 20px;
    }
    
    /* 认证板块：手机显示 1 列 */
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 流程板块：手机改为垂直时间轴 */
    .process-timeline {
        flex-direction: column;
        padding-top: 0;
        margin-top: 30px;
    }
    
    /* 手机端的竖线 */
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 25px; /* 竖线靠左 */
        right: auto;
        width: 3px;
        height: 100%;
    }
    
    .process-step {
        display: flex;
        text-align: left;
        margin-bottom: 30px;
        padding-left: 70px; /* 给左侧圆圈留出空间 */
    }
    
    .step-number {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        width: 50px;
        height: 50px;
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-icon {
        display: none; /* 手机端隐藏大图标，保持简洁 */
    }
    
    .process-step h4 {
        margin-top: 10px;
    }
}
/* 强制统一表格表头和主体的宽度 */

/* 1. 确保整个表格占满容器 */
.specs-table,
table.specs-table,
.info-column1 table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important; /* 固定布局，确保列宽一致 */
    border-collapse: collapse !important;
}

/* 2. 表头行和表格主体行宽度一致 */
.specs-table thead tr,
.specs-table tbody tr,
table.specs-table thead tr,
table.specs-table tbody tr {
    width: 100% !important;
}

/* 3. 表头单元格和正文单元格宽度强制一致 */
.specs-table th,
.specs-table td,
table.specs-table th,
table.specs-table td {
    width: auto !important;
    box-sizing: border-box !important; /* 确保 padding 不会撑破宽度 */
}

/* 4. 第一列（Attribute/Parameter）固定宽度比例 */
.specs-table th:first-child,
.specs-table td:first-child,
table.specs-table th:first-child,
table.specs-table td:first-child {
    width: 35% !important;
    min-width: 200px;
}

/* 5. 第二列（Detail/Value）占据剩余空间 */
.specs-table th:last-child,
.specs-table td:last-child,
table.specs-table th:last-child,
table.specs-table td:last-child {
    width: 65% !important;
}

/* 6. 移除可能导致宽度不一致的样式 */
.specs-table thead,
.specs-table tbody,
table.specs-table thead,
table.specs-table tbody {
    display: table-row-group !important;
    width: 100% !important;
}

/* 7. 确保表格容器没有溢出隐藏 */
.specs-container,
.specs-table-wrapper {
    overflow-x: visible !important;
    width: 100% !important;
}
/* 强制表格及其容器占满宽度 */

/* 1. 确保表格外层容器占满 */
.specs-container, 
.specs-table-wrapper,
.editor-module .specs-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto; /* 防止小屏幕溢出 */
}

/* 2. 强制表格本身占满 100% 宽度 */
.specs-table, 
table.specs-table,
.info-column1 table {
    width: 100% !important;
    max-width: 100% !important;
    display: table !important; /* 确保是表格布局 */
    table-layout: auto !important; /* 自动分配列宽 */
    border-collapse: collapse !important;
    margin: 0 auto !important; /* 居中 */
}

/* 3. 修复表头和单元格的宽度分配 */
.specs-table th, 
.specs-table td,
table.specs-table th,
table.specs-table td {
    width: auto !important; /* 让内容决定宽度，但总和为 100% */
    box-sizing: border-box !important;
    padding: 15px 20px !important;
}

/* 4. 给第一列（Attribute）一个基础宽度，防止太窄 */
.specs-table th:first-child, 
.specs-table td:first-child {
    width: 30% !important; 
    min-width: 200px;
}

/* 5. 第二列（Detail）占据剩余空间 */
.specs-table th:last-child, 
.specs-table td:last-child {
    width: 70% !important;
}
/* 1. 强制提高按钮层级，让它浮在最上面 */
a.more, 
.ig a.more, 
.flex a.more {
    position: relative !important;
    z-index: 999 !important; /* 关键：把层级调到非常高 */
    display: inline-block !important;
    margin-top: 20px !important; /* 增加一点上方间距，防止挤在一起 */
    margin-bottom: 20px !important;
}

/* 2. 确保包裹按钮的父容器 (.ig 和 .flex) 不会裁剪内容 */
.ig, 
.flex, 
div.ig, 
div.flex {
    overflow: visible !important; /* 允许内容溢出 */
    height: auto !important;      /* 高度自适应 */
    z-index: auto !important;     /* 重置父级层级 */
}

/* 3. 如果按钮是被下方的浅蓝色背景挡住了，尝试给按钮加个阴影或背景，确保可见 */
a.more {
    background-color: #0056b3 !important; /* 确保按钮颜色可见 */
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important; /* 加个阴影让它更突出 */
}
@media (max-width: 900px) {
    .content-matrix{

       display: inline;
          gap: 20px;

}