:root {
  --aqua: #89d9d4;
  --aqua-light: #eafbfb;
  --gold: #cbb47c;
  --yellow: #fff000;
  --ink: #666;
  --paper: #fff;
  --line: #e8daae
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  background: #fff
}

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

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

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.topbar {
  height: 30px;
  background: var(--yellow);
  font-size: 11px;
  color: #786e22
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px
}

.language-link {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(120, 110, 34, .45);
  border-radius: 2px;
  background: #fffce0;
  color: #786e22;
  font: 11px "Microsoft YaHei", sans-serif
}

.language-link:hover,
.language-link:focus-visible {
  border-color: #8f793b;
  box-shadow: 0 0 0 2px rgba(143, 121, 59, .18);
  outline: none
}

.top-links i {
  margin: 0 6px;
  font-style: normal
}

.top-links a:hover,
.footer nav a:hover {
  color: #7a651f;
  text-decoration: underline
}

.site-header {
  background: #edf8f6;
  border-bottom: 1px solid #d9eeeb
}

.site-header {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='86' viewBox='0 0 86 86'%3E%3Cg fill='none' stroke='%23c7ad68' stroke-opacity='.22' stroke-width='1'%3E%3Cellipse cx='43' cy='29' rx='7' ry='13'/%3E%3Cellipse cx='57' cy='43' rx='13' ry='7'/%3E%3Cellipse cx='43' cy='57' rx='7' ry='13'/%3E%3Cellipse cx='29' cy='43' rx='13' ry='7'/%3E%3Ccircle cx='43' cy='43' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 86px 86px;
  border-bottom: 1px solid #eadcae;
  animation: header-pattern-drift 28s linear infinite
}

@keyframes header-pattern-drift {
  to {
    background-position: 172px 86px
  }
}

@media(prefers-reduced-motion:reduce) {
  .site-header {
    animation: none
  }
}

.header-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  color: #f1da00
}

.brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(314px, 34vw);
  max-height: 96px;
  object-fit: contain;
  object-position: left center
}

.brand-mark {
  font-family: Georgia, serif;
  font-size: 68px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -10px;
  margin-right: 12px;
  text-shadow: 2px 2px 0 #fff
}

.brand-name {
  font-size: 22px;
  font-weight: 700
}

.brand-name small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #b6a731;
  margin-top: 5px
}

.hotline {
  text-align: right
}

.hotline span {
  display: block;
  font-size: 13px
}

.hotline b {
  background: #a85454;
  color: #fff;
  font-size: 10px;
  padding: 3px 7px
}

.hotline strong {
  display: block;
  color: #ba5960;
  font: 30px/1.4 Georgia, serif
}

.mobile-header-menu {
  display: none
}

.main-nav {
  position: relative;
  z-index: 40;
  border-top: 1px solid #efd400;
  border-bottom: 1px solid #ddd;
  background: #fff
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.nav-toggle-label {
  display: none
}

.nav-toggle:focus-visible+.nav-toggle-label {
  outline: 2px solid #b79d5a;
  outline-offset: -3px
}

.nav-inner {
  display: grid;
  grid-template-columns: repeat(var(--nav-count, 8), minmax(0, 1fr));
  position: relative
}

.nav-item {
  position: relative;
  min-width: 0
}

.nav-item>a {
  display: block;
  min-width: 0;
  padding: 17px 28px 17px 10px;
  text-align: center;
  font-size: 16px;
  border-right: 1px dotted #c8b880;
  transition: .2s
}

.nav-item:first-child>a {
  border-left: 1px dotted #c8b880
}

.nav-item>a:hover,
.nav-item>a.active {
  color: #a98835;
  background: #fffdf0
}

.submenu-toggle {
  position: absolute;
  z-index: 2;
  right: 5px;
  top: 0;
  bottom: 0;
  width: 25px;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b09a60;
  font: 18px/1 Georgia, serif;
  cursor: pointer;
  transition: transform .2s, color .2s
}

.has-submenu.is-submenu-open>.submenu-toggle {
  transform: rotate(180deg);
  color: #8e722f
}

.submenu {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 100%;
  display: none;
  min-width: 190px;
  padding: 6px 0;
  border-top: 2px solid var(--yellow);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 28px rgba(45, 75, 72, .16)
}

.nav-item:nth-last-child(-n+2) .submenu {
  right: 0;
  left: auto
}

.submenu a {
  display: block;
  padding: 11px 18px;
  border-bottom: 1px dotted #ded6c3;
  color: #777;
  text-align: left;
  font-size: 13px;
  white-space: nowrap;
  transition: .2s
}

.submenu a:last-child {
  border-bottom: 0
}

.submenu a:hover {
  padding-left: 23px;
  background: #fffced;
  color: #9d7e33
}

.has-submenu.is-submenu-open>.submenu {
  display: block
}

@media(min-width:641px) {

  .has-submenu:hover>.submenu,
  .has-submenu:focus-within>.submenu {
    display: block
  }

  .has-submenu:hover>.submenu-toggle,
  .has-submenu:focus-within>.submenu-toggle {
    transform: rotate(180deg)
  }
}

@media(min-width:641px) {
  .nav-inner {
    align-items: stretch
  }

  .nav-item {
    display: flex
  }

  .nav-item>a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    line-height: 1.35
  }
}

.nav-item>a.active {
  color: #80651e;
  background: linear-gradient(180deg, #fffef8, #fff9cf);
  box-shadow: inset 0 -4px #efd400;
  font-weight: 600
}

.submenu a.active {
  padding-left: 23px;
  border-left: 3px solid #efd400;
  background: #fff8cf;
  color: #8f7026;
  font-weight: 600
}

@media(max-width:640px) {
  .nav-item>a.active {
    box-shadow: inset 4px 0 #efd400
  }

  .submenu a.active {
    padding-left: 35px
  }
}

.submenu-toggle {
  top: 50%;
  bottom: auto;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 0 !important;
  line-height: 0;
  transform: translateY(-50%) !important
}

.submenu-toggle:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  translate: -50% -50%;
  rotate: 45deg;
  transform: none;
  transition: rotate .2s
}

.has-submenu.is-submenu-open>.submenu-toggle:before {
  rotate: 225deg;
  transform: none
}

@media(min-width:641px) {

  .has-submenu:hover>.submenu-toggle:before,
  .has-submenu:focus-within>.submenu-toggle:before {
    rotate: 225deg;
    transform: none
  }
}

.hero {
  aspect-ratio: 1894/770;
  background: url("assets/hero.jpg") center/cover no-repeat
}

.hero-slider {
  position: relative;
  aspect-ratio: 1894/770;
  overflow: hidden;
  background: #420000
}

.hero-track {
  display: flex;
  width: calc(var(--slide-count, 1) * 100%);
  height: 100%;
  transition: transform .55s ease;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  will-change: transform
}

.hero-slider.is-dragging .hero-track {
  transition: none;
  cursor: grabbing
}

.hero-slider.is-single .hero-track {
  cursor: default
}

.hero-slide {
  position: relative;
  flex: 0 0 calc(100% / var(--slide-count, 1));
  height: 100%;
  overflow: hidden
}

.hero-slide>a,
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%
}

.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none
}

.banner-copy {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  padding: 28px 34px;
  max-width: 480px;
  font-family: STSong, "SimSun", serif
}

.banner-copy span {
  font: 12px Georgia, serif;
  letter-spacing: 3px
}

.banner-copy h2 {
  margin: 10px 0;
  font-size: 35px;
  font-weight: 400
}

.banner-copy p {
  margin: 0;
  font-size: 17px;
  letter-spacing: 1px
}

.dark-copy {
  color: #fff;
  background: rgba(28, 73, 70, .72);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12)
}

.light-copy {
  color: #775e4f;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 35px rgba(117, 78, 55, .1)
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%)
}

.slider-dots i {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  transition: background .25s
}

.slider-dots i.is-active {
  background: #fff000
}

.pattern {
  background-color: var(--aqua);
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 12px 12px
}

.search-row {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #608d89
}

.hot-keywords {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px
}

.hot-keywords-label {
  flex: 0 0 auto
}

.hot-keywords-list {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px 12px
}

.hot-keywords-list a {
  color: #527d79;
  transition: color .2s
}

.hot-keywords-list a:hover,
.hot-keywords-list a:focus-visible {
  color: #8f6f25;
  text-decoration: underline;
  outline: none
}

.search {
  display: flex;
  width: min(340px, 45%);
  background: #fff;
  border: 4px solid rgba(255, 255, 255, .35)
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 9px 12px;
  outline: none;
  font: inherit
}

.search button {
  flex: 0 0 70px;
  min-width: 70px;
  border: 0;
  color: #fff;
  background: #bda56f;
  padding: 0 14px;
  white-space: nowrap;
  cursor: pointer
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  margin-bottom: 40px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .55)
}

.category-card {
  height: 178px;
  position: relative;
  border-right: 2px dashed #94ddd8;
  perspective: 900px;
  outline: none
}

.category-card:last-child {
  border-right: 0
}

.category-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2, .7, .25, 1);
  will-change: transform
}

.category-card:hover .category-card-inner,
.category-card:focus-within .category-card-inner,
.category-card.is-flipped .category-card-inner {
  transform: rotateY(180deg)
}

.category-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden
}

.category-front {
  color: #907b52;
  background: #fff;
  transition: background .25s
}

.category-card:nth-child(odd) .category-front {
  background: #fffdf6
}

.category-back {
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(145deg, #367f79, #69c5bf);
  transform: rotateY(180deg);
  box-shadow: inset 0 0 0 3px rgba(255, 240, 85, .55)
}

.category-back strong {
  font: 19px STSong, "SimSun", serif;
  font-weight: 400
}

.category-back>span {
  margin: 5px 0 10px;
  color: #e4fbf9;
  font: 8px Georgia, serif;
  letter-spacing: 1.5px
}

.category-back nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: min(150px, 90%)
}

.category-back a {
  display: block;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  text-align: center;
  font-size: 11px;
  transition: .2s
}

.category-back a:hover,
.category-back a:focus-visible {
  border-color: #fff7a4;
  background: rgba(255, 255, 255, .18);
  color: #fff9a5;
  outline: none
}

.category-card:focus-visible {
  outline: 3px solid rgba(255, 224, 0, .8);
  outline-offset: 3px
}

.category-icon {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  color: #cbb06d;
  font-style: normal
}

.category-icon span,
.category-icon:before,
.category-icon:after,
.category-icon span:before,
.category-icon span:after {
  position: absolute;
  display: block;
  content: ""
}

.category-icon-ring span {
  left: 15px;
  bottom: 4px;
  width: 35px;
  height: 35px;
  border: 4px solid currentColor;
  border-radius: 50%
}

.category-icon-ring:before {
  left: 25px;
  top: 3px;
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  transform: rotate(45deg)
}

