@charset "UTF-8";
body, html {
  font-size: 0.8333333333vw;
}

@media (min-width: 1024px) and (max-width: 1366px) {
  body, html {
    font-size: 1vw;
  }
}
@media (min-width: 767px) and (max-width: 1024px) {
  body, html {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 767px) {
  body, html {
    font-size: 14px;
  }
}
@font-face {
  font-family: "FZLTXHK";
  font-style: normal;
  font-weight: 500;
  src: url("../images/FZLTXHK.TTF") format("truetype");
}
body {
  outline: none;
  font-family: "FZLTXHK", "Helvetica", sans-serif !important;
  background: #000;
  color: #fff;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  body {
    min-height: 100vh;
    height: auto;
  }
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #fff;
  --color-zt: #C4B898;
  --head-height: 3.75rem;
  --cbasta: 13.5416666667%;
  --pandrd: 5.375rem;
  --pantop: 1.75rem;
  --ztsize: .875rem;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.78125%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
    --pantop: 0;
  }
}

.wh {
  padding: 0 var(--cbasta);
}

.wh1 {
  padding: 0 4.6875%;
}
@media (max-width: 768px) {
  .wh1 {
    padding: 0 4%;
  }
}

.flex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-z {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_left {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_left1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex2 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex3 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex21 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.more-msl {
  display: inline-block;
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 1rem/3.125rem "FZLTXHK";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: 0.875rem;
  }
}
.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-zt);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
   -ms-transform: scale(0);
    -o-transform: scale(0);
       transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.6s;
  -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
       transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}
.more-msl:hover {
  color: #fff;
}
.more-msl:hover::before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
   -ms-transform: scale(2);
    -o-transform: scale(2);
       transform: scale(2);
}
.more-msl.bs {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.more-msl.bs:before {
  background: #fff;
}
.more-msl.bs:hover {
  color: var(--color-zt);
}
.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}
.more-msl.hs:before {
  background: var(--color-zt);
}
.more-msl.hs:hover {
  color: #fff;
  border-color: var(--color-zt);
}
.more-msl.ls {
  color: var(--color-zt);
  background: transparent;
  border-color: var(--color-zt);
}
.more-msl.ls:before {
  background: var(--color-zt);
}
.more-msl.ls:hover {
  color: #fff;
}

.more-b {
  display: inline-block;
  padding: 0.95rem 3.25rem;
  border-radius: 3.125rem;
  color: var(--color-zt);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  border: 1px solid var(--color-zt);
}
@media (max-width: 768px) {
  .more-b {
    padding: 0.6rem 2.2rem;
  }
}
.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
     -moz-transform-origin: center right;
      -ms-transform-origin: center right;
       -o-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}
