
     :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;
            }
        }
}

/* ========================================
   Product Content Matrix
   Theme Color: #0473ff
   ======================================== */

.content-matrix {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 35px;
    align-items: start;
}

/* ========================================
   Main Content / Sidebar
   ======================================== */

.main-content-column,
.sidebar-content-column {
    min-width: 0;
}


/* ========================================
   All Editor Modules
   ======================================== */

.content-matrix .editor-module,
.content-matrix .editor-module1,
.content-matrix .editor-module2,
.content-matrix .editor-module3,
.content-matrix .editor-module-service,
.content-matrix .editor-module-faq,
.content-matrix .editor-module-options {
    margin-bottom: 30px;
}


/* ========================================
   Main Content Sections
   ======================================== */

.main-content-column > section {
    position: relative;
    padding: 26px 28px;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 4px;
}


/* ========================================
   Section H4 Titles
   ======================================== */

.content-matrix h4 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 12px 15px;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 600;
    color: #222;
}


/* Blue vertical line before H4 */

.content-matrix h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 22px;
    background: #0473ff;
    border-radius: 2px;
}


/* Blue underline */

.content-matrix h4::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 42px;
    height: 2px;
    background: #0473ff;
}


/* ========================================
   Paragraph
   ======================================== */

.content-matrix p {
    margin: 0 0 16px;

    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.content-matrix p:last-child {
    margin-bottom: 0;
}


/* ========================================
   Strong / Bold Text
   ======================================== */

.content-matrix strong,
.content-matrix b {
    color: #222;
    font-weight: 600;
}


/* ========================================
   Lists
   ======================================== */

.content-matrix ul {
    margin: 15px 0 20px;
    padding: 0;
    list-style: none;
}

.content-matrix ul li {
    position: relative;

    margin-bottom: 10px;
    padding-left: 22px;

    font-size: 16px;
    line-height: 1.8;
    color: #555;
}


/* Custom blue bullet */

.content-matrix ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;

    width: 7px;
    height: 7px;

    background: #0473ff;
    border-radius: 50%;
}


/* ========================================
   Ordered List
   ======================================== */

.content-matrix ol {
    margin: 15px 0 20px;
    padding-left: 24px;
}

.content-matrix ol li {
    margin-bottom: 10px;

    font-size: 16px;
    line-height: 1.8;
    color: #555;
}


/* ========================================
   Nested List
   ======================================== */

.content-matrix ul ul,
.content-matrix ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}


/* ========================================
   Links
   ======================================== */

.content-matrix a {
    color: #0473ff;
    text-decoration: none;
    transition: color .2s ease;
}

.content-matrix a:hover {
    color: #0056c7;
    text-decoration: underline;
}


/* ========================================
   Images
   ======================================== */

.content-matrix img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-matrix p img {
    margin: 15px 0;
}


/* ========================================
   Tables
   ======================================== */

.content-matrix table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.content-matrix table th,
.content-matrix table td {
    padding: 12px 15px;
    border: 1px solid #e5e9ef;
    text-align: left;
    line-height: 1.6;
}

.content-matrix table th {
    background: #f4f8fd;
    color: #222;
    font-weight: 600;
}

.content-matrix table tr:nth-child(even) td {
    background: #fafcff;
}


/* ========================================
   Sidebar
   ======================================== */

.sidebar-content-column > section,
.sidebar-content-column > div {
    padding: 22px;
    margin-bottom: 24px;

    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 4px;
}


/* Sidebar title */

.sidebar-content-column h4 {
    font-size: 19px;
    margin-bottom: 18px;
}


/* ========================================
   Service Module
   ======================================== */

.editor-module-service {
    border-top: 3px solid #0473ff !important;
}


/* ========================================
   FAQ
   ======================================== */

.editor-module-faq p {
    font-size: 15px;
    line-height: 1.75;
}

.editor-module-faq h4 {
    font-size: 18px;
}


/* ========================================
   Options / Other Information
   ======================================== */

.editor-module-options {
    border-top: 3px solid #0473ff !important;
}


/* ========================================
   First Main Section
   ======================================== */

.info-column1 {
    border-top: 3px solid #0473ff !important;
}


/* ========================================
   Mobile
   ======================================== */

