:root {
  --gold: #c9974c;
  --gold-dark: #a87835;
  --ink: #20232b;
  --deep: #191b21;
  --muted: #8b8d91;
  --line: #e7e7e7;
  --paper: #f6f6f5;
}
.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
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #555;
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  border: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.topline {
  height: 40px;
  color: #fff;
  background: #333;
  font-size: 12px;
  line-height: 40px;
}

.topline .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topline a:hover,
.navlist>li>a:hover,
.navlist>li.current>a {
  color: var(--gold);
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-row {
  padding: 23px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.brand-row .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52px;
  height: auto;
}

.hotline {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #999;
}

.hotline img {
  width: 30px;
  height: 30px;
}

.hotline small,
.hotline strong {
  display: block;
}

.hotline small {
  font-size: 14px;
}

.hotline strong {
  color: var(--gold);
  font-size: 27px;
  line-height: 1.2;
}

.nav-row {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.navlist {
  display: flex;
  justify-content: center;
}

.navlist>li {
  position: relative;
  width: 133px;
  text-align: center;
}

.navlist>li+li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 9px;
  background: #ccc;
  content: "";
  transform: translateY(-50%);
}

.navlist>li>a {
  position: relative;
  display: block;
  height: 54px;
  color: #666;
  line-height: 54px;
  transition:
    color 0.3s ease;
}

.navlist>li>a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: 0.35s ease;
}

.navlist>li>a:hover::after,
.navlist>li.current>a::after {
  right: 18%;
  left: 18%;
}

.subnav {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: 100%;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  background: #fff;
  box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.35s ease;
}

.navlist>li:hover .subnav,
.navlist>li:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subnav a {
  position: relative;
  display: block;
  padding: 5px 10px;
  border-bottom: 1px solid #eee;
  color: #666;
  line-height: 30px;
  transition:
    padding-left 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.subnav a:hover {
  padding-left: 18px;
  color: var(--gold);
  background: #fafafa;
}

.home-hero {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #15151b;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(26px);
  transition:
    opacity 0.9s ease,
    transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s linear 1.1s;
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  content: "";
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 58%, rgba(0, 0, 0, 0.12));
  content: "";
  pointer-events: none;
}

.hero-slide>img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 5.2s cubic-bezier(0.2, 0.65, 0.35, 1);
}

.hero-slide.active>img {
  transform: scale(1.02);
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 610px;
  padding: 42px 56px 36px;
  color: #fff;
  border: 3px solid var(--gold);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 18px));
  transition:
    opacity 0.7s ease 0.12s,
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s;
}

.hero-slide.active .hero-caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-caption::after {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 42%;
  height: 28%;
  border-right: 3px solid #15151b;
  border-bottom: 3px solid #15151b;
  content: "";
}

.hero-caption h1 {
  margin: 0;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.25;
}

.hero-caption p {
  margin: 4px 0 0;
  font-size: 24px;
}

.hero-caption small {
  display: block;
  margin-top: 12px;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 8px;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 40px;
  height: 4px;
  padding: 0;
  border: 0;
  background: #fff;
}

.hero-dots button.active {
  background: var(--gold);
}

.search-strip {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.search-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hot-search {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aaa;
}

.hot-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  white-space: nowrap;
}

.hot-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: linear-gradient(145deg, #e7b869 0%, #b9782e 72%);
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.38),
    inset -3px -3px 5px rgba(112, 62, 19, 0.24),
    0 4px 9px rgba(157, 103, 41, 0.24);
  transform: translateY(-1px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.hot-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hot-label:hover .hot-icon {
  box-shadow:
    inset 2px 2px 4px rgba(255, 255, 255, 0.44),
    inset -3px -3px 5px rgba(112, 62, 19, 0.24),
    0 6px 13px rgba(157, 103, 41, 0.32);
  transform: translateY(-3px) rotate(-6deg);
}

.hot-search strong {
  color: var(--gold);
}

.hot-search a:hover {
  color: var(--gold);
}

.search-box {
  display: flex;
  width: 280px;
  overflow: hidden;
  border-radius: 22px;
  background: #f5f5f5;
}

.search-box input {
  width: 100%;
  padding: 10px 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #777;
}

.search-box button {
  width: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
}

.search-box button img {
  display: block;
  width: 17px;
  height: 17px;
  margin: 0 auto;
  object-fit: contain;
}

.home-section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.home-section.paper {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #333;
  font-size: 30px;
  font-weight: 400;
}

.section-heading p {
  margin: 3px 0 0;
  color: #aaa;
}

.gold-line {
  width: 42px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--gold);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 30px;
  color: #777;
}

