:root {
    --primary-color: #004a99;
    --secondary-color: #007bff;
    --light-bg: #f9f9fb;
    --card-bg: #ffffff;
    --text-color: #2c3e50;
    --soft-border: #e6e6e9;
    --shadow-elevation: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --brand-red: #e70012;
    --brand-red-dark: #b8000e;
    --brand-red-soft: #fff1f2;
    --ink-900: #111111;
    --ink-700: #333333;
    --ink-500: #555555;
    --ink-400: #7f8c8d;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.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;
}

.productList ul.grid-box.four li.column .content span.h6 a,
.productList ul.grid-box.four li.column .content span.h6 a:hover,
.productList ul.grid-box.four li.column .content span.h6 a:visited {
    color: #e70012;
}

.tag-hero-section.dr-hero-clean {
    padding: 30px 0;
    margin-bottom: 20px;
}

.tag-hero-section.dr-hero-clean .editor-content-1 {
    background: transparent;
    border: 0;
    border-left: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-500);
}

.content-matrix {
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr;
}

.editor-module {
    font-size: 14px;
    line-height: 2;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow-elevation);
    transition: transform 0.3s, box-shadow 0.3s;
}

.editor-module:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.editor-module strong {
    font-weight: bold;
}

.editor-module h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--text-color);
    border-bottom: 3px solid var(--brand-red);
    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;
    line-height: 1.2;
    text-align: center;
}

.editor-module h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}

.editor-module ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 16px 0;
}

.editor-module li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-700);
    padding: 6px 0 6px 22px;
    border-bottom: 1px dotted var(--soft-border);
    position: relative;
}

.editor-module li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 8px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(231, 0, 18, 0.12);
}

.editor-module li p {
    font-size: 14px;
    line-height: 2;
    color: var(--ink-500);
    margin: 6px 0;
}

.editor-module p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-500);
    margin: 0 0 14px 0;
}

.editor-module h4 + ul,
.editor-module h3 + ul {
    margin-top: 12px;
}

.editor-module ul + p {
    margin-top: 10px;
    padding-left: 4px;
    border-left: 3px solid var(--brand-red-soft);
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 8px;
    background: #fafafb;
    border-radius: 4px;
}

.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: 14px;
    line-height: 2;
    border-bottom: 1px solid var(--soft-border);
}

.spec-table th {
    background-color: var(--brand-red);
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 2;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table tbody tr:hover td {
    background-color: #fff7f8;
}

.product-preview-section {
    padding-top: 40px;
    border-top: 1px solid var(--soft-border);
    margin-bottom: 40px;
}

.product-preview-section h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--brand-red);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.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, transform 0.3s;
    text-align: center;
    border: 1px solid var(--soft-border);
}

.preview-card:hover {
    box-shadow: 0 12px 28px rgba(231, 0, 18, 0.15);
    transform: translateY(-4px);
    border-color: var(--brand-red);
}

.preview-card img {
    border-radius: 4px;
    transition: opacity 0.3s;
    max-width: 100%;
    height: auto;
}

.preview-card:hover img {
    opacity: 0.9;
}

.preview-card h3 {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-900);
    margin: 15px 0 5px 0;
    font-weight: 600;
}

.preview-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: var(--brand-red);
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 2;
    transition: background-color 0.3s, transform 0.3s;
}

.preview-card a:hover {
    background-color: var(--brand-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.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;
    line-height: 2;
}

.product-preview-section .list .box .con h6 {
    font-size: 16px;
    line-height: 1.8;
    font-family: Roboto, sans-serif;
    font-weight: 700;
    color: var(--ink-900);
    text-transform: capitalize;
    margin: 0;
}

.editor-module1 {
    margin: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 2;
}

.editor-module1 h3,
.editor-module1 h4,
.editor-module-faq h4 {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    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(--brand-red);
    margin: 8px auto 0;
    border-radius: 2px;
}

.editor-module1 p,
.editor-module1 li {
    font-size: 14px;
    line-height: 2;
    color: var(--ink-500);
}

.editor-module1 ul {
    padding-left: 0;
    list-style: none;
}

.editor-module1 ul li {
    position: relative;
    padding-left: 22px;
    border-bottom: 1px dotted var(--soft-border);
    padding-top: 6px;
    padding-bottom: 6px;
}

.editor-module1 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95em;
    width: 8px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(231, 0, 18, 0.12);
}

.jinfeng-ul-1 {
    display: flex;
    list-style: none;
    padding: 0 0 30px 0;
    margin: 0;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.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(231, 0, 18, 0.2);
    border-color: var(--brand-red);
}