.category-icon-ring:after {
  left: 28px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg)
}

.category-icon-necklace:before {
  left: 8px;
  top: 1px;
  width: 48px;
  height: 43px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-radius: 10% 10% 50% 50%
}

.category-icon-necklace span {
  left: 25px;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border: 3px solid currentColor;
  transform: rotate(45deg)
}

.category-icon-bracelet:before {
  left: 8px;
  top: 6px;
  width: 45px;
  height: 45px;
  border: 5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg)
}

.category-icon-bracelet span:before,
.category-icon-bracelet span:after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff
}

.category-icon-bracelet span:before {
  left: 45px;
  top: 10px
}

.category-icon-bracelet span:after {
  left: 48px;
  top: 43px
}

.category-icon-earrings:before,
.category-icon-earrings:after {
  top: 5px;
  width: 20px;
  height: 31px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-radius: 50% 50% 55% 55%
}

.category-icon-earrings:before {
  left: 8px
}

.category-icon-earrings:after {
  right: 8px
}

.category-icon-earrings span:before,
.category-icon-earrings span:after {
  top: 34px;
  width: 14px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 60% 60%;
  transform: rotate(45deg)
}

.category-icon-earrings span:before {
  left: 11px
}

.category-icon-earrings span:after {
  left: 39px
}

.category-icon-gift span {
  left: 9px;
  top: 23px;
  width: 47px;
  height: 34px;
  border: 3px solid currentColor
}

.category-icon-gift span:before {
  left: 19px;
  top: -3px;
  width: 4px;
  height: 34px;
  background: currentColor
}

.category-icon-gift span:after {
  left: -7px;
  top: 8px;
  width: 55px;
  height: 4px;
  background: currentColor
}

.category-icon-gift:before,
.category-icon-gift:after {
  top: 6px;
  width: 22px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 0 50%
}

.category-icon-gift:before {
  left: 13px;
  transform: rotate(23deg)
}

.category-icon-gift:after {
  right: 13px;
  transform: scaleX(-1) rotate(23deg)
}

.category-grid b {
  font-size: 16px;
  font-weight: 400
}

.category-grid small {
  font: 10px Georgia, serif;
  margin-top: 7px;
  color: #b3a27c
}

.product-section {
  padding: 32px 0 34px
}

.ring-section {
  background: var(--aqua);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow)
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-family: STSong, "SimSun", serif;
  font-weight: 400;
  font-size: 22px;
  color: #8e866f
}

.section-heading p {
  margin: 0;
  font: 12px STSong, "SimSun", serif;
  color: #888
}

.ring-carousel {
  border-top: 2px solid #d7e76a;
  padding-top: 18px
}

.ring-stage {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  margin: auto
}

.ring-viewport {
  min-width: 0;
  overflow: hidden
}

.ring-track {
  display: flex;
  transition: transform .48s ease;
  will-change: transform
}

.ring-card {
  flex: 0 0 33.333333%;
  min-width: 0;
  margin: 0;
  padding: 0 12px;
  text-align: center
}

.ring-card>a {
  display: block
}

.ring-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover
}

.ring-card figcaption {
  min-height: 42px;
  margin-top: 5px;
  font: 12px/1.5 STSong, "SimSun", serif;
  color: #776f61
}

.ring-card small {
  color: #948b80
}

.ring-arrow {
  width: 48px;
  height: 70px;
  margin: auto;
  border: 0;
  background: transparent;
  color: #e8c574;
  font: 54px/1 Georgia, serif;
  cursor: pointer;
  transition: .2s
}

.ring-arrow:hover {
  color: #ad8f49;
  transform: scale(1.08)
}

.ring-thumbs {
  display: flex;
  justify-content: center;
  gap: 5px;
  max-width: 690px;
  margin: 10px auto 0;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: thin
}

.ring-thumbs button {
  flex: 0 0 76px;
  width: 76px;
  height: 66px;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, .7);
  background: #d8f0ed;
  cursor: pointer;
  overflow: hidden;
  transition: .2s
}

.ring-thumbs button:hover,
.ring-thumbs button.is-active {
  border-color: #b79750;
  background: #fff
}

.ring-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.bracelet-carousel {
  border-color: #eee
}

.bracelet-carousel .ring-thumbs button {
  background: #fff
}

.bracelet-carousel .ring-card figcaption {
  color: #514b43
}

.tone-0 {
  filter: none
}

.tone-1 {
  filter: saturate(1.22) brightness(1.03)
}

.tone-2 {
  filter: sepia(.12) saturate(1.25)
}

.tone-3 {
  filter: grayscale(.32) brightness(1.05)
}

.tone-4 {
  filter: sepia(.23) hue-rotate(320deg) saturate(1.08)
}

.tone-5 {
  filter: contrast(1.08) saturate(.88)
}

.tone-6 {
  filter: sepia(.14) brightness(1.08)
}

.showcase {
  border-top: 2px solid #d7e76a;
  padding-top: 20px
}

.showcase>img {
  width: 100%
}

.product-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font: 11px STSong, "SimSun", serif;
  color: #786f60;
  margin: 5px 0 20px
}

.product-captions small {
  color: #9a9188
}

.thumb-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px
}

.thumb-row i {
  width: 64px;
  height: 54px;
  background: #fff7 center/45px no-repeat;
  border: 1px solid #d8eee9;
  position: relative
}

.thumb-row i:after {
  content: "◇";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b49c62;
  font-size: 35px
}

.thumb-row i.selected {
  border: 2px solid #b99b52;
  background: #fff
}

.arrow {
  font: 44px/1 Georgia, serif;
  color: #e4c477;
  padding: 0 14px
}

.bracelet-section {
  background: linear-gradient(120deg, #f5ffff, #fff)
}

.bracelet-showcase {
  border-color: #eee
}

.bracelet-showcase .product-captions {
  font-size: 12px;
  color: #4e4a43
}

.rose i:after {
  content: "◯";
  color: #b96e51
}

.why {
  padding: 20px 0 40px;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow)
}

.why-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
  align-items: stretch
}

.service-card {
  background: var(--yellow);
  padding: 0 10px 10px
}

.service-card h2 {
  height: 54px;
  margin: 0;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 400;
  color: #88742f
}

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

.reason-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .97);
  padding: 18px 26px 14px;
  border-top: 4px solid var(--yellow);
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(59, 132, 127, .1)
}

.reason-card h2 {
  flex: 0 0 auto;
  color: #d56a82;
  font-weight: 400;
  margin: 0 0 8px;
  font-size: 22px
}

.reason-card ol {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(4, minmax(72px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: reason
}

.reason-card li {
  counter-increment: reason;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 12px 8px 64px;
  border-bottom: 1px dotted #d9d2c4;
  transition: background .2s
}

.reason-card li:hover {
  background: #fffdf3
}

.reason-card li:last-child {
  border: 0
}

.reason-card li:before {
  content: "0" counter(reason);
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #c6aa6b, #aa8c4f);
  color: #fff;
  font: bold 18px Georgia, serif;
  box-shadow: 0 3px 8px rgba(128, 96, 40, .15)
}

.reason-card b {
  font: 17px STSong, "SimSun", serif;
  color: #6e6659
}

.reason-card p {
  font: 12px/1.65 STSong, "SimSun", serif;
  margin: 4px 0 0;
  color: #777
}

.about {
  padding: 45px 0;
  background: #f8ffff
}

.about .section-heading {
  padding-bottom: 18px;
  border-bottom: 1px dotted #999
}

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

.about-grid>img {
  width: 300px;
  height: 270px;
  object-fit: cover
}

.about-copy h3 {
  font: 18px STSong, "SimSun", serif;
  color: #777;
  margin-top: 0
}

.about-copy p {
  font: 15px/2 STSong, "SimSun", serif;
  color: #777
}

.values {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap
}

.values>span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 9px 14px;
  background: #fff;
  color: #9d7f3c;
  font-size: 16px;
  box-shadow: 0 5px 16px rgba(65, 109, 105, .06);
  transition: .2s
}

.values>span:hover {
  transform: translateY(-3px);
  background: #fffceb
}

.value-icon {
  position: relative;
  display: block;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: #b6964d;
  font-style: normal
}

.value-icon:before,
.value-icon:after {
  content: "";
  position: absolute;
  display: block
}

.value-icon-story:before,
.value-icon-story:after {
  top: 7px;
  width: 13px;
  height: 18px;
  border: 2px solid currentColor;
  background: #fff;
  transform-origin: bottom
}

.value-icon-story:before {
  left: 2px;
  border-radius: 2px 0 0 2px;
  transform: skewY(8deg)
}

.value-icon-story:after {
  right: 2px;
  border-radius: 0 2px 2px 0;
  transform: skewY(-8deg)
}

.value-icon-culture {
  background: linear-gradient(currentColor, currentColor) 3px 10px/26px 3px no-repeat, linear-gradient(currentColor, currentColor) 3px 27px/26px 3px no-repeat
}

.value-icon-culture:before {
  left: 3px;
  top: 1px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 8px solid currentColor
}

.value-icon-culture:after {
  left: 6px;
  top: 13px;
  width: 3px;
  height: 14px;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 12px 0 0 currentColor, 18px 0 0 currentColor
}

.value-icon-award:before {
  left: 7px;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 3px double currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff
}

.value-icon-award:after {
  left: 9px;
  top: 19px;
  width: 14px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(0 0, 45% 0, 50% 100%, 55% 0, 100% 0, 78% 100%, 50% 72%, 22% 100%)
}

.value-icon-team:before {
  left: 11px;
  top: 2px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: -9px 5px 0 -2px #fff, -9px 5px 0 0 currentColor, 9px 5px 0 -2px #fff, 9px 5px 0 0 currentColor
}

.value-icon-team:after {
  left: 8px;
  top: 15px;
  width: 16px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 2px 2px;
  box-shadow: -9px 4px 0 -2px #fff, -9px 4px 0 0 currentColor, 9px 4px 0 -2px #fff, 9px 4px 0 0 currentColor
}

.info {
  padding: 25px 0 34px
}

.info-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch
}

.info-card {
  height: 100%;
  background: #fff;
  border-radius: 4px;
  padding: 0 16px 10px
}