.category-tabs a,
.category-tabs button {
  position: relative;
  padding: 0 0 8px;
  border: 0;
  color: inherit;
  background: transparent;
}

.category-tabs a::after,
.category-tabs button::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: 0.3s ease;
}

.category-tabs a:hover::after,
.category-tabs a.current::after,
.category-tabs button:hover::after,
.category-tabs button.current::after {
  right: 0;
  left: 0;
}

.category-tabs a:hover,
.category-tabs a.current,
.category-tabs button:hover,
.category-tabs button.current {
  color: var(--gold);
}

.case-panel[hidden] {
  display: none;
}

.case-panel.active {
  animation: case-panel-in 0.55s ease both;
}

.product-panel[hidden] {
  display: none;
}

.product-panel.active {
  animation: case-panel-in 0.55s ease both;
}

@keyframes case-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.product-card,
.case-card,
.news-card {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.product-card:hover,
.case-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(24, 27, 34, 0.16);
}

.spotlight-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle 190px at var(--spot-x, 50%) var(--spot-y, 50%),
      rgba(255, 255, 255, 0.2),
      transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.spotlight-card>* {
  position: relative;
  z-index: 2;
}

.spotlight-card:hover::after,
.spotlight-card:focus-within::after {
  opacity: 1;
}

.product-card img,
.case-card img,
.news-card img {
  display: block;
  width: 100%;
  height: 238px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card>.product-pixel-layer {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: none;
  height: 238px;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  overflow: hidden;
  pointer-events: none;
}

.product-pixel-tile {
  display: block;
  min-width: 0;
  min-height: 0;
  background-repeat: no-repeat;
  background-size: 1000% 600%;
  opacity: 0;
  transform: scale(0.58);
  transition:
    opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) var(--pixel-delay, 0ms),
    transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) var(--pixel-delay, 0ms);
}

.product-card:hover img,
.case-card:hover img,
.news-card:hover img {
  transform: scale(1.06);
}

.card-caption {
  position: relative;
  z-index: 3;
  padding: 14px 16px 16px;
  background: #fff;
}