.jinfeng-ul-1 li::before {
    content: '';
    width: 14px;
    height: 14px;
    margin-right: 12px;
    background: var(--brand-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(231, 0, 18, 0.15);
    flex: 0 0 auto;
}

.jinfeng-ul-1 li span {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-700);
    font-weight: 600;
    display: inline;
}

.editor-module-service h3 {
    color: var(--brand-red);
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red);
    font-weight: bold;
    text-align: left;
}

.editor-module-service p,
.editor-module-service li {
    font-size: 14px;
    line-height: 2;
    color: var(--ink-500);
}

.editor-module-faq {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #e6e6e9;
    border-radius: var(--radius);
    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;
    line-height: 2;
}

.editor-module-faq h3 {
    color: var(--brand-red);
    font-size: 24px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red);
    font-weight: bold;
}

.editor-module-faq ul {
    list-style: none;
    padding: 0;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
}

.editor-module-faq li {
    padding: 15px 18px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    line-height: 2;
}

.editor-module-faq li:first-child {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
    cursor: pointer;
    background-color: #fbfbfd;
    color: var(--ink-900);
    border-bottom: 1px solid #eee;
    position: relative;
    padding-right: 42px;
}

.editor-module-faq li:first-child:hover {
    background-color: #fff5f6;
    color: var(--brand-red-dark);
}

.editor-module-faq li:first-child::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--brand-red);
    border-bottom: 2px solid var(--brand-red);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
}

.editor-module-faq li:first-child.expanded::after {
    transform: translateY(-30%) rotate(225deg);
}

.editor-module-faq li:last-child {
    background-color: #ffffff;
    color: var(--ink-500);
    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: 800px;
    padding: 15px 18px;
    opacity: 1;
}

.more-info {
    background-color: #ffffff;
    border-radius: var(--radius);
    border: 1px solid var(--soft-border);
    box-shadow: var(--shadow-elevation);
    padding: 25px 30px;
    margin-top: 40px;
}

.more-info h2 {
    color: var(--ink-900);
    font-size: 20px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.more-info p {
    color: var(--ink-400);
    font-size: 14px;
    line-height: 2;
    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 15px 10px 0;
    padding: 0;
}

.more-info a {
    display: block;
    text-decoration: none;
    color: var(--brand-red-dark);
    background-color: var(--brand-red-soft);
    border: 1px solid rgba(231, 0, 18, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    line-height: 2;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.more-info a:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(231, 0, 18, 0.28);
    transform: translateY(-2px);
}

.dingruitags.dr-tags-block {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--soft-border);
}

.dingruitags.dr-tags-block .more-info {
    border-top: 4px solid var(--brand-red);
    position: relative;
    overflow: hidden;
}

.dingruitags.dr-tags-block .dr-tags-title {
    display: inline-block;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-red);
    letter-spacing: 0.3px;
}

.dingruitags.dr-tags-block .dr-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dingruitags.dr-tags-block .dr-tags-list li {
    margin: 0;
    padding: 0;
}

.dingruitags.dr-tags-block .dr-tags-list li a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 2;
    color: var(--ink-700);
    background: #f7f7fa;
    border: 1px solid var(--soft-border);
    border-radius: 4px;
    transition: all 0.25s ease;
    position: relative;
}

.dingruitags.dr-tags-block .dr-tags-list li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--brand-red);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    transition: background 0.25s ease;
}

.dingruitags.dr-tags-block .dr-tags-list li a:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(231, 0, 18, 0.25);
    transform: translateY(-2px);
}

.dingruitags.dr-tags-block .dr-tags-list li a:hover::before {
    background: #ffffff;
}

@media (max-width: 900px) {
    .content-matrix {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tag-title {
        font-size: 36px;
        line-height: 1.2;
    }
    .editor-module {
        margin-bottom: 20px;
    }
    .tag-page-container,
    header,
    .breadcrumb {
        padding-left: 15px;
        padding-right: 15px;
    }
    .more-info {
        padding: 20px;
    }
    .dingruitags.dr-tags-block .dr-tags-title {
        font-size: 18px;
        line-height: 1.6;
    }
}

@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;
    }
    .editor-module h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    .editor-module h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    .editor-module h4 {
        font-size: 18px;
        line-height: 1.6;
    }
    .more-info a {
        white-space: normal;
    }
    .dingruitags.dr-tags-block .dr-tags-list li a {
        font-size: 13px;
        line-height: 2;
    }
}