.info-title {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.info-title h2 {
  margin: 0;
  color: #6f756f;
  font: 19px STSong, "SimSun", serif
}

.info-title h2 small,
.tab-button small {
  font: 11px Georgia, serif
}

.info-title a,
.more-link {
  padding: 5px 9px;
  background: #cabfa6;
  color: #fff;
  font: bold 10px Arial, sans-serif
}

.info-card ul,
.tab-panel ul {
  margin: 0;
  padding: 8px 4px;
  list-style: none
}

.info-card li,
.tab-panel li {
  padding: 11px 8px;
  border-bottom: 1px dotted #cfcfcf;
  font-size: 13px
}

.info-card li:before,
.tab-panel li:before {
  content: "·";
  color: #a98948;
  font-weight: 700;
  margin-right: 12px
}

.knowledge-card {
  display: flex;
  flex-direction: column
}

.knowledge-card ul {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(9, minmax(0, 1fr));
  min-height: 0
}

.knowledge-card li,
.tab-panel li {
  display: flex;
  align-items: center
}

.tabbed-news {
  height: 100%;
  display: flex;
  flex-direction: column
}

.tab-head {
  height: 58px;
  display: flex;
  align-items: stretch
}

.tab-button {
  min-width: 215px;
  padding: 0 26px;
  border: 0;
  background: transparent;
  color: #6f756f;
  font: 20px STSong, "SimSun", serif;
  cursor: pointer
}

.tab-button.is-active {
  background: #fff;
  color: #d1ae2e
}

.more-link {
  align-self: center;
  margin-left: auto
}

.tab-panels {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 379px;
  padding: 8px 22px 10px;
  background: #fff;
  border-radius: 0 4px 4px 4px
}

.tab-panel {
  flex: 1
}

.tab-panel[hidden] {
  display: none
}

.tab-panel ul {
  display: grid;
  grid-template-rows: repeat(8, minmax(0, 1fr));
  height: 100%;
  min-height: 0
}

.tab-panel li {
  font-size: 14px;
  padding: 8px
}

.tab-button:focus-visible {
  outline: 2px solid #b79d5a;
  outline-offset: -3px
}

.links {
  padding: 30px 0
}

.links .wrap {
  display: flex;
  gap: 40px;
  color: #777
}

.links span,
.links span a {
  color: #aaa
}

.links span a:hover {
  color: #8f793b;
  text-decoration: underline
}

.footer {
  background: var(--yellow);
  text-align: center;
  color: #9c8431;
  padding: 35px 0
}

.footer nav {
  padding-bottom: 20px;
  border-bottom: 1px dotted #a58f30
}

.footer p {
  font-size: 11px;
  margin: 18px 0 0
}

@media (max-width:900px) {
  .wrap {
    width: min(100% - 28px, 760px)
  }

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

  .nav-item>a {
    padding: 14px 27px 14px 8px;
    font-size: 14px
  }

  .header-inner {
    min-height: 105px
  }

  .brand-mark {
    font-size: 54px
  }

  .brand-name {
    font-size: 18px
  }

  .hotline strong {
    font-size: 23px
  }

  .hero {
    min-height: 330px;
    background-position: 58% center
  }

  .category-grid a {
    height: 145px
  }

  .category-icon {
    width: 56px;
    height: 56px;
    transform: scale(.9);
    margin-bottom: 8px
  }

  .why-grid {
    grid-template-columns: 240px 1fr
  }

  .service-card img {
    height: 395px
  }

  .about-grid {
    grid-template-columns: 240px 1fr;
    gap: 24px
  }

  .about-grid>img {
    width: 240px;
    height: 240px
  }

  .info-grid {
    grid-template-columns: 1fr 1fr
  }

  .info-card:first-child {
    grid-row: span 2
  }
}

@media (max-width:900px) {
  .brand img {
    max-width: min(250px, 45vw);
    max-height: 78px
  }
}

@media (max-width:640px) {
  body {
    font-size: 13px
  }

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

  .topbar-inner span:last-child {
    display: none
  }

  .header-inner {
    min-height: 86px
  }

  .brand-mark {
    font-size: 45px;
    margin-right: 8px
  }

  .brand-name {
    font-size: 16px
  }

  .brand-name small {
    display: none
  }

  .hotline span {
    display: none
  }

  .hotline strong {
    font-size: 17px
  }

  .main-nav {
    position: sticky;
    top: 0;
    z-index: 40
  }

  .nav-toggle-label {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #8f793b;
    font-size: 15px;
    cursor: pointer
  }

  .menu-icon {
    font-size: 23px;
    line-height: 1
  }

  .nav-inner {
    display: none;
    width: 100%;
    margin: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee
  }

  .nav-toggle:checked~.nav-inner {
    display: flex
  }

  .nav-item {
    width: 100%;
    flex: none
  }

  .nav-item>a {
    width: 100%;
    min-width: 0;
    padding: 13px 50px 13px 18px;
    text-align: left;
    font-size: 14px;
    border-left: 0 !important;
    border-right: 0;
    border-bottom: 1px dotted #d9ca9e
  }

  .submenu-toggle {
    right: 0;
    width: 48px;
    height: 47px;
    font-size: 21px
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 0;
    border-top: 0;
    background: #f5faf9;
    box-shadow: none
  }

  .submenu a {
    padding: 11px 18px 11px 35px;
    border-bottom: 1px dotted #dce5e3;
    font-size: 12px
  }

  .submenu a:hover {
    padding-left: 39px
  }

  .hero {
    aspect-ratio: auto;
    height: 280px;
    background-position: 65% center
  }

  .search-row {
    height: auto;
    padding: 16px 0;
    display: block
  }

  .hot-keywords {
    margin-bottom: 10px;
    align-items: flex-start
  }

  .search {
    width: 100%
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 25px
  }

  .category-grid a {
    height: 135px;
    border-bottom: 2px dashed #94ddd8
  }

  .category-grid a:last-child {
    grid-column: 1/-1
  }

  .category-icon {
    width: 50px;
    height: 50px;
    transform: scale(.78);
    margin-bottom: 5px
  }

  .product-section {
    padding: 25px 0
  }

  .showcase {
    overflow: hidden
  }

  .showcase>img {
    width: 180%;
    max-width: none;
    transform: translateX(-22%)
  }

  .product-captions {
    gap: 5px;
    font-size: 9px
  }

  .thumb-row i:nth-of-type(n+5) {
    display: none
  }

  .thumb-row i {
    width: 48px;
    height: 45px
  }

  .why-grid,
  .about-grid,
  .info-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    max-width: 320px;
    margin: auto
  }

  .service-card img {
    height: 330px
  }

  .reason-card {
    padding: 18px 15px
  }

  .reason-card h2 {
    font-size: 19px
  }

  .reason-card li {
    padding-left: 50px
  }

  .about-grid>img {
    width: 100%;
    height: 240px
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.8
  }

  .values {
    gap: 8px
  }

  .values span {
    font-size: 13px;
    padding: 8px 10px
  }

  .info-card:first-child {
    grid-row: auto
  }

  .links .wrap {
    display: block
  }

  .links span {
    display: block;
    margin-top: 10px;
    line-height: 1.8
  }

  .footer {
    padding: 25px 12px
  }

  .footer nav {
    line-height: 2
  }
}

@media (max-width:900px) {
  .hero-slider {
    min-height: 330px
  }

  .banner-copy {
    left: 6%;
    padding: 20px 24px
  }

  .banner-copy h2 {
    font-size: 27px
  }

  .banner-copy p {
    font-size: 14px
  }
}

@media (max-width:640px) {
  .hero-slider {
    aspect-ratio: auto;
    height: 280px;
    min-height: 0
  }

  .banner-copy {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 24px;
    transform: none;
    max-width: none;
    padding: 14px 18px
  }

  .banner-copy span {
    font-size: 9px
  }

  .banner-copy h2 {
    margin: 5px 0;
    font-size: 21px
  }

  .banner-copy p {
    font-size: 12px
  }

  .slider-dots {
    bottom: 9px
  }
}

@media (max-width:640px) {
  .ring-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px
  }

  .ring-card {
    flex-basis: 100%;
    padding: 0 5px
  }

  .ring-arrow {
    width: 40px;
    font-size: 42px
  }

  .ring-thumbs {
    justify-content: flex-start
  }

  .ring-thumbs button {
    flex-basis: 62px;
    width: 62px;
    height: 56px
  }

  .ring-card figcaption {
    font-size: 11px
  }
}

@media (max-width:900px) {
  .info-grid {
    grid-template-columns: 260px minmax(0, 1fr)
  }

  .info-card:first-child {
    grid-row: auto
  }

  .tab-button {
    min-width: 180px;
    padding-inline: 16px
  }

  .tab-panels {
    padding-inline: 16px
  }
}

@media (max-width:640px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .tab-head {
    height: auto
  }

  .tab-button {
    flex: 1;
    min-width: 0;
    padding: 14px 8px;
    font-size: 16px
  }

  .more-link {
    display: none
  }

  .tab-panels {
    min-height: 0;
    padding: 12px;
    border-radius: 0 0 4px 4px
  }

  .tab-panel li {
    padding: 10px 4px;
    font-size: 13px
  }
}

@media (max-width:640px) {
  .header-inner {
    min-height: 86px
  }

  .hotline {
    display: none
  }

  .mobile-header-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 4px;
    border: 0;
    background: transparent;
    color: #8f793b;
    font: 15px "Microsoft YaHei", sans-serif;
    cursor: pointer
  }

  .mobile-header-menu .menu-icon {
    font-size: 24px
  }

  .nav-toggle-label {
    display: none
  }

  .main-nav {
    border-top: 1px solid #efd400
  }

  .mobile-header-menu[aria-expanded="true"] .menu-icon {
    transform: rotate(90deg)
  }
}

@media (max-width:640px) {
  .brand {
    flex: 1 1 auto;
    margin-right: 12px
  }

  .brand img {
    max-width: min(220px, 100%);
    max-height: 62px
  }
}

@media (max-width:640px) {
  .top-actions {
    flex: 0 0 auto;
    margin-left: auto
  }

  .top-links {
    display: none
  }

  .language-link {
    height: 21px
  }

  .topbar-inner>span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }
}

@media (max-width:640px) {
  .reason-card ol {
    grid-template-rows: repeat(4, auto)
  }

  .reason-card li {
    min-height: 88px;
    padding: 10px 6px 10px 58px
  }

  .reason-card li:before {
    left: 2px
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-track {
    transition: none !important
  }
}

/* About page */
.about-page {
  background: #f7fbfb
}

.about-hero {
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(52, 0, 0, .88), rgba(66, 0, 0, .35), rgba(41, 0, 0, .06)), url("assets/hero.jpg") center 42%/cover no-repeat;
  color: #fff
}

.about-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--yellow)
}

.about-hero-copy {
  position: relative;
  z-index: 1
}

.about-hero-copy span {
  font: 11px Georgia, serif;
  letter-spacing: 4px;
  color: #e9d78b
}

.about-hero-copy h1 {
  margin: 12px 0 10px;
  font: 400 38px STSong, "SimSun", serif
}

.about-hero-copy p {
  margin: 0;
  color: #eadfdb;
  font: 16px STSong, "SimSun", serif;
  letter-spacing: 2px
}

.page-breadcrumb {
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #e7eeee;
  color: #999;
  font-size: 12px
}

