:root {
  --red: #ed1c24;
  --ink: #303438;
  --text: #444;
  --soft: #f7f7f7;
  --line: #e7e7e7;
}

.s_content * {
  text-wrap-mode: wrap !important;
  word-break: break-word
}

.s_content video,
.s_content img {
  display: inline-block;
  max-width: 100%;
  height: auto !important
}

.s_content img {
  height: auto !important
}

main {
  min-height: 45vh;
}

@property --product-border-progress {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.topbar {
  height: 36px;
  color: #666;
  background: #f1f1f1;
  font-size: 13px;
  line-height: 36px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
}

.site-header {
  background: #fff;
}

.header-main {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 64px;
  height: 64px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--red);
}

.header-phone img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header-phone strong {
  font-size: 31px;
  letter-spacing: 1px;
}

.main-nav {
  height: 54px;
  background: var(--ink);
}

.main-nav .container {
  display: flex;
  height: 54px;
}

.main-nav-item {
  position: relative;
  width: 140px;
  height: 54px;
}

.main-nav a {
  display: flex;
  width: 140px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background-color .24s ease;
}

.main-nav-item>a:hover,
.main-nav-item>a.is-active,
.main-nav .container>a:hover,
.main-nav .container>a.is-active {
  background: var(--red);
}

.nav-submenu {
  position: absolute;
  z-index: 30;
  top: 54px;
  left: 0;
  width: 190px;
  padding: 8px 0;
  background: rgba(48, 52, 56, .98);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.main-nav-item:hover .nav-submenu,
.main-nav-item:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  width: 100%;
  height: 38px;
  justify-content: flex-start;
  padding: 0 16px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: #fff;
  background: var(--red);
  outline: 0;
}

.hero-home {
  position: relative;
  height: 720px;
  overflow: hidden;
}

.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform .78s cubic-bezier(.2, .72, .25, 1);
  will-change: transform;
}

.hero-slide {
  width: 50%;
  height: 100%;
  flex: 0 0 50%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: .42;
  transition: background-color .35s ease, opacity .35s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  opacity: .82;
  outline: 0;
}

.hero-dot.is-active {
  background: #fff;
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 18, .22);
  pointer-events: none;
}

.home-hero-copy {
  position: absolute;
  z-index: 2;
  top: 186px;
  left: 50%;
  width: 900px;
  max-width: calc(100% - 48px);
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.hero-home.is-motion-ready .home-hero-copy {
  animation: hero-copy-in 1.2s cubic-bezier(.16, .84, .3, 1) both;
}

.home-hero-copy h1 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 600;
}

.home-hero-copy .hero-title {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.4;
}

.home-hero-copy .hero-description {
  width: 760px;
  max-width: 100%;
  margin: 27px auto 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
}

.red-button {
  display: inline-flex;
  min-width: 160px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  font-size: 15px;
  transition: background-color .28s ease, color .28s ease;
}

.red-button:hover,
.red-button:focus-visible {
  color: #fff;
  background: #000;
  outline: 0;
}

.hero-action {
  margin-top: 48px;
}

.page-hero {
  position: relative;
  height: 302px;
  overflow: hidden;
}

.page-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
  transform: scale(1.001);
  transition: transform .7s cubic-bezier(.2, .72, .25, 1), filter .35s ease;
  will-change: transform;
}

.hero-ripple-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-hero:focus-within>img {
  filter: brightness(.62);
  transform: scale(1.045);
}

.page-hero-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transition: transform .55s cubic-bezier(.2, .72, .25, 1);
}

.page-hero:hover .page-hero-copy,
.page-hero:focus-within .page-hero-copy {
  transform: translateY(-4px);
}

.page-hero-copy h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 39px;
  font-weight: 400;
  line-height: 1.25;
}

.page-hero-copy p {
  margin: 0;
  color: #fff;
  font-size: 27px;
}

.crumb-strip {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
}

.crumb-strip .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crumb {
  color: #777;
  font-size: 14px;
}

.home-products {
  padding: 112px 0 92px;
  background: #fff;
}

.home-search {
  width: 604px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  padding: 0;
  border: 1px solid #d7d7d7;
  background: #fff;
}

.home-search form {
  width: 604px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #d7d7d7;
}

.home-search input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: #777;
}

