
     :root {
             --c-orange:     #e05500;
  --c-orange-lt:  #ff6a1a;
  --c-orange-dk:  #b33f00;
  --c-dark:       #16181f;
  --c-dark2:      #1e2028;
  --c-dark3:      #252830;
  --c-steel:      #2e3240;
  --c-rule:       #e3e5ec;
  --c-text:       #3c3f4e;
  --c-muted:      #7e8299;
  --c-bg:         #f4f5f8;
  --c-white:      #ffffff;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;
  --radius:       5px;
  --shadow:       0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.14);
  --ease:         0.24s cubic-bezier(.4,0,.2,1);           
        }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text);
  background: var(--c-bg);
        }
    

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }



.mbx {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-rule);
  padding: 10px 0;
}
 
.mbx .ui.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
  color: var(--c-muted);
}
 
.mbx a {
  color: var(--c-muted);
  transition: color var(--ease);
}
 
.mbx a:hover { color: var(--c-orange); }






        .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: 1450px;
  margin: 0 auto;
  padding: 0 20px 70px;
        }
        
        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 {
            background: var(--c-dark);
  border-radius: 0 0 8px 8px;
  padding: 52px 56px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
        }


.tag-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0, transparent 79px,
      rgba(255,255,255,.03) 79px, rgba(255,255,255,.03) 80px
    );
  pointer-events: none;
}


.tag-hero-section::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--c-orange-lt), var(--c-orange-dk));
}




        .tag-title {
              font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
        }

        .tag-hero-section .hero-section-p {
            font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-orange-lt);
  margin-bottom: 28px;
  position: relative;
        }
        
        .editor-content-1 {
             position: relative;
  color: #b0b5c8;
  font-size: 15px;
  line-height: 1.9;
        }



.editor-content-1 h1,
.editor-content-1 h2,
.editor-content-1 h3,
.editor-content-1 h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--c-white);
  margin: 24px 0 10px;
  line-height: 1.25;
}



.editor-content-1 h1 { font-size: 1.7rem; }
.editor-content-1 h2 {
  font-size: 1.25rem;
  padding-left: 14px;
  border-left: 3px solid var(--c-orange);
}


.editor-content-1 h3 { font-size: 1.05rem; color: var(--c-orange-lt); }
 
.editor-content-1 p  { margin-bottom: 14px; }
 
.editor-content-1 strong { color: var(--c-white); font-weight: 600; }
 
.editor-content-1 a {
  color: var(--c-orange-lt);
  border-bottom: 1px solid rgba(255,106,26,.35);
  transition: border-color var(--ease);
}
.editor-content-1 a:hover { border-bottom-color: var(--c-orange-lt); }
 
.editor-content-1 ul,
.editor-content-1 ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.editor-content-1 ul li,
.editor-content-1 ol li { margin-bottom: 7px; }
.editor-content-1 ul li::marker { color: var(--c-orange); }
 
.editor-content-1 img {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  margin: 18px 0;
}


.editor-content-1 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 18px 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
}


.editor-content-1 table thead tr {
  background: var(--c-steel);
}
.editor-content-1 table thead th {
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c8ccd8;
  text-align: left;
  border: none;
}


.editor-content-1 table thead th:first-child {
  border-left: 3px solid var(--c-orange);
}
.editor-content-1 table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--ease);
}
.editor-content-1 table tbody tr:nth-child(even) {
  background: rgba(255,255,255,.03);
}
.editor-content-1 table tbody tr:hover {
  background: rgba(224,85,0,.08);
}
.editor-content-1 table tbody td {
  padding: 10px 14px;
  color: #9aa0b8;
  vertical-align: middle;
}
.editor-content-1 table tbody td:first-child {
  color: #d4d8e8;
  font-weight: 600;
}



.editor-content-1 hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 24px 0;
}
 
.editor-content-1 blockquote {
  border-left: 3px solid var(--c-orange);
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #a0a6bc;
  font-style: italic;
  margin: 16px 0;
}



.inner-page.product-det-page {
  margin-bottom: 40px;
}
 
.product-det-2 {
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: 8px;
  padding: 36px 40px 40px;
  box-shadow: var(--shadow);
}
 
.product-det-2 .ui.container {
  max-width: 100%;
}


.prodet-content-8 .h3 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-dark);
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-rule);
  position: relative;
}
 
.prodet-content-8 .h3::before {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 56px; height: 2px;
  background: var(--c-orange);
}









.productList {
  overflow: hidden;
}
 

.productList .grid-box.three {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
 

.productList .column {
  padding: 0 !important;
  width: auto !important;
}
 

.productList .swiper-slide {
    background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  height: 100%;
}
 
.productList .swiper-slide:hover {
   border-color: var(--c-orange);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(224,85,0,.14);
}



.hwaq_img_btn_01.img-box {
   position: relative;
  overflow: hidden;
  background: var(--c-bg);
  width: 100%;
  height: 400px;
  flex-shrink: 0;
}
 
.hwaq_img_btn_01.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
 
.productList .swiper-slide:hover .hwaq_img_btn_01.img-box img {
  transform: scale(1.07);
}
 

.hwaq_img_btn_01 .ovrly {
    position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(22,24,31,.72));
  opacity: 0;
  transition: opacity var(--ease);
}
 