.page-breadcrumb a {
  color: #777
}

.page-breadcrumb span {
  margin: 0 9px;
  color: #b79d5a
}

.about-content {
  padding: 38px 0 50px;
  background: linear-gradient(180deg, #f5fbfb, #fff)
}

.about-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start
}

.about-sidebar {
  display: grid;
  gap: 20px
}

.side-nav,
.contact-card,
.company-article {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(61, 118, 114, .08)
}

.side-nav {
  overflow: hidden;
  border-top: 4px solid var(--yellow)
}

.side-nav h2 {
  margin: 0;
  padding: 20px 22px;
  color: #736c5d;
  font: 22px STSong, "SimSun", serif;
  border-bottom: 1px solid #eee
}

.side-nav h2 small {
  display: block;
  margin-top: 6px;
  color: #b8ab8e;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px dotted #d9d1c2;
  color: #777;
  transition: .2s
}

.side-nav a:last-child {
  border: 0
}

.side-nav a:hover,
.side-nav a.active {
  padding-left: 27px;
  background: #fffcec;
  color: #9d843f
}

.side-nav a span {
  font: 24px Georgia, serif;
  color: #c9ae69
}

.contact-card {
  overflow: hidden
}

.contact-card>img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: center 38%
}

.contact-card-body {
  padding: 18px 20px
}

.contact-card h3 {
  margin: 0 0 14px;
  color: #806e45;
  font: 19px STSong, "SimSun", serif
}

.contact-card p {
  margin: 10px 0;
  color: #777;
  font-size: 12px;
  line-height: 1.7
}

.contact-card b {
  display: block;
  color: #aaa;
  font-weight: 400
}

.contact-card strong {
  display: block;
  margin-top: 3px;
  color: #bb5960;
  font: 22px Georgia, serif
}

.company-article {
  padding: 28px 36px 36px;
  border-top: 4px solid var(--yellow)
}

.article-heading {
  text-align: center;
  padding: 3px 0 24px;
  border-bottom: 1px solid #eee
}

.article-heading>span,
.eyebrow,
.article-section-title span {
  color: #b69c5e;
  font: 10px Georgia, serif;
  letter-spacing: 2px
}

.article-heading h2 {
  margin: 9px 0;
  color: #645f55;
  font: 400 28px STSong, "SimSun", serif
}

.article-heading p {
  margin: 0;
  color: #aaa;
  font-size: 12px
}

.article-lead {
  margin: 26px auto 32px;
  max-width: 860px;
  color: #696969;
  font: 15px/2 STSong, "SimSun", serif;
  text-indent: 2em
}

.article-media-row {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 25px 0;
  border-top: 1px dotted #d6d6d6
}

.article-media-row.reverse {
  grid-template-columns: 1.1fr minmax(260px, .9fr)
}

.article-media-row.reverse>img {
  grid-column: 2
}

.article-media-row.reverse>div {
  grid-column: 1;
  grid-row: 1
}

.article-media-row>img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 8px solid #f3f8f8
}

.article-media-row h3,
.feature-copy h3,
.article-section-title h3 {
  margin: 8px 0 14px;
  color: #675f50;
  font: 400 23px STSong, "SimSun", serif
}

.article-media-row p,
.feature-copy p {
  margin: 8px 0;
  color: #777;
  font: 14px/1.9 STSong, "SimSun", serif
}

.article-feature {
  position: relative;
  margin: 30px 0;
  background: #83d4cf;
  overflow: hidden
}

.feature-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  opacity: .9
}

.feature-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(520px, 66%);
  padding: 26px 30px;
  background: rgba(39, 92, 88, .9);
  color: #fff
}

.feature-copy .eyebrow {
  color: #fff1a4
}

.feature-copy h3 {
  color: #fff;
  margin-top: 8px
}

.feature-copy p {
  color: #eaf7f6;
  margin-bottom: 0
}

.brand-values {
  padding: 28px 0
}

.article-section-title {
  text-align: center
}

.article-section-title h3 {
  margin-top: 7px
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px
}

.value-grid>div {
  min-height: 165px;
  padding: 20px 17px;
  background: #f6fbfb;
  border-bottom: 3px solid #d6c078;
  text-align: center;
  transition: .2s
}

.value-grid>div:hover {
  transform: translateY(-4px);
  background: #fffcec
}

.value-grid b {
  color: #d2bd7c;
  font: 27px Georgia, serif
}

.value-grid h4 {
  margin: 9px 0;
  color: #645e52;
  font: 18px STSong, "SimSun", serif
}

.value-grid p {
  margin: 0;
  color: #888;
  font-size: 12px;
  line-height: 1.7
}

.about-hero {
  overflow: hidden;
  background: #4d302d
}

.about-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(52, 0, 0, .88), rgba(66, 0, 0, .35), rgba(41, 0, 0, .06))
}

.about-hero:after {
  z-index: 3
}

.about-hero>img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.about-hero-copy {
  z-index: 2
}

.contact-card a {
  color: #777;
  word-break: break-all
}

.contact-card a:hover {
  color: #9d843f
}

.about-detail-row {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px dotted #d6d6d6
}

.about-detail-row figure {
  margin: 0
}

.about-detail-row figure img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  border: 8px solid #f3f8f8
}

.about-richtext {
  color: #6d6d6d;
  font: 15px/2 STSong, "SimSun", serif
}

.about-richtext p {
  margin: 0 0 15px
}

.about-richtext p:last-child {
  margin-bottom: 0
}

.about-richtext img {
  max-width: 100%;
  height: auto
}

.about-richtext h2,
.about-richtext h3 {
  color: #675f50;
  font-family: STSong, "SimSun", serif;
  font-weight: 400
}

.about-more {
  padding-top: 30px;
  border-top: 1px dotted #d6d6d6
}

.about-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 22px
}

.about-more-grid>a {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 17px;
  min-height: 126px;
  padding: 10px;
  background: #f6fbfb;
  color: #777;
  transition: .2s
}

.about-more-grid>a:hover {
  transform: translateY(-3px);
  background: #fffcec;
  box-shadow: 0 8px 20px rgba(61, 118, 114, .08)
}

.about-more-grid img {
  grid-row: 1/4;
  width: 110px;
  height: 106px;
  object-fit: cover
}

.about-more-grid span {
  align-self: end;
  color: #b59b5e;
  font: 9px Georgia, serif;
  letter-spacing: 1px
}

.about-more-grid strong {
  margin-top: 4px;
  color: #685f50;
  font: 17px STSong, "SimSun", serif;
  font-weight: 400
}

.about-more-grid i {
  align-self: end;
  color: #a48945;
  font-size: 11px;
  font-style: normal
}

@media (max-width:900px) {
  .about-hero {
    height: 240px
  }

  .about-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px
  }

  .company-article {
    padding: 24px
  }

  .article-media-row {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .article-media-row.reverse {
    grid-template-columns: 1fr
  }

  .article-media-row.reverse>img,
  .article-media-row.reverse>div {
    grid-column: auto;
    grid-row: auto
  }

  .article-media-row>img {
    height: 230px
  }

  .value-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .about-hero {
    height: 220px;
    background-position: 66% center
  }

  .about-hero-copy span {
    font-size: 8px
  }

  .about-hero-copy h1 {
    font-size: 30px
  }

  .about-hero-copy p {
    max-width: 250px;
    font-size: 13px;
    line-height: 1.7
  }

  .about-content {
    padding: 22px 0 34px
  }

  .about-layout {
    grid-template-columns: 1fr
  }

  .about-sidebar {
    gap: 14px
  }

  .side-nav {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .side-nav h2 {
    grid-column: 1/-1
  }

  .side-nav a {
    padding: 13px 16px
  }

  .side-nav a:hover,
  .side-nav a.active {
    padding-left: 18px
  }

  .contact-card {
    display: grid;
    grid-template-columns: 120px 1fr
  }

  .contact-card>img {
    height: 100%;
    min-height: 190px
  }

  .contact-card-body {
    padding: 15px
  }

  .contact-card strong {
    font-size: 18px
  }

  .company-article {
    padding: 20px 16px
  }

  .article-heading h2 {
    font-size: 22px
  }

  .article-lead {
    font-size: 14px;
    line-height: 1.85
  }

  .article-media-row {
    padding: 20px 0
  }

  .article-media-row>img {
    height: 210px
  }

  .article-feature {
    margin-inline: -16px
  }

  .feature-image img {
    height: 300px
  }

  .feature-copy {
    width: 100%;
    padding: 18px;
    bottom: 0
  }

  .feature-copy h3 {
    font-size: 20px
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .value-grid>div {
    min-height: 145px;
    padding: 15px 10px
  }
}

@media (max-width:900px) {
  .about-detail-row {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .about-detail-row figure img {
    height: 260px
  }

  .about-more-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .about-detail-row {
    padding: 22px 0
  }

  .about-detail-row figure img {
    height: 220px
  }

  .about-richtext {
    font-size: 14px;
    line-height: 1.85
  }

  .about-more-grid>a {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 112px
  }

  .about-more-grid img {
    width: 92px;
    height: 92px
  }

  .about-more-grid strong {
    font-size: 15px
  }
}

.job-detail-row {
  align-items: start
}

.job-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 24px;
  border: 1px solid #eee;
  background: #fbfdfd
}

.job-meta>div {
  padding: 14px 16px;
  border-right: 1px solid #eee
}

.job-meta>div:last-child {
  border-right: 0
}

.job-meta dt {
  margin-bottom: 6px;
  color: #aaa;
  font-size: 12px
}

.job-meta dd {
  margin: 0;
  color: #706653;
  font: 16px STSong, "SimSun", serif
}

.job-richtext h3 {
  margin: 20px 0 8px;
  color: #846e38
}

.job-apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 24px 28px;
  background: #f5fbfb;
  border-left: 4px solid var(--yellow)
}

.job-apply span {
  color: #b69c5e;
  font: 10px Georgia, serif;
  letter-spacing: 2px
}

.job-apply h3 {
  margin: 8px 0;
  color: #675f50;
  font: 20px STSong, "SimSun", serif;
  font-weight: 400
}

.job-apply p {
  margin: 0;
  color: #888;
  line-height: 1.8
}

.job-apply>a {
  flex: 0 0 auto;
  padding: 12px 28px;
  background: #b79749;
  color: #fff;
  transition: .2s
}

.job-apply>a:hover {
  background: #92732f
}

@media (max-width:900px) {
  .job-meta {
    grid-template-columns: 1fr
  }

  .job-meta>div {
    border-right: 0;
    border-bottom: 1px solid #eee
  }

  .job-meta>div:last-child {
    border-bottom: 0
  }
}

@media (max-width:640px) {
  .job-apply {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px
  }

  .job-apply>a {
    width: 100%;
    text-align: center
  }
}

.sitemap-grid h2 small {
  display: block;
  margin-top: 5px;
  color: #b8ab8e;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.sitemap-grid a.sitemap-all {
  color: #9d843f;
  font-weight: 700
}

.sitemap-grid a.sitemap-parent {
  color: #6f685b;
  font-weight: 700
}

.sitemap-grid a.sitemap-child {
  padding-left: 16px;
  color: #999
}

.sitemap-grid a.sitemap-child:before {
  content: "└ ";
  color: #c9ae69
}

.sitemap-grid a.sitemap-child:hover {
  padding-left: 21px
}

.product-hero-image {
  height: 220px
}

.product-hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center
}

