:root {
  --ink: #17212b;
  --muted: #5d6b78;
  --line: #d8e0e7;
  --soft: #f4f7f9;
  --panel: #ffffff;
  --brand: #087a3a;
  --brand-dark: #066931;
  --accent: #c98b2b;
  --danger: #9a3a2f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fffdf9;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p,
li,
a,
span,
small,
strong {
  overflow-wrap: break-word;
}

.topbar {
  display: none;
  background: #f7f1e7;
  color: #5e5548;
  border-bottom: 1px solid #e6dac9;
  font-size: 13px;
}

.topbar-inner,
.nav-inner,
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid #e3d8c7;
  box-shadow: 0 8px 18px rgba(42, 35, 24, 0.05);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand:hover,
.brand:focus {
  text-decoration: none;
}

.brand img {
  width: 92px;
  height: auto;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand span {
  display: block;
  color: #1f2d24;
  font-size: 12px;
  font-weight: 500;
}

.brand-text > span {
  color: #69756b;
}

.zh {
  margin-top: 6px;
  color: #6a7680;
  font-size: 14px;
}

.page-hero .zh,
.hero .zh {
  color: #6a7680;
  font-size: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #223128;
  font-size: 14px;
}

.nav-links a:hover,
.nav-dropbtn:hover {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 12px;
}

.nav-dropbtn {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 150px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.16);
  color: var(--ink);
  display: none;
  transform: translateX(-50%);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  padding: 8px 10px;
  border-radius: 4px;
}

.nav-menu a:hover {
  background: var(--soft);
  color: var(--brand);
}

.nav-quote {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(8, 122, 58, 0.12);
}

.btn.secondary {
  background: #fff;
  color: var(--brand);
  box-shadow: none;
  border-color: var(--brand);
}

.hero {
  background: linear-gradient(90deg, rgba(8, 74, 69, 0.94), rgba(8, 74, 69, 0.62)), url("../../template/pc/assets/images/placeholder-factory-workshop-overview.svg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 72px 0 88px;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: #e6f0ee;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  background: #fff;
  padding: 24px;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 28px;
  line-height: 1.1;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h2,
.page-section h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(42, 35, 24, 0.05);
}

.card-body {
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
	color: var(--brand);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9eef2;
  border-bottom: 1px solid var(--line);
}

.media.wide {
  aspect-ratio: 16 / 9;
}

.factory-page .page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%),
    url("../../template/pc/assets/images/plywood-production-workshop-wide-view-1600.webp");
  background-size: cover;
  background-position: center;
}

.factory-page .card .media {

  min-height: 0;

}



.factory-video-link {

  position: relative;

  display: block;

  overflow: hidden;

}



.factory-video-link:hover .play-button {

  transform: translate(-50%, -50%) scale(1.08);

}



.play-button {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  transition: transform 0.2s ease;

  line-height: 0;

  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));

  cursor: pointer;

}
  min-height: 0;
}

.quality-page .page-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%),
    url("../../template/pc/assets/images/plywood-thickness-measurement-960.webp");
  background-size: cover;
  background-position: center;
}

.quality-mini-grid {
  grid-template-columns: 1fr;
  align-content: start;
}

.quality-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.quality-check-list {
  display: grid;
  gap: 14px;
}

.quality-check-item {
/*
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  */
  display:flex;flex-wrap:wrap;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(42, 35, 24, 0.04);
}

.quality-check-item .txt{ width:calc(100% - 58px)}

.quality-check-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef8f6;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
}

.quality-check-item h3{margin:0 0 6px;font-size:20px;color:var(--brand)}
.quality-check-item p{margin:0;color:var(--muted)}
.quality-check-item .im{ width:100%; overflow:hidden}
.quality-check-item .im img{ display:block; width:100%}

.quality-test-section .quality-check-item p,
.quality-test-section .card p {
  color: var(--ink);
}

.quality-test-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quality-test-media-grid .media.wide {
  aspect-ratio: 4 / 3;
}

.badge {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid #bad5d0;
  color: var(--brand-dark);
  background: #eef8f6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #e6dccd;
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 14px 34px rgba(42, 35, 24, 0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f7f1e7;
  color: #243127;
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 0) 100%),
    url("../../template/pc/assets/images/senpiao-film-faced-plywood-production-workshop-1200x750.webp");
  background-size: cover;
  background-position: center;
  color: var(--ink);
  padding: 66px 0 58px;
  border-bottom: 1px solid #e3d8c7;
}

.page-hero h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  max-width: 780px;
  line-height: 1.08;
}

.page-hero p {
  color: #4f5a52;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.65;
}

.page-section {
  padding: 66px 0;
  background: #fffdf9;
}

.page-section.alt {
  background: #f7f1e7;
}

.page-section.alt.factory-modules-section {
  background: #E1EFE6;
}

.factory-modules-section .card p {
  color: var(--ink);
}

.page-section.alt.factory-photo-show-section {
  background: #E1EFE6;
}

.factory-photo-show-section .card p,
.factory-photo-show-section .card p a {
  color: var(--ink);
}

.factory-related-checks-section .card p,
.factory-related-checks-section .card p a {
  color: var(--ink);
}

.page-section.alt.quality-board-photos-section {
  background: #E1EFE6;
}

.quality-board-photos-section .card p {
  color: var(--ink);
}

.page-section.alt.quality-buyer-confirm-section {
  background: #E1EFE6;
}

