* {
  box-sizing: border-box;
}

html,
body,
.perspective {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@font-face {
  font-family: 'fzdbs';
  src: url('/resource/2025/iconfont/font/FZDBSJW.woff2') format('woff2'),
    url('/resource/2025/iconfont/font/FZDBSJW.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'songhei';
  src: url('/resource/2025/iconfont/font/songhei.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #53cb95;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body,
html {
  background: var(--color-bg-000);
  font-family: "Î¢ÈíÑÅºÚ", Arial, sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--color-text-500);
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.strips {
  text-align: center;
  overflow: hidden;
  color: white;
}

.strips-strip {
  will-change: width, left, z-index, height;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips-strip .strip-content {
  background-size: cover;
  background-position: center;
  background-blend-mode: darken;
}

.strips-strip:nth-child(1) .strip-content {
  background: linear-gradient(rgba(36, 79, 117, 0.8), rgba(36, 79, 117, 0.9)), url(/resource/2025/img/in/gk.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

.strips-strip:nth-child(2) .strip-content {
  background: linear-gradient(rgba(96, 191, 191, 0.8), rgba(96, 191, 191, 0.9)), url(/resource/2025/img/in/pd.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

.strips-strip:nth-child(3) .strip-content {
  background: linear-gradient(rgba(140, 75, 126, 0.8), rgba(140, 75, 126, 0.9)), url(/resource/2025/img/in/yl.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

.strips-strip:nth-child(4) .strip-content {
  background: linear-gradient(rgba(248, 188, 68, 0.8), rgba(248, 188, 68, 0.9)), url(/resource/2025/img/in/xy.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

.strips-strip:nth-child(5) .strip-content {
  background: linear-gradient(rgba(242, 75, 75, 0.8), rgba(242, 75, 75, 0.9)), url(/resource/2025/img/in/gz.jpg);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

.strips .strip-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.strips .strip-content:hover:before {
  -webkit-transform: skew(-30deg) scale(3) translate(0, 0);
  -ms-transform: skew(-30deg) scale(3) translate(0, 0);
  transform: skew(-30deg) scale(3) translate(0, 0);
  opacity: 0.1;
}

.strips .strip-content:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.05;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: skew(-30deg) scaleY(1) translate(0, 0);
  -ms-transform: skew(-30deg) scaleY(1) translate(0, 0);
  transform: skew(-30deg) scaleY(1) translate(0, 0);
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips .strip-inner-text {
  will-change: transform, opacity;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%) scale(0.01);
  -ms-transform: translate(-50%, -50%) scale(0.01);
  transform: translate(-50%, -50%) scale(0.01);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips-strip--expanded {
  width: 100%;
  top: 0 !important;
  left: 0 !important;
  z-index: 3;
  cursor: default;
  position: absolute;
}

.strips-strip--expanded .strip-content {
  min-height: 100vh;
  min-height: 100dvh;
}

.strips-strip--expanded .strip-content:hover:before {
  -webkit-transform: skew(-30deg) scale(1) translate(0, 0);
  -ms-transform: skew(-30deg) scale(1) translate(0, 0);
  transform: skew(-30deg) scale(1) translate(0, 0);
  opacity: 0.05;
}

.strips-strip--expanded .strip-title {
  opacity: 0;
}

.strips-strip--expanded .strip-inner-text {
  overflow-y: auto;
  height: 100%;
  padding: 5dvh 2dvw 5dvh 2dvw;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.strip-title {
  display: block;
  margin: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  font-size: 3.5vw;
  font-weight: bold;
  color: white;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strip-close {
  position: absolute;
  right: 3vw;
  top: 3vw;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.strip-close--show {
  opacity: 1;
}


.perspective {
  background: #aaa;
  position: relative;
}

.container-banner {
  background: #fff;
  position: relative;
  outline: 1px solid rgba(0, 0, 0, 0);
  z-index: 10;
  -webkit-transform: translateZ(0) translateX(0) rotateY(0deg);
  /* reset transforms (Chrome bug) */
  transform: translateZ(0) translateX(0) rotateY(0deg);
}

.container-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  /* the transition delay of the height needs to be synced with the container-banner transition time */
  -webkit-transition: opacity 0.4s, height 0s 0.4s;
  transition: opacity 0.4s, height 0s 0.4s;
}

.wrapper {
  position: relative;
}

.component {
  margin: 0 auto;
  width: 60%;
  text-align: justify;
  font-size: 1.5em;
}

/* Modal view */
.perspective.modalview {
  position: fixed;
  -webkit-perspective: 1500px;
  perspective: 1500px;
}

.modalview .container-banner {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modalview .wrapper {
  -webkit-transform: translateZ(-1px);
  /* solves a rendering bug in Chrome on Windows */
}

.animate .container-banner::after {
  opacity: 1;
  height: 101%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* Outer Nav */
.outer-nav {
  position: absolute;
  height: auto;
  font-size: 2em;
}

.outer-nav.vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.outer-nav.horizontal {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.effect-laydown {
  background: #b8b6b4;
}

.effect-laydown .container-banner {
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  -webkit-transform-origin: 50% 150%;
  transform-origin: 50% 150%;
}

.effect-laydown.animate .container-banner {
  -webkit-transform: translateZ(-1500px) rotateX(80deg);
  transform: translateZ(-1500px) rotateX(80deg);
  box-shadow: 0 150px 100px rgb(4 38 59 / 80%);
  border-radius: 80px;
}

.effect-laydown.animate .container-banner.hidenow {
  -webkit-transform: translateZ(-1500px) rotateX(120deg);
  transform: translateZ(-1500px) rotateX(120deg);
}

.no-csstransforms3d .effect-laydown.animate .container-banner {
  top: 75%;
}

/*banner*/
.in-banner .logo {
  position: absolute;
  top: 5%;
  left: 10%;
  max-width: 80vw;
  z-index: 1030;
}

.in-banner .logo img {
  max-height: 60px;
  max-width: 100%;
}

.in-banner .owl-carousel a {
  cursor: default;
}

.in-banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1030;
  transform: translate(-50%, -50%);
}

.in-banner-logo img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.in-banner .item img {
  display: block;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  object-position: center;
}

.in-banner-logo .goin {
  display: flex;
  gap: 1em;
  padding: 1em 2em;
  align-items: center;
  justify-content: center;
}

.in-banner-logo .goin .text {
  cursor: pointer;
  font-family: 'fzdbs';
  color: #ecffe0;
  font-size: clamp(24px, 3.5dvw, 36px);
  font-weight: 600;
  text-shadow: 3px 3px 3px rgb(80 105 9 / 80%);
}

.in-banner-logo .goin .go {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
  background: #ecffe0;
  -webkit-animation: flipX 1s linear infinite;
  animation: flipX 1s linear infinite;
}

-webkit-keyframes flipX {
  0% {
    transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
  }

  100% {
    transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
  }
}

@keyframes flipX {
  0% {
    transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
  }

  100% {
    transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
  }
}

.owl-carousel .owl-nav {
  width: calc(100% - 10vw);
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav span {
  font-size: 5vw;
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/*¾°ºé¸Å¿ö*/
.jhgk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  align-items: center;
}

.jhgk .jhinfo {
  font-size: 1rem;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.jhinfo .jhjs {
  padding: 1em;
  border: 2px solid #fff;
  border-radius: .5rem;
  text-align: justify;
  text-indent: 2em;
}

.jhinfo .jhjs .xq {
  text-align: end;
  margin: 0;
}

.jhinfo .jhjs .xq .btn {
  background: #c91526;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .2em;
  text-indent: 0;
}

.xznav,
.gknav {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fill, minmax(8em, 1fr));
}

.xznav .item .btn {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 100%;
  text-wrap: auto;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  background: #FFF;
  color: #222;
  box-shadow: 0 0 .5em rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: none;
}

.xznav .item .btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #c91526;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: width 0.4s, height 0.4s;
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.xznav .item .btn:hover,
.xznav .item .btn.active {
  color: #fff;
}

.xznav .item .btn:hover span,
.xznav .item .btn.active span {
  left: 0;
  top: 50%;
  width: 300%;
  height: auto;
  aspect-ratio: 1;
}

.gknav .item .btn {
  font-size: 1.5em;
  font-weight: bold;
  padding: .5em 1em;
  text-shadow: 0 0 .1em rgba(0, 0, 0, 0.3);
  border-radius: 5em;
  color: #FFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gknav .item .btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 5em;
}

.gknav .item .btn:hover::after {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.5;
}

.svg-wrap {
  max-width: 600px;
  margin: 20px auto;
  position: relative;
}

.svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

.map-path {
  stroke: #FFF;
  stroke-width: 20;
  fill: transparent;
  cursor: pointer;
  transition: fill 200ms ease, stroke-width 120ms ease, transform 150ms;
  outline: none;
}

.map-path:hover,
.map-path:focus,
.map-path.active {
  fill: #47ad3c;
  stroke-width: 0;
  transform: translateZ(0);
}

.map-path:focus {
  stroke: #7b84fb;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.5);
}

.svg-tooltip {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: .8rem;
  pointer-events: none;
  white-space: nowrap;
  display: none;
  z-index: 10;
}

/*Æ·¶Á¾°ºé*/
.pdjh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  grid-auto-rows: max-content;
  gap: 1rem;
}

.pdjh .card-item {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.pdjh .front,
.pdjh .back {
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
}

.pdjh .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #cedce7;
  background: -webkit-linear-gradient(45deg, #6ee1e1 0%, #057c7c 100%);
  background: -o-linear-gradient(45deg, #6ee1e1 0%, #057c7c 100%);
  background: linear-gradient(45deg, #6ee1e1 0%, #057c7c 100%);
  overflow-y: auto;
}

.pdjh .back p {
  font-family: 'Microsoft YaHei', 'Lantinghei SC', 'Open Sans', Arial, 'Hiragino Sans GB', 'STHeiti', 'WenQuanYi Micro Hei', 'SimSun', sans-serif;
}

.pdjh .front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: .6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.pdjh .card-item:hover .front,
.pdjh .card-item:hover .back {
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}


.pdjh .inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.pdjh .card-item .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.pdjh .card-item .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.pdjh .card-item:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.pdjh .card-item:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.pdjh .front .inner p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  font-family: 'Microsoft YaHei', 'Lantinghei SC', 'Open Sans', Arial, 'Hiragino Sans GB', 'STHeiti', 'WenQuanYi Micro Hei', 'SimSun', sans-serif;
}

.pdjh .front .inner p:after {
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.pdjh .front .inner span {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Microsoft YaHei', 'Lantinghei SC', 'Open Sans', Arial, 'Hiragino Sans GB', 'STHeiti', 'WenQuanYi Micro Hei', 'SimSun', sans-serif;
  font-weight: 300;
}

/*ÓÎÀÖ¾°ºé*/
#lyjh {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  grid-auto-rows: max-content;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  gap: 1rem;
}

#lyjh .card {
  background-color: #ccc;
  height: 100%;
  min-height: 180px;
  transition: all 0.1s ease;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0);
  overflow: hidden;
  cursor: pointer;
  border: none;
}

#lyjh .card:hover {
  -webkit-transform: scale(2);
  transform: scale(2);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

#lyjh .card:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

#lyjh .card .tit,
.xyjh .cy-item p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 2;
  padding: .2em 1em;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 2;
}

#lyjh .card .reflection {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  transition: all 0.1s ease;
  opacity: 0;
  mix-blend-mode: soft-light;
}

#lyjh .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(0.35);
  filter: grayscale(0.35);
  transition: all 0.3s ease;
}

.ylvideo {
  grid-column: span 2;
  grid-row: span 2;
}

.ylvideo,
#ylvideo {
  height: 100%;
  min-height: 360px;
  z-index: 1;
  background: #000;
  border-radius: 8px;
}

/*ÐËÒµ¾°ºé*/
.xyjh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows: minmax(120px, max-content);
  gap: 1rem;
}

.xyjh .cy-item,
.xyjh .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
  overflow: hidden;
  box-shadow: 0 0 5px rgb(0 0 0 / 50%);
  border-radius: 5px;
}

.xyjh .cy-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(0.55) brightness(0.5);
  filter: grayscale(0.55) brightness(0.5);
  transform: scale(1);
  transition: all 0.3s ease;
}

.xyjh .cy-item:first-child img {
  -webkit-filter: grayscale(0) brightness(0.9);
  filter: grayscale(0) brightness(0.9);
}

.xyjh .cy-item h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  line-height: 2;
  padding: .2em 1em;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 3dvw, 48px);
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.65);
}

.xyjh .cy-item p {
  margin: 0;
}

.xyjh .cy-item img:hover {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

.xyjh>a:nth-child(1) {
  grid-row: span 2;
  grid-column: span 2;
}

.xyjh>a:nth-child(2) {
  grid-column: span 2;
}

.xyjh>a:nth-child(3) {
  grid-row: span 2;
}

.xyjh>a:nth-child(5) {
  grid-row: span 2;
}

.xyjh .item:nth-child(odd) {
  background: #fefefe;
}

.xyjh .item:nth-child(even) {
  background: #fff4d9;
}

.xyjh .item {
  padding: 1rem;
}

.xyjh .item:hover {
  background: #e9e7e1;
}

.xyjh .item h6 {
  text-align: justify;
  line-height: 1.6;
}

.xyjh .item span {
  text-align: end;
  font-size: .8rem;
  color: #bbb;
}

@media (max-width: 480px) {
  .svg-tooltip {
    font-size: .8rem;
    padding: 4px 8px;
  }

  .ylvideo {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pdjh {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .pdjh .front, .pdjh .back {
    min-height: 180px;
}
  #lyjh {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }

  .xyjh>a:nth-child(1) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .xyjh>a:nth-child(2) {
    grid-column: span 1;
  }

  .xyjh>a:nth-child(3) {
    grid-row: span 1;
  }

  .xyjh>a:nth-child(5) {
    grid-row: span 1;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .in-banner-logo {
    width: 80%;
  }

  .ylvideo,
  #ylvideo {
    min-height: min-content;
  }

  .outer-nav.horizontal {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .effect-laydown.animate .container-banner {
    box-shadow: 0 80px 80px rgb(4 38 59 / 80%);
    border-radius: 30px;
    background: rgb(255 255 255 / 80%);
    -webkit-transform: translateZ(-500px) rotateZ(5deg) translateX(30%);
    transform: translateZ(-500px) rotateZ(5deg) translateX(30%);
    -webkit-transform-origin: 20% 400%;
    transform-origin: 20% 400%;
  }

  .jhgk {
    grid-template-columns: 1fr;
  }

  .xyjh .cy-item img {
    -webkit-filter: grayscale(0) brightness(1);
    filter: grayscale(0) brightness(1);
  }
}