@media(max-width:900px) {
  .product-hero-image {
    height: 180px
  }
}

@media(max-width:640px) {
  .product-hero-image {
    height: 145px
  }
}

/* Homepage about content loaded from web_about */
.about-grid>a {
  display: block
}

.about-grid>a>img {
  width: 300px;
  height: 270px;
  object-fit: cover
}

.values>a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 9px 14px;
  background: #fff;
  color: #9d7f3c;
  font-size: 16px;
  box-shadow: 0 5px 16px rgba(65, 109, 105, .06);
  transition: .2s
}

.values>a:hover {
  transform: translateY(-3px);
  background: #fffceb
}

@media (max-width:900px) {
  .about-grid>a>img {
    width: 240px;
    height: 240px
  }
}

@media (max-width:640px) {
  .about-grid>a>img {
    width: 100%;
    height: 240px
  }

  .values>a {
    font-size: 13px;
    padding: 8px 10px
  }
}

/* News list and detail pages */
.news-hero {
  height: 250px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #1f625e;
  color: #fff
}

.news-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 72, 68, .92), rgba(41, 126, 120, .55), rgba(255, 255, 255, .08))
}

.news-hero:after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 3px;
  background: var(--yellow)
}

.news-hero>img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.news-hero.compact {
  height: 210px
}

.news-hero .wrap {
  position: relative;
  z-index: 2
}

.news-hero span {
  color: #fff2a7;
  font: 10px Georgia, serif;
  letter-spacing: 4px
}

.news-hero h1 {
  margin: 10px 0 8px;
  font: 400 37px STSong, "SimSun", serif
}

.news-hero p {
  margin: 0;
  color: #e7f8f7;
  font: 15px STSong, "SimSun", serif;
  letter-spacing: 2px
}

.news-content {
  padding: 38px 0 50px;
  background: linear-gradient(180deg, #f4fbfb, #fff)
}

.news-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start
}

.news-sidebar {
  display: grid;
  gap: 20px
}

.side-hot,
.news-contact,
.news-main,
.news-article {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(61, 118, 114, .08)
}

.side-hot {
  padding: 19px 18px 12px
}

.side-hot h3 {
  margin: 0 0 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
  color: #746b58;
  font: 19px STSong, "SimSun", serif
}

.side-hot h3 small {
  float: right;
  margin-top: 6px;
  color: #b4a888;
  font: 9px Georgia, serif
}

.side-hot>a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dotted #ddd;
  color: #777;
  font-size: 12px;
  line-height: 1.5
}

.side-hot>a:last-child {
  border: 0
}

.side-hot>a:hover {
  color: #9b7f3b
}

.side-hot b {
  color: #c3aa6d;
  font: 17px Georgia, serif
}

.news-contact {
  padding: 24px 20px;
  background: linear-gradient(145deg, #276f6a, #77cfc9);
  color: #fff
}

.news-contact>span {
  font: 9px Georgia, serif;
  letter-spacing: 2px;
  color: #fff3a9
}

.news-contact h3 {
  margin: 9px 0 12px;
  font: 21px STSong, "SimSun", serif
}

.news-contact p {
  margin: 0 0 18px;
  color: #e6f7f6;
  font-size: 12px;
  line-height: 1.7
}

.news-contact strong {
  font: 23px Georgia, serif;
  color: #fff47c
}

.news-main {
  padding: 26px 30px 32px;
  border-top: 4px solid var(--yellow)
}

.news-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee
}

.news-list-heading span {
  color: #b59c60;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.news-list-heading h2 {
  margin: 5px 0 0;
  color: #675f50;
  font: 25px STSong, "SimSun", serif;
  font-weight: 400
}

.news-list-heading p {
  margin: 0;
  color: #aaa;
  font-size: 11px
}

.featured-news {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid #eee
}

.featured-image {
  position: relative;
  overflow: hidden
}

.featured-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: .4s
}

.featured-image:hover img {
  transform: scale(1.04)
}

.featured-image>span {
  position: absolute;
  left: 0;
  top: 0;
  padding: 7px 12px;
  background: var(--yellow);
  color: #76651d;
  font-size: 11px
}

.featured-news time {
  display: block;
  color: #aaa;
  font: 10px Georgia, serif;
  letter-spacing: 1px
}

.featured-news time b {
  margin-right: 8px;
  color: #c3a458;
  font-size: 30px
}

.featured-news h2 {
  margin: 12px 0;
  color: #5e594f;
  font: 22px/1.5 STSong, "SimSun", serif;
  font-weight: 400
}

.featured-news h2 a:hover {
  color: #a48945
}

.featured-news p {
  color: #888;
  font-size: 13px;
  line-height: 1.8
}

.read-more {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
  color: #a68a47;
  font-size: 12px
}

.read-more span {
  font-size: 18px
}

.news-list {
  display: grid
}

.news-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px dotted #ccc
}

.news-thumb {
  overflow: hidden;
  background: #eff8f7
}

.news-thumb img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  transition: .35s
}

.news-thumb:hover img {
  transform: scale(1.04)
}

.news-meta {
  display: flex;
  justify-content: space-between;
  color: #aaa;
  font-size: 11px
}

.news-meta>span {
  color: #aa8e49
}

.news-item h3 {
  margin: 10px 0 8px;
  color: #625d53;
  font: 18px/1.5 STSong, "SimSun", serif
}

.news-item h3 a:hover {
  color: #a48945
}

.news-item p {
  margin: 0;
  color: #888;
  font-size: 12px;
  line-height: 1.75
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px
}

.pagination a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #ddd;
  background: #fff;
  color: #888
}

.pagination a:hover,
.pagination a.active {
  border-color: #c7aa64;
  background: #c7aa64;
  color: #fff
}

.pagination a.disabled {
  pointer-events: none;
  opacity: .45
}

.news-article {
  padding: 30px 38px 36px;
  border-top: 4px solid var(--yellow)
}

.news-article-header {
  text-align: center;
  padding-bottom: 23px;
  border-bottom: 1px solid #eee
}

.article-category {
  display: inline-block;
  padding: 5px 12px;
  background: #fff8d2;
  color: #a68a44;
  font-size: 11px
}

.news-article-header h1 {
  max-width: 760px;
  margin: 14px auto;
  color: #5e584e;
  font: 400 29px/1.5 STSong, "SimSun", serif
}

.news-article-header>div {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: #aaa;
  font-size: 11px
}

.news-intro {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid #cfb36c;
  background: #f7fbfb;
  color: #777;
  font: 14px/1.9 STSong, "SimSun", serif
}

.article-cover {
  margin: 0 0 26px
}

.article-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover
}

.article-cover figcaption {
  text-align: center;
  margin-top: 8px;
  color: #aaa;
  font-size: 11px
}

.article-body {
  color: #666;
  font: 15px/2 STSong, "SimSun", serif
}

.article-body p {
  text-indent: 2em;
  margin: 18px 0
}

.article-body h2 {
  margin: 30px 0 10px;
  padding-left: 13px;
  border-left: 3px solid #c9aa60;
  color: #5f594e;
  font: 400 22px STSong, "SimSun", serif
}

.article-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 25px 0
}

.article-image-pair img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover
}

.article-body blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  background: #2e7772;
  color: #fff;
  font: 18px/1.8 STSong, "SimSun", serif;
  text-align: center
}

.article-wide-image {
  margin: 24px 0
}

.article-wide-image img {
  width: 100%
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #888;
  font-size: 12px
}

.article-tags a {
  padding: 5px 10px;
  background: #f2f8f7;
  color: #8e7945
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px 0
}

.article-nav a {
  padding: 15px 18px;
  background: #f8fbfb;
  color: #666;
  font-size: 12px
}

.article-nav a:last-child {
  text-align: right
}

.article-nav span {
  display: block;
  margin-bottom: 6px;
  color: #aaa;
  font-size: 10px
}

.related-news {
  padding-top: 12px
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px
}

.related-grid a {
  background: #f7fbfb;
  overflow: hidden
}

.related-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: .35s
}

.related-grid a:hover img {
  transform: scale(1.04)
}

.related-grid span {
  display: block;
  padding: 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.5
}

.article-body img {
  max-width: 100%;
  height: auto
}

.article-body table {
  max-width: 100%;
  border-collapse: collapse
}

.article-body td,
.article-body th {
  padding: 8px;
  border: 1px solid #ddd
}

.article-nav-placeholder {
  padding: 15px 18px;
  background: #f8fbfb;
  color: #aaa;
  font-size: 12px
}

.article-nav-placeholder:last-child {
  text-align: right
}

.article-nav-placeholder small {
  display: block;
  margin-bottom: 6px;
  color: #bbb
}

.news-empty {
  padding: 70px 20px;
  text-align: center;
  color: #aaa;
  background: #f8fbfb
}

.news-categories a.active {
  background: #fffcec;
  color: #9d843f
}

.news-article-header #news-view-count {
  font-weight: 400;
  color: inherit
}

@media (max-width:900px) {
  .news-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px
  }

  .news-main {
    padding: 22px
  }

  .featured-news {
    grid-template-columns: 1fr
  }

  .featured-image img {
    height: 230px
  }

  .news-item {
    grid-template-columns: 160px 1fr
  }

  .news-thumb img {
    height: 120px
  }

  .news-article {
    padding: 26px 24px
  }

  .news-article-header h1 {
    font-size: 25px
  }
}