@media (max-width: 991px) {

    .content-matrix {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sidebar-content-column {
        margin-top: 10px;
    }
}


@media (max-width: 768px) {

    .main-content-column > section {
        padding: 22px 20px;
        margin-bottom: 20px;
    }

    .sidebar-content-column > section,
    .sidebar-content-column > div {
        padding: 20px;
        margin-bottom: 20px;
    }

    .content-matrix h4 {
        font-size: 19px;
        margin-bottom: 17px;
    }

    .content-matrix p,
    .content-matrix ul li,
    .content-matrix ol li {
        font-size: 16px;
        line-height: 1.8;
    }
}


@media (max-width: 480px) {

    .main-content-column > section {
        padding: 18px 16px;
    }

    .sidebar-content-column > section,
    .sidebar-content-column > div {
        padding: 18px 16px;
    }

    .content-matrix h4 {
        font-size: 18px;
        padding-left: 13px;
    }

    .content-matrix h4::before {
        width: 3px;
        height: 20px;
    }

    .content-matrix h4::after {
        left: 13px;
    }
}
/* ========================================
   Contact Us
   ======================================== */

.prodet-page.info .det-3 {
    margin-top: 40px;
    padding: 45px 0 50px;
    background: #f6f9fd;
    border-top: 1px solid #e6edf5;
    border-bottom: 1px solid #e6edf5;
}

.prodet-page.info .det-3 .ui.container {
    max-width: 1200px;
}


/* Contact Us Title */

.prodet-page.info .det-3 h2 {
    position: relative;
    margin: 0 0 28px;
    padding-left: 16px;

    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    color: #222;
}

.prodet-page.info .det-3 h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;

    width: 4px;
    height: 32px;

    background: #0473ff;
    border-radius: 2px;
}


/* Form Box */

.contact-form-box {
    padding: 30px 35px;

    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 5px;

    box-shadow: 0 5px 20px rgba(20, 60, 100, 0.05);
}


/* Form Text */

.contact-form-box label {
    font-size: 15px;
    color: #333;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    width: 100%;
    padding: 11px 14px;

    font-size: 15px;
    color: #333;

    background: #fff;
    border: 1px solid #dce3eb;
    border-radius: 3px;

    transition: border-color .2s ease,
                box-shadow .2s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus {
    outline: none;
    border-color: #0473ff;
    box-shadow: 0 0 0 3px rgba(4, 115, 255, 0.08);
}

.contact-form-box textarea {
    min-height: 130px;
    resize: vertical;
}


/* Submit Button */

.contact-form-box button,
.contact-form-box input[type="submit"],
.contact-form-box .submit {
    display: inline-block;

    padding: 11px 28px;

    color: #fff;
    background: #0473ff;

    border: 1px solid #0473ff;
    border-radius: 3px;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;
    transition: all .2s ease;
}

.contact-form-box button:hover,
.contact-form-box input[type="submit"]:hover,
.contact-form-box .submit:hover {
    background: #005dcc;
    border-color: #005dcc;
}


/* ========================================
   Recommended Links
   ======================================== */

.more-info {
    width: 100%;
    margin-top: 30px;
    padding: 0 0 35px;
}

.more-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Title */

.more-info-title {
    position: relative;

    margin-bottom: 18px;
    padding-left: 14px;

    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
}

.more-info-title::before {
    content: "";

    position: absolute;
    left: 0;
    top: 4px;

    width: 4px;
    height: 23px;

    background: #0473ff;
    border-radius: 2px;
}


/* Links Container */

.recommended-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}


/* Individual Link */

.recommended-links a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 52px;
    padding: 12px 35px 12px 16px;

    color: #444;
    background: #f7f9fc;

    border: 1px solid #e5eaf0;
    border-radius: 3px;

    font-size: 15px;
    line-height: 1.5;

    text-decoration: none;

    transition: all .2s ease;
}


/* Arrow */

.recommended-links a::after {
    content: "\f105";

    position: absolute;
    right: 15px;
    top: 50%;

    font-family: FontAwesome;
    font-size: 16px;

    color: #0473ff;

    transform: translateY(-50%);
    transition: transform .2s ease;
}


/* Hover */

.recommended-links a:hover {
    color: #0473ff;
    background: #fff;

    border-color: #0473ff;

    box-shadow: 0 4px 12px rgba(4, 115, 255, 0.08);
}

.recommended-links a:hover::after {
    transform: translate(3px, -50%);
}


/* ========================================
   Tablet
   ======================================== */

@media (max-width: 991px) {

    .recommended-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ========================================
   Mobile
   ======================================== */

@media (max-width: 768px) {

    .prodet-page.info .det-3 {
        margin-top: 30px;
        padding: 35px 0 40px;
    }

    .prodet-page.info .det-3 h2 {
        font-size: 24px;
    }

    .contact-form-box {
        padding: 22px 20px;
    }

    .recommended-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .more-info {
        margin-top: 25px;
    }

}


@media (max-width: 480px) {

    .prodet-page.info .det-3 h2 {
        font-size: 22px;
    }

    .contact-form-box {
        padding: 20px 15px;
    }

    .more-info-inner {
        padding: 0 15px;
    }

    .more-info-title {
        font-size: 19px;
    }

}