.more-b:hover {
  border-color: var(--color-zt);
  color: #fff;
}
.more-b:hover::after {
  -webkit-transform-origin: center left;
     -moz-transform-origin: center left;
      -ms-transform-origin: center left;
       -o-transform-origin: center left;
          transform-origin: center left;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
.more-b.bs {
  color: #fff;
  border-color: #fff;
}
.more-b.bs::after {
  background-color: #fff;
}
.more-b.bs:hover {
  color: var(--color-zt);
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
}
.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: -webkit-calc(70vh - 60px);
    padding-bottom: -moz-calc(70vh - 60px);
    padding-bottom: calc(70vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.202764977%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head2 {
  line-height: var(--head-height);
  position: relative;
}
.head .head2 .logo a {
  display: block;
}
.head .head2 .logo a img {
  height: 1.3438rem;
}
.head .head2 .zywena a.rhgxt {
  color: var(--color-ys);
  font-size: var(--ztsize);
}
.head .head2 .zywena a.rhgxt:hover {
  color: var(--color-zt);
}
.head.sticky .head2 {
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.9);
}

.nav_a1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 69.2148760331%;
}
.nav_a1 li {
  position: relative;
}
.nav_a1 li a {
  display: block;
  color: var(--color-ys);
  font-family: "FZLTXHK";
  text-align: left;
}
.nav_a1 li > a {
  font-size: 0.875rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1680px) {
  .nav_a1 li > a {
    padding: 0 1.35em;
  }
}
@media (max-width: 1366px) {
  .nav_a1 li > a {
    padding: 0 0.8em;
  }
}
@media (max-width: 1024px) {
  .nav_a1 li > a {
    padding: 0 0.5em;
  }
}
.nav_a1 li > a span {
  position: relative;
  display: block;
}
.nav_a1 li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 1rem;
  width: 100%;
}
.nav_a1 li .sec {
  position: absolute;
  top: -webkit-calc(100% + 0.5rem);
  top: -moz-calc(100% + 0.5rem);
  top: calc(100% + 0.5rem);
  width: auto;
  left: -1rem;
  z-index: 9;
  padding: 0.5rem 1rem 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
     -moz-transform: translateY(20px);
      -ms-transform: translateY(20px);
       -o-transform: translateY(20px);
          transform: translateY(20px);
  background: #000;
}
.nav_a1 li .sec a {
  font-size: var(--ztsize);
  line-height: 1.5em;
  padding: 0.25rem 0;
  color: var(--color-ys);
  white-space: nowrap;
}
.nav_a1 li .sec a:hover {
  color: #FF5100;
}
.nav_a1 li:hover .sec {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.nav_a1 li:hover > a, .nav_a1 li.active > a {
  color: var(--color-zt);
}

/* 搜索 */
.sskbj {
  padding: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.sskbj .searchbox1 {
  width: 100%;
  padding: 40px 10.4%;
  height: 472px;
  background-color: #fff;
  text-align: right;
  display: none;
}
.sskbj .searchbox1 .searchs {
  width: 80%;
  max-width: 800px;
  margin-top: 2vw;
}
.sskbj .searchbox1 .searchs dt {
  font-size: 2rem;
  line-height: 1.5em;
  text-align: left;
  margin-bottom: 1em;
}
.sskbj .searchbox1 .searchs .sertext {
  width: 75%;
  border-radius: 1.875rem;
  font-size: 1rem;
  text-indent: 1em;
}
.sskbj .searchbox1 .searchs .serbtn {
  border-radius: 1.875rem;
}
.sskbj .search-close-btn {
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.sskbj .search-close-btn:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sskbj .search-close-btn i {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
}
.sskbj .serbtn {
  background: var(--color-zt);
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
     -moz-animation: sticky 1s;
       -o-animation: sticky 1s;
          animation: sticky 1s;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
         transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
         transform: translateY(0%);
  }
}

@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
       transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
       transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
       -moz-transform: translateY(0%);
         -o-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1, .m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 32px;
  max-width: 40%;
}
.m-bm-head .m-bm-head-box .sskza {
  color: #fff;
  font-family: "Montserrat";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}
.m-bm-head .m-bm-head-box .sskza.sy-zst {
  right: 5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: "";
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "FZLTXHK";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "FZLTXHK";
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}
.m-bm-head.white .m-bm-head-box .m-bm-navbtn span, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:after, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.m-bm-head.white .m-bm-menu {
  background: #fff;
}
.m-bm-head.white .m-bm-nav > li, .m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav > li > a, .m-bm-head.white .m-bm-nav .aniut i, .m-bm-head.white .m-bm-nav > li .sec a, .m-bm-head.white .mrhgxt {
  color: #000;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 6rem !important;
  }
}
/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}
.pc-banner .mySwipera {
  position: relative;
}
.pc-banner .mySwipera .tcas {
  width: 20%;
  max-width: var(--head-height);
  margin: 0 auto 1rem;
}
.pc-banner .mySwipera .tcas img {
  width: 100%;
}
.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pc-banner .mySwipera .swiper-slide .img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}
.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pc-banner .mySwipera .swiper-slide .img > img.aimg {
  visibility: hidden;
}
@media (max-width: 990px) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg {
    visibility: inherit;
  }
}
.pc-banner .mySwipera .swiper-slide .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pc-banner .mySwipera .banwez1 {
  position: absolute;
  width: 100%;
  z-index: 99;
  color: #FFFFFF;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 {
    text-align: center;
    top: auto;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    bottom: 28%;
  }
}
.pc-banner .mySwipera .banwez1 .tit {
  font: 700 3.75rem/1.25em "FZLTXHK";
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
  }
}
.pc-banner .mySwipera .banwez1 .p {
  font: 400 2rem/1.25em "FZLTXHK";
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .p {
    font-size: 1.5rem;
    margin-top: 0.5em;
  }
}
.pc-banner .mySwipera .banwez1 a.more-msl {
  margin-top: 1.8rem;
}
.pc-banner .mySwipera .er-gat {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 100%;
  z-index: 9;
  text-align: center;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .er-gat .swiper-pagination1 {
    width: 100%;
    position: static;
  }
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 span {
  opacity: 1;
  background: transparent;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.625rem;
  margin-right: 0.5rem;
  border: 1px solid #fff;
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #fff;
  width: 1.5625rem;
}
.pc-banner a.mouse {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}
.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 600 0.875rem/1.5em "Montserrat";
  margin-bottom: 0.5em;
}
.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: 0.0625rem;
  height: 2rem;
  margin: 0 auto;
  position: relative;
}
.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: scroll2 1s linear infinite;
     -moz-animation: scroll2 1s linear infinite;
       -o-animation: scroll2 1s linear infinite;
          animation: scroll2 1s linear infinite;
}

@-webkit-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@-moz-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@-o-keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
         transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
       transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
       transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

/* 图片动画 */
.fang {
  overflow: hidden;
  display: block;
}