@media (max-width:640px) {

  .news-hero,
  .news-hero.compact {
    height: 210px;
    background-position: center
  }

  .news-hero h1 {
    font-size: 30px
  }

  .news-hero p {
    font-size: 13px
  }

  .news-content {
    padding: 22px 0 34px
  }

  .news-layout {
    grid-template-columns: 1fr
  }

  .news-sidebar {
    gap: 14px
  }

  .news-categories {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .news-categories h2 {
    grid-column: 1/-1
  }

  .side-hot {
    display: none
  }

  .news-contact {
    padding: 20px
  }

  .news-main {
    padding: 18px 15px
  }

  .news-list-heading {
    display: block
  }

  .news-list-heading p {
    margin-top: 8px
  }

  .featured-news {
    gap: 16px;
    padding: 20px 0
  }

  .featured-image img {
    height: 210px
  }

  .featured-news h2 {
    font-size: 20px
  }

  .news-item {
    grid-template-columns: 112px 1fr;
    gap: 13px;
    padding: 17px 0
  }

  .news-thumb img {
    height: 95px
  }

  .news-item h3 {
    margin: 6px 0 0;
    font-size: 15px
  }

  .news-item p {
    display: none
  }

  .news-meta time {
    display: none
  }

  .news-article {
    padding: 21px 15px
  }

  .news-article-header h1 {
    font-size: 22px
  }

  .news-article-header>div {
    gap: 8px;
    flex-wrap: wrap
  }

  .news-intro {
    padding: 14px
  }

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

  .article-image-pair {
    grid-template-columns: 1fr
  }

  .article-body blockquote {
    padding: 18px;
    font-size: 16px
  }

  .article-nav,
  .related-grid {
    grid-template-columns: 1fr
  }

  .article-nav a:last-child {
    text-align: left
  }

  .related-grid img {
    height: 170px
  }
}

/* Product catalog and detail pages */
.product-hero {
  height: 250px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, rgba(62, 35, 4, .9), rgba(152, 115, 43, .46), rgba(255, 255, 255, .05)), url("assets/rings.jpg") center/cover no-repeat;
  color: #fff
}

.product-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--yellow)
}

.product-hero.compact {
  height: 210px
}

.product-hero .wrap {
  position: relative;
  z-index: 1
}

.product-hero span {
  color: #fff1a8;
  font: 10px Georgia, serif;
  letter-spacing: 4px
}

.product-hero h1 {
  margin: 10px 0 8px;
  font: 400 37px STSong, "SimSun", serif
}

.product-hero p {
  margin: 0;
  color: #fff8e3;
  font: 15px STSong, "SimSun", serif;
  letter-spacing: 2px
}

.product-hero-image {
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
  background: #f8f4eb
}

.product-hero-image img {
  display: block;
  width: 100%;
  height: auto
}

.catalog-section {
  padding: 38px 0 50px;
  background: linear-gradient(180deg, #f5fbfb, #fff)
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start
}

.catalog-sidebar {
  display: grid;
  gap: 20px
}

.catalog-categories,
.catalog-contact,
.catalog-news,
.catalog-main,
.product-detail-main {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(61, 118, 114, .08)
}

.catalog-categories {
  overflow: hidden;
  border-top: 4px solid var(--yellow)
}

.catalog-categories>h2 {
  margin: 0;
  padding: 20px;
  color: #6d6556;
  font: 22px STSong, "SimSun", serif;
  border-bottom: 1px solid #eee
}

.catalog-categories>h2 small {
  display: block;
  margin-top: 6px;
  color: #b6aa8c;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.catalog-group h3 {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 14px 20px;
  background: #f8fbfb;
  color: #746b59;
  font: 16px STSong, "SimSun", serif;
  border-bottom: 1px solid #eee
}

.catalog-group h3 span {
  color: #bd9e50
}

.catalog-group a {
  display: block;
  padding: 11px 20px 11px 29px;
  border-bottom: 1px dotted #ddd;
  color: #858585;
  font-size: 12px
}

.catalog-group a:hover,
.catalog-group a.active {
  background: #fffcec;
  color: #9d813c
}

.catalog-contact {
  overflow: hidden
}

.catalog-contact>img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  object-position: center 35%
}

.catalog-contact>div {
  padding: 18px 20px
}

.catalog-contact span {
  color: #af9555;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.catalog-contact h3 {
  margin: 8px 0;
  color: #6f6653;
  font: 20px STSong, "SimSun", serif
}

.catalog-contact p {
  color: #888;
  font-size: 12px;
  line-height: 1.7
}

.catalog-contact strong {
  color: #bc5960;
  font: 22px Georgia, serif
}

.catalog-news {
  padding: 18px
}

.catalog-news h3 {
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  color: #706754;
  font: 18px STSong, "SimSun", serif
}

.catalog-news a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dotted #ddd;
  color: #777;
  font-size: 12px;
  line-height: 1.5
}

.catalog-news a:last-child {
  border: 0
}

.catalog-categories.is-enhanced .catalog-group h3 {
  cursor: pointer;
  user-select: none;
  transition: background .2s, color .2s
}

.catalog-categories.is-enhanced .catalog-group h3:hover,
.catalog-categories.is-enhanced .catalog-group h3:focus-visible {
  background: #fff9d8;
  color: #9a7b32;
  outline: none
}

.catalog-categories.is-enhanced .catalog-group h3 span {
  width: 18px;
  text-align: center;
  transition: transform .2s
}

.catalog-categories.is-enhanced .catalog-group:not(.is-open) a {
  display: none
}

.catalog-categories.is-enhanced .catalog-group.is-open h3 {
  background: #f4faf9;
  color: #9a7b32
}

.catalog-main {
  padding: 26px 28px 32px;
  border-top: 4px solid var(--yellow)
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid #eee
}

.catalog-heading span {
  color: #b19758;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.catalog-heading h2 {
  margin: 5px 0 0;
  color: #675f50;
  font: 25px STSong, "SimSun", serif;
  font-weight: 400
}

.catalog-heading p,
.catalog-heading>a {
  margin: 0;
  color: #aaa;
  font-size: 11px
}

.catalog-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 18px 0
}

.catalog-filter button {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fff;
  color: #777;
  cursor: pointer
}

.catalog-filter button:hover,
.catalog-filter button.active {
  border-color: #bea05a;
  background: #bea05a;
  color: #fff
}

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

.product-card {
  border: 1px solid #e6eeee;
  background: #fff;
  transition: .25s
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(55, 108, 104, .12)
}

.product-card[hidden] {
  display: none
}

.product-image {
  display: block;
  position: relative;
  overflow: hidden;
  background: #eaf8f7
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: .4s
}

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

.product-image>span {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  background: var(--yellow);
  color: #76651e;
  font-size: 9px
}

.necklace-product img {
  object-position: center 35%
}

.product-card>div {
  padding: 15px 16px 17px
}

.product-card small {
  color: #b09758;
  font: 8px Georgia, serif;
  letter-spacing: 1px
}

.product-card h3 {
  min-height: 45px;
  margin: 7px 0;
  color: #615b51;
  font: 16px/1.5 STSong, "SimSun", serif
}

.product-card h3 a:hover {
  color: #a38845
}

.product-card p {
  margin: 0;
  color: #aaa;
  font-size: 11px
}

.product-more {
  display: inline-block;
  margin-top: 11px;
  color: #a68b49;
  font-size: 11px
}

.catalog-empty {
  padding: 50px;
  text-align: center;
  color: #aaa;
  background: #f8fbfb
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important
}

.catalog-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 10px;
  margin: 20px 0 12px;
  padding: 14px;
  background: #f3faf9;
  border: 1px solid #e1efed
}

.catalog-search-form input {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #d7e2e0;
  background: #fff;
  color: #666;
  font: 13px "Microsoft YaHei", sans-serif;
  outline: 0
}

.catalog-search-form input:focus {
  border-color: #b99a51;
  box-shadow: 0 0 0 3px rgba(185, 154, 81, .1)
}

.catalog-search-form button {
  border: 0;
  background: #b8994f;
  color: #fff;
  font: 14px "Microsoft YaHei", sans-serif;
  cursor: pointer;
  transition: .2s
}

.catalog-search-form button:hover {
  background: #987a37
}

.search-result-summary {
  margin: 0 0 18px;
  color: #9a875e;
  font-size: 12px
}

.search-empty {
  margin-top: 20px;
  padding: 65px 30px
}

.search-empty strong {
  display: block;
  margin-bottom: 10px;
  color: #716956;
  font: 22px STSong, "SimSun", serif;
  font-weight: 400
}

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

.search-results-page .catalog-main {
  min-height: 560px
}

@media(max-width:640px) {
  .catalog-search-form {
    grid-template-columns: 1fr;
    padding: 10px
  }

  .catalog-search-form button {
    height: 42px
  }

  .search-empty {
    padding: 45px 18px
  }
}

.product-detail-main {
  padding: 26px;
  border-top: 4px solid var(--yellow)
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .95fr);
  gap: 32px
}

.gallery-main {
  position: relative;
  overflow: hidden;
  background: #e9f8f6
}

.gallery-main>img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity .25s
}

.gallery-nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 54px;
  border: 0;
  background: rgba(255, 255, 255, .78);
  color: #aa8d48;
  font: 33px Georgia, serif;
  cursor: pointer
}

.gallery-nav.prev {
  left: 8px
}

.gallery-nav.next {
  right: 8px
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px
}

.gallery-thumbs button {
  padding: 3px;
  border: 2px solid transparent;
  background: #eff8f7;
  cursor: pointer
}

.gallery-thumbs button.active {
  border-color: #b99b54
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover
}

.product-series {
  color: #aa8d48;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.product-summary h1 {
  margin: 10px 0 8px;
  color: #5e584d;
  font: 27px/1.45 STSong, "SimSun", serif;
  font-weight: 400
}

.product-sku {
  margin: 0;
  color: #aaa;
  font-size: 11px
}

.product-desc {
  padding: 18px 0;
  margin: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  color: #777;
  font: 14px/1.8 STSong, "SimSun", serif
}

.product-specs {
  margin: 0
}

.product-specs>div {
  display: grid;
  grid-template-columns: 78px 1fr;
  padding: 9px 0;
  border-bottom: 1px dotted #ddd;
  font-size: 12px
}

.product-specs dt {
  color: #aaa
}

.product-specs dd {
  margin: 0;
  color: #666
}

.custom-options {
  margin-top: 18px
}

.custom-options>b {
  display: block;
  margin-bottom: 9px;
  color: #777;
  font-size: 12px
}

.custom-options div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.custom-options button {
  padding: 7px 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #777;
  cursor: pointer
}

.custom-options button.active {
  border-color: #b89a52;
  color: #9a7d39;
  background: #fffcef
}

.product-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 14px 16px;
  background: #f4faf9
}

.product-inquiry small {
  display: block;
  color: #aaa
}

.product-inquiry strong {
  display: block;
  margin-top: 4px;
  color: #6b6250;
  font-size: 14px
}

.product-inquiry>a {
  padding: 10px 18px;
  background: #b6974c;
  color: #fff
}

.service-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 14px;
  color: #9b844c;
  font-size: 11px
}

.product-gallery {
  position: relative;
  min-width: 0
}

.gallery-main {
  cursor: crosshair
}

.zoom-lens {
  position: absolute;
  z-index: 3;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(167, 135, 61, .8);
  background: rgba(255, 247, 187, .28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .65) inset;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s
}