.home-search button {
  width: 80px;
  border: 0;
  color: #fff;
  background: #6f7072;
  cursor: pointer;
}

.home-search button:hover {
  background: var(--red);
}

.search-page-search {
  margin-bottom: 32px;
}

.product-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 30px 0 52px;
  justify-content: center;
  background: #fff;
}

.product-category-link {
  position: relative;
  display: flex;
  flex: 1 1 150px;
  min-width: 120px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  overflow: hidden;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  color: #555;
  background: #fff;
  transition: color .22s ease, background-color .22s ease;
}

.product-category-link:first-child {
  border-left: 1px solid #e1e1e1;
}

.product-category-link::after {
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  width: auto;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.product-category-link:hover,
.product-category-link:focus-visible {
  color: var(--red);
  background: #fafafa;
  outline: 0;
}

.product-category-link:hover::after,
.product-category-link:focus-visible::after {
  transform: scaleX(1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 70px;
}

.product-card {
  position: relative;
  min-height: 350px;
  padding: 15px;
  overflow: hidden;
  background: #fff;
  transition: background-color .32s ease, border-color .32s ease;
}

.product-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  content: "";
  pointer-events: none;
  background: conic-gradient(from 45deg, var(--red) 0 var(--product-border-progress), transparent var(--product-border-progress) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: --product-border-progress .62s cubic-bezier(.18, .77, .26, 1);
}

.product-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: #fff;
}

.product-card:hover {
  background-color: rgba(237, 28, 36, .11);
  transition-delay: .62s;
}

.product-card:hover::after {
  --product-border-progress: 100%;
}

.product-card h3 {
  display: -webkit-box;
  margin: 14px 4px 3px;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card p {
  margin: 0 4px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-empty {
  margin: 18px 0 70px;
  padding: 76px 24px;
  border: 1px dashed #d8d8d8;
  background: #fff;
  text-align: center;
}

.search-empty strong {
  display: block;
  color: #333;
  font-size: 22px;
  font-weight: 400;
}

.search-empty p {
  margin: 12px 0 0;
  color: #999;
  font-size: 14px;
}

.home-product-grid {
  padding-bottom: 24px;
}

.home-product-grid .product-card {
  --media-inset: 14px;
  --media-height: 218px;
  min-height: 314px;
  padding: 14px;
}

.home-product-grid .product-card img {
  height: 218px;
  object-fit: cover;
}

.section-action {
  display: flex;
  width: 160px;
  margin: 26px auto 0;
}

.home-about {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: #444;
  background:  center / cover fixed;
  text-align: center;
}

.home-custom-process-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about-shade {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .86);
}

.home-about-content,
.home-custom-process-content {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}

.home-about-content {
  padding-top: 0;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #444;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.section-heading p {
  margin: 14px 0 0;
  color: #555;
  font-size: 21px;
}

.home-about-content h3 {
  margin: 78px 0 18px;
  color: #444;
  font-size: 24px;
  font-weight: 400;
}

.about-copy {
  width: 920px;
  max-width: 100%;
  margin: 0 auto;
  color: #666;
  line-height: 2;
}

.home-stats {
  width: 730px;
  max-width: 100%;
  margin: 45px auto 0;
}

.home-stats strong {
  font-size: 40px;
}

.home-news {
  padding: 70px 0 80px;
  background: #fafafa;
}

.home-news .section-heading {
  margin-bottom: 54px;
}

.home-news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 34px;
}

.home-news-head h2 {
  margin: 0;
  color: #333;
  font-size: 25px;
  font-weight: 400;
}

.home-news-head a {
  color: #777;
}

.home-news-columns {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100%;
  align-content: start;
}

.home-news-feature {
  display: grid;
  grid-template-columns: minmax(430px, 1.16fr) minmax(280px, .84fr);
  height: 336px;
  gap: 52px;
  align-items: stretch;
}

.home-news-feature-carousel {
  position: relative;
  height: 336px;
  overflow: hidden;
  background: #303438;
}

.home-news-feature-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform .72s cubic-bezier(.2, .72, .25, 1);
  will-change: transform;
}

.home-news-feature-slide {
  position: relative;
  display: block;
  width: 50%;
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
  color: #fff;
}

.home-news-feature-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: transform .65s ease, filter .35s ease;
}