.card-caption h3 {
  margin: 0;
  display: block;
  height: 1.35em;
  overflow: hidden;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-caption p {
  margin: 3px 0 0;
  overflow: hidden;
  color: #aaa;
  font-size: 12px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.more-link {
  display: block;
  width: 118px;
  margin: 34px auto 0;
  padding: 9px 0;
  border: 1px solid #ddd;
  color: #777;
  text-align: center;
}

.more-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.feature-panel {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  color: #fff;
  background: #1e2026;
}

.feature-panel>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.feature-panel .wrap {
  position: relative;
  z-index: 1;
  padding: 62px 0;
}

.feature-panel h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.feature-panel p {
  margin: 7px 0 0;
  color: #ddd;
  font-size: 17px;
}

.feature-panel .gold-line {
  margin: 18px 0 0;
}

.case-section {
  color: #fff;
  background: #1d2027;
}

.case-section .section-heading h2,
.advantage-section .section-heading h2 {
  color: #fff;
}

.case-section .section-heading p,
.advantage-section .section-heading p {
  color: #aaa;
}

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

.case-card {
  background: #252830;
}

.case-card img {
  height: 270px;
}

.case-card .card-caption h3 {
  color: #fff;
}

.advantage-section {
  color: #fff;
  background: #252830;
}

.advantage-section>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.advantage-section .wrap {
  position: relative;
  z-index: 1;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.advantage-item img {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.advantage-item {
  transition: transform 0.45s ease;
}

.advantage-item:hover {
  transform: translateY(-7px);
}

.advantage-item:hover img {
  filter: grayscale(0) brightness(1);
  transform: translateY(-3px) rotate(4deg) scale(1.04);
}

.advantage-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.advantage-item p {
  margin: 8px 0 0;
  color: #bbb;
  font-size: 13px;
}

.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid>img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-copy h2 {
  margin: 0 0 18px;
  color: #333;
  font-size: 27px;
  font-weight: 400;
}

.about-copy p {
  margin: 0 0 18px;
  color: #777;
}

.contact-panel {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #282a30;
}

.contact-panel>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.contact-panel .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.contact-panel h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
}

.contact-panel p {
  margin: 5px 0 0;
  color: #ddd;
  font-size: 17px;
}

.contact-panel .phone-large {
  color: var(--gold);
  font-size: 35px;
}

.qr-box {
  padding: 12px;
  background: var(--gold);
  text-align: center;
}

.qr-box img {
  display: block;
  width: 116px;
  height: 116px;
  margin-bottom: 8px;
}

.qr-box span {
  color: #fff;
  font-size: 12px;
}

.news-section {
  background: var(--paper);
}

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

.news-card img {
  height: 190px;
}

.news-card .card-caption {
  min-height: 108px;
}

.footer-main {
  color: #fff;
  background: #1e2129;
}

.footer-main .wrap {
  padding-top: 28px;
  padding-bottom: 34px;
}

.friend-links {
  padding-bottom: 25px;
  border-bottom: 1px solid #666;
  color: #eee;
}

.friend-links a {
  margin-left: 18px;
}

.friend-links a:hover,
.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 220px 200px 1fr 150px;
  gap: 16px;
  padding-top: 28px;
}

.footer-grid h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 400;
}

.footer-grid li {
  margin: 4px 0;
  color: #ddd;
  font-size: 13px;
}

.footer-phone {
  color: var(--gold);
  font-size: 24px;
  line-height: 1.35;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #777;
  outline: 0;
  color: #fff;
  background: transparent;
}

.footer-form textarea {
  grid-column: 1 / -1;
  min-height: 48px;
  resize: vertical;
}

.footer-form button {
  grid-column: 1 / -1;
  padding: 10px;
  border: 0;
  color: #333;
  background: #fff;
}

.footer-qr img {
  display: block;
  width: 120px;
  height: 120px;
  padding: 8px;
  background: #fff;
}

.copyright {
  padding: 10px 0;
  color: #ccc;
  background: #171920;
  font-size: 12px;
}

.copyright .wrap {
  display: flex;
  padding: 0;
  min-height: 18px;
  align-items: center;
  justify-content: space-between;
}

.toolbar {
  position: fixed;
  top: 50%;
  right: 16px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 76px;
  height: max-content;
  margin: 0;
  transform: translate3d(0, -50%, 0);
}

.tool-item {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  width: 76px;
  min-height: 76px;
  margin: 0;
  padding: 10px 3px 6px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--gold);
  text-align: center;
}

.tool-item:first-child {
  margin-top: 0;
}

.tool-item>img {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 3px;
  background: transparent;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transition: transform 0.35s ease;
}

.tool-item:hover>img {
  transform: translateY(-2px) scale(1.06);
}

.tool-pop.qr-pop {
  width: 204px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 27, 20, 0.2);
}

.tool-pop.qr-pop img {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  object-fit: contain;
  transform: none;
}