.zoom-result {
  position: absolute;
  z-index: 12;
  left: calc(100% + 32px);
  top: 0;
  width: calc(100% + 2px);
  aspect-ratio: 1;
  border: 5px solid #fff;
  background-color: #e9f8f6;
  background-repeat: no-repeat;
  box-shadow: 0 12px 32px rgba(35, 74, 71, .22);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s
}

.product-gallery.is-zooming .zoom-lens,
.product-gallery.is-zooming .zoom-result {
  opacity: 1;
  visibility: visible
}

.view-large {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 0;
  background: rgba(41, 91, 87, .82);
  color: #fff;
  font-size: 11px;
  cursor: pointer
}

.view-large:hover {
  background: #a58842
}

.gallery-tip {
  margin: 8px 0 0;
  color: #aaa;
  font-size: 10px;
  text-align: center
}

.gallery-lightbox[hidden] {
  display: none
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 16, 15, .9);
  padding: 5vw
}

.gallery-lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .45)
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 16px;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font: 42px/1 Arial, sans-serif;
  cursor: pointer
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 78px;
  border: 0;
  background: rgba(255, 255, 255, .11);
  color: #fff;
  font: 48px/1 Georgia, serif;
  cursor: pointer
}

.lightbox-prev {
  left: 3vw
}

.lightbox-next {
  right: 3vw
}

.lightbox-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font: 14px Georgia, serif;
  letter-spacing: 2px
}

.lightbox-open {
  overflow: hidden
}

.inquiry-actions {
  display: flex;
  gap: 7px
}

.product-inquiry .inquiry-actions a {
  padding: 10px 14px;
  background: #b6974c;
  color: #fff;
  font-size: 12px
}

.product-inquiry .inquiry-actions .message-link {
  background: #317d78
}

.product-inquiry .inquiry-actions a:hover {
  filter: brightness(.94)
}

.product-message {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid #e4eceb;
  border-top: 4px solid var(--yellow);
  background: #fff
}

.message-heading {
  padding-bottom: 19px;
  border-bottom: 1px solid #eee
}

.message-heading>span {
  color: #b19553;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.message-heading h2 {
  margin: 7px 0;
  color: #635c50;
  font: 25px STSong, "SimSun", serif;
  font-weight: 400
}

.message-heading p {
  margin: 0;
  color: #999;
  font-size: 12px
}

.message-heading b,
.form-field label b {
  color: #c45858
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 22px;
  padding-top: 24px
}

.form-field {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 9px 12px
}

.form-field label {
  color: #6e675b;
  font-size: 12px;
  text-align: right
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dfe5e4;
  border-radius: 2px;
  background: #fbfdfd;
  color: #666;
  font: 12px "Microsoft YaHei", sans-serif;
  outline: none
}

.form-field input,
.form-field select {
  height: 40px;
  padding: 0 12px
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  padding: 11px 12px;
  line-height: 1.7
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #b99c57;
  box-shadow: 0 0 0 3px rgba(185, 156, 87, .1)
}

.form-field small {
  grid-column: 2;
  color: #aaa;
  font-size: 10px
}

.captcha-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 8px
}

.captcha-control img {
  width: 100px;
  height: 40px;
  border: 1px solid #dfe5e4;
  background: #fff;
  object-fit: fill;
  cursor: pointer
}

.captcha-control img:focus-visible {
  outline: 2px solid #b99c57;
  outline-offset: 2px
}

.form-field-wide {
  grid-column: 1/-1;
  align-items: start
}

.form-field-wide label {
  padding-top: 11px
}

.form-field-wide small {
  text-align: right
}

.form-submit-row {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 102px
}

.form-submit-row button {
  min-width: 140px;
  padding: 12px 24px;
  border: 0;
  background: linear-gradient(135deg, #c2a35a, #a4853f);
  color: #fff;
  font-size: 14px;
  cursor: pointer
}

.form-submit-row button:hover {
  filter: brightness(.96)
}

.form-submit-row button:disabled {
  cursor: wait;
  opacity: .7
}

.form-status {
  margin: 0;
  color: #2d8178;
  font-size: 12px
}

.form-status.is-error {
  color: #bd5555
}

.product-tabs {
  margin-top: 30px;
  border: 1px solid #e4eceb
}

.product-tab-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f5faf9
}

.product-tab-head button {
  padding: 15px;
  border: 0;
  border-right: 1px solid #e4eceb;
  background: transparent;
  color: #777;
  font: 16px STSong, "SimSun", serif;
  cursor: pointer
}

.product-tab-head button:last-child {
  border: 0
}

.product-tab-head button.is-active {
  background: #fff;
  color: #a38743;
  border-top: 3px solid var(--yellow)
}

.product-tab-panel {
  padding: 28px
}

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

.product-tab-panel .product-message {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent
}

.detail-title {
  text-align: center;
  margin-bottom: 24px
}

.detail-title span {
  color: #b19553;
  font: 9px Georgia, serif;
  letter-spacing: 2px
}

.detail-title h2 {
  margin: 7px 0;
  color: #635c50;
  font: 25px STSong, "SimSun", serif;
  font-weight: 400
}

.detail-title p {
  color: #999;
  font-size: 12px
}

.detail-wide {
  width: 100%
}

.detail-copy-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 22px
}

.detail-copy-grid>div,
.process-steps>div {
  padding: 20px;
  background: #f5faf9
}

.detail-copy-grid span,
.process-steps b {
  color: #c4aa68;
  font: 25px Georgia, serif
}

.detail-copy-grid h3,
.process-steps h3 {
  margin: 8px 0;
  color: #665f52;
  font: 17px STSong, "SimSun", serif
}

.detail-copy-grid p,
.process-steps p {
  margin: 0;
  color: #888;
  font-size: 12px;
  line-height: 1.7
}

.process-steps {
  grid-template-columns: repeat(4, 1fr);
  margin: 0
}

.after-sales {
  max-width: 760px;
  margin: auto
}

.after-sales h2 {
  color: #625b50;
  font: 24px STSong, "SimSun", serif;
  font-weight: 400
}

.after-sales p,
.after-sales li {
  color: #777;
  font-size: 13px;
  line-height: 1.8
}

.after-sales li {
  padding: 6px
}

.related-products {
  margin-top: 30px
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px
}

.related-product-grid a {
  padding-bottom: 14px;
  border: 1px solid #e7eeee;
  background: #fff
}

.related-product-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover
}

.related-product-grid h3 {
  margin: 12px 12px 5px;
  color: #655f54;
  font: 15px STSong, "SimSun", serif
}

.related-product-grid p {
  margin: 0 12px;
  color: #aaa;
  font-size: 10px
}

@media (max-width:900px) {
  .catalog-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px
  }

  .catalog-main,
  .product-detail-main {
    padding: 22px
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr
  }

  .product-overview {
    grid-template-columns: 1fr
  }

  .gallery-main {
    max-width: 520px;
    margin: auto
  }

  .gallery-thumbs {
    max-width: 520px;
    margin: 10px auto 0
  }

  .process-steps {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {

  .product-hero,
  .product-hero.compact {
    height: 210px
  }

  .product-hero h1 {
    font-size: 30px
  }

  .product-hero p {
    font-size: 13px;
    max-width: 270px;
    line-height: 1.7
  }

  .catalog-section {
    padding: 22px 0 34px
  }

  .catalog-layout {
    grid-template-columns: 1fr
  }

  .catalog-sidebar {
    gap: 14px
  }

  .catalog-categories {
    display: grid;
    grid-template-columns: 1fr 1fr
  }

  .catalog-categories>h2 {
    grid-column: 1/-1
  }

  .catalog-group h3 {
    font-size: 14px;
    padding: 12px 15px
  }

  .catalog-group a {
    padding: 10px 14px;
    font-size: 11px
  }

  .catalog-contact {
    display: none
  }

  .catalog-news {
    display: none
  }

  .catalog-main,
  .product-detail-main {
    padding: 18px 14px
  }

  .catalog-heading {
    display: block
  }

  .catalog-heading>p,
  .catalog-heading>a {
    display: block;
    margin-top: 7px
  }

  .catalog-filter {
    overflow-x: auto;
    flex-wrap: nowrap
  }

  .catalog-filter button {
    flex: 0 0 auto
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .product-card>div {
    padding: 12px
  }

  .product-card h3 {
    font-size: 14px;
    min-height: 43px
  }

  .product-more {
    display: none
  }

  .product-overview {
    gap: 22px
  }

  .product-summary h1 {
    font-size: 23px
  }

  .product-tab-panel {
    padding: 18px 12px
  }

  .product-tab-head button {
    padding: 13px 6px;
    font-size: 14px
  }

  .detail-copy-grid,
  .process-steps {
    grid-template-columns: 1fr
  }

  .related-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px
  }

  .related-product-grid h3 {
    font-size: 13px
  }

  .service-badges {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:900px) {
  .gallery-main {
    cursor: default
  }

  .zoom-lens,
  .zoom-result {
    display: none
  }

  .product-message {
    padding: 24px 20px
  }

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

  .form-field-wide,
  .form-submit-row {
    grid-column: auto
  }
}

@media (max-width:640px) {
  .view-large {
    right: 8px;
    bottom: 8px
  }

  .view-large span {
    display: none
  }

  .gallery-tip {
    font-size: 9px
  }

  .lightbox-close {
    right: 8px;
    top: 8px
  }

  .lightbox-nav {
    width: 40px;
    height: 60px;
    font-size: 38px
  }

  .lightbox-prev {
    left: 5px
  }

  .lightbox-next {
    right: 5px
  }

  .product-inquiry {
    align-items: flex-start;
    gap: 12px
  }

  .inquiry-actions {
    flex-direction: column;
    min-width: 92px
  }

  .product-inquiry .inquiry-actions a {
    text-align: center;
    padding: 9px
  }

  .product-message {
    margin-top: 22px;
    padding: 20px 13px
  }

  .message-heading h2 {
    font-size: 21px
  }

  .inquiry-form {
    gap: 14px;
    padding-top: 19px
  }

  .form-field {
    grid-template-columns: 1fr;
    gap: 7px
  }

  .form-field label {
    text-align: left
  }

  .form-field small {
    grid-column: auto
  }

  .form-field-wide label {
    padding-top: 0
  }

  .form-submit-row {
    padding-left: 0;
    display: block
  }

  .form-submit-row button {
    width: 100%
  }

  .form-status {
    margin-top: 10px;
    text-align: center
  }
}

.sitemap-hero {
  height: 210px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(35, 105, 100, .9), rgba(90, 179, 173, .55)), url("assets/rings.jpg") center/cover;
  color: #fff
}

.sitemap-hero span {
  font: 10px Georgia, serif;
  letter-spacing: 3px;
  color: #fff4a8
}

.sitemap-hero h1 {
  margin: 9px 0;
  font: 34px STSong, "SimSun", serif;
  font-weight: 400
}

.sitemap-hero p {
  margin: 0
}

.sitemap-content {
  padding: 40px 0 55px;
  background: #f5fbfb
}

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

.sitemap-grid section {
  padding: 24px;
  background: #fff;
  border-top: 3px solid var(--yellow);
  box-shadow: 0 8px 22px rgba(61, 118, 114, .08)
}

.sitemap-grid h2 {
  margin: 0 0 14px;
  color: #655e51;
  font: 21px STSong, "SimSun", serif
}

.sitemap-grid a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px dotted #ddd;
  color: #777;
  font-size: 13px
}