.home-news-feature-slide:hover img,
.home-news-feature-slide:focus-visible img {
  filter: brightness(.84);
  transform: scale(1.045);
}

.home-news-feature-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 70px 30px 24px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .84));
}

.home-news-feature-caption strong,
.home-news-feature-caption small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-news-feature-caption strong {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
}

.home-news-feature-caption small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.home-news-feature-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 7px;
}

.news-feature-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: .6;
}

.news-feature-dot.is-active,
.news-feature-dot:hover,
.news-feature-dot:focus-visible {
  background: #fff;
  opacity: 1;
  outline: 0;
}

.news-brief {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #e9e9e9;
}

.news-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: 18px 0;
  border-top: 1px solid #e9e9e9;
  align-content: start;
}

.news-card h3,
.news-card p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-card h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-card p {
  display: -webkit-box;
  margin: 0;
  color: #8a8a8a;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-date {
  color: #777;
  text-align: center;
  line-height: 1;
}

.news-date strong {
  display: block;
  color: #555;
  font-size: 33px;
  font-weight: 600;
}

.news-date span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.news-brief h3 {
  margin: 0 0 5px;
  color: #444;
  font-size: 16px;
  font-weight: 400;
}

.news-brief p {
  margin: 0;
  color: #8a8a8a;
  line-height: 1.9;
}

.partners-band {
  padding: 58px 0 62px;
  background: #fff;
  text-align: center;
}

.partners-band h2 {
  margin: 0;
  color: #444;
  font-size: 24px;
  font-weight: 400;
}

.partner-marquee {
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 18px;
  will-change: transform;
}

.partner-track span {
  display: grid;
  width: 180px;
  height: 82px;
  place-items: center;
  flex: 0 0 180px;
  border: 1px solid #e9e9e9;
  background: #fafafa;
}

.partner-track img {
  display: block;
  max-width: 148px;
  max-height: 58px;
  object-fit: contain;
}

.home-custom-process {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  text-align: center;
}

.home-custom-process-shade {
  position: absolute;
  inset: 0;
  background: rgba(25, 29, 31, .82);
}

.home-custom-process-content {
  padding-top: 68px;
}

.home-custom-process .section-heading h2,
.home-custom-process .section-heading p {
  color: #fff;
}

.custom-process-copy {
  width: 730px;
  max-width: 100%;
  margin: 30px auto 45px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.95;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .22);
  text-align: left;
}

.process-step {
  min-height: 204px;
  padding: 28px 28px 22px;
  border-top: 2px solid transparent;
  color: #fff;
  background: rgba(24, 28, 30, .54);
  transition: background-color .32s ease, border-color .32s ease;
}

.process-step:hover,
.process-step:focus-visible {
  border-color: var(--red);
  background: rgba(24, 28, 30, .84);
  outline: 0;
}