.quality-buyer-confirm-section .card p,
.quality-buyer-confirm-section .card p a {
  color: var(--ink);
}

.quality-related-pages-section .card p,
.quality-related-pages-section .card p a {
  color: var(--ink);
}

.certifications-document-scope-section > .container > div:first-child > p,
.certifications-document-scope-section .card p,
.certifications-certificate-details-section .home-cert-card p {
  color: var(--ink);
}

.page-section.alt.certifications-certificate-details-section {
  background: #E1EFE6;
}

.certifications-document-checklist-section .list {
  color: var(--ink);
}

.page-section.certificate-related-pages-section,
.page-section.alt.certificate-related-pages-section {
  background: #E1EFE6;
}

.certificate-related-pages-section .card p,
.certificate-related-pages-section .card p a {
  color: var(--brand);
}

.note {
  padding: 16px 18px;
  background: #fff8ea;
  border: 1px solid #ead4a6;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  color: #573d12;
}

.certification-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: stretch;
}

.certification-copy {
  display: grid;
  gap: 18px;
}

.certification-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.certification-points {
  display: grid;
  gap: 12px;
}

.certification-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 12px;
  padding: 14px 16px;
  background: #f8fbf6;
  border: 1px solid #dfe8d7;
  border-radius: 8px;
}

.certification-point span {
  grid-row: span 2;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.certification-point strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.certification-point p {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.55;
}

.certification-card .media.wide {
  aspect-ratio: 16 / 8.2;
}

.certification-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.certification-card .media.wide {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.certification-card .card-body {
  padding: 24px 26px;
}

.certification-card h3 {
  font-size: 26px;
}

.certification-card p {
  font-size: 17px;
  line-height: 1.55;
}

.certification-scope-note {
  grid-column: 1 / -1;
}

.case-private-note {
  background: #E1EFE6;
  border-color: #a9d4b9;
  border-left-color: var(--brand);
  color: var(--brand);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  border: 1px solid #e6dccd;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  counter-increment: step;
  box-shadow: 0 12px 28px rgba(42, 35, 24, 0.05);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.step img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}

.step strong {
  display: block;
  color: var(--ink);
  line-height: 1.35;
}

.step p {
  margin: 8px 0 0;
  color: #58665d;
  line-height: 1.5;
}

.supply-process-hero {
  background: #f7faf8;
  padding: 46px 0 58px;
}

.supply-keyword-strip {
  background: #fff;
  border-bottom: 1px solid rgba(14, 117, 66, 0.12);
  box-shadow: 0 12px 26px rgba(20, 47, 33, 0.04);
}

.supply-keyword-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.supply-keyword-grid a {
  display: grid;
  gap: 5px;
  /*min-height: 86px;*/
  padding: 18px 20px;
  border-right: 1px solid rgba(14, 117, 66, 0.12);
  color: #223229;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.supply-keyword-grid a:first-child {
  border-left: 1px solid rgba(14, 117, 66, 0.12);
}

.supply-keyword-grid a:hover,
.supply-keyword-grid a:focus-visible {
  background: #e8f4ed;
  color: var(--brand);
}

.supply-keyword-grid span {
  color: var(--brand);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.supply-keyword-grid strong {
  color: inherit;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.supply-process-hero h2 {
  margin: 0;
  text-align: center;
  color: #0b1210;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.supply-process-kicker {
  position: relative;
  margin: 18px 0 8px;
  text-align: center;
  color: var(--brand);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
  font-weight: 800;
}

.supply-process-kicker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%);
}

.supply-process-intro {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
  color: #28352e;
  font-size: 16px;
  line-height: 1.45;
}

.supply-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.supply-process-card {
  overflow: hidden;
  border: 1px solid rgba(14, 117, 66, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 47, 33, 0.08);
}

.supply-process-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.supply-process-body {
  padding: 16px 16px 18px;
}

.supply-process-body h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #1f2924;
  font-size: 18px;
  line-height: 1.18;
}

.supply-process-body h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.supply-process-body h3 {
  position: relative;
  margin: 0 0 13px;
  padding-bottom: 9px;
  color: var(--brand);
  font-size: 15px;
  line-height: 1.28;
}

.supply-process-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(14, 117, 66, 0.72);
}

.supply-process-body p {
  margin: 0 0 14px;
  color: #2f3a34;
  font-size: 13px;
  line-height: 1.56;
}

.supply-process-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #1e2b24;
  font-size: 12.5px;
  line-height: 1.35;
  list-style: none;
}

.supply-process-body li {
  position: relative;
  padding-left: 20px;
}

.supply-process-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 13px;
  height: 13px;
  border: 1.6px solid var(--brand);
  border-radius: 50%;
}

.supply-process-body li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.46em;
  width: 5px;
  height: 3px;
  border-left: 1.4px solid var(--brand);
  border-bottom: 1.4px solid var(--brand);
  transform: rotate(-45deg);
}

.supply-process-note {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(14, 117, 66, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 47, 33, 0.07);
}

.supply-process-note-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 20px;
  border-right: 1px solid rgba(14, 117, 66, 0.22);
  color: var(--brand);
}

.supply-process-note-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}

.supply-process-note-title svg,
.supply-process-flow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.supply-process-note-title strong {
  max-width: 185px;
  font-size: 16px;
  line-height: 1.2;
}

.supply-process-note p {
  margin: 0;
  color: #25352d;
  font-size: 13px;
  line-height: 1.5;
}

.supply-process-flow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--brand);
}