.sitemap-grid a:hover {
  color: #a08440;
  padding-left: 5px
}

@media(max-width:640px) {
  .sitemap-hero {
    height: 190px
  }

  .sitemap-grid {
    grid-template-columns: 1fr
  }

  .sitemap-content {
    padding: 24px 0 36px
  }
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 28px;
  width: 50px;
  height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 3px;
  background: linear-gradient(145deg, #3b8f89, #276f6a);
  box-shadow: 0 8px 24px rgba(28, 83, 79, .28);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0)
}

.back-to-top:hover {
  background: linear-gradient(145deg, #c2a354, #9e803b);
  transform: translateY(-3px)
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 225, 64, .75);
  outline-offset: 3px
}

.back-to-top span {
  font: 25px/1 Arial, sans-serif
}

.back-to-top em {
  font: normal 9px/1.2 "Microsoft YaHei", sans-serif;
  letter-spacing: 1px
}

@media(max-width:640px) {
  .back-to-top {
    right: 12px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%
  }

  .back-to-top span {
    font-size: 23px
  }

  .back-to-top em {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {
  .back-to-top {
    transition: none
  }
}

@media(max-width:640px) {
  .submenu-toggle {
    top: 0;
    bottom: auto;
    height: 47px;
    transform: none !important
  }
}

@media(max-width:900px) {
  .category-grid .category-card {
    height: 145px
  }

  .category-grid .category-back a {
    height: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .38)
  }
}

@media(max-width:640px) {
  .category-grid .category-card {
    height: 150px;
    border-bottom: 2px dashed #94ddd8
  }

  .category-grid .category-card:last-child {
    grid-column: 1/-1
  }

  .category-grid .category-back {
    padding: 10px
  }

  .category-grid .category-back a {
    height: auto;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .38)
  }

  .category-back strong {
    font-size: 17px
  }

  .category-back>span {
    margin: 3px 0 7px
  }
}

@media(prefers-reduced-motion:reduce) {
  .category-card-inner {
    transition: none
  }
}

.favorite-toast {
  position: fixed;
  z-index: 1200;
  right: 24px;
  top: 44px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
  padding: 14px 12px 14px 15px;
  border-top: 3px solid var(--yellow);
  border-radius: 4px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 38px rgba(33, 77, 73, .24);
  color: #6c6558;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s, transform .25s, visibility .25s
}

.favorite-toast.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0)
}

.favorite-star {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff9cf;
  color: #b3974f;
  font: 28px/1 Georgia, serif
}

.favorite-toast strong {
  display: block;
  color: #6a6150;
  font: 16px STSong, "SimSun", serif;
  font-weight: 400
}

.favorite-toast p {
  margin: 5px 0 0;
  color: #888;
  font-size: 12px
}

.favorite-toast kbd {
  display: inline-block;
  margin: 0 3px;
  padding: 3px 7px;
  border: 1px solid #d8c99d;
  border-bottom-width: 2px;
  border-radius: 3px;
  background: #fffdf0;
  color: #8f7332;
  font: bold 11px Arial, sans-serif;
  box-shadow: 0 1px 0 #eee
}

.favorite-toast button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aaa;
  font: 22px/1 Arial, sans-serif;
  cursor: pointer
}

.favorite-toast button:hover {
  color: #9d7f3c
}

@media(max-width:640px) {
  .favorite-toast {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    padding: 12px
  }

  .favorite-star {
    width: 32px;
    height: 32px;
    font-size: 24px
  }

  .favorite-toast strong {
    font-size: 14px
  }

  .favorite-toast p {
    font-size: 11px
  }
}

@media(prefers-reduced-motion:reduce) {
  .favorite-toast {
    transition: none
  }
}

/* Contact page */
.contact-page {
  background: #f7fbfb
}

.contact-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #260c0d;
  color: #fff
}

.contact-hero:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 4, 7, .82) 0%, rgba(39, 7, 10, .62) 36%, rgba(28, 8, 9, .14) 68%, rgba(20, 5, 5, .04) 100%)
}

.contact-hero:after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--yellow)
}

.contact-hero picture,
.contact-hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.contact-hero picture img {
  object-fit: cover;
  object-position: center
}

.contact-hero-copy {
  position: relative;
  z-index: 2
}

.contact-hero-copy>span {
  font: 11px Georgia, serif;
  letter-spacing: 4px;
  color: #e9d78b
}

.contact-hero-copy h1 {
  margin: 12px 0 10px;
  font: 400 38px STSong, "SimSun", serif
}

.contact-hero-copy p {
  margin: 0;
  color: #eadfdb;
  font: 16px STSong, "SimSun", serif;
  letter-spacing: 2px
}

.contact-content {
  padding: 42px 0 55px;
  background: linear-gradient(180deg, #f3faf9, #fff)
}

.contact-heading {
  text-align: center;
  margin-bottom: 28px
}

.contact-heading>span,
.contact-eyebrow {
  color: #b49a5a;
  font: 10px Georgia, serif;
  letter-spacing: 2px
}

.contact-heading h2 {
  margin: 9px 0;
  color: #635d52;
  font: 400 29px STSong, "SimSun", serif
}

.contact-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #999;
  font-size: 13px;
  line-height: 1.8
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px
}

.contact-channel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 185px;
  padding: 22px 20px;
  border-top: 3px solid #d0b661;
  background: #fff;
  box-shadow: 0 9px 25px rgba(61, 118, 114, .08);
  color: #777;
  transition: .22s
}

.contact-channel:hover {
  transform: translateY(-4px);
  background: #fffdf1;
  box-shadow: 0 14px 30px rgba(61, 118, 114, .13)
}

.contact-channel>b {
  align-self: flex-start;
  padding: 5px 8px;
  background: #f5faf9;
  color: #af9450;
  font: 11px Georgia, serif;
  letter-spacing: 2px
}

.contact-channel>span {
  margin-top: 17px;
  color: #aaa;
  font-size: 11px
}

.contact-channel>strong {
  margin-top: 6px;
  color: #675f52;
  font: 16px/1.5 STSong, "SimSun", serif;
  font-weight: 400;
  word-break: break-word
}

.contact-channel:first-child>strong {
  color: #b45760;
  font: 23px Georgia, serif
}

.contact-channel>i {
  margin-top: auto;
  padding-top: 12px;
  color: #ac904c;
  font-size: 10px;
  font-style: normal
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(270px, .75fr);
  gap: 22px
}

.contact-panel {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(61, 118, 114, .08)
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-top: 4px solid var(--yellow)
}

.contact-intro figure {
  margin: 0
}

.contact-intro figure img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 8px solid #f2f8f7
}

.contact-panel h3 {
  margin: 8px 0 16px;
  color: #675f51;
  font: 400 24px STSong, "SimSun", serif
}

.contact-richtext {
  color: #707070;
  font: 14px/2 STSong, "SimSun", serif
}

.contact-richtext p {
  margin: 0 0 13px
}

.contact-richtext p:last-child {
  margin-bottom: 0
}

.contact-richtext img {
  max-width: 100%;
  height: auto
}

.contact-consult {
  padding: 27px 25px;
  background: linear-gradient(155deg, #266f6a, #69c6c0);
  color: #fff
}

.contact-consult .contact-eyebrow {
  color: #fff0a4
}

.contact-consult h3 {
  color: #fff
}

.contact-consult>p {
  margin: 0 0 18px;
  color: #e7f7f5;
  font-size: 12px;
  line-height: 1.8
}

.contact-consult ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.contact-consult li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, .38);
  font-size: 12px
}

.contact-consult li b {
  color: #fff39c;
  font: 17px Georgia, serif
}

.contact-consult>a {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding: 12px 15px;
  background: #fff;
  color: #9a7c37;
  font-size: 13px
}

.contact-consult>a:hover {
  background: #fff9ce
}

.contact-page .about-hero>img {
  object-position: center
}

.contact-article .about-detail-row {
  margin-bottom: 0
}

.contact-channel-grid-inner {
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0
}

.contact-channel-grid-inner .contact-channel {
  box-shadow: 0 6px 18px rgba(61, 118, 114, .07)
}

.contact-consult-inner {
  border-radius: 4px
}

.contact-consult-inner>a {
  max-width: 260px
}

@media(max-width:900px) {
  .contact-hero {
    height: 240px
  }

  .contact-channel-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-main-grid {
    grid-template-columns: 1fr
  }

  .contact-consult {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px
  }

  .contact-consult>span,
  .contact-consult>h3,
  .contact-consult>p {
    grid-column: 1/-1
  }

  .contact-consult>a {
    align-self: end
  }
}

@media(max-width:640px) {
  .contact-hero {
    height: 220px
  }

  .contact-hero picture img {
    object-position: 61% center
  }

  .contact-hero:before {
    background: linear-gradient(90deg, rgba(25, 4, 7, .86), rgba(39, 7, 10, .54), rgba(28, 8, 9, .08))
  }

  .contact-hero-copy>span {
    font-size: 8px
  }

  .contact-hero-copy h1 {
    font-size: 30px
  }

  .contact-hero-copy p {
    max-width: 250px;
    font-size: 13px;
    line-height: 1.7
  }

  .contact-content {
    padding: 25px 0 38px
  }

  .contact-heading {
    margin-bottom: 20px
  }

  .contact-heading h2 {
    font-size: 24px
  }

  .contact-channel-grid {
    gap: 9px;
    margin-bottom: 18px
  }

  .contact-channel {
    min-height: 165px;
    padding: 17px 14px
  }

  .contact-channel:first-child>strong {
    font-size: 18px
  }

  .contact-channel>strong {
    font-size: 13px
  }

  .contact-main-grid {
    gap: 16px
  }

  .contact-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 15px
  }

  .contact-intro figure img {
    height: 220px
  }

  .contact-panel h3 {
    font-size: 21px
  }

  .contact-richtext {
    font-size: 13px;
    line-height: 1.85
  }

  .contact-consult {
    display: block;
    padding: 22px 19px
  }

  .contact-consult>a {
    margin-top: 18px
  }
}

@media(max-width:420px) {
  .contact-channel-grid {
    grid-template-columns: 1fr
  }

  .contact-channel {
    min-height: 145px
  }
}