.productList .swiper-slide:hover .ovrly {
  opacity: 1;
}

.hwaq_img_btn_01 .buttons {
   position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: opacity var(--ease), transform var(--ease);
  display: flex;
  gap: 8px;
}
 
.productList .swiper-slide:hover .buttons {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
 
.hwaq_img_btn_01 .buttons .the_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--c-orange);
  border-radius: 50%;
  color: var(--c-white);
  font-size: 15px;
  transition: background var(--ease);
}
.hwaq_img_btn_01 .buttons .the_link:hover {
  background: var(--c-orange-lt);
}

.productList .swiper-slide .tit {
   font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--c-dark);
  padding: 16px 18px 8px;
  line-height: 1.4;
}
 
.productList .swiper-slide .tit a {
  color: var(--c-dark);
  transition: color var(--ease);
}
.productList .swiper-slide .tit a:hover {
  color: var(--c-orange);
}
 

.productList .swiper-slide > p {
   font-size: 13.5px;
  color: var(--c-muted);
  padding: 0 18px 20px;
  line-height: 1.7;
  flex: 1;
}






        .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;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
  margin-bottom: 36px;
        }


.main-content-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}



.editor-module,
.editor-module1 {
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: 7px;
  padding: 30px 34px;
  box-shadow: var(--shadow);
}
 

.info-column1.editor-module {
  border-top: 3px solid var(--c-orange);
}
 

.editor-module1 {
  background: #fbfcfd;
  border-left: 3px solid var(--c-orange);
}
 

 
.editor-module h1, .editor-module h2, .editor-module h3, .editor-module h4,
.editor-module1 h1, .editor-module1 h2, .editor-module1 h3, .editor-module1 h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-dark);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.25;
}
 
.editor-module h2, .editor-module1 h2 {
  font-size: 1.25rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-rule);
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.editor-module h2::before, .editor-module1 h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--c-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
 
.editor-module h3, .editor-module1 h3 {
  font-size: 1rem;
  color: var(--c-orange);
}
 
.editor-module p, .editor-module1 p {
  color: #4e5264;
  margin-bottom: 13px;
  font-size: 17px;
  line-height: 1.85;
}
 
.editor-module strong, .editor-module1 strong {
  color: var(--c-dark);
  font-weight: 600;
}
 
.editor-module ul, .editor-module ol,
.editor-module1 ul, .editor-module1 ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
 
.editor-module ul li, .editor-module ol li,
.editor-module1 ul li, .editor-module1 ol li {
  margin-bottom: 7px;
  color: #4e5264;
}
 
.editor-module ul li::marker, .editor-module1 ul li::marker {
  color: var(--c-orange);
}
 
.editor-module img, .editor-module1 img {
  border-radius: var(--radius);
  border: 1px solid var(--c-rule);
  margin: 14px 0;
}
 
.editor-module table, .editor-module1 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 14px 0 18px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
 
.editor-module table thead tr,
.editor-module1 table thead tr {
  background: var(--c-dark2);
}
 
.editor-module table thead th,
.editor-module1 table thead th {
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c8ccd8;
  text-align: left;
  border: none;
}
 
.editor-module table thead th:first-child,
.editor-module1 table thead th:first-child {
  border-left: 3px solid var(--c-orange);
}
 
.editor-module table tbody tr,
.editor-module1 table tbody tr {
  border-bottom: 1px solid var(--c-rule);
  transition: background var(--ease);
}
 
.editor-module table tbody tr:nth-child(even),
.editor-module1 table tbody tr:nth-child(even) {
  background: #f9fafc;
}
 
.editor-module table tbody tr:hover,
.editor-module1 table tbody tr:hover {
  background: #fff5f0;
}
 
.editor-module table tbody td,
.editor-module1 table tbody td {
  padding: 10px 14px;
  color: #4e5264;
  vertical-align: middle;
  font-size: 16px;
}
 
.editor-module table tbody td:first-child,
.editor-module1 table tbody td:first-child {
  font-weight: 600;
  color: var(--c-dark);
}
 
.editor-module a, .editor-module1 a {
  color: var(--c-orange);
  border-bottom: 1px solid rgba(224,85,0,.3);
  transition: border-color var(--ease);
}
 
.editor-module a:hover, .editor-module1 a:hover {
  border-bottom-color: var(--c-orange);
}


.sidebar-content-column {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}




.editor-module-service.editor-module {
  background: var(--c-dark);
  border: 1px solid var(--c-steel);
  border-top: 3px solid var(--c-orange);
  border-radius: 7px;
  padding: 24px 24px 26px;
  box-shadow: var(--shadow);
}
 