.supply-process-flow span {
  display: inline-flex;
}

.supply-process-flow svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.45;
}

.supply-process-flow b {
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
}

.certificate-image-card {
  overflow: hidden;
}

.certificate-detail-image {
  aspect-ratio: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #fff;
}

.certificate-detail-image-portrait {
  max-height: 86vh;
}

.footer {
  background: #17231e;
  color: #dce4ea;
  padding: 54px 0 28px;
}

.footer p {
  margin: 0;
  color: #aebbc5;
}

.footer h3 {
  margin: 0 0 18px;
  color: #dce4ea;
  font-size: 18px;
  line-height: 1.2;
}

.footer a {
  color: #aebbc5;
}

.footer-about p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-brand-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer-products p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact-line + .footer-contact-line {
  margin-top: 8px;
}

.footer-contact-line svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  fill: none;
  stroke: #dce4ea;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-qr {
  min-width: 0;
}

.footer-qr h3 {
  margin-bottom: 14px;
}

.footer-qr-list {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-qr figure {
  margin: 0;
  text-align: center;
}

.footer-qr img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
}

.footer-qr figcaption {
  margin-top: 8px;
  color: #dce4ea;
  font-size: 12px;
  font-weight: 700;
}

.footer-social {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.footer-social-title {
  margin-right: 2px;
  color: #aebbc5;
  font-size: 14px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(220, 228, 234, 0.2);
  border-radius: 50%;
  color: #dce4ea;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(220, 228, 234, 0.42);
}

.footer-social-link.social-disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.footer-social-link.social-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(220, 228, 234, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(170px, 0.76fr) minmax(220px, 0.86fr) minmax(330px, 1fr);
  gap: 14px 44px;
  align-items: start;
}

.footer-review-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 224, 231, 0.36);
  color: #8b978f;
  font-size: 13px;
}

.footer-review-page,
.footer-review-meta {
  display: block;
  min-width: 0;
}

.footer-review-meta {
  text-align: right;
}

.footer-home-trial a {
  text-decoration: none;
}

.footer-home-trial .footer-grid {
  grid-template-columns: minmax(380px, 1.18fr) minmax(240px, 0.8fr) minmax(250px, 0.78fr) minmax(310px, 0.98fr);
  gap: 14px 22px;
}

.footer-home-trial .footer-brand-logo {
  width: min(282px, 100%);
  margin-bottom: 16px;
}

.footer-home-trial .footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-home-trial .footer-about p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.36;
}

.footer-home-trial .footer-products h3,
.footer-home-trial .footer-contact h3,
.footer-home-trial .footer-qr h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
}

.footer-home-trial .footer-products h3::after,
.footer-home-trial .footer-contact h3::after,
.footer-home-trial .footer-qr h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.footer-home-trial a:hover,
.footer-home-trial a:focus-visible {
  color: #fff;
  text-decoration: none;
}

.footer-home-trial .footer-products p {
  display: grid;
  gap: 12px;
  line-height: 1.35;
}

.footer-home-trial .footer-products br {
  display: none;
}

