:root {
  /*--jsy-red-950: #4f0000;*/
  /*--jsy-red-900: #6f0000;*/
  /*--jsy-red-800: #910000;*/
  /*--jsy-red-700: #bd0505;*/
  --jsy-gold: #e4ad2f;
  --jsy-gold-600: #c99019;
  --jsy-gold-soft: #f3d780;
  --jsy-ink: #333333;
  --jsy-text: #6f6f6f;
  --jsy-muted: #a9a9a9;
  --jsy-line: #e5e5e5;
  --jsy-bg: #f7f7f7;
  --jsy-font-song: "STSong", "Songti SC", "SimSun", serif;
  --jsy-font-kai: "STKaiti", "KaiTi", "STSong", serif;
  --jsy-font-body: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  --jsy-font-num: Georgia, "Times New Roman", serif;
  --jsy-container: 1740px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: #ffffff;
}

body.jsy-home,
body {
  color: var(--jsy-ink);
  font-family: var(--jsy-font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.jsy-container {
  width: min(100% - 80px, var(--jsy-container));
  margin: 0 auto;
}

.jsy-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background: #ffffff;
}

.jsy-section--light {
  background:
    radial-gradient(circle at 8% 16%, rgba(228, 173, 47, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.jsy-section__head {
  margin: 0 auto 46px;
  text-align: center;
}

.jsy-section__head h2,
.jsy-title {
  margin: 0;
  color: var(--jsy-ink);
  font-family: var(--jsy-font-song);
  font-size: clamp(36px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.jsy-section__head p,
.jsy-title-sub {
  margin: 14px 0 0;
  color: #858585;
  font-size: 18px;
}

.jsy-title-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 34px 8px;
  border-radius: 50%;
  background: var(--jsy-gold);
  vertical-align: middle;
}

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

.jsy-btn {
  min-width: 170px;
  height: 54px;
  padding: 0 34px;
  border: 1px solid currentColor;
  border-radius: 0 0 28px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--jsy-gold-600);
  background: transparent;
  font-size: 17px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.jsy-btn:hover {
  color: #ffffff;
  border-color: var(--jsy-gold);
  background: var(--jsy-gold);
  transform: translateY(-2px);
}

.jsy-btn--light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.86);
}

.jsy-btn--light:hover {
  color: var(--jsy-red-900);
  border-color: #ffffff;
  background: #ffffff;
}

.jsy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 75px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.jsy-header.is-red {
  background: #ffffff;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

.jsy-header__inner {
  width: min(96%, 1620px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.jsy-logo {
  flex: 0 0 22%;
  max-width: 260px;
  min-width: 190px;
  margin-top: 10px;
  display: block;
  position: relative;
}

.jsy-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.jsy-logo span {
  display: none;
}

.jsy-header.is-red .jsy-logo span {
  position: absolute;
  left: 70px;
  top: 50%;
  display: block;
  transform: translateY(-50%);
  color: #8b0000;
  font: 700 15px / 1 var(--jsy-font-kai);
  white-space: nowrap;
}

.jsy-nav {
  flex: 0 0 52%;
  min-width: 0;
}

.jsy-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jsy-nav li {
  position: relative;
  min-width: 100px;
  flex: 1 1 100px;
}

.jsy-nav > ul > li > a {
  height: 74px;
  padding: 22px 0;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 30px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.jsy-header.is-red .jsy-nav > ul > li > a {
  color: #333333;
}

.jsy-nav > ul > li > a:hover,
.jsy-nav > ul > li.is-open > a {
  color: #e1ac2e;
}

.jsy-nav i {
  color: #ffffff;
  font-size: 12px;
  transition: color 160ms ease;
}

.jsy-header.is-red .jsy-nav i {
  color: #cccccc;
}

.jsy-nav > ul > li:hover i {
  color: #e6ba55;
}

.jsy-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  padding: 0;
  transform: translateY(8px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.jsy-submenu--wide {
  width: 200px;
}

.has-submenu:hover .jsy-submenu,
.has-submenu.is-open .jsy-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.jsy-submenu a {
  display: block;
  padding: 5px 10px;
  color: #333333;
  font: 700 14px / 30px "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  transition: color 160ms ease, background 160ms ease;
}

.jsy-submenu a:hover {
  color: #ffffff;
  background: #e5b64b;
}

.jsy-header__contact {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  white-space: nowrap;
}

.jsy-header.is-red .jsy-header__contact {
  color: #333333;
}

.jsy-header__phone {
  flex: 0 0 60%;
  color: inherit;
  font: 700 20px / 1 "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  text-align: right;
}

.jsy-shop-menu {
  position: relative;
  flex: 0 0 40%;
  margin-left: 16px;
}

.jsy-shop-menu button {
  width: 100%;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color: inherit;
  background: transparent;
  font: 400 14px / 20px "Microsoft YaHei", sans-serif;
}

.jsy-shop-menu button .fa-shopping-cart {
  color: #ffffff;
  font-size: 26px;
}

.jsy-header.is-red .jsy-shop-menu button .fa-shopping-cart {
  color: #333333;
}

.jsy-shop-menu__list {
  position: absolute;
  top: 36px;
  right: 0;
  z-index: 20;
  width: 220px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.jsy-shop-menu__list::before {
  content: "▲";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.jsy-shop-menu:hover .jsy-shop-menu__list,
.jsy-shop-menu:focus-within .jsy-shop-menu__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jsy-shop-menu__list a {
  min-height: 30px;
  padding: 0 13px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  white-space: normal;
  transition: color 160ms ease, padding-left 160ms ease;
}

.jsy-shop-menu__list a:hover {
  color: #e1ab2e;
  padding-left: 18px;
}

.jsy-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(228, 173, 47, 0.55);
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.jsy-menu-toggle span {
  width: 22px;
  height: 2px;
/*background: var(--jsy-red-900);*/
}

.jsy-header.is-red .jsy-menu-toggle span {
/*background: var(--jsy-red-900);*/
}

.jsy-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
/*background: var(--jsy-red-900);*/
  perspective: 1800px;
  perspective-origin: 50% 45%;
}

.jsy-slider,
.jsy-slide {
  position: absolute;
  inset: 0;
}

.jsy-slider {
  overflow: visible;
  transform-style: preserve-3d;
}

.jsy-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.jsy-slide.is-active,
.jsy-slide.is-entering,
.jsy-slide.is-leaving {
  opacity: 1;
  visibility: visible;
}

.jsy-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08);
  transform: scale(1.02);
  backface-visibility: hidden;
}

.jsy-slide::before,
.jsy-slide::after {
  content: "";
  position: absolute;
  top: 8.5%;
  bottom: 8.5%;
  width: min(14vw, 260px);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.jsy-slide::before {
  left: 0;
  transform: translateX(-58%) rotateY(-64deg);
  transform-origin: right center;
  /*background: linear-gradient(90deg, rgba(72, 20, 8, 0.72), rgba(168, 68, 22, 0.62));*/
}

.jsy-slide::after {
  right: 0;
  transform: translateX(58%) rotateY(64deg);
  transform-origin: left center;
  /*background: linear-gradient(90deg, rgba(104, 0, 0, 0.72), rgba(32, 0, 0, 0.88));*/
}

.jsy-slider.is-animating .jsy-slide.is-active::before,
.jsy-slider.is-animating .jsy-slide.is-active::after,
.jsy-slider.is-animating .jsy-slide.is-leaving::before,
.jsy-slider.is-animating .jsy-slide.is-leaving::after,
.jsy-slider.is-animating .jsy-slide.is-entering::before,
.jsy-slider.is-animating .jsy-slide.is-entering::after {
  opacity: 0.66;
}

.jsy-slide__shade {
  position: absolute;
  inset: 0;
  /*background:*/
  /*  linear-gradient(90deg, rgba(89, 0, 0, 0.28) 0%, rgba(148, 0, 0, 0.1) 48%, rgba(75, 0, 0, 0.12) 100%),*/
  /*  linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(120, 0, 0, 0.04) 52%, rgba(66, 0, 0, 0.26) 100%);*/
}

.jsy-slide__content {
  position: absolute;
  left: clamp(48px, 6.8vw, 138px);
  top: 50%;
  max-width: 820px;
  transform: translateY(-42%);
  color: #fff6e3;
  text-shadow: 0 5px 12px rgba(67, 0, 0, 0.78);
}

.jsy-slide__brand {
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--jsy-font-num);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.jsy-slide h1 {
  margin: 0;
  font-family: var(--jsy-font-song);
  font-size: clamp(76px, 7.8vw, 148px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.jsy-slide__subtitle {
  margin: 32px 0 0;
  color: #ffffff;
  font-family: var(--jsy-font-song);
  font-size: clamp(25px, 2.55vw, 45px);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.jsy-slider__arrows {
  position: absolute;
  left: 38px;
  bottom: 32px;
  z-index: 4;
  display: flex;
  gap: 28px;
}

.jsy-slider__arrows button {
  width: 45px;
  height: 52px;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  font-size: 27px;
  transition: background 160ms ease;
}

.jsy-slider__arrows button:hover {
  background: rgba(0, 0, 0, 0.52);
}

.jsy-slider__dots {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jsy-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: transparent;
}

.jsy-slider__dots button.is-active {
  background: #ffffff;
}

.jsy-showcase {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)),
    url("../origin/img/about_bj.jpg") center / cover no-repeat;
  border-top: 4px solid var(--jsy-gold);
}

.jsy-showcase__inner {
  width: min(100% - 80px, var(--jsy-container));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 70px;
}

.jsy-showcase__inner--profile {
  display: block;
  padding: 86px 0 100px;
}

.jsy-showcase__title {
  align-self: start;
}

.jsy-section-kicker {
  display: block;
  color: var(--jsy-gold);
  font: 700 14px var(--jsy-font-num);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.jsy-showcase h2 {
  margin: 8px 0 0;
  color: var(--jsy-red-900);
  font-family: var(--jsy-font-song);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.45;
}

.jsy-showcase__richtext {
  min-width: 0;
  max-width: 820px;
  color: #666666;
  font: 17px / 2.05 var(--jsy-font-song);
  overflow-wrap: anywhere;
}

.jsy-showcase .hgs-profile__copy {
  max-width: 1160px;
  margin: 30px auto 0;
  color: #111111;
  font-family: var(--jsy-font-body);
  font-size: 18px;
  line-height: 1.85;
  text-align: left;
}

.jsy-showcase__richtext > :first-child {
  margin-top: 0;
}

.jsy-showcase__richtext > :last-child {
  margin-bottom: 0;
}

.jsy-showcase__richtext p {
  margin: 0 0 18px;
}

.jsy-showcase__richtext p + p {
  margin-top: 0;
}

.jsy-showcase .hgs-profile__copy p {
  color: #111111;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
}

.jsy-showcase .hgs-profile__copy p span {
  font-size: inherit;
}

.jsy-showcase__richtext h1,
.jsy-showcase__richtext h2,
.jsy-showcase__richtext h3,
.jsy-showcase__richtext h4,
.jsy-showcase__richtext h5,
.jsy-showcase__richtext h6 {
  margin: 0 0 16px;
  color: var(--jsy-red-900);
  font-family: var(--jsy-font-song);
  line-height: 1.45;
}

.jsy-showcase__richtext h1,
.jsy-showcase__richtext h2 {
  font-size: 28px;
}

.jsy-showcase__richtext h3 {
  font-size: 22px;
}

.jsy-showcase__richtext img,
.jsy-showcase__richtext video {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 18px auto;
}

.jsy-showcase .hgs-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.jsy-showcase .hgs-reveal.hgs-is-visible {
  opacity: 1;
  transform: translateY(0);
}

.jsy-showcase__richtext table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.jsy-showcase__richtext th,
.jsy-showcase__richtext td {
  padding: 10px 12px;
  border: 1px solid rgba(128, 96, 42, 0.18);
}

.jsy-showcase__richtext a {
  color: var(--jsy-red-900);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jsy-showcase__richtext ul,
.jsy-showcase__richtext ol {
  margin: 12px 0 12px 1.5em;
  padding: 0;
}

.jsy-origin {
  min-height: 720px;
  padding: 84px 0 56px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.82) 100%),
    url("../origin/img/about_bj.jpg") center / cover no-repeat;
}

.jsy-origin__inner {
  width: min(100% - 80px, var(--jsy-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 620px) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.jsy-origin__copy h2 {
  margin: 0 0 24px;
  color: var(--jsy-gold);
  font-family: var(--jsy-font-song);
  font-size: 45px;
  font-weight: 400;
}

.jsy-origin__copy h2::after {
  content: "";
  display: block;
  width: min(100%, 720px);
  height: 1px;
  margin-top: 22px;
  background: #e9e9e9;
}

.jsy-origin__copy p {
  margin: 0 0 10px;
  color: #7e7e7e;
  font-family: var(--jsy-font-song);
  font-size: 20px;
  line-height: 2.05;
}

.jsy-origin__years {
  margin: 24px 0 36px;
  display: flex;
  align-items: flex-end;
  gap: 34px;
}

.jsy-origin__years strong {
  color: var(--jsy-gold);
  font: 400 64px var(--jsy-font-num);
  line-height: 1;
}

.jsy-origin__years span {
  color: #777777;
  font-size: 18px;
}

.jsy-origin__years i {
  width: 72px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--jsy-gold);
  position: relative;
}

.jsy-origin__years i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -7px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--jsy-gold);
  border-right: 2px solid var(--jsy-gold);
  transform: rotate(45deg);
}

.jsy-origin__map {
  position: relative;
  min-height: 430px;
}

.jsy-origin__map img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  opacity: 0.82;
}

.jsy-origin__point {
  position: absolute;
  color: #111111;
  font: 700 27px Arial, sans-serif;
  text-align: center;
}

.jsy-origin__point::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #eabc51;
}

.jsy-news {
  padding: 72px 0 88px;
  background: #ffffff;
}

.jsy-news__grid {
  width: min(100% - 80px, 1650px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.jsy-news-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #eeeeee;
}

.jsy-news-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.jsy-news-card:hover img {
  transform: scale(1.05);
}

.jsy-news-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 34px;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.jsy-news-card__body time {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font: 18px var(--jsy-font-num);
}

.jsy-news-card__body h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
}

.jsy-craft {
  padding: 72px 0;
  background: #ffffff;
}

.jsy-craft__grid {
  width: min(100% - 56px, 1840px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.68fr;
  grid-auto-rows: minmax(248px, 1fr);
  gap: 10px;
}

.jsy-craft-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  color: #ffffff;
  background: #dddddd;
}

.jsy-craft-card--tall {
  grid-row: span 2;
  border-top-left-radius: 110px;
}

.jsy-craft-card--wide {
  grid-column: span 1;
}

.jsy-craft-card--round {
  border-bottom-right-radius: 120px;
}

.jsy-craft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.jsy-craft-card:hover img {
  transform: scale(1.04);
}

.jsy-craft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.jsy-craft-card__label {
  position: absolute;
  left: 42px;
  bottom: 36px;
  z-index: 2;
  font-family: var(--jsy-font-song);
  font-size: 31px;
  line-height: 1;
}

.jsy-craft-card__panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 42px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(190, 148, 43, 0.52);
}

.jsy-craft-card__panel h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 500;
}

.jsy-craft-card__panel h3::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin: 18px auto 0;
  background: rgba(255, 255, 255, 0.8);
}

.jsy-craft-card__panel p {
  max-width: 650px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.9;
}

.jsy-contact-hero {
  position: relative;
  min-height: 445px;
  margin-top: 92px;
  padding: 36px 6vw;
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2)),
    url("../origin/img/bg6.jpg") center / cover no-repeat;
}

.jsy-contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--jsy-gold);
}