.fang img {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.fang:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.xz img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.xz:hover img {
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.top {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.top:hover {
  -webkit-transform: translateY(-1rem);
     -moz-transform: translateY(-1rem);
      -ms-transform: translateY(-1rem);
       -o-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.gong-p {
  color: #626262;
  font: 400 1.125rem/1.6em "FZLTXHK";
  text-align: justify;
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}

.title1 {
  color: #595D61;
}
.title1 span {
  font-family: "Montserrat";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25em;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 768px) {
  .title1 span {
    font-size: 1.5rem;
  }
}
.title1 .tit {
  font-family: "FZLTXHK";
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.1em;
  position: relative;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.8rem;
  }
}
.title1 .tit::after {
  content: "";
  width: 2em;
  height: 1px;
  background: var(--color-zt);
  display: block;
  margin-top: 0.85rem;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.8rem;
  }
}
.title1.bs {
  color: #fff;
}
.title1.bs .tit::after {
  background: #fff;
}

.cont1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  height: 100%;
}
.cont1 .wh {
  width: 100%;
}
.cont1 .nav_a2 {
  padding: 0 13.5714285714%;
}
@media (max-width: 768px) {
  .cont1 .nav_a2 {
    padding: 0 10%;
  }
}
.cont1 .nav_a2 li a {
  display: block;
  color: var(--color-ys);
  font-size: 4.125rem;
  line-height: 1.3939393939em;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  letter-spacing: 0.15em;
  padding: 0.25rem 0;
}
@media (max-width: 768px) {
  .cont1 .nav_a2 li a {
    font-size: 2.5rem;
  }
}
.cont1 .nav_a2 li a:hover {
  color: var(--color-zt);
}

.foot-fot {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  background: #000;
}
.foot-fot .foota2 {
  font-size: var(--ztsize);
  padding: 1.35rem 0;
  color: var(--color-ys);
}
@media (max-width: 768px) {
  .foot-fot .foota2 {
    text-align: center;
  }
}
.foot-fot .foota2 a {
  color: var(--color-ys);
}
.foot-fot .foota2 a:hover {
  color: rgba(255, 255, 255, 0.6);
}
.foot-fot .foota2 p + p {
  margin-left: 1.5em;
}
@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}
.foot-fot .foota2 p + p span:last-child {
  display: none;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
.foot1-m .m-bm-head-box .m-bm-navbtn span, .foot1-m .m-bm-head-box .m-bm-navbtn:after, .foot1-m .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.foot1-m .m-bm-menu {
  background: #fff;
}
.foot1-m .m-bm-nav > li, .foot1-m .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.foot1-m .m-bm-nav > li > a, .foot1-m .m-bm-nav .aniut i, .foot1-m .m-bm-nav > li .sec a, .foot1-m .mrhgxt {
  color: #000;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}
/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}
.hidden {
  display: none;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
}
@media (max-width: 768px) {
  .zd_erha {
    display: none;
  }
}
.zd_erha .aat_list li {
  position: relative;
}
.zd_erha .aat_list li + li {
  margin-top: 1.25rem;
}
.zd_erha li.tops {
  display: none;
}
.zd_erha li > a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: var(--color-zt);
  border-radius: 50%;
  line-height: 3.5rem;
  box-shadow: 0 0 0.2rem rgba(51, 51, 51, 0.2);
}
.zd_erha li > a i {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.zd_erha li > a i img {
  height: 1.75rem;
}
.zd_erha li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1.5rem;
  width: auto;
  text-align: center;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
     -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
       -o-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: 0.4rem;
  white-space: nowrap;
}
.zd_erha li .erghgsb {
  width: 7rem;
  padding: 0.3rem;
}
.zd_erha li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.zd_erha li:hover .erghgsa::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 10%;
  height: 100%;
}

/*内页css*/
.loadmore-nodata {
  margin: 0 auto 9em;
}

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

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .pagination {
    margin: 0 0 0;
  }
}

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  margin-left: -1px;
  line-height: 1.5em;
  color: #333333;
  text-decoration: none;
  margin: 0 0.2rem;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: var(--color-zt);
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  vertical-align: middle;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #777;
  cursor: not-allowed;
}

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
  font-size: var(--ztsize);
}
@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  color: #777;
  padding: 0 0.65em;
}

.pager .next > a, .pager .next > span {
  float: right;
}

.pager .previous > a, .pager .previous > span {
  float: left;
}

.ajhhsd {
  color: #A7A5A5;
  font: 400 1rem/2rem "FZLTXHK";
  padding: 1.3em 0;
}
@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 1em 0;
  }
}
.ajhhsd span {
  padding: 0 0.05em;
}
.ajhhsd span:last-child {
  display: none;
}
.ajhhsd a {
  color: #A7A5A5;
}
.ajhhsd a:hover {
  color: var(--color-zt);
}

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 16.5rem 0 7.25rem;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}
@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.nav-page li {
  padding-bottom: 1em;
}
.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}
.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "FZLTXHK";
  color: #333;
}
@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}
.nav-page li .sec {
  margin-top: 0.5em;
}
.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "FZLTXHK";
  color: #777;
  margin-right: 1em;
}
.nav-page li .sec a:hover {
  color: var(--color-zt);
}