.footer-home-trial .footer-products a {
  display: inline-flex;
  width: 100%;
  max-width: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #dce4ea;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-home-trial .footer-products a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

.footer-home-trial .footer-products a:hover,
.footer-home-trial .footer-products a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-home-trial .footer-contact p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-home-trial .footer-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-home-trial .footer-contact-line + .footer-contact-line {
  margin-top: 0;
}

.footer-home-trial .footer-contact-line svg {
  margin-top: 0;
  stroke: #dce4ea;
}

.footer-home-trial .footer-contact-line a {
  color: #dce4ea;
}

.footer-home-trial .footer-contact-line span {
  white-space: nowrap;
}

.footer-home-trial .footer-qr-list {
  gap: 14px;
}

.footer-home-trial .footer-qr figure {
  transition: transform 0.18s ease;
}

.footer-home-trial .footer-qr figure:hover {
  transform: translateY(-2px);
}

.footer-home-trial .footer-social {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

.footer-home-trial .footer-social-title {
  color: #dce4ea;
  margin-right: 4px;
  font-size: 14px;
}

.footer-home-trial .footer-social-link {
  width: 28px;
  height: 28px;
  border-color: rgba(8, 122, 58, 0.82);
  color: #dce4ea;
  background: rgba(8, 122, 58, 0.12);
}

.footer-home-trial .footer-social-link svg {
  width: 11px;
  height: 11px;
}

.footer-home-trial .footer-social-link:hover,
.footer-home-trial .footer-social-link:focus-visible {
  color: #fff;
  background: #087a3a;
  border-color: #087a3a;
}

.footer-home-trial .footer-social-link.social-disabled {
  border-color: rgba(8, 122, 58, 0.55);
  color: rgba(220, 228, 234, 0.7);
  opacity: 1;
}

.footer-home-trial .footer-social-link.social-disabled:hover {
  background: rgba(8, 122, 58, 0.12);
  border-color: rgba(8, 122, 58, 0.55);
}

.home-willow .topbar {
  display: none;
  background: #f7f1e7;
  color: #5e5548;
  border-bottom: 1px solid #e6dac9;
}

.home-willow .nav {
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid #e3d8c7;
  box-shadow: 0 8px 18px rgba(42, 35, 24, 0.05);
  backdrop-filter: blur(12px);
}

.home-willow .nav-inner {
  min-height: 74px;
  gap: 32px;
}

.home-willow .brand img {
  width: 92px;
  filter: none;
}

.home-willow .brand span {
  color: #1f2d24;
}

.home-willow .brand-text > span {
  color: #69756b;
}

.mobile-nav-actions {
  display: none;
}

.home-willow .nav-links {
  padding: 0;
  background: transparent;
  border-radius: 0;
  gap: 20px;
  color: #223128;
  font-size: 14px;
}

.home-willow .nav-links a,
.home-willow .nav-dropbtn {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.home-willow .nav-links a:hover,
.home-willow .nav-dropbtn:hover,.home-willow .nav-links a.active {
  color: var(--brand);
}

.home-willow .nav-links a::after,
.home-willow .nav-dropbtn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--brand);
  opacity: 0;
}

.home-willow .nav-links a:hover::after,
.home-willow .nav-dropbtn:hover::after,.home-willow .nav-links a.active::after {
  opacity: 1;
}

.home-willow .nav-inquiry {
  position: relative;
  margin-left: 0;
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: #087a3a;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(8, 122, 58, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.home-willow .nav-links a.nav-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
}

.home-willow .nav-links a.nav-inquiry:hover,
.home-willow .nav-links a.nav-inquiry:focus {
  color: #fff;
}

.home-willow .nav-inquiry::after {
  display: none;
}

.home-willow .nav-inquiry:hover,
.home-willow .nav-inquiry:focus {
  background: #0a8a43;
  color: #fff;
  outline: 0;
  box-shadow: 0 14px 28px rgba(8, 122, 58, 0.28);
  transform: translateY(-1px);
}

.home-willow .nav-inquiry:hover::after,
.home-willow .nav-inquiry:focus::after {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 650px;
  color: #17212b;
  overflow: hidden;
  background: #efe3cf;
}

.home-hero-carousel {
  position: relative;
  min-height: 650px;
}

.home-hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 237, 221, 0.98) 0%, rgba(246, 237, 221, 0.9) 38%, rgba(232, 214, 184, 0.58) 70%, rgba(42, 34, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(111, 78, 35, 0.12), rgba(111, 78, 35, 0.12)),
    var(--carousel-hero-image, url("../../template/pc/assets/images/home-hero-carousel-ad1-1600x900.webp"));
  background-size: cover;
  background-position: center;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.home-hero-slide.is-active {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: auto;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 237, 221, 0.98) 0%, rgba(246, 237, 221, 0.9) 38%, rgba(232, 214, 184, 0.58) 70%, rgba(42, 34, 23, 0.2) 100%),
    linear-gradient(0deg, rgba(111, 78, 35, 0.12), rgba(111, 78, 35, 0.12)),
    url("../../template/pc/assets/images/senpiao-film-faced-plywood-production-workshop-1200x750.webp");
  background-size: cover;
  background-position: center;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #d2bea0;
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 48px));
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.32fr);
  align-items: center;
  gap: 34px;
  padding: 44px 0;
  transform: translateY(78px);
}

.home-hero-copy {
  max-width: 960px;
}

.home-hero-number {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.home-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #8a5d1c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 940px;
  margin: 0 0 18px;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.home-hero .hero-title {
  max-width: 940px;
  margin: 0 0 18px;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.home-hero p {
  max-width: 860px;
  margin: 0 0 20px;
  color: #4f5a52;
  font-size: 16px;
  line-height: 1.65;
}

.home-mobile-summary {
  display: none;
}

.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 22px;
  color: #304238;
  font-size: 14px;
  font-weight: 600;
}

.home-hero-tags span {
  position: relative;
}

.home-hero-tags span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8a5d1c;
  transform: translateY(-50%);
}

.home-hero .zh {
  display: none;
}

.home-quote-panel {
  padding: 24px;
  background: rgba(30, 45, 39, 0.94);
  border: 1px solid rgba(213, 160, 75, 0.36);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(42, 35, 24, 0.18);
  color: #fff;
}

.home-quote-panel .btn {
  width: 100%;
  margin-top: 12px;
  min-height: 48px;
  box-shadow: none;
}

.home-quote-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
  color: #fff;
}

.home-quote-panel p {
  margin: 0 0 12px;
  color: #d7e0dc;
  font-size: 15px;
}

.home-quote-panel .list {
  color: #d7e0dc;
}

.home-hero-controls {
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
}

.home-hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(8, 122, 58, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.home-hero-dot.is-active {
  background: var(--brand);
  border-color: var(--brand);
}

.home-stats {
  border-top: 1px solid #087a3a;
  border-bottom: 1px solid #087a3a;
  background: #087a3a;
}

.home-stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  background: #087a3a;
}

.home-stat-item {
  display: block;
  min-height: 96px;
  padding: 22px 34px 18px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  position: relative;
  overflow: visible;
}

.home-stat-item:last-child {
  border-right: 0;
}

.home-stat-icon {
  display: inline-flex;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  transform: translateY(-2px);
  color: #fff;
}

.home-stat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
}

.home-stats strong {
  display: block;
  color: #fff;
  font-size: 23px;
  line-height: 1.15;
  white-space: normal;
}