.process-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.process-step h3 {
  display: -webkit-box;
  margin: 19px 0 8px;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-custom-process .section-action {
  margin-top: 36px;
}

.page-shell {
  background: var(--soft);
  padding: 40px 0 80px;
}

.page-card {
  padding: 60px 60px;
  background: #fff;
}

.page-card h2 {
  margin: 0;
  color: #444;
  font-size: 29px;
  font-weight: 400;
  text-align: center;
}

.page-card .lead {
  margin: 50px auto 0;
  color: #555;
  text-align: center;
  line-height: 2.15;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.stat-row div {
  text-align: center;
}

.stat-row strong {
  display: block;
  color: #444;
  font-size: 38px;
  font-weight: 400;
}

.stat-row span {
  color: #888;
}

.honor-intro {
  margin-bottom: 54px;
  text-align: center;
}

.honor-intro h2 {
  margin-bottom: 10px;
}

.honor-intro p {
  margin: 0;
  color: #555;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.award-grid figure {
  margin: 0;
  padding: 14px;
  border: 1px solid #efefef;
}

.award-grid img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.award-grid figcaption {
  padding-top: 12px;
  text-align: center;
  color: #777;
}

.partner-page-title {
  margin: 4px 0 58px;
  text-align: center;
}

.partner-page-title h2 {
  margin: 0 0 4px;
  font-size: 31px;
}

.partner-page-title p {
  margin: 0;
  color: #777;
  font-size: 20px;
}

.partner-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.area-card {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #efefef;
  background: #fff;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-shell {
  padding-top: 30px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  color: #111;
  font-size: 15px;
}

.catalog-shell .product-grid {
  padding: 0 0 25px;
}

.pagination {
  padding: 25px 0 0;
}

.pagination>.pagination.page {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.pagination .page-number,
.pagination .prev-page,
.pagination .next-page {
  display: grid;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  place-items: center;
  border: 1px solid #ddd;
  color: #777;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.pagination .page-number.active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.pagination .prev-page.active,
.pagination .next-page.active {
  color: #bbb;
  background: #f7f7f7;
  cursor: default;
}

.pagination .page-number:hover,
.pagination .page-number:focus-visible,
.pagination .prev-page:not(.active):hover,
.pagination .prev-page:not(.active):focus-visible,
.pagination .next-page:not(.active):hover,
.pagination .next-page:not(.active):focus-visible {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.pagination svg {
  width: 18px;
  height: 18px;
}

.product-detail {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 62px;
  align-items: flex-start;
}

.product-image-wrap {
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info h2 {
  padding-bottom: 10px;
  text-align: left;
  color: #111;
  font-size: 30px;
}

.product-info p {
  margin: 8px 0;
  color: #777;
}

.product-facts {
  padding: 0;
  border-top: 1px solid #eee;
  list-style: none;
}

.product-facts li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  align-items: baseline;
}

.product-facts span {
  color: #999;
  font-size: 13px;
}

.product-facts strong {
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.product-info strong {
  color: #111;
  font-size: 20px;
}

.product-info .product-facts strong {
  color: #444;
  font-size: 14px;
  font-weight: 400;
}

.product-description {
  padding-top: 15px;
  color: #666;
  line-height: 2.1;
}

.product-detail-more {
  margin-top: 24px;
  padding-top: 48px;
  padding-bottom: 52px;
}

.product-detail-more .section-heading {
  margin-bottom: 28px;
}

.product-detail-copy {
  max-width: 100%;
  margin: 0 auto;
  color: #666;
  line-height: 2.1;
}

.product-detail-copy p {
  margin: 0 0 12px;
}

.news-list {}

.article-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 35px;
  min-height: 116px;
  padding: 18px 46px;
  border-bottom: 1px solid #eee;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.article-row:hover,
.article-row:focus-visible {
  background: #fcfcfc;
}

.article-row:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: -1px;
}

.article-row .news-date {
  padding-top: 0;
}

.article-row:hover .news-date,
.article-row:focus-visible .news-date,
.article-row:hover .news-date strong,
.article-row:focus-visible .news-date strong,
.article-row:hover .news-date span,
.article-row:focus-visible .news-date span {
  color: var(--red);
}

.article-row h2 {
  margin: 0 0 7px;
  color: #555;
  text-align: left;
  font-size: 15px;
}

.article-row p {
  margin: 0;
  color: #999;
  font-size: 13px;
  line-height: 1.95;
}

.article-card {
  padding: 60px 100px;
}

.article-card h1 {
  margin: 0;
  color: #151515;
  text-align: center;
  font-size: 31px;
  font-weight: 400;
}

.article-meta {
  margin: 14px 0 20px;
  color: #999;
  text-align: center;
}

.article-summary {
  padding: 10px 22px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  color: #666;
  line-height: 2;
}

.article-body {
  padding: 22px 38px;
  color: #444;
  font-size: 15px;
  line-height: 2.25;
}

.article-body h2 {
  margin: 0 0 13px;
  text-align: left;
  font-size: 17px;
}

.custom-intro {
  margin-bottom: 60px;
  text-align: center;
}

.custom-intro h2 {
  margin-bottom: 8px;
  color: #111;
}

.custom-intro p {
  margin: 0;
  color: #777;
  font-size: 16px;
}

.form-title {
  margin: 0 0 28px;
  color: #222;
  font-size: 23px;
  font-weight: 600;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 22px;
}

.inquiry-form label {
  display: block;
  color: #666;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  outline-color: var(--red);
  background: #fff;
}

.inquiry-form textarea {
  height: 122px;
  resize: vertical;
}

.inquiry-form .full {
  grid-column: span 2;
}

.inquiry-form button {
  width: 130px;
  height: 42px;
  border: 0;
  color: #fff;
  background: var(--red);
  cursor: pointer;
}

.inquiry-form button:hover {
  background: #d8171e;
}

.contact-heading {
  position: relative;
  padding-bottom: 18px;
  text-align: left !important;
}

.contact-heading::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  content: "";
  background: var(--red);
}

.contact-page-card {
  min-height: 0;
  padding: 62px 80px 72px;
}

.contact-list {
  margin-top: 42px;
  border-top: 1px solid #e6e6e6;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 94px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

.contact-icon img {
  width: 22px;
  height: 22px;
}

.contact-item h3 {
  margin: 0 0 3px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.contact-item p {
  margin: 0;
  color: #777;
  font-size: 15px;
}

.contact-map {
  display: block;
  width: 100%;
  margin-top: 50px;
  padding: 36px 58px;
  border: 1px solid #e6e6e6;
  background: #f4f6f7;
  object-fit: contain;
}

.contact-map p {
  margin: 0;
}

.contact-map img,
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.site-footer {
  color: #dedede;
  background: #33383c;
}

.footer-top {
  min-height: 190px;
  padding: 38px 0 32px;
  display: grid;
  grid-template-columns: 1.32fr .85fr 1.15fr;
  gap: 68px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.footer-logo {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.footer-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
}

.footer-brand p {
  margin: 5px 0 0;
  color: #bbb;
}

.footer-block h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.footer-block p {
  margin: 6px 0;
  color: #bfc0c1;
}

.footer-service {
  align-self: center;
}

.footer-hotline {
  margin: 0 0 15px !important;
  color: #fff !important;
  font-size: 15px;
  white-space: nowrap;
}

.footer-hotline strong {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

.footer-hotline span {
  color: #bfc0c1;
  font-size: 12px;
}

.footer-search {
  width: 100%;
  height: 36px;
  display: flex;
  border: 1px solid #64686b;
}

.footer-search input {
  flex: 1;
  min-width: 0;
  padding: 0 11px;
  border: 0;
  outline: 0;
  color: #ddd;
  background: transparent;
}

.footer-search button {
  width: 60px;
  border: 0;
  color: #fff;
  background: #55595c;
  cursor: pointer;
  transition: background-color .24s ease;
}

.footer-search button:hover {
  background: var(--red);
}

.footer-bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #4a4e51;
  color: #aaa;
  font-size: 12px;
}

.side-rail {
  position: fixed;
  z-index: 20;
  top: 388px;
  right: 18px;
  display: grid;
  gap: 5px;
}

.side-rail a,
.side-rail button {
  position: relative;
  width: 51px;
  height: 51px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  background: #fff;
  cursor: pointer;
  transition: border-color .26s ease, background-color .26s ease, box-shadow .26s ease;
}

.side-rail img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: .68;
}

.side-rail a:hover,
.side-rail a:focus-visible,
.side-rail button:hover,
.side-rail button:focus-visible {
  border-color: #24282b;
  background: #24282b;
  box-shadow: inset 3px 0 0 var(--red);
  outline: 0;
}

.side-rail a:hover img,
.side-rail a:focus-visible img,
.side-rail button:hover img,
.side-rail button:focus-visible img {
  filter: none;
  opacity: .92;
}

.side-rail .side-pop {
  position: absolute;
  right: 57px;
  top: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity .24s ease, transform .24s ease;
}

.side-rail .side-phone-pop {
  min-width: 150px;
  padding: 11px 14px;
  border: 1px solid #ddd;
  color: #24282b;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  transform: translate(10px, -50%);
}

.side-rail .side-qr-pop {
  width: 150px;
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
  transform: translate(10px, -50%);
}

.side-rail .side-rail-item:hover .side-pop,
.side-rail .side-rail-item:focus-visible .side-pop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.side-rail .side-phone-item:hover .side-phone-pop,
.side-rail .side-phone-item:focus-visible .side-phone-pop,
.side-rail .side-wechat-item:hover .side-qr-pop,
.side-rail .side-wechat-item:focus-visible .side-qr-pop {
  transform: translate(0, -50%);
}

.side-rail .side-qr-pop img {
  width: 128px;
  height: 128px;
  opacity: 1;
}

.home-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .82s ease, transform .82s cubic-bezier(.2, .72, .25, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.home-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(.88);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199px) {
  .container {
    width: calc(100% - 48px);
    margin-left: auto;
    margin-right: auto;
  }

  .product-category-nav {
    gap: 24px;
  }

  .product-category-nav a {
    min-width: 0;
    flex: 1 1 0;
  }

  .side-rail {
    right: 14px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
  }

  .topbar {
    height: auto;
    padding: 7px 0;
    line-height: 1.45;
  }

  .topbar .container {
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
  }

  .header-main {
    height: 82px;
  }

  .brand,
  .brand img {
    width: 48px;
    height: 48px;
  }

  .header-phone {
    gap: 8px;
  }

  .header-phone img {
    width: 36px;
    height: 36px;
  }

  .header-phone strong {
    font-size: 21px;
    letter-spacing: 0;
  }

  .main-nav,
  .main-nav .container {
    height: auto;
  }

  .main-nav .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .main-nav-item {
    width: auto;
  }

  .main-nav-item>a {
    width: 100%;
  }

  .nav-submenu {
    right: 0;
    left: auto;
    width: 170px;
  }

  .main-nav a {
    width: auto;
    height: 44px;
    font-size: 14px;
  }

  .hero-home {
    height: 440px;
  }

  .home-hero-copy {
    top: 102px;
    width: calc(100% - 40px);
  }

  .home-hero-copy h1 {
    margin-bottom: 10px;
    font-size: 27px;
  }

  .home-hero-copy .hero-title {
    font-size: 21px;
  }

  .home-hero-copy .hero-description {
    width: auto;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-action {
    margin-top: 28px;
  }

  .red-button {
    min-width: 138px;
    height: 42px;
  }

  .page-hero {
    height: 212px;
  }

  .page-hero-copy h1 {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .page-hero-copy p {
    font-size: 20px;
  }

  .crumb-strip {
    padding: 12px 0;
  }

  .crumb-strip .container {
    display: block;
  }

  .crumb {
    font-size: 12px;
  }

  .home-products {
    padding: 52px 0 48px;
  }

  .home-search {
    width: 100%;
    height: 52px;
  }

  .home-search input {
    padding: 0 14px;
  }

  .product-category-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 26px 0 34px;
  }

  .product-category-link {
    min-width: 0;
    min-height: 52px;
    padding: 0 10px;
    font-size: 13px;
  }

  .product-category-link:nth-child(2n) {
    border-right: 1px solid #e1e1e1;
  }

  .product-category-link:nth-child(n + 3) {
    border-top: 0;
  }

  .product-category-link:nth-child(2n + 1) {
    border-left: 1px solid #e1e1e1;
  }

  .product-grid,
  .home-news-columns,
  .inquiry-form,
  .product-detail,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 34px;
  }

  .product-card,
  .home-product-grid .product-card {
    min-height: 0;
    padding: 10px;
  }

  .product-card img,
  .home-product-grid .product-card img {
    height: 160px;
    object-fit: cover;
  }

  .product-card h3 {
    margin: 12px 3px 2px;
    font-size: 15px;
  }

  .product-card p {
    margin: 0 3px 4px;
    font-size: 13px;
  }

  .section-action {
    margin-top: 8px;
  }

  .home-about {
    padding: 52px 0;
  }

  .home-about-content {
    padding: 0;
  }

  .home-custom-process-content {
    padding: 52px 0;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .section-heading p {
    margin-top: 11px;
    font-size: 18px;
  }

  .home-about-content h3 {
    margin: 42px 0 14px;
    font-size: 20px;
  }

  .about-copy,
  .custom-process-copy {
    width: auto;
    font-size: 13px;
    line-height: 1.9;
  }

  .home-stats {
    width: auto;
    margin-top: 30px;
  }

  .home-stats strong,
  .stat-row strong {
    font-size: 26px;
  }

  .stat-row {
    margin-top: 34px;
  }

  .stat-row span {
    display: block;
    font-size: 12px;
  }

  .home-news {
    padding: 52px 0;
  }

  .partners-band {
    padding: 46px 0 48px;
  }

  .partner-marquee {
    margin-top: 28px;
  }

  .partner-track {
    gap: 12px;
  }

  .partner-track span {
    width: 132px;
    height: 64px;
    flex-basis: 132px;
    font-size: 20px;
  }

  .home-news .section-heading {
    margin-bottom: 30px;
  }

  .home-news-columns {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    gap: 0;
  }

  .home-news-feature {
    display: block;
    height: auto;
  }

  .home-news-feature-carousel {
    height: 220px;
    margin-bottom: 22px;
  }

  .home-news-feature-slide {
    height: 100%;
  }

  .home-news-feature-caption {
    padding: 54px 18px 18px;
  }

  .home-news-feature-caption strong {
    font-size: 17px;
  }

  .news-card {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    height: auto;
    padding: 16px 0;
  }

  .news-date strong {
    font-size: 26px;
  }

  .news-card h3 {
    font-size: 15px;
  }

  .news-card p {
    font-size: 13px;
    line-height: 1.75;
  }

  .article-row h2 {
    font-size: 15px;
  }

  .article-row p {
    font-size: 13px;
  }

  .home-custom-process {
    min-height: 0;
  }

  .custom-process-copy {
    margin: 22px auto 30px;
  }

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

  .process-step {
    min-height: 172px;
    padding: 20px 16px;
  }

  .process-icon {
    width: 44px;
    height: 44px;
  }

  .process-step h3 {
    margin: 14px 0 6px;
    font-size: 16px;
  }

  .process-step p {
    font-size: 12px;
  }

  .home-custom-process .section-action {
    margin-top: 28px;
  }

  .page-shell {
    padding: 24px 0 44px;
  }

  .page-card,
  .article-card {
    min-height: 0;
    padding: 34px 18px;
  }

  .page-card h2 {
    font-size: 23px;
  }

  .page-card .lead {
    margin-top: 28px;
    text-align: left;
    font-size: 14px;
    line-height: 2;
  }

  .award-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .award-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .partner-page-title {
    margin-bottom: 30px;
  }

  .partner-page-title h2 {
    font-size: 25px;
  }

  .partner-page-title p {
    font-size: 17px;
  }

  .partner-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-shell {
    padding-top: 0;
  }

  .product-detail {
    gap: 22px;
    padding: 0;
  }

  .product-image-wrap {
    height: 265px;
  }

  .product-info h2 {
    margin-top: 0;
    font-size: 23px;
  }

  .product-description {
    margin-top: 18px;
    padding-top: 18px;
    font-size: 14px;
    line-height: 1.95;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 20px 0;
  }

  .article-row .news-date {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
  }

  .article-row .news-date span {
    margin-top: 0;
  }

  .article-row h2 {
    font-size: 15px;
    line-height: 1.55;
  }

  .article-row p {
    font-size: 13px;
  }

  .article-body {
    font-size: 14px;
  }

  .article-card h1 {
    font-size: 23px;
    line-height: 1.5;
  }

  .article-meta {
    line-height: 1.8;
  }

  .article-summary {
    padding: 12px 14px;
    font-size: 13px;
  }

  .article-body {
    padding: 22px 0 0;
    line-height: 2;
  }

  .inquiry-form {
    row-gap: 16px;
  }

  .inquiry-form .full {
    grid-column: span 1;
  }

  .custom-intro {
    margin-bottom: 36px;
  }

  .custom-intro p {
    font-size: 14px;
  }

  .contact-map {
    height: 320px;
    margin-top: 30px;
    padding: 22px;
  }

  .contact-list {
    margin-top: 30px;
  }

  .contact-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 82px;
    padding: 14px 0;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
  }

  .contact-icon img {
    width: 19px;
    height: 19px;
  }

  .contact-item h3 {
    font-size: 15px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .footer-top {
    gap: 26px;
    min-height: 0;
    padding: 34px 0 30px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand strong {
    font-size: 17px;
  }

  .footer-hotline {
    white-space: normal;
  }

  .footer-bottom {
    min-height: 0;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
    text-align: center;
  }

  .side-rail {
    top: auto;
    right: 8px;
    bottom: 14px;
    gap: 3px;
  }

  .side-rail a,
  .side-rail button {
    width: 44px;
    height: 44px;
  }

  .side-rail img {
    width: 26px;
    height: 26px;
  }

  .side-rail .side-pop {
    right: 50px;
  }

  .side-rail .side-phone-pop {
    min-width: 132px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .side-rail .side-qr-pop {
    width: 132px;
  }

  .side-rail .side-qr-pop img {
    width: 110px;
    height: 110px;
  }
}