@media (max-width: 768px) {
  .mt40 {
    margin-top: 1rem;
  }
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "FZLTXHK";
  background: transparent;
  color: #999;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "FZLTXHK";
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.ss-list li {
  padding: 1rem 0;
}
.ss-list li + li {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 0.5rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "FZLTXHK";
  overflow: hidden;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: var(--color-zt);
  font: 500 1rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "montserrat";
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "FZLTXHK";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: var(--color-ys);
  font: 400 0.875rem/2em "FZLTXHK";
  padding: 1rem 0 3rem;
}
.shzr-content strong {
  color: var(--color-ys);
}
.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
.nbanner {
  position: relative;
}
.nbanner .img {
  width: 100%;
  font-size: 0;
}
.nbanner .img img {
  width: 100%;
}
.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 9;
  top: 52%;
}
.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
}
.nbanner .nbanner-wen1 .banner-cont .p1 {
  font: 600 3.75rem/1.25em "FZLTXHK";
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 1.8rem;
  }
}
.nbanner .mbx-cont {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1rem;
}
.nbanner .mbx-cont .ajhhsd {
  padding: 0.45rem 0;
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd a {
  color: #FFFFFF;
}
.nbanner .mbx-cont .ajhhsd a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.n_mbx {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
  left: 0;
  top: var(--head-height);
  width: 100%;
  z-index: 9;
}
@media (max-width: 990px) {
  .n_mbx {
    top: 60px;
  }
}
.n_mbx .n_src {
  font-size: 0;
  text-align: center;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .n_mbx .n_src {
    white-space: nowrap;
    display: block;
  }
}
.n_mbx .n_src li {
  display: inline-block;
}
.n_mbx .n_src li + li {
  margin-left: 3.75rem;
}
.n_mbx .n_src li a {
  display: block;
  color: #666666;
  font: 500 1rem/3.125rem "FZLTXHK";
  position: relative;
  text-transform: uppercase;
  padding: 0.85rem 0;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.n_mbx .n_src li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-zt);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
      -ms-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
}
@media (max-width: 768px) {
  .n_mbx .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}
.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  color: var(--color-zt);
}
.n_mbx .n_src li:hover a::after, .n_mbx .n_src li.active a::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.gong-pagination span {
  background: #333333;
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0;
}
.gong-pagination span.swiper-pagination-bullet-active {
  background: #FF5100;
}