.home-stats small {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-stats span {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.home-section {
  padding: 70px 0;
}

.home-faq-section {
  padding-bottom: 66px;
}

#company-profile {
  padding-bottom: 56px;
}

.home-band {
  background: var(--soft);
}

.about-trade-fair-section {
  background: #E1EFE6;
}

.products-quote-check-section {
  background: #E1EFE6;
}

.products-quote-check-section .card-body p,
.products-quote-check-section .card-body p a {
  color: var(--ink);
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.home-section-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.home-section-head > p,
.home-section-head > div:last-child p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.about-profile-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.about-profile-head .home-kicker {
  margin-bottom: 8px;
}

.about-profile-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-product-card:hover {
  border-color: rgba(8, 122, 58, 0.36);
  box-shadow: 0 18px 38px rgba(8, 74, 69, 0.13);
  transform: translateY(-4px);
}

.home-product-card.featured {
  border-color: #a9d2c4;
  box-shadow: 0 16px 36px rgba(8, 122, 58, 0.12);
  background: linear-gradient(180deg, #fff 0%, #fbfffd 100%);
}

.home-product-image-link {
  display: block;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.home-product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 12px 14px 0;
  object-fit: contain;
  background: #fff;
  transition: transform 0.28s ease;
}

.home-product-card:hover img {
  transform: scale(1.04);
}

.home-product-card > div {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.home-product-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
	color: var(--brand);
}

.home-product-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.home-product-card a,
.home-support-item strong {
  color: var(--brand);
  font-weight: 700;
}

.home-product-card a {
  margin-top: auto;
}

.home-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.home-profile img,
.home-profile-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e9eef2;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-profile p {
  margin: 0;
  color: var(--ink);
}

.about-profile-green-copy p {
  color: var(--ink);
}

.home-profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  min-height: 100%;
  padding: 32px 34px;
  background: #fffdf9;
  border: 1px solid #e5dccd;
  border-radius: 8px;
}

.home-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.home-video-feature video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111820;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.home-video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: #fffdf9;
  border: 1px solid #e5dccd;
  border-radius: 8px;
}

.home-video-copy h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.home-video-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.home-video-copy .btn {
  align-self: flex-start;
}

.home-exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-exhibition-scroll {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 300px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 10px;
  scroll-snap-type: inline mandatory;
}

.home-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-cert-card,
.home-cert-summary,
.home-cert-placeholder {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.home-cert-card {
  grid-template-rows: auto 1fr;
}

.home-cert-card,
.home-blog-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-cert-card:hover,
.home-blog-card:hover {
  border-color: rgba(8, 122, 58, 0.36);
  box-shadow: 0 18px 38px rgba(8, 74, 69, 0.13);
  transform: translateY(-4px);
}

.home-cert-image-link,
.home-blog-image-link {
  display: block;
  overflow: hidden;
  background: #f8fafb;
  border-bottom: 1px solid var(--line);
}

.home-cert-image-link {
  aspect-ratio: 16 / 11;
}

.home-cert-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f8fafb;
  transition: transform 0.28s ease;
}

.home-cert-card:hover img,
.home-blog-card:hover img {
  transform: scale(1.04);
}

.home-cert-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.home-cert-card > div .btn {
  margin-top: auto;
  align-self: center;
}

.home-cert-summary,
.home-cert-placeholder {
  padding: 22px;
}

.home-cert-summary {
  align-content: center;
  background: #fffdf9;
  border-color: #e5dccd;
}

.home-cert-placeholder {
  align-content: start;
  background: #fffdf9;
  border: 1px dashed #d8c7ad;
}

.home-cert-placeholder-mark {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  margin: -22px -22px 20px;
  width: calc(100% + 44px);
  background: #f5efe4;
  color: #355142;
  font-size: 34px;
  font-weight: 800;
  border-bottom: 1px dashed #d8c7ad;
}

.home-cert-card span,
.home-cert-summary span,
.home-cert-placeholder span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-cert-card h3,
.home-cert-summary h3,
.home-cert-placeholder h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.22;
	color: var(--brand);
}

.home-cert-card p,
.home-cert-summary p,
.home-cert-placeholder p {
  margin: 0 0 16px;
  color: var(--muted);
}

.home-cert-summary .btn,
.home-cert-placeholder .btn {
  justify-self: start;
}

.home-exhibition-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  scroll-snap-align: start;
}

.home-exhibition-card:hover {
  border-color: #b78a48;
  box-shadow: 0 14px 34px rgba(29, 45, 39, 0.12);
}

.home-exhibition-image-link {
  display: block;
  color: inherit;
}

.home-exhibition-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 410 / 528;
  object-fit: contain;
  background: #e9eef2;
  border-bottom: 1px solid var(--line);
}

.home-exhibition-card > div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: flex-start;
  padding: 20px;
}

.home-exhibition-card > div .btn {
  margin-top: 16px;
  align-self: center;
  justify-self: center;
}

.home-exhibition-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-exhibition-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.22;
	color: var(--brand);
}

.home-exhibition-card p {
  margin: 0;
  color: var(--muted);
}

.exhibition-detail-figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.exhibition-detail-figure img {
  display: block;
  width: min(100%, 760px);
  max-height: 82vh;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
}

.exhibition-detail-body {
  max-width: 920px;
  margin: 28px auto 0;
}

.exhibition-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.exhibition-meta-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.exhibition-meta-grid span,
.exhibition-list span.tt {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exhibition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.exhibition-list div.ex-txt {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.exhibition-list ul {
  margin-bottom: 0;
}
.exhibition-list ul li p{ padding:0; margin:0}

.home-support-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.home-support-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: #1e2d27;
  color: #fff;
}

.home-support-intro .home-kicker {
  color: #d5a04b;
}

.home-support-intro h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.16;
  color: #fff;
}