.tool-item span {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.tool-pop {
  position: absolute;
  top: 0;
  right: 86px;
  width: 170px;
  padding: 18px 10px;
  border-radius: 4px;
  background: var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.tool-item:hover .tool-pop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-backdrop,
.mobile-menu,
.mobile-menu-trigger,
.mobile-toolbar-trigger {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(20, 22, 28, 0.48);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 120;
  flex-direction: column;
  width: min(320px, 84vw);
  padding-bottom: 24px;
  overflow-y: auto;
  background: #fff;
  box-shadow: 14px 0 40px rgba(31, 27, 20, 0.18);
  transform: translateX(-105%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mobile-menu.is-open {
  background: #fff;
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.mobile-menu-head a {
  display: block;
  padding: 6px 9px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu-head img {
  display: block;
  width: 142px;
  height: auto;
}

.mobile-menu-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0 0 2px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  color: #777;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.mobile-menu-close:hover {
  border-color: var(--gold);
  color: #fff;
  background: var(--gold);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 18px 0;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 12px;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 15px;
  transition:
    padding 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.mobile-menu-nav a::after {
  margin-left: auto;
  color: var(--gold);
  content: "\2192";
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.is-current {
  padding-left: 18px;
  color: var(--gold);
  background: #fbf7f0;
}

.mobile-menu-nav a:hover::after,
.mobile-menu-nav a.is-current::after {
  opacity: 1;
  transform: translateX(0);
}

.menu-open {
  overflow: hidden;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  z-index: 60;
  padding: 10px 20px;
  border-radius: 2px;
  color: #fff;
  background: rgba(32, 35, 43, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.inner-banner {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #eee;
}

.inner-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.25) 62%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 55%);
  content: "";
  pointer-events: none;
}

.inner-banner>img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.inner-banner .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: #fff;
  transform: translate(-50%, -50%);
}

.inner-banner .wrap::before {
  position: absolute;
  top: -17px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
  animation: inner-banner-line 0.75s ease both;
}

.inner-banner h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  animation: inner-banner-title 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.inner-banner p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  animation: inner-banner-title 0.8s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes inner-banner-title {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes inner-banner-line {
  from {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

.breadcrumb {
  padding: 19px 0;
  border-bottom: 1px solid #eee;
  color: #aaa;
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.content-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 48px;
  padding: 58px 0 82px;
}

.content-layout--centered {
  display: block;
  width: min(920px, calc(100% - 40px));
}

.content-layout--centered>article {
  width: 100%;
}

.side-title {
  padding: 18px 20px;
  color: #fff;
  background: var(--gold);
}

.side-title strong {
  display: block;
  font-size: 22px;
  font-weight: 400;
}

.side-title span {
  color: #f8ead5;
  font-size: 12px;
  letter-spacing: 2px;
}

.side-nav {
  border: 1px solid #eee;
  border-top: 0;
}

.side-nav a {
  position: relative;
  display: block;
  padding: 13px 18px 13px 22px;
  border-bottom: 1px solid #eee;
  color: #666;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.side-nav a::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 3px;
  height: 8px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scaleY(0.35);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.side-nav a:hover,
.side-nav a.current {
  color: var(--gold);
  background: #fafafa;
}

.side-nav a:hover::before,
.side-nav a.current::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(2.8);
}

.content-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
}

.content-title h2 {
  margin: 0;
  color: #333;
  font-size: 27px;
  font-weight: 400;
}

.content-title span {
  color: #aaa;
  font-size: 12px;
}

.pro-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pro-list .product-card img {
  height: 230px;
}

.pro-list .product-card>.product-pixel-layer {
  height: 230px;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-list .case-card img {
  height: 220px;
}

.news-list>a {
  display: grid;
  grid-template-columns: 130px 1fr 70px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.news-list img {
  width: 130px;
  height: 90px;
  object-fit: cover;
}

.news-list h3 {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #444;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list p {
  margin: 5px 0 0;
  display: -webkit-box;
  overflow: hidden;
  color: #999;
  font-size: 13px;
  line-height: 1.55;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-date {
  color: #aaa;
  text-align: right;
}

.pagenum {
  display: flex;
  justify-content: center;
  margin: 40px 0 10px;
}

.pagenum .pagination.page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  padding: 5px;
}

.pagenum .pagination.page>a.page-number,
.pagenum .pagination.page>span.page-number,
.pagenum .pagination.page>a.prev-page,
.pagenum .pagination.page>span.prev-page,
.pagenum .pagination.page>a.next-page,
.pagenum .pagination.page>span.next-page {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #e6ded0;
  border-radius: 50%;
  color: #777;
  background: #fff;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(48, 39, 26, 0.04);
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pagenum .pagination.page>a.page-number:hover,
.pagenum .pagination.page>a.prev-page:hover,
.pagenum .pagination.page>a.next-page:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #fffaf2;
  box-shadow: 0 9px 18px rgba(169, 121, 52, 0.18);
  transform: translateY(-4px);
}

.pagenum .pagination.page>span.page-number.active {
  border-color: var(--gold);
  color: #fff;
  background: linear-gradient(145deg, #d7ac67, var(--gold));
  box-shadow: 0 9px 18px rgba(169, 121, 52, 0.28);
  animation: page-current-pulse 2.8s ease-in-out infinite;
}

.pagenum .pagination.page>a.prev-page,
.pagenum .pagination.page>span.prev-page,
.pagenum .pagination.page>a.next-page,
.pagenum .pagination.page>span.next-page {
  width: 38px;
  height: 38px;
  color: #8c795f;
  background: #fdfbf7;
}

.pagenum .pagination.page>.prev-page svg,
.pagenum .pagination.page>.next-page svg {
  width: 17px;
  height: 17px;
}

.pagenum .pagination.page>.prev-page.active,
.pagenum .pagination.page>.next-page.active {
  border-color: #eee9e1;
  color: #c9c1b6;
  background: #faf9f7;
  box-shadow: none;
  cursor: default;
}

.pagenum .pagination.page>span.total:not(.page-number) {
  min-width: 16px;
  height: 40px;
  padding: 0;
  border-color: transparent;
  color: #aaa;
  background: transparent;
  box-shadow: none;
}

@keyframes page-current-pulse {

  0%,
  100% {
    box-shadow: 0 9px 18px rgba(169, 121, 52, 0.22);
  }

  50% {
    box-shadow: 0 11px 22px rgba(169, 121, 52, 0.34);
  }
}

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

.honor-card {
  padding: 10px;
  border: 1px solid #eee;
  background: #fff;
}

.honor-card img {
  cursor: pointer;
  display: block;
  width: 100%;
  object-fit: contain;
}

.honor-card p {
  margin: 10px 0 0;
  color: #777;
  text-align: center;
}

.article-copy {
  color: #666;
  line-height: 2;
}

.article-copy h3 {
  margin: 0 0 10px;
  display: -webkit-box;
  overflow: hidden;
  color: #333;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-meta {
  padding-bottom: 20px;
  color: #aaa;
  border-bottom: 1px solid #eee;
  font-size: 12px;
}

.article-copy p {
  margin: 18px 0;
}

.article-copy img {
  display: block;
  width: 100%;
  max-height: 430px;
  margin: 24px auto;
  object-fit: cover;
}

.article-links {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  color: #999;
}

.article-links a:hover {
  color: var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 24px;
  align-items: start;
  height: 404px;
}

.Product_top {
  position: relative;
  height: 404px;
  overflow: hidden;
  background: #f2f2f2;
}

.Product_top .zhenshangyin-wrap,
.Product_top .item,
.Product_top .img_box {
  height: 100%;
}

.Product_top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Product_thumb {
  position: relative;
  height: 480px;
  margin-top: 0;
  padding: 42px 0;
  overflow: hidden;
}

.Product_thumb .zhenshangyin-wrap {
  height: 100%;
}

.Product_thumb .zhenshangyin-slide {
  width: 100%;
  height: 82px;
  flex-shrink: 0;
}

.Product_thumb .Item {
  display: block;
  width: 100%;
  height: 82px;
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.Product_thumb .zhenshangyin-slide-active .Item,
.Product_thumb .zhenshangyin-slide.is-active .Item,
.Product_thumb .zhenshangyin-slide.active .Item {
  border-color: var(--gold);
}

.Product_thumb .Item:hover {
  transform: translateX(-3px);
}

.Product_thumb .Item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Product_thumb .prev,
.Product_thumb .next {
  position: absolute;
  z-index: 2;
  display: flex;
  left: 50%;
  width: 100%;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #333;
  background: #e8e4dc;
  cursor: pointer;
  transform: translateX(-50%);
  transition: color 0.25s ease, background 0.25s ease;
}

.Product_thumb .prev {
  top: 0;
}

.Product_thumb .next {
  top: auto;
  right: auto;
  bottom: 0;
}

.Product_thumb .prev:hover,
.Product_thumb .next:hover {
  color: #fff;
  background: var(--gold);
}

.gallery-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  background: #f2f2f2;
}

.thumb-list {
  display: grid;
  gap: 12px;
}

.thumb-button {
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
}

.thumb-button.active {
  border-color: var(--gold);
}

.thumb-button img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.detail-summary {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.detail-summary h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 22px;
  font-weight: 400;
}

.detail-summary p {
  margin: 6px 0;
  color: #888;
}

.form-card {
  padding: 28px;
  border: 1px solid #eee;
  background: #fafafa;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: block;
  color: #777;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #ddd;
  outline: 0;
  background: #fff;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.submit-button {
  margin-top: 20px;
  padding: 12px 30px;
  border: 0;
  color: #fff;
  background: var(--gold);
}

.contact-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 42px;
  border-bottom: 1px solid #e7e1d7;
}

.contact-feature-copy h3 {
  margin: 0 0 18px;
  color: #333;
  font-size: 28px;
  font-weight: 400;
}

.contact-feature-description {
  margin: 0 0 18px;
  color: #665f56;
  font-size: 17px;
  line-height: 1.9;
}

.contact-feature-copy p:not(.contact-feature-description) {
  margin: 10px 0;
  color: #777;
  line-height: 1.9;
}

.contact-feature-image {
  min-height: 280px;
  overflow: hidden;
  background: #f1eee8;
}

.contact-feature-image img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.contact-info p {
  margin: 9px 0;
}

.map-placeholder {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid #ddd;
  background:
    linear-gradient(28deg, transparent 48%, rgba(255, 255, 255, 0.9) 49%, rgba(255, 255, 255, 0.9) 51%, transparent 52%),
    linear-gradient(-20deg, transparent 46%, rgba(255, 255, 255, 0.75) 47%, rgba(255, 255, 255, 0.75) 49%, transparent 50%),
    #dedfdc;
}

.map-placeholder::before,
.map-placeholder::after {
  position: absolute;
  content: "";
}

.map-placeholder::before {
  top: 25%;
  left: 18%;
  width: 65%;
  height: 32%;
  border: 18px solid rgba(180, 180, 180, 0.35);
  border-right: 0;
  transform: rotate(-8deg);
}

.map-placeholder::after {
  top: 50%;
  left: 52%;
  width: 26px;
  height: 26px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(-45deg);
}

body.motion-ready .home-motion {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease var(--motion-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) var(--motion-delay, 0ms);
}

body.motion-ready .home-motion.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .site-motion {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease var(--motion-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) var(--motion-delay, 0ms);
}

body.motion-ready .site-motion.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .inner-banner .wrap.site-motion {
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.75s ease var(--motion-delay, 0ms);
}

body.motion-ready .inner-banner .wrap.site-motion.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
  .wrap {
    max-width: calc(100% - 28px);
  }

  .content-layout {
    padding: 40px 0;
  }

  .brand-row {}

  .brand-logo {
    max-height: 42px;
  }

  .hotline img {
    width: 25px;
    height: 25px;
  }

  .hotline strong {
    font-size: 19px;
  }

  .nav-row {
    display: none;
  }

  .mobile-menu-backdrop {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-toolbar-trigger {
    position: fixed;
    top: calc(50% - 233px);
    right: 16px;
    z-index: 51;
    display: block;
    width: 76px;
  }

  .mobile-toolbar-trigger .tool-item {
    width: 76px;
    min-height: 76px;
  }

  .navlist {
    width: 931px;
    justify-content: flex-start;
    margin: 0 auto;
  }

  .home-hero {
    height: 420px;
  }

  .hero-caption {
    width: min(600px, calc(100% - 36px));
    padding: 28px 30px;
  }

  .hero-caption h1 {
    font-size: 34px;
  }

  .hero-caption p {
    font-size: 18px;
  }

  .search-strip .wrap,
  .contact-panel .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .product-grid,
  .case-grid,
  .news-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-feature,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-feature-image img {
    height: 260px;
  }

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

  .footer-qr {
    grid-column: 1 / -1;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .content-layout--centered {
    width: calc(100% - 28px);
  }

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

  .side-nav a {
    border-right: 1px solid #eee;
  }

  .pro-list,
  .case-list,
  .honor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .toolbar .tool-item {
    box-shadow: 0 5px 14px rgba(31, 27, 20, 0.2);
  }

  .breadcrumb {
    padding: 10px 0;
  }

  .topline {
    font-size: 11px;
  }

  .topline .wrap {
    max-width: calc(100% - 20px);
  }

  .quick-links {
    gap: 5px;
  }

  .brand-row .wrap {
    max-width: calc(100% - 20px);
  }

  .hotline small {
    font-size: 11px;
  }

  .hotline strong {
    font-size: 15px;
  }

  .home-hero {
    height: 330px;
  }

  .hero-caption {
    padding: 20px;
  }

  .hero-caption h1 {
    font-size: 25px;
  }

  .hero-caption p {
    font-size: 15px;
  }

  .hero-caption small {
    font-size: 8px;
    letter-spacing: 4px;
  }

  .hot-search {
    display: block;
    line-height: 2.1;
  }

  .search-box {
    width: 100%;
  }

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

  .section-heading h2,
  .inner-banner h1 {
    font-size: 25px;
  }

  .category-tabs {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .advantage-grid {

    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .case-grid,
  .news-grid,
  .pro-list,
  .case-list,
  .honor-grid {
    grid-template-columns: 1fr;
  }

  .footer-main .wrap {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .friend-links {
    padding-bottom: 12px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.6;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .friend-links a {
    margin-left: 10px;
  }

  .footer-grid {
    grid-template:
      "nav product"
      "contact qr"
      "form form" / minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px 12px;
    padding-top: 16px;
  }

  .footer-grid>div:nth-child(1) {
    grid-area: nav;
  }

  .footer-grid>div:nth-child(2) {
    grid-area: product;
  }

  .footer-grid>div:nth-child(3) {
    grid-area: contact;
  }

  .footer-grid>div:nth-child(4) {
    grid-area: form;
  }

  .footer-grid>div:nth-child(5) {
    grid-area: qr;
  }

  .footer-grid h3 {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .footer-grid li {
    margin: 2px 0;
    font-size: 12px;
  }

  .footer-phone {
    font-size: 19px;
  }

  .footer-form {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .footer-form input,
  .footer-form textarea {
    padding: 7px 8px;
  }

  .footer-form textarea {
    min-height: 40px;
  }

  .footer-form button {
    padding: 7px;
  }

  .footer-qr {
    grid-column: auto;
  }

  .footer-qr img {
    width: 82px;
    height: 82px;
    padding: 5px;
  }

  .product-card img,
  .case-card img {
    height: 220px;
  }

  .product-card>.product-pixel-layer {
    height: 220px;
  }

  .footer-form textarea,
  .footer-form button {
    grid-column: 1 / -1;
  }

  .copyright .wrap {
    display: block;
  }

  .toolbar {
    right: 8px;
    width: 56px;
    transform: translate3d(0, -50%, 0);
  }

  .mobile-toolbar-trigger {
    position: fixed;
    top: calc(50% - 173px);
    right: 8px;
    z-index: 51;
    display: block;
    width: 56px;
  }

  .mobile-toolbar-trigger .tool-item {
    width: 56px;
    min-height: 56px;
  }

  .tool-item {
    width: 56px;
    min-height: 56px;
    padding: 5px 1px;
  }

  .tool-item>img {
    width: 20px;
    height: 20px;
  }

  .tool-item span {
    font-size: 10px;
  }

  .tool-pop {
    right: 64px;
  }

  .tool-pop.qr-pop {
    width: 158px;
    padding: 10px;
  }

  .tool-pop.qr-pop img {
    width: 69px;
    height: 69px;
  }

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

  .news-list>a {
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }

  .news-list img {
    width: 90px;
    height: 72px;
  }

  .news-list .news-date {
    grid-column: 2;
    text-align: left;
  }

  .gallery,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    height: auto;
  }

  .Product_top {
    height: 330px;
  }

  .Product_thumb {
    height: 70px;
    margin-top: 10px;
    padding: 0 34px;
  }

  .Product_thumb .zhenshangyin-wrap,
  .Product_thumb .Item {
    height: 70px;
  }

  .Product_thumb .zhenshangyin-slide {
    width: auto;
    height: 70px;
  }

  .Product_thumb .Item {
    width: 100%;
  }

  .Product_thumb .Item:hover {
    transform: translateY(-2px);
  }

  .Product_thumb .prev,
  .Product_thumb .next {
    top: 50%;
    left: auto;
    width: 26px;
    height: 42px;
    transform: translateY(-50%);
  }

  .Product_thumb .prev {
    left: 0;
  }

  .Product_thumb .next {
    right: 0;
    bottom: auto;
  }

  .gallery-main {
    height: 330px;
  }

  .thumb-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .thumb-button img {
    height: 58px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid label.full {
    grid-column: auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card.pixel-transition-card>.product-pixel-layer {
    display: grid;
  }

  .product-card.pixel-transition-card:hover .product-pixel-tile,
  .product-card.pixel-transition-card:focus-visible .product-pixel-tile {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

  body.motion-ready .home-motion,
  body.motion-ready .site-motion {
    opacity: 1;
    transform: none;
  }
}