@media (max-width: 768px) {
  .list_content {
    padding: 2rem 0;
  }
}
.list_content .mySwiper1 .swiper-slide .img img {
  width: 100%;
}
.list_content .mySwiper1 .swiper-pagination1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 3rem;
  padding-right: 15.5172413793%;
}
@media (max-width: 768px) {
  .list_content .mySwiper1 .swiper-pagination1 {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .list_content .mySwiper1 .swiper-pagination1 {
    margin-top: 1.5rem;
  }
}
.list_content .abt-vt {
  padding-right: 15.5172413793%;
}
.list_content .abt-vt.abt-vt-a {
  padding-right: 11.0344827586%;
}
.list_content .abt-vt.ashtx-a {
  padding-right: 0;
}
@media (max-width: 768px) {
  .list_content .abt-vt {
    padding-right: 0;
  }
  .list_content .abt-vt.abt-vt-a {
    padding-right: 0;
  }
}
.list_content .abt-a1 {
  width: 14.8275862069%;
  font-size: var(--ztsize);
  line-height: 1.65em;
  color: #fff;
  position: relative;
  text-align: justify;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 768px) {
  .list_content .abt-a1 {
    width: 100%;
  }
}
.list_content .abt-a1::before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 2px;
  background: #FF5100;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .list_content .abt-a1::before {
    margin-bottom: 1.125rem;
  }
}
.list_content .abt-a1 .as-at1 li + li {
  margin-top: 0.25rem;
}
.list_content .abt-a1 .as-at1 li a {
  display: block;
  color: #666;
  font-size: var(--ztsize);
  line-height: 1.5em;
}
.list_content .abt-a1 .as-at1 li a:hover {
  color: var(--color-zt);
  font-weight: 500;
}
.list_content .abt-a1 .as-at1 li.active a {
  color: var(--color-zt);
  font-weight: 500;
}
.list_content .abt-a2 {
  width: 82.4137931034%;
  position: relative;
}
@media (max-width: 768px) {
  .list_content .abt-a2 {
    width: 100%;
    margin-top: 2rem;
  }
}
.list_content .abt-a2.abt-a2-a {
  width: 68.8275862069%;
}
@media (max-width: 768px) {
  .list_content .abt-a2.abt-a2-a {
    width: 100%;
  }
}
.list_content .abt-a2::before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 2px;
  background: #0000FF;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .list_content .abt-a2::before {
    margin-bottom: 1rem;
  }
}
.list_content .abt-a2 img {
  width: 100%;
}
.list_content .abt-a2 {
  font-size: var(--ztsize);
  line-height: 1.65em;
  color: var(--color-ys);
  text-align: justify;
}
.list_content .abt-a2 .tit {
  color: #FF5100;
  font-size: 1.25rem;
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .img img, .list_content .abt-a2 .mySwiper21 .swiper-slide .img img {
  width: 100%;
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .img.aspxa img, .list_content .abt-a2 .mySwiper21 .swiper-slide .img.aspxa img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .awshr-vt .img, .list_content .abt-a2 .mySwiper21 .swiper-slide .awshr-vt .img {
  width: 49%;
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .awshr-vt .img img, .list_content .abt-a2 .mySwiper21 .swiper-slide .awshr-vt .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .list_content .abt-a2 .mySwiper2 .swiper-slide .awshr-vt .img, .list_content .abt-a2 .mySwiper21 .swiper-slide .awshr-vt .img {
    width: 100%;
  }
  .list_content .abt-a2 .mySwiper2 .swiper-slide .awshr-vt .img img, .list_content .abt-a2 .mySwiper21 .swiper-slide .awshr-vt .img img {
    aspect-ratio: 16/8;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .awshr-vt .txt, .list_content .abt-a2 .mySwiper21 .swiper-slide .awshr-vt .txt {
  width: 49%;
}
@media (max-width: 768px) {
  .list_content .abt-a2 .mySwiper2 .swiper-slide .awshr-vt .txt, .list_content .abt-a2 .mySwiper21 .swiper-slide .awshr-vt .txt {
    width: 100%;
    margin-top: 0.65rem;
  }
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .flexa-t, .list_content .abt-a2 .mySwiper21 .swiper-slide .flexa-t {
  -webkit-justify-content: start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-top: 2rem;
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .flexa-t .tit, .list_content .abt-a2 .mySwiper21 .swiper-slide .flexa-t .tit {
  font-size: 13rem;
  line-height: 1em;
  color: #FF5100;
  font-weight: 600;
}
@media (max-width: 768px) {
  .list_content .abt-a2 .mySwiper2 .swiper-slide .flexa-t .tit, .list_content .abt-a2 .mySwiper21 .swiper-slide .flexa-t .tit {
    font-size: 4.25rem;
  }
}
.list_content .abt-a2 .mySwiper2 .swiper-slide .flexa-t .ftit, .list_content .abt-a2 .mySwiper21 .swiper-slide .flexa-t .ftit {
  font-size: 1.625rem;
  line-height: 1.25em;
  color: #FF5100;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .list_content .abt-a2 .mySwiper2 .swiper-slide .flexa-t .ftit, .list_content .abt-a2 .mySwiper21 .swiper-slide .flexa-t .ftit {
    font-size: 1rem;
  }
}
.list_content .abt-a2 .mySwiper2 .swiper-pagination1, .list_content .abt-a2 .mySwiper21 .swiper-pagination1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .list_content .abt-a2 .mySwiper2 .swiper-pagination1, .list_content .abt-a2 .mySwiper21 .swiper-pagination1 {
    margin-top: 1.5rem;
  }
}

@-webkit-keyframes scale2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

#abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
  height: var(--head-height);
  margin-top: -webkit-calc(var(--head-height) * -1);
  margin-top: -moz-calc(var(--head-height) * -1);
  margin-top: calc(var(--head-height) * -1);
}
@media (max-width: 990px) {
  #abt1, #abt2, #abt3, #abt4, #abt5, #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny-body {
  padding-top: -webkit-calc(var(--head-height) * 3.3);
  padding-top: -moz-calc(var(--head-height) * 3.3);
  padding-top: calc(var(--head-height) * 3.3);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem 6.125rem;
}
@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.product-list li a.img {
  display: block;
  position: relative;
}
.product-list li a.img i {
  display: block;
  font-size: 0;
}
.product-list li a.img i img {
  width: 100%;
}
.product-list li a.img .tit {
  font-size: 0.7831rem;
  line-height: 1.5em;
  color: #fff;
  margin-top: 0.25rem;
  text-align: left;
}
@media (max-width: 768px) {
  .product-list li a.img .tit {
    font-size: 0.65rem;
  }
}
.product-list li a.img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.67);
  pointer-events: none;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.product-list li a.img:hover::after {
  opacity: 0;
}
.product-list.product-list-ax1 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem 4rem;
}
@media (max-width: 768px) {
  .product-list.product-list-ax1 {
    gap: 1.5rem;
  }
}
.product-list.product-list-ax1 li a.img i img {
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}

.ny-show_body .abt-a1 .imga {
  width: clamp(3.125rem, 70%, 12.625rem);
}
.ny-show_body .abt-a1 .imga u {
  display: block;
  font-size: 0;
}
.ny-show_body .abt-a1 .imga u img {
  width: 100%;
}
.ny-show_body .abt-a1 .imga .tit {
  color: #FF5100;
  font-size: 0.7831rem;
  line-height: 1.35em;
  margin-top: 4px;
}
.ny-show_body .abt-a1 .txt {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .ny-show_body .abt-a1 .txt {
    margin-top: 1.125rem;
  }
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide > .img img {
  width: 100%;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa1 .img {
  width: 34.1825902335%;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa1 .img img {
  width: 100%;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa1 .txt-ax {
  width: 62.2080679406%;
  font-size: 1.85rem;
  line-height: 1.5em;
  color: #666;
  text-align: left;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa1 .txt-ax p:hover {
  color: #5E564F;
}
@media (max-width: 768px) {
  .ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa1 .txt-ax {
    font-size: 1rem;
  }
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa2 {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.75em;
  text-align: left;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa2 .img {
  margin-bottom: 0.6rem;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa2 .img img {
  width: 100%;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .zsa2 .txt-ax1 {
  width: 45.6475583864%;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .table-cont table {
  border: none;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .table-cont table thead tr {
  background: transparent;
  border-bottom: 1px solid rgba(119, 119, 119, 0.25);
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .table-cont table thead tr th {
  padding: 0.65rem !important;
  color: #f0f0f0;
  font-size: 0.875rem;
  text-align: center;
  border-color: #f0f0f0;
  border: none;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .table-cont table tbody tr {
  border-bottom: 1px solid rgba(119, 119, 119, 0.25);
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .table-cont table tbody tr:nth-child(2n) {
  background: transparent;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-slide .table-cont table tbody tr td {
  padding: 0.65rem !important;
  color: #f0f0f0;
  font-size: 0.875rem;
  text-align: center;
  border-color: #f0f0f0;
  border: none;
  font-weight: 500;
}
.ny-show_body .abt-a2 .mySwiper3 .swiper-pagination1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .ny-show_body .abt-a2 .mySwiper3 .swiper-pagination1 {
    margin-top: 1.5rem;
  }
}

.load_last {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  pointer-events: none;
  overflow: hidden;
  -webkit-animation: loadLastWrap 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
     -moz-animation: loadLastWrap 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
       -o-animation: loadLastWrap 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: loadLastWrap 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.load_last .logo-a {
  position: relative;
  z-index: 2;
  height: 100%;
}
.load_last .logo-a .at1, .load_last .logo-a .at2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  will-change: opacity, transform;
}
.load_last .logo-a .at1 {
  -webkit-animation: loadLastAt1 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
     -moz-animation: loadLastAt1 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
       -o-animation: loadLastAt1 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: loadLastAt1 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  opacity: 0;
}
.load_last .logo-a .at2 {
  -webkit-animation: loadLastAt2 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
     -moz-animation: loadLastAt2 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
       -o-animation: loadLastAt2 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: loadLastAt2 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.load_last .logo-a img {
  height: 2.375rem;
}
.load_last .dx-b {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 10%;
  padding: 0 28%;
}
.load_last .dx-b p {
  width: 50%;
  height: 0.2rem;
  background: #FF5100;
}
.load_last .dx-b p + p {
  background: #0000FF;
}
.load_last .dt-c {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76.7708333333%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation: loadLastDt 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
     -moz-animation: loadLastDt 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
       -o-animation: loadLastDt 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: loadLastDt 4.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  will-change: opacity, transform;
}
.load_last .dt-c::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.66);
}
.load_last .dt-c img {
  width: 100%;
}

@-webkit-keyframes loadLastAt1 {
  0%, 14% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  26%, 100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.96);
            transform: translate(-50%, -50%) scale(0.96);
  }
}

@-moz-keyframes loadLastAt1 {
  0%, 14% {
    opacity: 1;
    -moz-transform: translate(-50%, -50%) scale(1);
         transform: translate(-50%, -50%) scale(1);
  }
  26%, 100% {
    opacity: 0;
    -moz-transform: translate(-50%, -50%) scale(0.96);
         transform: translate(-50%, -50%) scale(0.96);
  }
}

@-o-keyframes loadLastAt1 {
  0%, 14% {
    opacity: 1;
    -o-transform: translate(-50%, -50%) scale(1);
       transform: translate(-50%, -50%) scale(1);
  }
  26%, 100% {
    opacity: 0;
    -o-transform: translate(-50%, -50%) scale(0.96);
       transform: translate(-50%, -50%) scale(0.96);
  }
}

@keyframes loadLastAt1 {
  0%, 14% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
         -o-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  26%, 100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.96);
       -moz-transform: translate(-50%, -50%) scale(0.96);
         -o-transform: translate(-50%, -50%) scale(0.96);
            transform: translate(-50%, -50%) scale(0.96);
  }
}
@-webkit-keyframes loadLastAt2 {
  0%, 16% {
    opacity: 0;
    -webkit-transform: translate(-50%, -48%) scale(0.98);
            transform: translate(-50%, -48%) scale(0.98);
  }
  30%, 58% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  78%, 100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -52%) scale(1.25);
            transform: translate(-50%, -52%) scale(1.25);
  }
}
@-moz-keyframes loadLastAt2 {
  0%, 16% {
    opacity: 0;
    -moz-transform: translate(-50%, -48%) scale(0.98);
         transform: translate(-50%, -48%) scale(0.98);
  }
  30%, 58% {
    opacity: 1;
    -moz-transform: translate(-50%, -50%) scale(1);
         transform: translate(-50%, -50%) scale(1);
  }
  78%, 100% {
    opacity: 1;
    -moz-transform: translate(-50%, -52%) scale(1.25);
         transform: translate(-50%, -52%) scale(1.25);
  }
}
@-o-keyframes loadLastAt2 {
  0%, 16% {
    opacity: 0;
    -o-transform: translate(-50%, -48%) scale(0.98);
       transform: translate(-50%, -48%) scale(0.98);
  }
  30%, 58% {
    opacity: 1;
    -o-transform: translate(-50%, -50%) scale(1);
       transform: translate(-50%, -50%) scale(1);
  }
  78%, 100% {
    opacity: 1;
    -o-transform: translate(-50%, -52%) scale(1.25);
       transform: translate(-50%, -52%) scale(1.25);
  }
}
@keyframes loadLastAt2 {
  0%, 16% {
    opacity: 0;
    -webkit-transform: translate(-50%, -48%) scale(0.98);
       -moz-transform: translate(-50%, -48%) scale(0.98);
         -o-transform: translate(-50%, -48%) scale(0.98);
            transform: translate(-50%, -48%) scale(0.98);
  }
  30%, 58% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
         -o-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  78%, 100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -52%) scale(1.25);
       -moz-transform: translate(-50%, -52%) scale(1.25);
         -o-transform: translate(-50%, -52%) scale(1.25);
            transform: translate(-50%, -52%) scale(1.25);
  }
}
@-webkit-keyframes loadLastAt2Img {
  0%, 58% {
    height: 2.375rem;
  }
  78%, 100% {
    height: 10rem;
  }
}
@-moz-keyframes loadLastAt2Img {
  0%, 58% {
    height: 2.375rem;
  }
  78%, 100% {
    height: 10rem;
  }
}
@-o-keyframes loadLastAt2Img {
  0%, 58% {
    height: 2.375rem;
  }
  78%, 100% {
    height: 10rem;
  }
}
@keyframes loadLastAt2Img {
  0%, 58% {
    height: 2.375rem;
  }
  78%, 100% {
    height: 10rem;
  }
}
@-webkit-keyframes loadLastDt {
  0%, 32% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.02);
            transform: translate(-50%, -50%) scale(1.02);
  }
  46%, 58% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  78%, 92% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.02);
            transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.04);
            transform: translate(-50%, -50%) scale(1.04);
  }
}
@-moz-keyframes loadLastDt {
  0%, 32% {
    opacity: 0;
    -moz-transform: translate(-50%, -50%) scale(1.02);
         transform: translate(-50%, -50%) scale(1.02);
  }
  46%, 58% {
    opacity: 0;
    -moz-transform: translate(-50%, -50%) scale(1);
         transform: translate(-50%, -50%) scale(1);
  }
  78%, 92% {
    opacity: 1;
    -moz-transform: translate(-50%, -50%) scale(1.02);
         transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    opacity: 0;
    -moz-transform: translate(-50%, -50%) scale(1.04);
         transform: translate(-50%, -50%) scale(1.04);
  }
}
@-o-keyframes loadLastDt {
  0%, 32% {
    opacity: 0;
    -o-transform: translate(-50%, -50%) scale(1.02);
       transform: translate(-50%, -50%) scale(1.02);
  }
  46%, 58% {
    opacity: 0;
    -o-transform: translate(-50%, -50%) scale(1);
       transform: translate(-50%, -50%) scale(1);
  }
  78%, 92% {
    opacity: 1;
    -o-transform: translate(-50%, -50%) scale(1.02);
       transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    opacity: 0;
    -o-transform: translate(-50%, -50%) scale(1.04);
       transform: translate(-50%, -50%) scale(1.04);
  }
}
@keyframes loadLastDt {
  0%, 32% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.02);
       -moz-transform: translate(-50%, -50%) scale(1.02);
         -o-transform: translate(-50%, -50%) scale(1.02);
            transform: translate(-50%, -50%) scale(1.02);
  }
  46%, 58% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1);
       -moz-transform: translate(-50%, -50%) scale(1);
         -o-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  78%, 92% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.02);
       -moz-transform: translate(-50%, -50%) scale(1.02);
         -o-transform: translate(-50%, -50%) scale(1.02);
            transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.04);
       -moz-transform: translate(-50%, -50%) scale(1.04);
         -o-transform: translate(-50%, -50%) scale(1.04);
            transform: translate(-50%, -50%) scale(1.04);
  }
}
@-webkit-keyframes loadLastWrap {
  0%, 88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-moz-keyframes loadLastWrap {
  0%, 88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-o-keyframes loadLastWrap {
  0%, 88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loadLastWrap {
  0%, 88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.dow-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dow-list li a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  line-height: 1.5em;
  padding: 1em 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  gap: 0.35rem;
}
.dow-list li a p {
  width: 70%;
}
.dow-list li a:hover {
  color: #fff;
}

.table-cont table {
  border: none;
}
.table-cont table thead tr {
  background: rgba(119, 119, 119, 0.25);
}
.table-cont table thead tr th {
  padding: 0.65rem !important;
  color: #666;
  font-size: 0.75rem;
  text-align: center;
  border-color: #777;
  border: none;
}
.table-cont table tbody tr:nth-child(2n) {
  background: rgba(119, 119, 119, 0.25);
}
.table-cont table tbody tr td {
  padding: 0.65rem !important;
  color: #666;
  font-size: 0.75rem;
  text-align: center;
  border-color: #777;
  border: none;
}

.asta1a {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .asta1a {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.asta1a li {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 1rem 5%;
  font-size: 0.75rem;
  line-height: 1.65em;
}
.asta1a li img {
  width: 100%;
  margin-bottom: 1rem;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem 6.125rem;
}
@media (max-width: 768px) {
  .case-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.case-list li a.img {
  display: block;
  position: relative;
}
.case-list li a.img i {
  display: block;
  font-size: 0;
}
.case-list li a.img i img {
  width: 100%;
}
.case-list li a.img .tit {
  font-size: 0.7831rem;
  line-height: 1.5em;
  color: #fff;
  margin-top: 0.25rem;
  text-align: left;
}
@media (max-width: 768px) {
  .case-list li a.img .tit {
    font-size: 0.65rem;
  }
}
.case-list li a.img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.67);
  pointer-events: none;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.case-list li a.img:hover::after {
  opacity: 0;
}

.lxwmz .heng1-ax {
  width: 35%;
}
.lxwmz .heng1-ax img {
  width: 100%;
}

.ermxa {
  gap: 0.8rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .ermxa {
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.ermxa dl {
  width: -webkit-calc(50% - 0.4rem);
  width: -moz-calc(50% - 0.4rem);
  width: calc(50% - 0.4rem);
  text-align: center;
}
@media (max-width: 768px) {
  .ermxa dl {
    width: 6.5rem;
  }
}
.ermxa dl img {
  width: 100%;
}
.ermxa dl dt {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.news-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.news-list li:first-child {
  padding-top: 0.6rem;
}
.news-list li a.name {
  color: rgba(240, 240, 240, 0.7294117647);
  font-size: 1rem;
}
.news-list li a.name:hover {
  color: var(--color-zt);
}
.news-list li .p {
  margin-top: 0.25rem;
}

.xinwn-consss {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  .xinwn-consss {
    max-height: inherit;
    padding-right: 0;
  }
}
.xinwn-consss::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.xinwn-consss::-webkit-scrollbar-button:vertical {
  display: none;
}
.xinwn-consss::-webkit-scrollbar-corner, .xinwn-consss ::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.xinwn-consss::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--color-zt);
}
.xinwn-consss::-webkit-scrollbar-thumb:vertical:hover {
  background-color: var(--color-zt);
}
.xinwn-consss::-webkit-scrollbar-thumb:vertical:active {
  background-color: var(--color-zt);
}
.xinwn-consss .tit {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .xinwn-consss .tit {
    margin-bottom: 0.5rem;
  }
}
.xinwn-consss .tit p {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.mySwiper21 {
  padding: 0 1px;
}
.mySwiper21 .swiper-slide .heng1 img {
  aspect-ratio: 16/8;
  -o-object-fit: cover;
     object-fit: cover;
}

form#f1 .msg-a1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  form#f1 .msg-a1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
form#f1 .msg-a1 .inpt input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.85em;
  padding: 0.5rem 0.75em;
  color: #fff;
}
form#f1 .msg-a1 .inpt input:focus {
  border-color: rgba(255, 255, 255, 0.8);
}
form#f1 .msg-a2 {
  margin-top: 1.25rem;
}
form#f1 .msg-a2 .inpt textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.25em;
  padding: 0.5rem 0.75em;
  color: #fff;
}
form#f1 .msg-a2 .inpt textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
}
form#f1 .msg-a4 .yszc-cont input {
  margin-right: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0.65;
}
form#f1 .msg-a4 .yszc-cont label {
  margin-bottom: 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  form#f1 .msg-a4 .yszc-cont label {
    width: -webkit-calc(100% - 1.5rem);
    width: -moz-calc(100% - 1.5rem);
    width: calc(100% - 1.5rem);
  }
}
form#f1 .msg-a4 .yszc-cont label a {
  color: #fff;
  border-bottom: 1px solid #fff;
}
form#f1 .msg-a4 .yszc-cont label a:hover {
  color: var(--color-zt);
  border-color: var(--color-zt);
}
form#f1 .more-a {
  border: none;
  background: rgba(255, 255, 255, 0.35);
  margin-top: 1rem;
  padding: 0.65rem 1.35em;
  font-size: 0.875rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
form#f1 .more-a:hover {
  background: rgba(255, 255, 255, 0.75);
}

.tit-atx {
  font-weight: 500;
  margin-bottom: 1.125rem;
  font-size: 1rem;
}

.ny-body-page {
  padding-top: var(--head-height);
}

.shzr-content .weuxa {
  max-height: 70vh;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .shzr-content .weuxa {
    max-height: inherit;
  }
}
.shzr-content .weuxa::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.shzr-content .weuxa::-webkit-scrollbar-button:vertical {
  display: none;
}
.shzr-content .weuxa::-webkit-scrollbar-corner, .shzr-content .weuxa ::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.shzr-content .weuxa::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--color-zt);
}
.shzr-content .weuxa::-webkit-scrollbar-thumb:vertical:hover {
  background-color: var(--color-zt);
}
.shzr-content .weuxa::-webkit-scrollbar-thumb:vertical:active {
  background-color: var(--color-zt);
}