.home-support-intro p {
  margin: 0 0 22px;
  color: #d7e0dc;
}

.home-support-intro .btn {
  align-self: flex-start;
}

.home-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-support-item {
  min-height: 0;
  padding: 26px;
  background: #fff;
  text-decoration: underline;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-support-item:nth-child(2n) {
  border-right: 0;
}

.home-support-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-support-item:last-child {
  border-right: 0;
}

.home-support-item:hover {
  background: #fffaf1;
  transform: translateY(-1px);
}

.home-support-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border: 1px solid #087a3a;
  border-radius: 50%;
  background: #087a3a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.about-proof-section .home-support-item span,
.about-serves-section .home-support-item span {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.about-proof-section .home-support-item p {
  color: var(--ink);
}

.home-support-item strong {
  display: block;
  color: var(--brand);
  font-size: 19px;
  line-height: 1.25;
}

.home-support-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.about-serves-section .home-support-item p,
.about-supply-support-section .card-body p {
  color: var(--ink);
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.home-blog-image-link {
  aspect-ratio: 16 / 10;
}

.home-blog-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e9eef2;
  transition: transform 0.28s ease;
}

.home-blog-card > div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 22px;
}

.home-blog-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-blog-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
	color: var(--brand);
}

.home-blog-card p {
  margin: 0;
  color: var(--muted);
}

.home-blog-card > div > a {
  margin-top: 14px;
  align-self: end;
  color: var(--brand);
  font-weight: 700;
}

.home-faq-preview {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-faq-preview details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.home-faq-preview summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 72px 28px 32px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  position: relative;
}

.home-faq-preview summary::-webkit-details-marker {
  display: none;
}

.home-faq-preview summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.home-faq-preview details[open] summary::after {
  content: "-";
}

.home-faq-preview p {
  max-width: 780px;
  margin: -8px 72px 28px 32px;
  color: var(--muted);
}

.products-faq-section .home-faq-preview p {
  color: var(--brand);
}

.home-cta {
  padding: 40px 0;
  background: #EFF4F1;
  color: var(--ink);
}

.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-cta h2 {
  margin: 0 0 12px;
  font-size: 36px;
}

