
     :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 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .tag-hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 40%;
            height: 200%;
            background: linear-gradient(45deg, rgba(41, 128, 185, 0.05) 0%, rgba(41, 128, 185, 0.1) 100%);
            transform: rotate(35deg);
            z-index: 0;
        }
        .tag-hero-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 40%;
            height: 200%;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.05) 0%, rgba(52, 152, 219, 0.1) 100%);
            transform: rotate(-35deg);
            z-index: 0;
        }
        .tag-title {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }
        .tag-hero-section .hero-section-p {
            font-family: 'Georgia', serif;
            font-size: 1.2rem;
            color: #3498db;
            font-style: italic;
            margin-bottom: 40px;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        .editor-content-1 {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: left;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            border-left: 5px solid #3498db;
        }
        .editor-content-1 h4 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .editor-content-1 h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #3498db;
        }
        .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 {
            max-width: 1200px;
            margin: 40px auto;
            padding: 40px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            box-sizing: border-box;
        }
        .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 {
             color: var(--primary-color);
             margin-bottom: 10px;
             font-weight: bold;
             font-size: 24px;
             text-align: center;
        }
        .editor-module h4 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            margin-left: 10px;
        }
.editor-module h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}
        
        .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 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}
.info-column1.editor-module {
    text-align: left;
}
.info-column1 h4 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.info-column1 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}
        .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;
        }
        .QF-table {
                width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .QF-table td {
            padding: 14px 20px;
    border-bottom: 1px solid #eaeaea;
    color: #34495e;
    vertical-align: middle;
        }
        .QF-table th {
            background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
        }
        .QF-table th:first-child {
    width: 30%;
}
.QF-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fa;
}
        .QF-table tr:last-child td {
            border-bottom: none;
        }
        .QF-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
.QF-table tbody tr:nth-child(odd) {
    background-color: #fff;
}
.QF-table tbody tr:hover {
    background-color: #eaf2f8;
    transition: background-color 0.3s ease;
}

        .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 {
            max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
        }
        .editor-module1 h4 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.editor-module1 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}
        .editor-module1 h3, .editor-module-faq h4{
            font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
        }
        .editor-module1 h3::after,.editor-module1 h4::after, .editor-module-faq h4::after {
            content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
        }
        .QF-ul-faq {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    background-color: #f8fbfe;
    border: 1px solid #eef6fc;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}
.QF-ul-faq:last-child {
    margin-bottom: 0;
}
.QF-ul-faq:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}
.QF-ul-faq li {
    margin-bottom: 15px;
    padding-left: 5px;
}
.QF-ul-faq li:last-child {
    margin-bottom: 0;
}
.QF-ul-faq li:first-child strong {
    color: #2980b9;
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
    line-height: 1.4;
}
.QF-ul-faq li:first-child strong::before {
    content: '?';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: normal;
    margin-right: 10px;
    vertical-align: text-bottom;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.2);
}
.QF-ul-faq li:last-child span {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    display: block;
    position: relative;
    padding-left: 36px;
}
.QF-ul-faq li:last-child span::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
    color: #3498db;
    font-size: 0.9em;
}
        .QF-ul {
            list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
        }
        .QF-ul li {
            background-color: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
        }
        .QF-ul li:hover {
           transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
    background-color: #fff;
        }
        .QF-ul li::before {
            content: '';
            position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #3498db, #2980b9);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
        }
        .QF-ul li:hover::before {
    opacity: 1;
}
        .QF-ul li span {
            display: block;
    line-height: 1.6;
    color: #34495e;
    font-size: 1rem;
        }
        .QF-ul li strong {
    color: #2980b9;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}
.editor-module-service {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.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-service h4 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.editor-module-service h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}
.QF-p {
    margin-bottom: 25px;
}

.editor-module-faq {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}
.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) {
            .QF-ul {
                flex-direction: column;
                gap: 15px;
            }
            .QF-ul li {
                width: 100%;
                min-width: unset;
                justify-content: flex-start;
                padding: 15px;
            }
        }
.QF-p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.QF-p span {
    display: block;
}

/* 强调文本样式 */
.QF-p strong {
    color: #2980b9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tag-hero-section {
        padding: 40px 15px;
    }
    
    .tag-title {
        font-size: 2.2rem;
    }
    
    .hero-section-p {
        font-size: 1rem;
    }
    
    .editor-content-1 {
        padding: 20px;
    }
    
    .editor-content-1 h4 {
        font-size: 1.5rem;
    }
    
    .QF-p {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag-hero-section > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.tag-title {
    animation-delay: 0.2s;
}

.hero-section-p {
    animation-delay: 0.4s;
}

.editor-content-1 {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .info-column1 {
        padding: 20px 15px;
        margin: 30px auto;
    }
    
    .info-column1 h4 {
        font-size: 1.6rem;
    }
    
    .QF-table {
        font-size: 0.9rem;
    }
    
    .QF-table th,
    .QF-table td {
        padding: 12px 10px;
    }
    
    .QF-table th:first-child {
        width: 35%;
    }
    
    .QF-table::before {
        left: 15px;
        right: 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.QF-table {
    animation: fadeIn 0.8s ease-out;
}

@media (max-width: 768px) {
    .editor-module1 {
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .editor-module1 h4 {
        font-size: 1.6rem;
    }
    
    .QF-ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .QF-ul li {
        padding: 20px 15px;
    }
}


@media (max-width: 768px) {
    .editor-module-faq {
        padding: 25px 20px;
    }
    
    .editor-module-faq h4 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .QF-ul-faq {
        padding: 20px;
    }
    
    .QF-ul-faq li:first-child strong {
        font-size: 1.05rem;
    }
    
    .QF-ul-faq li:last-child span {
        font-size: 0.95rem;
        padding-left: 30px;
    }
}