.editor-module-service h2,
.editor-module-service h3,
.editor-module-service h4 {
  color: var(--c-white) !important;
  border-bottom-color: var(--c-steel) !important;
}
 
.editor-module-service h2::before {
  background: var(--c-orange) !important;
}
 
.editor-module-service p {
  color: #9aa0b8 !important;
}
 



 
.editor-module-service ul li,
.editor-module-service ol li {
  color: #9aa0b8 !important;
  background: linear-gradient(180deg, #cfddf017, #995624);
}
 
.editor-module-service strong {
  color: var(--c-white) !important;
}
 
.editor-module-service table thead tr {
  background: var(--c-steel) !important;
}
 
.editor-module-service table tbody tr {
  border-bottom-color: rgba(255,255,255,.06) !important;
}
 
.editor-module-service table tbody tr:nth-child(even) {
  background: rgba(255,255,255,.03) !important;
}
 
.editor-module-service table tbody tr:hover {
  background: rgba(224,85,0,.08) !important;
}
 
.editor-module-service table tbody td {
  color: #9aa0b8 !important;
}
 
.editor-module-service table tbody td:first-child {
  color: #d8dce8 !important;
}
 
.editor-module-service a {
  color: var(--c-orange-lt) !important;
  border-bottom-color: rgba(255,106,26,.3) !important;
}
 

 .editor-module-faq {
  background: var(--c-white);
  border: 1px solid var(--c-rule);
  border-left: 3px solid var(--c-orange);
  border-radius: 7px;
  padding: 24px 24px 26px;
  box-shadow: var(--shadow);
}
 
.editor-module-faq h2,
.editor-module-faq h3,
.editor-module-faq h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-dark);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.25;
}
 
.editor-module-faq h2 {
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-rule);
}
 
.editor-module-faq h3 {
  font-size: .95rem;
  color: var(--c-orange);
  margin-top: 16px;
}
 
.editor-module-faq p {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
 
.editor-module-faq strong {
  color: var(--c-dark);
  font-weight: 600;
}
 
.editor-module-faq ul,
.editor-module-faq ol {
  padding-left: 18px;
  margin-bottom: 12px;
}
 
.editor-module-faq ul li,
.editor-module-faq ol li {
  font-size: 13.5px;
  color: var(--c-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}
 
.editor-module-faq ul li::marker {
  color: var(--c-orange);
}
 
.editor-module-faq a {
  color: var(--c-orange);
  border-bottom: 1px solid rgba(224,85,0,.25);
  transition: border-color var(--ease);
}
 
.editor-module-faq a:hover {
  border-bottom-color: var(--c-orange);
}
 
 

 




        .editor-module {
            font-size: 14px;
            background-color: var(--card-bg);
            margin-bottom: 30px;
            transition: transform 0.3s;
            border-top: 3px solid var(--c-orange);
border-radius: 7px;
padding: 24px 24px 26px;
box-shadow: var(--shadow);

        }
        .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;
             border-left: 3px solid var(--c-orange);
background: linear-gradient(180deg, #9d979417, var(--c-orange-dk));
        }
        
        .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: var(--c-white);
  border: 1px solid var(--c-rule);
  border-left: 3px solid var(--c-orange);
  border-radius: 7px;
  padding: 24px 24px 26px;
  box-shadow: var(--shadow);
}
.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-size: .95rem;
  color: var(--c-orange);
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.25;
    
}
.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: var(--c-white);
  border: 1px solid var(--c-rule);
  border-radius: 7px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 4px;
  /* 标题文字排列 */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}


.more-info {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-dark2);
  padding: 12px 20px;
}



.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: inline-block;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 9px 20px 9px 26px;
  border-right: 1px solid var(--c-rule);
  border-top: 1px solid var(--c-rule);
  position: relative;
  transition: color var(--ease), background var(--ease), padding-left var(--ease);
  white-space: nowrap;
}


.more-info a::before {
  content: '›';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--c-orange);
  line-height: 1;
  transition: left var(--ease);
}
 
.more-info a:hover {
  color: var(--c-orange);
  background: #fff8f5;
  padding-left: 30px;
}
 
.more-info a:hover::before {
  left: 14px;
}
 
.more-info a:last-child {
  border-right: none;
}



.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;
            }


 .content-matrix {
    grid-template-columns: 1fr;
  }
 
  .sidebar-content-column {
    position: static;
  }
 
  .productList .grid-box.three {
    grid-template-columns: repeat(2, 1fr) !important;
  }
 
  .tag-hero-section {
    padding: 36px 28px 32px;
  }
 
  .product-det-2 {
    padding: 26px 20px 28px;
  }



            .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: 600px) {
  .productList .grid-box.three {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
 
  .more-info a {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--c-rule);
  }
 
  .editor-module,
  .editor-module1,
  .editor-module-faq {
    padding: 20px 18px;
  }
}


        @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;
            }
        }
}