.home-cta p {
  max-width: 680px;
  color: var(--muted);
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-tags span {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px 22px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.cta-whatsapp {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.cta-whatsapp:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.cta-email {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.cta-email:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(8, 122, 58, 0.06);
}

.visual-cta {
  padding: 57px 0 73px;
  background: #f3f8f5;
}

.visual-cta .container {
  width: min(var(--max), calc(100% - 32px));
}

.visual-cta .home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.visual-cta-copy {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.visual-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transform: translateY(-20px);
  background: #087a3a;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(8, 122, 58, 0.14);
}

.visual-cta-icon svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.visual-cta-icon circle {
  fill: #087a3a;
}

.visual-cta-content {
  min-width: 0;
}

.visual-cta h2 {
  margin: 0 0 14px;
  color: #101820;
  max-width: 760px;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: 0;
  white-space: normal;
}

.visual-cta p {
  max-width: 560px;
  margin: 0;
  color: #101820;
  font-size: 15px;
  line-height: 1.55;
}

.visual-cta .cta-tags {
  gap: 8px 18px;
  margin-top: 16px;
  flex-wrap: nowrap;
}

.visual-cta .cta-tags span {
  gap: 8px;
  color: #101820;
  font-size: 13px;
  letter-spacing: 0;
  white-space: nowrap;
}

.visual-cta .cta-tags svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.visual-cta .cta-tags circle {
  fill: #087a3a;
}

.visual-cta .cta-tags path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-cta-actions {
  display: grid;
  grid-template-columns: 178px 246px;
  align-items: center;
  justify-content: start;
  gap: 16px;
  min-width: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(16, 24, 32, 0.1);
}

.visual-cta-button {
  display: grid;
  grid-template-columns: 22px max-content 16px;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 14px;
  background: #087a3a;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(8, 122, 58, 0.16);
}

.visual-cta-button:hover {
  background: #066d34;
  color: #fff;
  transform: translateY(-1px);
}

.visual-cta-button svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-cta-button span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.visual-cta-button-icon {
  width: 22px;
}

.visual-cta-arrow {
  width: 16px;
}

@media (max-width: 1480px) {
  .visual-cta .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .visual-cta .home-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
  }

  .visual-cta-actions {
    grid-template-columns: 170px 236px;
    gap: 14px;
    padding-left: 22px;
  }

  .visual-cta h2 {
    font-size: 30px;
  }

  .visual-cta-button {
    min-height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .visual-cta .home-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visual-cta-actions {
    grid-template-columns: minmax(170px, 190px) minmax(230px, 260px);
    justify-content: start;
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .supply-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supply-keyword-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supply-process-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .supply-process-note-title {
    padding-right: 0;
    border-right: 0;
  }

  .supply-process-note-title strong {
    max-width: none;
  }

  .supply-process-flow {
    flex-wrap: wrap;
  }
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin: 7px 0;
}

.factory-overview-copy .list,
.factory-overview-copy p:last-of-type {
  color: var(--brand);
}

.factory-youtube-button {
  gap: 12px;
  min-height: 52px;
  margin-top: 4px;
  padding: 12px 30px;
  border-color: #f00000;
  border-radius: 18px;
  background: #f00000;
  box-shadow: none;
  font-size: 18px;
}

.factory-youtube-button svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex: 0 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  min-height: 130px;
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .topbar-inner,
  .nav-inner {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
  }

  .home-hero-inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .stats,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2,
  .certification-intro,
  .process,
  .supply-process-grid,
  .footer-grid,
  .form-grid,
  .home-hero-inner,
  .home-stats-inner,
  .home-product-grid,
  .home-profile,
  .home-video-feature,
  .home-cert-grid,
  .home-exhibition-grid,
  .home-support-panel,
  .home-support-grid,
  .home-blog-grid,
  .quality-test-layout,
  .quality-test-media-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .home-section-head,
  .home-cta-inner,
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-willow .nav {
    position: sticky;
  }

  .supply-process-hero {
    padding: 42px 0 44px;
  }

  .supply-keyword-grid {
    grid-template-columns: 1fr;
  }

  .supply-keyword-grid a,
  .supply-keyword-grid a:first-child {
    min-height: 0;
    padding: 14px 16px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(14, 117, 66, 0.12);
  }

  .supply-process-intro {
    font-size: 14px;
  }

  .supply-process-card img {
    aspect-ratio: 1.4 / 1;
  }

  .supply-process-note {
    padding: 16px;
  }

  .home-exhibition-scroll {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
  }

  .exhibition-meta-grid,
  .exhibition-list {
    grid-template-columns: 1fr;
  }

  .home-willow .nav-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    width: calc(100% - 20px);
    gap: 6px;
    min-height: 72px;
    padding-top: 0;
  }

  .home-willow .nav-links {
    display: none;
  }

  .home-willow .brand img {
    width: 48px;
  }

  .home-willow .brand {
    gap: 8px;
    min-width: 0;
  }

  .home-willow .brand-text {
    gap: 0;
  }

  .home-willow .brand-text {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .home-willow .brand-text > span {
    display: none;
  }

  .mobile-nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    top: 50%;
    right: 0;
    flex: 0 0 auto;
    margin-left: auto;
    max-width: none;
    transform: translateY(-50%);
  }

  .mobile-menu {
    position: relative;
  }

  .mobile-menu summary {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: 1px solid #d7cbb8;
    border-radius: 4px;
    background: #fffdf9;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: #1f2d24;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 20;
    display: grid;
    width: min(220px, calc(100vw - 32px));
    padding: 10px;
    background: #fffdf9;
    border: 1px solid #e3d8c7;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(42, 35, 24, 0.16);
  }

  .mobile-menu-panel a {
    padding: 10px 12px;
    color: #223128;
    border-radius: 4px;
  }

  .mobile-menu-panel a:hover {
    background: #f7f1e7;
    color: #087a3a;
  }

  .mobile-quote {
    display: none;
    align-items: center;
    justify-content: center;
    order: -1;
    min-height: 38px;
    padding: 0 12px;
    background: #087a3a;
    color: #fff;
    border-radius: 6px;
    font-size: 0;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(8, 122, 58, 0.22);
    white-space: nowrap;
  }

  .mobile-quote:hover,
  .mobile-quote:focus {
    background: #0a8a43;
    color: #fff;
  }

  .mobile-quote::before {
    content: "Quote";
    font-size: 11px;
  }

  .home-section,
  .page-section,
  .page-hero,
  main,
  .home-band,
  .home-cta {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .home-product-card img,
  .home-profile img,
  .home-profile-video,
  .home-video-feature video,
  .home-cert-card img,
  .home-exhibition-card img,
  .home-blog-card img {
    max-width: 100%;
    min-width: 0;
  }

  .home-product-grid,
  .grid,
  .certification-intro,
  .home-product-card,
  .card,
  .media,
  .home-section-head,
  .section-head {
    width: 100%;
  }

  .home-section-head,
  .section-head,
  .page-section .container,
  .page-section .grid,
  .page-section h2,
  .page-section p,
  .page-section .card,
  .page-section .card-body,
  .table-wrap,
  .process,
  .step,
  .home-section-head > div,
  .home-section-head > p,
  .home-section-head > div:last-child,
  .home-section-head > div:last-child p,
    .home-product-card,
    .home-product-card > div,
    .home-profile,
    .home-profile-copy,
    .home-profile > div,
    .home-video-feature,
  .home-video-copy,
  .home-cert-card,
  .home-cert-card > div,
  .home-cert-summary,
    .home-exhibition-card,
    .home-exhibition-card > div,
    .home-support-panel,
    .home-support-intro,
    .home-support-item,
    .home-blog-card,
    .home-blog-card > div,
  .home-faq-preview,
  .home-cta-inner > div {
    min-width: 0;
    max-width: 100%;
  }

  .home-section-head > div,
  .home-section-head > p,
  .home-section-head > div:last-child,
  .home-section-head > div:last-child p,
  .home-profile-copy,
  .home-profile > div,
  .home-video-copy,
  .home-support-panel,
  .home-support-intro,
  .home-exhibition-card > div {
    width: 100%;
  }

  .hero-inner {
    min-height: 560px;
  }

  .page-hero {
    padding: 34px 0 30px;
    background-position: 62% center;
  }

  .page-hero h1 {
    font-size: 26px;
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .page-section {
    padding: 46px 0;
  }

  .section-head h2,
  .page-section h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .card-body {
    padding: 18px;
  }

  .process {
    gap: 12px;
  }

  table {
    min-width: 640px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

  .home-hero-inner {
    padding: 34px 0 38px;
    transform: none;
  }

  .home-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-hero-copy > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.45;
  }

  .home-hero-number {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .home-hero h1 {
    max-width: calc(100vw - 64px);
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .home-hero .hero-title {
    max-width: calc(100vw - 64px);
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .home-hero-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    width: 100%;
    max-width: 100%;
  }

  .home-hero-tags span {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .home-hero-tags span:not(:last-child)::after {
    display: none;
  }

  .home-hero-controls {
    bottom: 16px;
  }

  .home-section-head h2,
  .home-cta h2 {
    font-size: 26px;
    line-height: 1.14;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .home-section-head > p,
  .home-section-head > div:last-child p {
    font-size: 15px;
    line-height: 1.58;
  }

  .home-section-head > p,
  .home-section-head > div:last-child p,
  .home-product-card p,
  .home-profile-copy p,
  .home-video-copy p,
  .home-exhibition-card p,
  .home-blog-card p {
    overflow-wrap: anywhere;
  }

  .home-hero-copy > p:not(.home-mobile-summary) {
    display: none;
  }

  .home-mobile-summary {
    display: block;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 10px 14px;
  }

  .home-product-card > div {
    padding: 18px;
    overflow: visible;
  }

  .home-profile-copy {
    padding: 22px;
  }

  .home-product-card h3 {
    font-size: 22px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .home-product-card p {
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .home-faq-preview summary {
    padding: 22px 58px 22px 18px;
    font-size: 19px;
    line-height: 1.25;
  }

  .home-faq-preview summary::after {
    right: 16px;
    width: 32px;
    height: 32px;
  }

  .home-faq-preview p {
    margin: -4px 58px 22px 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .visual-cta {
    padding: 53px 0 63px;
  }

  .visual-cta .container {
    width: calc(100% - 32px);
  }

  .visual-cta .home-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visual-cta-copy {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
  }

  .visual-cta-icon {
    width: 54px;
    height: 54px;
  }

  .visual-cta-icon svg {
    width: 31px;
    height: 31px;
  }

  .visual-cta h2 {
    font-size: 26px;
    line-height: 1.14;
  }

  .visual-cta p {
    font-size: 15px;
  }

  .visual-cta .cta-tags {
    gap: 10px 14px;
    flex-wrap: wrap;
  }

  .visual-cta-actions {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .visual-cta-button {
    min-height: 64px;
    font-size: 17px;
  }

  .home-quote-panel {
    display: none;
  }

  .home-support-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-support-item:last-child {
    border-bottom: 0;
  }

  .footer {
    padding: 52px 0 26px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .footer-about p,
  .footer-products p,
  .footer-contact p {
    font-size: 14px;
  }

  .footer-qr {
    margin-top: 0;
  }

  .footer-qr-list {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-qr img {
    width: 92px;
    height: 92px;
  }

  .footer-social {
    margin-top: 18px;
  }

  .footer-review-row {
    margin-top: 30px;
  }
}

@media (max-width: 560px) {
  .visual-cta-copy {
    grid-template-columns: 1fr;
  }

  .visual-cta h2 {
    font-size: 24px;
    line-height: 1.14;
  }

  .visual-cta .cta-tags span {
    font-size: 13px;
  }

  .visual-cta-button {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 0 18px;
  }

  .footer-review-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-review-meta {
    text-align: left;
  }
}


.nr-text img{ max-width:100%!important; height:auto!important}
.nr-text video{ max-width:100%!important;}
.nr-text td{ padding:10px 5px; box-sizing:border-box}

.side_list{width:140px;overflow:hidden;border:1px solid #dadada;border-radius:8px;position:fixed;background:#fff;font-size:12px;transition:all .3s ease 0s; z-index:999; top:20%; right:-110%;}
.side_list.active{right:15px;}
.side_list .tm{ font-size:15px; font-weight:600; text-align:center; padding:12px 5px; border-bottom:1px solid #dadada;}
.side_list .nr{ padding:0; margin:0}
.side_list .nr li{height:40px;line-height:40px;border-bottom:1px solid #dadada;list-style:none;position:relative}
.side_list .nr li a{position:relative;display:block;padding:0 0 0 43px;text-decoration:none; color:#999}
.side_list .nr li a:before{content:"";position:absolute;display:block;overflow:hidden;top:0;left:10px;width:25px;height:40px;background-repeat:no-repeat;background-position:center center}
.side_list .nr li .email:before{background-image:url(../images/icons01.png)}
.side_list .nr li .skype:before{background-image:url(../images/icons02.png)}
.side_list .nr li .inquiry:before{background-image:url(../images/icons03.png)}
.side_list .nr li .qq:before{background-image:url(../images/icons04.png)}
.side_list .t-code{padding:10px 10px 7px;border-bottom:1px solid #dadada}
.side_list .t-code img{width:100%}
.side_list .side_tit{height:30px;line-height:30px;padding:0 12px}
.side_list .side_tit .close_btn{background:url(../images/close.png) no-repeat center center;width:12px;height:30px;position:absolute;bottom:0;right:10px;cursor:pointer}
.side_list .side_tit .close_btn span{display:none}
.show_btn{width:38px;height:192px;cursor:pointer;background:url(../images/show_btn.webp) no-repeat center center;position:fixed;right:0;top:20%;transition:all .5s ease 0s; z-index:999;}
.show_btn.hover{right:-110%;}
@media (max-width: 640px) {
.side_list.active{right:5px}
}

