: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;
            --gradient-primary: linear-gradient(135deg, #004a99, #007bff);
            --gradient-secondary: linear-gradient(135deg, #6a11cb, #2575fc);
            --accent-color: #ff6b6b;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            background-image: radial-gradient(circle at 10% 20%, rgba(0, 74, 153, 0.05) 0%, transparent 20%),
                              radial-gradient(circle at 90% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 20%);
        }
        
        .tag-page-container a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: color 0.3s, transform 0.3s;
        }
        .tag-page-container a:hover {
            color: var(--primary-color);
            transform: translateX(3px);
        }

        .tag-page-container {
            max-width: 1430px; 
            margin: 0 auto;
            padding: 20px 30px 60px 30px;
        }
        
        header {
            background: var(--gradient-primary);
            color: white; 
            padding: 20px 30px; 
            text-align: left; 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            margin-bottom: 40px;
        }
        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 15s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .breadcrumb {
            background-color: var(--card-bg);
            padding: 15px 30px;
            font-size: 0.9em;
            border-bottom: 1px solid var(--soft-border);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            border-radius: var(--radius);
            margin-bottom: 50px;
        }

        .tag-hero-section {
            padding: 40px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(to right, #ffffff, #f8fafc);
            border-radius: var(--radius);
            box-shadow: var(--shadow-elevation);
        }
        .tag-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23004a99;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23007bff;stop-opacity:0.05"/></linearGradient></defs><rect fill="url(%23grad)" width="100" height="100"/></svg>');
            z-index: -1;
            opacity: 0.3;
        }

        .tag-title {
            font-size: 3.5em; 
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            text-align: center;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .tag-hero-section .hero-section-p {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: var(--primary-color);
            font-style: italic;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }
        .tag-hero-section .hero-section-p::before,
        .tag-hero-section .hero-section-p::after {
            content: '✦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--secondary-color);
            font-size: 1.2em;
        }
        .tag-hero-section .hero-section-p::before {
            left: 0;
        }
        .tag-hero-section .hero-section-p::after {
            right: 0;
        }
        
        .editor-content-1 {
            font-size: 16px;
            color: #555;
            padding: 30px;
            background: linear-gradient(to right, #e6f0ff, #f0f7ff);
            border-radius: var(--radius);
            line-height: 1.8;
            border-left: 5px solid var(--secondary-color);
            box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }
        .editor-content-1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }
        .editor-content-1 strong {
            font-weight: bold;
            color: var(--primary-color);
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 70px;
            margin-bottom: 70px;
        }

        .editor-module {
            font-size: 14px;
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-elevation);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .editor-module::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-primary);
        }
        .editor-module:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        .editor-module strong {
            font-weight: bold;
            color: var(--primary-color);
        }
        .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;
            position: relative;
            padding-left: 10px;
        }
        .editor-module h2::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
        }
        
        .editor-module h3,.editor-module h4 {
             color: var(--primary-color);
             margin-bottom: 15px;
             font-weight: bold;
             font-size: 24px;
             text-align: center;
             position: relative;
        }
        .editor-module h3::after, .editor-module h4::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background: var(--gradient-primary);
            margin: 10px auto;
            border-radius: 2px;
        }
        
        .editor-module ul {
            list-style: none;
            padding-left: 0;
            flex-grow: 1;
        }
        .editor-module li {
            padding: 10px 0;
            border-bottom: 1px dotted var(--soft-border);
            position: relative;
            padding-left: 30px;
            line-height: 1.8;
            transition: background-color 0.3s;
        }
        .editor-module li:hover {
            background-color: rgba(0, 123, 255, 0.05);
            padding-left: 35px;
        }
        .editor-module li::before {
            content: '✓';
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        .info-column1 table th, .info-column1 table td{
            padding: 10px 15px;
            border: 1px solid #666;
            width: 50%;
        }
        .info-column1 table th {
            font-weight: bold;
            background-color: var(--primary-color);
            color: white;
        }
        .info-column1 table tbody tr td:first-of-type {
            font-weight: bold;
            background-color: #f0f7ff;
        }
        .spec-table {
            width: 100%;
            border-collapse: separate; 
            border-spacing: 0;
            margin-top: 15px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .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: var(--gradient-primary);
            color: white;
            font-weight: 400;
            text-transform: uppercase;
        }
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        .spec-table tr:nth-child(even) {
            background-color: #f9f9fb;
        }
        .spec-table tr:hover {
            background-color: #e6f0ff;
        }
        .product-preview-section {
            padding: 60px 0;
            margin: 60px 0;
        }
        .product-preview-section h2 {
            font-size: 2.2em;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        .product-preview-section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--gradient-primary);
            margin: 10px auto;
            border-radius: 2px;
        }
        
        .product-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }
        .preview-card {
            padding: 25px;
            background: linear-gradient(to bottom, #ffffff, #f8fafc);
            border-radius: var(--radius);
            box-shadow: var(--shadow-elevation);
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .preview-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }
        .preview-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .preview-card img {
            border-radius: 4px;
            transition: all 0.3s;
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
        }
        .preview-card:hover img {
            opacity: 0.9;
            transform: scale(1.05);
        }
        .preview-card h3 {
            font-size: 1.2em;
            color: var(--text-color);
            margin: 15px 0 5px 0;
        }
        .preview-card a {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 4px;
            transition: all 0.3s;
            font-weight: 500;
            align-self: center;
        }
        .preview-card a:hover {
            background: var(--gradient-secondary);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
        }
        .editor-module1 {
            margin: 60px 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: 35px;
            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: var(--gradient-primary);
            margin: 8px auto 0;
            border-radius: 2px;
        }
        .jinfeng-ul-1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .jinfeng-ul-1 li {
            background: linear-gradient(to bottom, #ffffff, #f8fafc);
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        .jinfeng-ul-1 li::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
        }
        .jinfeng-ul-1 li:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-color: #007bff;
        }
        .jinfeng-ul-1 li::marker {
            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;
            position: relative;
            z-index: 1;
        }

        .editor-module-service h3 {
            color: var(--primary-color);
            font-size: 1.8em;
            margin-top: 0;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            font-weight: bold;
            text-align: left;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .editor-module-faq {
            background: linear-gradient(to bottom, #fcfcfc, #ffffff);
            padding: 30px 20px; 
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            font-family: Arial, sans-serif;
            font-size: 14px;
            position: relative;
        }
        .editor-module-faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 8px 0 0 8px;
        }
        .editor-module-faq h3 {
            color: var(--primary-color);
            font-size: 1.8em;
            margin-top: 0;
            margin-bottom: 30px;
            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; 
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .editor-module-faq li {
            padding: 15px 20px;
            transition: background-color 0.3s ease;
        }
        .editor-module-faq li:first-child {
            font-weight: bold;
            cursor: pointer; 
            background: linear-gradient(to right, #f7f7f7, #ffffff);
            color: #333;
            border-bottom: 1px solid #ddd;
            position: relative; 
        }
        .editor-module-faq li:first-child::after {
            content: '+'; 
            position: absolute;
            right: 20px;
            font-size: 1.2em;
            line-height: 1;
            top: 50%; 
            transform: translateY(-50%); 
            transition: transform 0.3s ease, content 0.3s ease;
            background: var(--secondary-color);
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .editor-module-faq li:first-child.expanded::after {
            content: '-'; 
            transform: translateY(-50%) rotate(180deg);
            background: var(--primary-color);
        }
        .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: 20px;
            opacity: 1;
        }

        .more-info {
            background: linear-gradient(to bottom, #ffffff, #f8fafc);
            border-radius: 8px;  
            border: 1px solid #E0E0E0; 
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
            padding: 40px; 
            margin-top: 80px;
            position: relative;
        }
        .more-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 8px 0 0 8px;
        }
        .more-info h2 {
            color: #2c3e50;
            font-size: 20px;
            margin-top: 0;
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .more-info h2::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 40px;
            height: 2px;
            background: var(--gradient-primary);
        }
        .more-info p {
            color: #7f8c8d;
            font-size: 14px;
            margin-bottom: 25px;
        }
        .more-info ul {
            list-style: none; 
            padding: 0;
            margin: 0;
            display: flex; 
            flex-wrap: wrap; 
            gap: 20px;
        }
        .more-info li {
            margin: 0;
            padding: 0;
        }
        .more-info a {
            display: block; 
            text-decoration: none; 
            color: #2980b9;
            background: linear-gradient(to right, #ecf0f1, #ffffff);
            border: 1px solid #bdc3c7; 
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap; 
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .more-info a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
        }
        .more-info a:hover::before {
            left: 100%;
        }
        .more-info a:hover {
            background: var(--gradient-primary);
            border-color: var(--primary-color);
            color: #FFFFFF;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); 
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .tag-title {
                font-size: 2.5em;
            }
            .editor-module {
                padding: 20px;
            }
            .tag-page-container, header, .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
            .content-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .product-preview-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .tag-title {
                font-size: 2.2em;
            }
            .jinfeng-ul-1 {
                grid-template-columns: 1fr;
            }
            .content-grid {
                gap: 40px;
            }
            .faq-grid {
                gap: 40px;
            }
        }

        /* 假设下面的板块类名叫 .application-section */
.editor-module-faq {
    margin-top: 40px; /* 增加顶部间距，40px 是一个比较舒适的距离 */
}

/* 或者给上面的表格容器增加底部间距 */
.editor-module-faq {
    margin-bottom: 40px;
}
.editor-module-service editor-module {
    margin-top: 40px; /* 增加顶部间距，40px 是一个比较舒适的距离 */
}
.editor-module {
    margin-top: 40px; /* 增加顶部间距，40px 是一个比较舒适的距离 */
}