.jsy-contact-hero h1 {
  margin: 0 0 22px;
  font: 400 36px / 1.35 var(--jsy-font-song);
}

.jsy-contact-hero p {
  margin: 0 0 22px;
  font: 26px / 1.4 var(--jsy-font-song);
}

.jsy-contact-hero span {
  display: block;
  margin-bottom: 60px;
  font: 21px var(--jsy-font-song);
}

.jsy-contact-hero a {
  font-size: 46px;
}

.jsy-service {
  position: fixed;
  right: 0;
  top: 68%;
  z-index: 900;
  width: 60px;
  transform: translateY(-50%);
}

.jsy-service__panel {
  position: relative;
  width: 60px;
  height: 60px;
}

.jsy-service__entry {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(114, 0, 0, 0.96);
  font-size: 24px;
  box-shadow: 0 16px 32px rgba(40, 0, 0, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.jsy-service__entry::before {
  content: "";
  display: none;
  position: absolute;
  inset: -22px;
  border: 4px solid rgba(255, 99, 99, 0.72);
  opacity: 0.88;
  pointer-events: none;
}

.jsy-service__entry::after {
  content: "";
  display: none;
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
  animation: jsyServicePulse 2200ms ease-out infinite;
}

.jsy-service__hotline {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 230px;
  min-height: 60px;
  padding: 0 24px 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  background: rgba(92, 0, 0, 0.9);
  box-shadow: 0 18px 36px rgba(50, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.jsy-service__hotline i {
  flex: 0 0 auto;
  font-size: 24px;
}

.jsy-service__hotline span {
  display: grid;
  gap: 2px;
  font-style: normal;
}

.jsy-service__hotline strong,
.jsy-service__hotline em {
  color: #ffffff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.jsy-service__hotline strong {
  font-size: 14px;
}

.jsy-service__hotline em {
  font-size: 14px;
}

.jsy-service:hover .jsy-service__hotline,
.jsy-service:focus-within .jsy-service__hotline {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.jsy-service__entry:hover,
.jsy-service__entry:focus-visible,
.jsy-service__hotline:hover,
.jsy-service__hotline:focus-visible {
  color: #ffffff;
  background: rgba(128, 0, 0, 0.98);
}

.jsy-service__entry:hover,
.jsy-service__entry:focus-visible {
  transform: translateX(0);
}

@keyframes jsyServicePulse {
  0% {
    opacity: 0.7;
    transform: scale(0.78);
  }

  70% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.jsy-footer {
  position: relative;
  min-height: 300px;
  padding: 0 4%;
  background: #f7f7f7;
  color: rgba(146, 146, 146, 0.8);
  border-top: 6px solid #e2ae2a;
}

.jsy-footer__top {
  width: min(96%, 1600px);
  margin: 0 auto;
  padding: 40px 0 30px;
  display: grid;
  grid-template-columns: 140px 260px minmax(0, 1fr);
  gap: 30px;
  border-bottom: 1px solid #dddddd;
}

.jsy-footer__qr {
  width: 140px;
  padding: 10px 10px 20px;
  background: #ececec;
  text-align: center;
}

.jsy-footer__qr img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  object-fit: cover;
}

.jsy-footer__qr span {
  display: block;
  margin-top: 10px;
  color: #777777;
  font-size: 14px;
}

.jsy-footer__hotline p {
  margin: 0;
  color: #696969;
  font-size: 16px;
  line-height: 24px;
}

.jsy-footer__hotline strong {
  display: block;
  margin: 2px 0 8px;
  color: #e2ae2a;
  font: 700 30px / 1.4 "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
}

.jsy-footer__hotline span {
  display: block;
  color: rgba(146, 146, 146, 0.8);
  font-size: 14px;
  line-height: 24px;
}

.jsy-social {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.jsy-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

.jsy-social .weibo { background: #e73226; }
.jsy-social .wechat { background: #32c15f; }
.jsy-social .qq { background: #43a5ef; }
.jsy-social .star { background: #3e9ce8; }
.jsy-social .link { background: #23a4d8; }
.jsy-social .music { background: #101010; }

.jsy-footer__nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(86px, 1fr));
  gap: 22px;
}

.jsy-footer__nav h3 {
  margin: 0 0 10px;
  color: #333333;
  font: 700 16px / 2 "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
}

.jsy-footer__nav h3 a {
  color: inherit;
  font: inherit;
}

.jsy-footer__nav a {
  display: block;
  margin: 0;
  color: rgba(146, 146, 146, 0.8);
  font-size: 14px;
  line-height: 2;
  transition: color 160ms ease;
}

.jsy-footer__nav a:hover,
.jsy-friend-links a:hover {
  color: #e1ab2e;
}

.jsy-friend-links {
  width: min(96%, 1600px);
  margin: 0 auto;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 100px repeat(3, minmax(180px, 1fr));
  gap: 8px 22px;
  border-bottom: 1px solid #dddddd;
  color: #333333;
  font-size: 15px;
}

.jsy-friend-links strong {
  grid-row: 1 / span 2;
  font: 700 16px / 2 "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
}

.jsy-friend-links a {
  color: #666666;
  font-size: 15px;
  line-height: 2;
  transition: color 160ms ease;
}

.jsy-footer__bottom {
  width: min(96%, 1600px);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(146, 146, 146, 0.8);
  font-size: 14px;
  line-height: 2;
}

.jsy-footer__bottom p {
  margin: 0;
}

.jsy-footer-brand {
  width: 180px;
  min-width: 180px;
}

.jsy-footer-brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: right center;
}

@media (max-width: 1600px) {
  .jsy-header__inner {
    width: 97%;
  }

  .jsy-logo {
    min-width: 178px;
  }

  .jsy-nav li {
    min-width: 82px;
  }

  .jsy-header__phone {
    font-size: 18px;
  }

  .jsy-footer__top {
    grid-template-columns: 140px 240px minmax(0, 1fr);
  }

  .jsy-footer__nav {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }
}

@media (max-width: 1199px) {
  .jsy-header__contact {
    display: none;
  }

  .jsy-logo {
    flex-basis: 260px;
  }

  .jsy-nav {
    flex: 1 1 auto;
  }

  .jsy-origin__inner {
    grid-template-columns: 1fr;
  }

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

  .jsy-craft__grid {
    grid-template-columns: 1fr 1fr;
  }

  .jsy-footer__top {
    grid-template-columns: 140px 1fr;
  }

  .jsy-footer__nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .jsy-container,
  .jsy-showcase__inner,
  .jsy-origin__inner,
  .jsy-news__grid,
  .jsy-footer__top,
  .jsy-friend-links,
  .jsy-footer__bottom {
    width: min(100% - 40px, 1600px);
  }

  .jsy-header {
    height: 57px;
    background: rgba(0, 0, 0, 0.35);
  }

  .jsy-header__inner {
    width: 96%;
    justify-content: space-between;
  }

  .jsy-logo {
    flex: 0 0 180px;
    min-width: 180px;
    margin-top: 0;
  }

  .jsy-logo img {
    height: 48px;
  }

  .jsy-menu-toggle {
    display: inline-flex;
  }

  .jsy-nav {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 57px);
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.74);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .jsy-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .jsy-nav ul {
    display: block;
    padding: 10px 24px 24px;
  }

  .jsy-nav li {
    min-width: 0;
  }

  .jsy-nav > ul > li > a {
    width: 100%;
    height: auto;
    padding: 13px 0;
    justify-content: space-between;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .jsy-nav i {
    color: rgba(255, 255, 255, 0.8);
  }

  .jsy-submenu {
    position: static;
    width: auto;
    padding: 0 0 8px 16px;
    transform: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .has-submenu.is-open .jsy-submenu {
    display: block;
  }

  .jsy-submenu a {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
  }

  .jsy-hero {
    min-height: 640px;
    height: 86vh;
  }

  .jsy-slide__content {
    left: 30px;
    right: 30px;
  }

  .jsy-slide__brand {
    font-size: 20px;
  }

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

  .jsy-origin {
    padding: 64px 0 48px;
  }

  .jsy-craft__grid {
    width: min(100% - 40px, 1840px);
  }

  .jsy-contact-hero {
    margin-top: 57px;
  }
}

@media (max-width: 767px) {
  .jsy-section {
    padding: 58px 0;
  }

  .jsy-section__head {
    margin-bottom: 32px;
  }

  .jsy-title-dot {
    width: 9px;
    height: 9px;
    margin: 0 14px 6px;
  }

  .jsy-header__inner {
    width: calc(100% - 32px);
  }

  .jsy-hero {
    min-height: 570px;
  }

  .jsy-slide img {
    object-position: center;
  }

  .jsy-slide h1 {
    font-size: 56px;
  }

  .jsy-slide__subtitle {
    font-size: 21px;
    letter-spacing: 0.12em;
  }

  .jsy-slider__arrows {
    left: 20px;
    bottom: 42px;
    gap: 28px;
  }

  .jsy-slider__arrows button {
    width: 38px;
    height: 44px;
    font-size: 22px;
  }

  .jsy-slider__dots {
    right: 20px;
    bottom: 42px;
  }

  .jsy-showcase h2 {
    font-size: 28px;
  }

  .jsy-origin__copy h2 {
    font-size: 36px;
  }

  .jsy-origin__copy p {
    font-size: 17px;
  }

  .jsy-origin__years {
    gap: 18px;
  }

  .jsy-origin__years strong {
    font-size: 48px;
  }

  .jsy-origin__years i {
    width: 44px;
  }

  .jsy-news__grid,
  .jsy-craft__grid {
    grid-template-columns: 1fr;
  }

  .jsy-craft-card--tall,
  .jsy-craft-card--round {
    border-radius: 0;
  }

  .jsy-craft-card__panel {
    padding: 32px 24px;
  }

  .jsy-craft-card__panel p {
    font-size: 17px;
  }

  .jsy-contact-hero {
    min-height: 360px;
    padding: 28px 24px;
  }

  .jsy-contact-hero h1 {
    font-size: 30px;
  }

  .jsy-contact-hero p {
    font-size: 22px;
  }

  .jsy-service {
    width: 60px;
  }

  .jsy-service__panel {
    width: 60px;
    height: 60px;
  }

  .jsy-service__entry {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .jsy-service__entry::before {
    display: none;
  }

  .jsy-service__hotline {
    right: 0;
    width: min(230px, calc(100vw - 12px));
    min-height: 60px;
    padding: 0 20px 0 26px;
    gap: 14px;
  }

  .jsy-service__hotline i {
    font-size: 24px;
  }

  .jsy-service__hotline strong,
  .jsy-service__hotline em {
    font-size: 14px;
    line-height: 20px;
  }

  .jsy-footer__top {
    grid-template-columns: 1fr;
  }

  .jsy-footer__qr {
    width: 140px;
  }

  .jsy-footer__nav {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .jsy-friend-links {
    grid-template-columns: 1fr;
  }

  .jsy-footer__bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .jsy-footer-brand {
    width: 160px;
    min-width: 160px;
  }

  .jsy-footer-brand img {
    object-position: left center;
  }
}

@media (max-width: 480px) {
  .jsy-logo {
    flex-basis: 150px;
    min-width: 150px;
  }

  .jsy-slide h1 {
    font-size: 45px;
  }

  .jsy-slide__subtitle {
    font-size: 18px;
  }

  .jsy-origin__years {
    flex-wrap: wrap;
  }

  .jsy-footer__nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jsy-service__entry,
  .jsy-service__entry::after,
  .jsy-service__hotline {
    animation: none;
    transition: none;
  }
}
