@charset "UTF-8";
body,
html {
  font-size: calc(100vw / 120);
}

@media (min-width: 1024px) and (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}

@media (max-width: 767px) {
  body,
  html {
    font-size: 14px;
  }
}

body {
  outline: none;
  font-family: -apple-system, BlinkMacSystem, 'Montserrat', 'Noto Sans SC', 'sourcehansans', sans-serif !important;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #716E6E;
  --color-zt: #d4ac63;
  --head-height: 5.625rem;
  --cbasta: 13.5416666667%;
  --pandrd: 6.25rem;
  --pantop: 1.75rem;
}

@media (max-width: 1366px) {
  :root {
    --cbasta: 5.78125%;
  }
}

@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
    --pantop: 0;
  }
}

.trans {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

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

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

.wh1 {
  padding: 0 4.6875%;
}

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

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

.flex-z {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.flex_left {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}

.flex_left1 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.flex2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

.flex21 {
  display: flex;
  justify-content: flex-end;
  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 "Montserrat";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: .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);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.more-msl:hover {
  color: #fff;
}

.more-msl:hover::before {
  -webkit-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: .7rem 2.5rem;
  border-radius: 3.125rem;
  color: var(--color-zt);
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat';
  border: 1px solid var(--color-zt);
}

.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}

.more-b:hover {
  color: #fff;
}

.more-b:hover::after {
  transform-origin: center left;
  transform: scaleX(1);
}

.more-a {
  display: inline-block;
  padding: .7rem 2.5rem;
  border-radius: 3.125rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat';
  border: 1px solid #fff;
}

.more-a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 3.125rem;
}

.more-a:hover {
  color: #fff;
  border: 1px solid var(--color-zt);
}

.more-a:hover::after {
  transform-origin: center left;
  transform: scaleX(1);
}

@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: 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,
  .pc-banner .swiper-slide.a .img > video {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.20276%;
    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;
  background: #fff;
}

.head .head2 .wh {
  padding: 0 12.5rem;
  background-color: #d4ac63;
}

.head .head2 .logo a {
  display: block;
}

.head .head2 .logo a img {
  height: 3.5rem;
  filter: brightness(0) invert(1);
}

.head .head2 .zywena {
  margin-left: 1em;
  margin-right: 1rem;
}

.head .head2 .zywena a.rhgxt {
  color: #1B1C21;
  font: 500 1.125rem/1em "Montserrat";
}

.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: .2rem;
}

.head .head2 .sska {
  line-height: 1em;
  margin-left: 1em;
}

.head .head2 .sska a {
  color: #fff;
}

.head .head2 .sska a i {
  font-size: 1.25rem;
  margin-right: 0.4em;
}

.head.sticky .head2 {
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1366px) {
  .head .head2 .wh {
    padding: 0 4.5rem;
  }
}

#menu {
  margin-right: 1vw;
}

#menu .nav_a1 li {
  float: left;
  position: relative;
}

#menu .nav_a1 li a {
  display: block;
  color: #fff;
  font-family: "Montserrat";
  font-weight: 600;
}

#menu .nav_a1 li > a {
  font-size: 1.125rem;
  padding: 0 1.5625rem;
  transition: all .6s;
  font-weight: 500;
}

@media (max-width: 1680px) {
  #menu .nav_a1 li > a {
    padding: 0 1.35em;
  }
}

@media (max-width: 1366px) {
  #menu .nav_a1 li > a {
    padding: 0 0.8em;
  }
}

@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.5em;
  }
}

#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}

#menu .nav_a1 li > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  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);
  transform-origin: center;
  transform: scaleX(0);
}

#menu .nav_a1 li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: .5rem;
  width: 100%;
}

#menu .nav_a1 li .sec {
  position: absolute;
  top: 100%;
  width: 150%;
  left: -25%;
  background: white;
  z-index: 9;
  text-align: center;
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#menu .nav_a1 li .sec a {
  font: 500 1rem/1.5em "Montserrat";
  padding: 0.6em 0;
  color: #1B1C21;
}

#menu .nav_a1 li .sec a:hover {
  color: var(--color-zt);
}

#menu .nav_a1 li .sec1 {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: white;
  z-index: 999;
  text-align: center;
  padding: 2rem 0 7.125rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  text-align: left;
  line-height: 1;
  border-top: 1px solid #E4E4E4;
}

#menu .nav_a1 li .sec1 dl {
  flex: 1;
  border-left: 1px solid #E4E4E4;
  padding: 0 1.5rem;
}

#menu .nav_a1 li .sec1 dl:last-child {
  border-right: 1px solid #E4E4E4;
}

#menu .nav_a1 li .sec1 dl dt {
  margin-bottom: 1rem;
}

#menu .nav_a1 li .sec1 dl dt a {
  display: block;
  color: #1B1C21;
  font: 500 1.125rem/1em "Montserrat";
  position: relative;
}

#menu .nav_a1 li .sec1 dl dd a {
  display: block;
  color: #96999C;
  font: 400 1rem/1.5em "Montserrat";
  padding: .2rem 0;
}

#menu .nav_a1 li .sec1 dl dd a:hover {
  color: var(--color-zt);
}

#menu .nav_a1 li:hover .sec,
#menu .nav_a1 li:hover .sec1 {
  opacity: 1;
  visibility: visible;
  transition: all .4s ease;
  transform: translateY(0);
}

#menu .nav_a1 li:hover > a, #menu .nav_a1 li.active > a {
  color: #fff;
}

#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  transform: scaleX(1);
}

.nav-img {
  padding-bottom: 65%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: .9375rem;
}

.nav-img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 搜索 */
.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 calc(100% * 0.104);
  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;
  transition: all 0.6s;
}

.sskbj .search-close-btn:hover {
  transform: rotate(180deg);
}

.sskbj .search-close-btn i {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
}

.sskbj .serbtn {
  background: #000;
}

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

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

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    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: 38px;
  max-width: 40%;
}

.m-bm-head .m-bm-head-box .sskza {
  color: #333;
  font-family: "Montserrat";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}

.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: .25rem;
}

.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.5008px;
  width: 100%;
  background: #fff;
  transition: all .5s;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5008px 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: "Montserrat";
  padding: 0 4%;
  font-weight: 600;
}

.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Montserrat";
  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;
}

.phone_show_767 {
  display: none;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !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: 100vh;
  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,
.pc-banner .mySwipera .swiper-slide .img > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-banner .mySwipera .swiper-slide .img > img.aimg,
.pc-banner .mySwipera .swiper-slide .img > video.aimg {
  visibility: hidden;
}

@media (max-width: 990px) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg,
  .pc-banner .mySwipera .swiper-slide .img > video.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%;
  transform: translateY(-50%);
  text-align: left;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 {
    text-align: left;
  }
}

.pc-banner .mySwipera .banwez1 .tit {
  font: 700 3.5rem/1.25em "Montserrat";
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
  }
}

.pc-banner .mySwipera .banwez1 .p {
  font: 400 1.65rem/1.5em "Montserrat";
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .p {
    font-size: 1.125rem;
    margin-top: 0.78em;
    line-height: 1.5em;
  }
}

.pc-banner .mySwipera .banwez1 a.more-a {
  margin-top: 1.8rem;
  font-size: 1.125rem;
  padding: .4rem 2.5rem;
}

.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: .625rem;
  height: .625rem;
  border-radius: .625rem;
  margin-right: .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%;
  transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}

.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 600 .875rem/1.5em "Montserrat";
  margin-bottom: 0.5em;
}

.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: .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: .4rem;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  animation: scroll2 1s linear infinite;
}

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

.label_el {
  color: rgba(26, 26, 26, 0);
  text-shadow: none;
  -webkit-text-stroke-width: .4704px;
  -webkit-text-stroke-color: #fff;
}

@media (max-width: 768px) {
  .label_el {
    -webkit-text-stroke-width: .2992px;
  }
}

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

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

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

.fang img {
  transition: all .6s;
}

.fang:hover img {
  transform: scale(1.1);
}

.xz img {
  transition: all .5s;
}

.xz:hover img {
  transform: rotateY(180deg);
}

.top {
  transition: all .5s;
}

.top:hover {
  transform: translateY(-1rem);
}

.gong-p {
  color: #626262;
  font: 400 1.125rem/1.75em "Montserrat";
}

@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}

.title1 {
  text-align: center;
}

.title1 .tit {
  font-size: 3rem;
  line-height: 1.25em;
  color: #333;
  font-weight: 400;
}

@media (max-width: 768px) {
  .title1 .tit {
    font-size: 2rem;
  }
}

.title1 .entit {
  color: #777777;
  font-size: 1.5rem;
  line-height: 1.35em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .title1 .entit {
    font-size: 1.25rem;
  }
}

@keyframes rotatedHalf1 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.gong-pagination span {
  opacity: 1;
  width: .65rem;
  height: .65rem;
  background: #999;
}

.gong-pagination span.swiper-pagination-bullet-active {
  background: var(--color-zt);
}

.index_one {
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .index_one {
    padding-top: 3.75rem;
  }
}

@media (max-width: 768px) {
  .index_one .index_one_grid {
    margin-top: 20px;
  }
}

.index_one .index_one_grid .index_one_swiper {
  margin: 0 -1.875rem;
  position: relative;
  padding-bottom: 3.125rem;
}

.index_one .index_one_grid .swiper-slide {
  padding: 0 .9375rem;
}

.index_one .index_one_grid .index_one_item {
  margin-top: 50px;
  position: relative;
  border-radius: 1.25rem;
  background: rgba(229, 242, 250, 0.6);
  padding: 8rem 2rem 2.5rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

@media (max-width: 768px) {
  .index_one .index_one_grid .index_one_item {
    padding: 5rem 1.25rem;
  }
}

.index_one .index_one_grid .index_one_item .text {
  height: 9.375rem;
}

.index_one .index_one_grid .index_one_item:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0.625rem 0px rgba(2, 127, 209, 0.3);
}

.index_one .index_one_grid .index_one_item:hover .icon {
  box-shadow: 0px 0px .625rem 0px #f3c423;
}

.index_one .index_one_grid .index_one_item .icon {
  margin-top: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.625rem;
  height: 8.625rem;
  background-color: #f3c423;
  border: .625rem solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -3.125rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

@media (max-width: 768px) {
  .index_one .index_one_grid .index_one_item .icon {
    width: 6.625rem;
    height: 6.625rem;
  }
}

.index_one .index_one_grid .index_one_item .icon img {
  width: 60%;
  filter: brightness(0) invert(1);
}

.index_one .index_one_grid .index_one_item .icon:hover {
  box-shadow: 0px 0px .625rem 0px #f3c423;
}

.index_one .index_one_grid .index_one_item .text h3 {
  color: #d4ac63;
  font-size: 1.5rem;
  font-weight: 600;
}

.index_one .index_one_grid .index_one_item .text p {
  margin-top: .9375rem;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
}

.cont1 {
  padding: var(--pandrd) 0;
}

.cont1 .a1_b1 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cont1 .a1_b1 {
    margin-top: .75rem;
  }
}

.cont1 .a1_b1 li {
  margin: 0 .65rem;
}

@media (max-width: 768px) {
  .cont1 .a1_b1 li {
    margin: .25rem .65rem;
  }
}

.cont1 .a1_b1 li a {
  display: block;
  border-radius: 1.875rem;
  background: #d4ac63;
  box-shadow: 0px 0px 3.75rem 0px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #fff;
  font-size: 1rem;
  line-height: 3rem;
  font-weight: 600;
  width: auto;
  padding: 0 2em;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.cont1 .a1_b1 li:hover a, .cont1 .a1_b1 li.on a {
  background: #f3c423;
  color: #fff;
}

.cont1 .a1_b2 {
  position: relative;
}

.cont1 .a1_b2 .product_con {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}

.cont1 .a1_b2 .product_con.product_con2 {
  grid-template-columns: repeat(4, 1fr);
}

.cont1 .a1_b2 .product_con.product_con2 .product_item a.img u {
  height: 15rem;
}

@media (max-width: 768px) {
  .cont1 .a1_b2 .product_con.product_con2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cont1 .a1_b2 .product_con {
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.cont1 .a1_b2 .product_con .product_item a.img {
  display: block;
  background: #fff;
  border: 1px solid #e5f2fa;
  background: #FFF;
  box-shadow: 0px .1rem .5rem 0px #e5f2fa;
}

.cont1 .a1_b2 .product_con .product_item a.img u {
  display: block;
  font-size: 0;
  overflow: hidden;
  height: 18.75rem;
}

@media (max-width: 768px) {
  .cont1 .a1_b2 .product_con .product_item a.img u {
    height: 8rem;
  }
}

.cont1 .a1_b2 .product_con .product_item a.img u img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cont1 .a1_b2 .product_con .product_item a.img .tit {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 1em 0;
}

.cont1 .a1_b2 .product_con .swiper-pagination1 {
  margin-top: 1.5rem;
}

.cont2 {
  padding: var(--pandrd) 0 0;
}

.cont2 .a2v1 .a2b1 {
  width: 48%;
  border-radius: 1.875rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cont2 .a2v1 .a2b1 {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.cont2 .a2v1 .a2b1 img {
  width: 100%;
}

.cont2 .a2v1 .a2b2 {
  width: 48%;
}

@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 {
    width: 100%;
  }
}

.cont2 .a2v1 .a2b2 .title2 {
  font-size: 2.25rem;
  line-height: 1.25em;
  color: #333;
  font-weight: 600;
}

@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 .title2 {
    font-size: 1.65rem;
  }
}

.cont2 .a2v1 .a2b2 .p1 {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 .p1 {
    margin-top: 1rem;
  }
}

.cont2 .a2v1 .a2b2 .more-b {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cont2 .a2v1 .a2b2 .more-b {
    margin-top: 1rem;
  }
}

.cont6 {
  padding: var(--pandrd) 0;
}

.cont6 .a6v1 {
  margin: 2.5rem 0 2.6875rem;
}

@media (max-width: 768px) {
  .cont6 .a6v1 {
    margin: 1.25rem 0 1.65rem;
  }
}

.cont6 .a6v1 .a6b1 {
  width: 47.14286%;
}

@media (max-width: 768px) {
  .cont6 .a6v1 .a6b1 {
    width: 100%;
  }
}

.cont6 .a6v1 .a6b1 .fang {
  border-radius: 1.875rem;
}

@media (max-width: 768px) {
  .cont6 .a6v1 .a6b1 .fang {
    border-radius: 1rem;
  }
}

.cont6 .a6v1 .a6b1 .fang img {
  width: 100%;
}

.cont6 .a6v1 .a6b2 {
  width: 47.14286%;
}

@media (max-width: 768px) {
  .cont6 .a6v1 .a6b2 {
    width: 100%;
  }
}

.cont6 .a6v1 .a6b2 li {
  border-bottom: 1px solid #ccc;
  height: calc(100%/3);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.cont6 .a6v1 .a6b2 li:hover {
  cursor: pointer;
}

.cont6 .a6v1 .a6b2 li:hover a.name,
.cont6 .a6v1 .a6b2 li:hover span,
.cont6 .a6v1 .a6b2 li:hover .p1 {
  color: #f3c423;
}

@media (max-width: 768px) {
  .cont6 .a6v1 .a6b2 li {
    height: auto;
    padding: 1rem 0;
  }
}

.cont6 .a6v1 .a6b2 li span {
  display: block;
  color: #333;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 700;
}

.cont6 .a6v1 .a6b2 li a.name {
  color: #333;
  font-size: 1.35rem;
  line-height: 1.5em;
  margin-top: .25rem;
  width: 100%;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cont6 .a6v1 .a6b2 li a.name {
    font-size: 1.125rem;
  }
}

.cont6 .a6v1 .a6b2 li a.name:hover {
  color: #f3c423;
}

.cont6 .a6v1 .a6b2 li .p1 {
  font-size: 1rem;
  line-height: 1.5em;
  color: #333;
  font-weight: 600;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}

.foot-fot {
  background: #2D3333;
  display: none;
}

.foot-fot .foota2 {
  font-size: 1rem;
  color: #fff;
}

.foot-fot .foota2 a {
  font-size: 1rem;
  color: #fff;
}

/*手机底部*/
@media (max-width: 990px) {
  .foot-fot {
    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 > a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: #d4ac63;
  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: flex;
  justify-content: center;
  flex-wrap: wrap;
  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: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition: all .7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: .4rem;
  white-space: nowrap;
}

.zd_erha li .erghgsb {
  width: 7rem;
  padding: .3rem;
}

.zd_erha li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*内页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: 2.375rem;
  color: #333333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 0 .2rem;
  font-weight: 500;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  line-height: 2.1;
  background: #fff;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  line-height: 2.1;
}

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

.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;
  background-color: var(--color-zt);
  border-color: var(--color-zt);
  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;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
}

@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  background: #fff;
}

.pager li > a:focus,
.pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

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

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

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

.ajhhsd {
  color: #A7A5A5;
  font: 400 1rem/2rem "Montserrat";
  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;
  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 "Montserrat";
  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 "Montserrat";
  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 "Montserrat";
  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 "Montserrat";
  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: .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 "Montserrat";
  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 .95rem/1.5em "montserrat";
}

.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Montserrat";
  margin-top: 0.5em;
}

.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Montserrat";
  padding: 1rem 0 3rem;
}

.shzr-content strong {
  color: #333;
}

.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 "Montserrat";
}

@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: .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 "Montserrat";
  position: relative;
  text-transform: uppercase;
  padding: .85rem 0;
  transition: all .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);
  transform-origin: center;
  transform: scaleX(0);
}

@media (max-width: 768px) {
  .n_mbx .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: .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 {
  transform: scaleX(1);
}

.list_content {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .list_content {
    padding: 2rem 0;
  }
}

@-webkit-keyframes scale2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    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: calc(var(--head-height) * -1);
}

@media (max-width: 990px) {
  #abt1,
  #abt2,
  #abt3,
  #abt4,
  #abt5,
  #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny-tit .entit {
  color: #535353;
  font: 700 1.5rem/1.2em "Montserrat";
  text-transform: uppercase;
}

.ny-tit .tit {
  color: #535353;
  font: 600 2.5rem/1.3em "Montserrat";
}

@media (max-width: 768px) {
  .ny-tit .tit {
    font-size: 1.8rem;
  }
}

.abt-cont1 {
  padding: var(--pandrd) 0;
}

.abt-cont1 .abt-a1v1 .abt-a1b1 {
  width: 50%;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b1 {
    width: 100%;
  }
}

.abt-cont1 .abt-a1v1 .abt-a1b1 .img {
  padding-left: 20px;
}

.abt-cont1 .abt-a1v1 .abt-a1b1 .img img {
  width: 100%;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b1 .img {
    padding-left: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .abt-cont1 .abt-a1v1 .abt-a1b2 {
    width: 100%;
    order: 1;
    margin-top: 1.5rem;
  }
}

.abt-cont2 {
  background: #f4f4f4;
  padding: var(--pandrd) 0;
}

.abt-cont2 .abt-a2b1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2b1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 450px) {
  .abt-cont2 .abt-a2b1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.abt-cont2 .abt-a2b1 .cont-p {
  text-align: center;
}

.abt-cont2 .abt-a2b1 .cont-p .tit {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 500;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2b1 .cont-p .tit {
    font-size: 1.35rem;
  }
}

.abt-cont2 .abt-a2b1 .cont-p .p {
  color: #939393;
  font-size: 1rem;
  line-height: 1.75em;
  margin-top: .5rem;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .abt-cont3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .abt-cont3 .content {
    margin-top: 20px;
  }
}

.product-content .product_flex {
  display: flex;
  justify-content: space-between;
}

.product-content .left {
  width: 28%;
  padding-top: 4rem;
  background-color: #f4f4f4;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}

@media (max-width: 768px) {
  .product-content .left {
    display: none;
  }
}

.product-content .right {
  width: 100%;
  padding-top: 4rem;
}

@media (max-width: 768px) {
  .product-content .right {
    width: 100%;
    padding-left: 15px;
    padding-top: 30px;
  }
}

.product-content .one_tab .one_tab_li {
  color: #000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 3.125rem;
  /* 277.778% */
}

.product-content .one_tab .one_tab_li .iconfont {
  float: right;
}

.product-content .one_tab .one_tab_li .iconfont.active {
  transform: rotate(180deg);
}

.product-content .one_tab .one_tab_li:hover {
  cursor: pointer;
}

.product-content .one_tab .one_tab_li:hover a {
  color: var(--color-zt);
}

.product-content .one_tab .one_tab_li .two_tab {
  display: none;
}

.product-content .one_tab .one_tab_li .two_tab .two_tab_li {
  padding-left: .625rem;
  /* 312.5% */
}

.product-content .one_tab .one_tab_li .two_tab .two_tab_li a {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 3.125rem;
}

.product-content .one_tab .one_tab_li .two_tab .two_tab_li a::before {
  content: '';
  display: inline-block;
  width: .1875rem;
  height: .1875rem;
  border-radius: 50%;
  background-color: #000000;
  margin-right: .625rem;
  margin-bottom: .3125rem;
}

.product-content .one_tab .one_tab_li .two_tab .two_tab_li:hover {
  cursor: pointer;
}

.product-content .one_tab .one_tab_li .two_tab .two_tab_li:hover a {
  color: var(--color-zt);
}

.product-content .one_tab .one_tab_li .two_tab .two_tab_li:hover a::before {
  background-color: var(--color-zt);
}

.product-content .one_tab .one_tab_li .two_tab.active {
  display: block;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 450px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.product-list li {
  border: 1px solid #f0f0f0;
}

.product-list li a.img {
  display: block;
  padding: 1.5rem;
}

.product-list li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
  height: 15.625rem;
}

@media (max-width: 768px) {
  .product-list li a.img i {
    height: 10rem;
  }
}

.product-list li a.img i img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list li a.img .tit {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding-top: 1.5rem;
}

.product-list li:hover {
  border-color: var(--color-zt);
}

.product-list li:hover a.img .tit {
  color: var(--color-zt);
}

.ny-show_body {
  padding-top: 5.625rem;
}

.pro-show-cont1 {
  background: #F5F5F5;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .pro-show-cont1 {
    padding-bottom: 2rem;
  }
}

.pro-show-cont1 .pro-show-a1v1 .img_tup {
  width: 46%;
}

@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup {
    width: 100%;
  }
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img {
  position: relative;
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .gongt > div {
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .gongt > div.swiper-button-next1 {
  right: 3%;
}

@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .gongt > div.swiper-button-next1 {
    right: 1.5%;
  }
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .gongt > div.swiper-button-prev1 {
  left: 3%;
}

@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .gongt > div.swiper-button-prev1 {
    left: 1.5%;
  }
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .cp-show-img .gongt > div i {
  font-size: 2rem;
  color: #999;
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .img {
  width: 100%;
  padding-bottom: 66%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pro-show-cont1 .pro-show-a1v1 .img_tup .img img {
  width: 100%;
}

.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
  width: 48%;
}

@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
    width: 100%;
    margin-top: 1rem;
  }
}

.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tit1 {
  color: #535353;
  font: 600 2rem/1.3em "Montserrat";
}

@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tit1 {
    font-size: 1.5rem;
  }
}

.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .txt {
  color: #626262;
  font: 400 1rem/1.6em "Montserrat";
  margin-top: 1rem;
}

.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 a.more-b {
  margin-top: 2rem;
}

.pro-show-cont2 {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .pro-show-cont2 {
    padding: 2rem 0;
  }
}

.pro-show-cont2 .content {
  color: #626262;
  font: 400 1rem/1.6em "Montserrat";
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .pro-show-cont2 .content {
    margin-top: 1rem;
  }
}

.news-list {
  margin: 0 -1.5%;
}

.news-list li {
  width: calc(100%/3);
  padding: 0 1.5%;
  margin-top: 3.4375rem;
}

@media (max-width: 768px) {
  .news-list li {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.news-list li a.img {
  display: block;
  font-size: 0;
  padding-bottom: 70.60185%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

.news-list li a.img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-list li a.img img {
  width: 100%;
}

.news-list li .cont-p {
  margin-top: .8rem;
  border-bottom: 1px solid #DADADA;
  padding-bottom: .8rem;
}

.news-list li .cont-p a.name {
  display: block;
  color: #626262;
  font: 600 1.375rem/1.5em "Montserrat";
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .news-list li .cont-p a.name {
    height: auto;
  }
}

.news-list li .cont-p a.name:hover {
  color: var(--color-zt);
}

.news-list li .cont-p .p {
  color: #626262;
  font: 400 1.125rem/1.5em "Montserrat";
  margin: .8rem 0;
  height: 3em;
  overflow: hidden;
}

@media (max-width: 768px) {
  .news-list li .cont-p .p {
    margin: .5rem 0;
    height: auto;
  }
}

.news-list li .cont-p .data {
  color: var(--color-zt);
  font: 500 .875rem/1.5em "Montserrat";
}

.news-list li .cont-p .data i {
  font-size: 1rem;
  margin-right: .4rem;
}

/*新闻详情*/
.xw-show_bja .title-a {
  color: #454545;
  font: 600 2rem/1.4em "Montserrat";
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .xw-show_bja .title-a {
    font-size: 1.5rem;
  }
}

.xw-show_bja .title-b .date-a {
  color: #454545;
  font: 600 1rem/1.5em "Montserrat";
  text-align: center;
  padding: .5rem 0 1.6rem;
}

@media (max-width: 768px) {
  .xw-show_bja .title-b .date-a {
    padding: .5rem 0 1rem;
  }
}

.xw-show_bja .title-b .fen-xiang::after {
  content: "";
  display: block;
  height: 1px;
  border: 1px dashed rgba(33, 33, 33, 0.2);
  flex: 1;
}

.xw-show_bja .title-b .fen-xiang::before {
  content: "";
  display: block;
  height: 1px;
  border: 1px dashed rgba(33, 33, 33, 0.2);
  flex: 1;
}

.xw-show_bja .title-b .fen-xiang .social-share {
  position: relative;
  padding: 0 1em;
}

.xw-show_bja .title-b .fen-xiang .social-share .wechat-qrcode {
  z-index: 999;
}

.xw-show_bja .title-b .fen-xiang .social-share a {
  color: #9C9C9C;
  border-color: #9C9C9C;
  background: transparent;
  font-size: 1rem;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
}

@media (max-width: 768px) {
  .xw-show_bja .title-b .fen-xiang .social-share a {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
  }
}

.show-news-a1_v1 {
  margin-top: 2rem;
  margin-bottom: 6.25rem;
}

@media (max-width: 768px) {
  .show-news-a1_v1 {
    margin-top: 1rem;
    margin-bottom: 30px;
  }
}

.show-news-a1_v1 .xinwn-consss {
  padding: 0 10%;
  color: #626262;
  font: 400 1.125rem/1.5em "Montserrat";
}

@media (max-width: 768px) {
  .show-news-a1_v1 .xinwn-consss {
    padding: 0;
    font-size: 1rem;
  }
}

.show-news-a1_v1 .xinwn-consss img {
  width: 100%;
}

.pain {
  background: #F5F5F5;
  padding: 1rem 0;
  margin-top: 7.5rem;
}

@media (max-width: 768px) {
  .pain {
    margin-top: 2rem;
  }
}

.pain .shanys {
  padding: 0 10%;
}

@media (max-width: 768px) {
  .pain .shanys {
    padding: 0;
  }
}

.pain .prev,
.pain .next {
  color: #626262;
  font: 400 1.125rem/1.5em "Montserrat";
  width: 45%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pain .prev,
  .pain .next {
    width: 100%;
    font-size: 1rem;
    padding: 2px 0;
  }
}

.pain .prev a,
.pain .next a {
  color: #626262;
}

.pain .prev a:hover,
.pain .next a:hover {
  color: var(--color-zt);
}

.lx-cont1 {
  padding: 5.375rem 0 4.25rem;
}

@media (max-width: 768px) {
  .lx-cont1 {
    padding: 2rem 0;
  }
}

.lx-cont1 .lx-a1v1 {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 {
    margin-top: 1rem;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b1 {
  width: 50%;
  padding: 3% 0;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 {
    width: 100%;
    padding: 8%;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b1 .tit1 {
  color: #535353;
  font: 600 1.875rem/1.3em "Montserrat";
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .tit1 {
    font-size: 1.35rem;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b1 .p {
  color: #333;
  font: 400 1.25rem/1.875rem "Montserrat";
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .p {
    padding: .8rem 0;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b1 .p a {
  color: #333;
}

.lx-cont1 .lx-a1v1 .lx-a1b1 .erna {
  width: 9.375rem;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b1 .erna {
    width: 6.5rem;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b1 .erna img {
  width: 100%;
}

.lx-cont1 .lx-a1v1 .lx-a1b2 {
  width: 50%;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 {
    width: 100%;
    margin-top: 1rem;
  }
}

.lx-cont1 .lx-a1v1 .lx-a1b2 #mapDiv {
  width: 100%;
  height: 25rem;
}

@media (max-width: 768px) {
  .lx-cont1 .lx-a1v1 .lx-a1b2 #mapDiv {
    height: 22rem;
  }
}

.lx-cont2 {
  background: #f4f4f4;
  padding: 4rem 0;
}

.lx-cont2 .ny-tit .tit {
  color: #333;
}

@media (max-width: 768px) {
  .lx-cont2 {
    padding: 2rem 0;
  }
}

@media (max-width: 768px) {
  .lx-cont2 form {
    margin-top: 1rem;
  }
}

.lx-cont2 form .inpt {
  position: relative;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .lx-cont2 form .inpt {
    margin-top: .8rem;
  }
}

.lx-cont2 form .m_label {
  color: #999999;
  font: 400 1rem/3.125rem "Montserrat";
  position: absolute;
  left: 1.25em;
  top: 0;
}

.lx-cont2 form .m_label span {
  color: #F80808;
}

.lx-cont2 form input {
  background: #FFFFFF;
  font: 400 1rem/3.125rem "Montserrat";
  border-radius: 1.5625rem;
  padding: 0 1.25em;
  width: 100%;
}

.lx-cont2 form .msg-a1 .inpt {
  width: 48.57143%;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt {
    width: 100%;
  }
}

.lx-cont2 form .msg-a3 {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .lx-cont2 form .msg-a3 {
    margin-top: .8rem;
  }
}

.lx-cont2 form .msg-a3 textarea {
  width: 100%;
  font: 400 1rem/1.5rem "Montserrat";
  padding: 0.85em 1.25em;
  border: none;
  border-radius: .9375rem;
}

.lx-cont2 .div_aghgha {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .lx-cont2 .div_aghgha {
    margin-top: 1rem;
  }
}

.lx-cont2 .div_aghgha .more-msl {
  background: transparent;
  color: var(--color-zt);
}

.lx-cont2 .div_aghgha .more-msl::before {
  background: UNSET;
}

.lx-cont2 .div_aghgha .more-msl:hover {
  color: #fff;
}

.lx-cont3 {
  padding: 4rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .lx-cont3 {
    padding: 2rem 0;
  }
}

.lx-cont3 .job-list1a {
  margin: 0 -1%;
  margin-top: .5rem;
}

.lx-cont3 .job-list1a li {
  width: calc(100%/3);
  padding: 0 1%;
  margin-top: 1.625rem;
}

@media (max-width: 1100px) {
  .lx-cont3 .job-list1a li {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .lx-cont3 .job-list1a li {
    margin-top: 1rem;
    width: 100%;
  }
}

.lx-cont3 .job-list1a li .cont-sdsd {
  border: 1px solid transparent;
  padding: 2rem 7% 0;
  cursor: pointer;
  background: #FFF;
  box-shadow: 0px 0.25rem 2.5rem 0px rgba(183, 183, 183, 0.25);
}

@media (max-width: 1100px) {
  .lx-cont3 .job-list1a li .cont-sdsd {
    padding: 1.2rem 7% 0;
  }
}

.lx-cont3 .job-list1a li .cont-sdsd .name {
  color: #595D61;
  font: 400 1.4rem/1.5em "Montserrat";
}

@media (max-width: 768px) {
  .lx-cont3 .job-list1a li .cont-sdsd .name {
    font-size: 1.25rem;
  }
}

.lx-cont3 .job-list1a li .cont-sdsd .p {
  color: #838383;
  font: 400 .875rem/1.5em "Montserrat";
  padding: .75rem 0 1rem;
}

.lx-cont3 .job-list1a li .cont-sdsd .p p + p {
  border-left: 1px solid #CFCFCF;
  padding-left: .7rem;
  margin-left: .7rem;
}

@media (max-width: 768px) {
  .lx-cont3 .job-list1a li .cont-sdsd .p p + p {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }
}

.lx-cont3 .job-list1a li .cont-sdsd .asghrt {
  color: #969B9F;
  font: 400 1.25rem/1.5em "Montserrat";
  border-top: 1px solid #D6D6D6;
  padding: .75rem 0;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .lx-cont3 .job-list1a li .cont-sdsd .asghrt {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.lx-cont3 .job-list1a li .cont-sdsd:hover {
  border-color: var(--color-zt);
}

.pro-show-cont2 .asjx_list1 {
  border-bottom: 1px solid #dadada;
}

.pro-show-cont2 .asjx_list1 li {
  background: #dadada;
  margin-right: .3125rem;
  color: #333;
  width: fit-content;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: .75rem 2.5em;
  cursor: pointer;
}

.pro-show-cont2 .asjx_list1 li.on {
  background: var(--color-zt);
  color: #fff;
}

.pro-show-cont2 .asjx_list2 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .pro-show-cont2 .asjx_list2 {
    margin-top: 1.25rem;
  }
}

.pro-show-cont2 .asjx_list2 li {
  color: #626262;
  font: 400 1rem / 1.6em "Montserrat";
}

.pro-show-cont2 .asjx_list2 li .tabler {
  width: 100%;
  overflow-x: auto;
}

.pro-show-cont2 .asjx_list2 li .tabler table {
  width: 100%;
}

.pro-show-cont2 .asjx_list2 li .tabler table tr {
  background-color: #fffdfd;
}

.pro-show-cont2 .asjx_list2 li .tabler table tr td {
  padding: 10px !important;
  box-sizing: border-box;
  font-size: 1rem;
}

.pro-show-cont2 .asjx_list2 li .tabler table tr:nth-child(even) {
  background-color: rgba(170, 219, 255, 0.1);
}

.pro-show-cont2 .asjx_list2 li .tabler table tr:nth-child(1) {
  background-color: #d4ac63;
}

.pro-show-cont2 .asjx_list2 li .tabler table tr:nth-child(1) td {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  padding: 1.25rem !important;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 450px) {
  .case-list {
    display: block;
  }
}

@media (max-width: 450px) {
  .case-list li {
    margin-top: 1.5rem;
  }
}

.case-list li a.img {
  display: block;
  border: 1px solid #EBEBEB;
  background: #FFF;
  box-shadow: 0px 0.1rem 0.5rem 0px rgba(183, 183, 183, 0.25);
}

.case-list li a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
  padding-bottom: 70%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

.case-list li a.img i > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.case-list li a.img i img {
  width: 100%;
}

.case-list li a.img .tit {
  text-align: center;
  font: 400 1rem/1.5em "Montserrat";
  border-top: 1px solid #EBEBEB;
  padding: .95rem 0;
}

.case-list li a.img:hover {
  box-shadow: 0px 0.25rem 1rem 0px rgba(183, 183, 183, 0.25);
}

.case-list li a.img:hover .tit {
  color: var(--color-zt);
}

.ny-show_bodyxw .head {
  border-bottom: 1px solid #f0f0f0;
}

.fwzc-cont li {
  padding: var(--pandrd) 0;
}

.fwzc-cont li .fwzc-a1 i {
  display: block;
  font-size: 0;
  width: 48%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .fwzc-cont li .fwzc-a1 i {
    width: 100%;
  }
}

.fwzc-cont li .fwzc-a1 i img {
  width: 100%;
}

.fwzc-cont li .fwzc-a1 .wenata {
  width: 48%;
}

@media (max-width: 768px) {
  .fwzc-cont li .fwzc-a1 .wenata {
    width: 100%;
    order: 1;
    margin-top: 1.25rem;
  }
}

.fwzc-cont li .fwzc-a1 .wenata .tit {
  color: #333;
  font-size: 1.65rem;
  line-height: 1.5em;
  font-weight: 700;
}

@media (max-width: 768px) {
  .fwzc-cont li .fwzc-a1 .wenata .tit {
    font-size: 1.5rem;
  }
}

.fwzc-cont li .fwzc-a1 .wenata .p {
  color: #626262;
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .fwzc-cont li .fwzc-a1 .wenata .p {
    margin-top: .75rem;
  }
}

.fwzc-cont li:nth-child(2n) {
  background: #f4f4f4;
}

.fwzc-cont li:nth-child(2n) .fwzc-a1 i {
  order: 1;
}

.index_solution {
  position: relative;
  padding-top: 5.9375rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .index_solution {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

.index_solution .content .solution_grid {
  margin-top: 21.875rem;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.index_solution .content .solution_grid .solution_item {
  flex: 1;
  margin: 0 1.25rem;
  height: 17.3125rem;
  border-radius: 1.25rem;
  background: #F2F2F2;
  position: relative;
  display: flex;
  align-items: center;
  padding: 2.5rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid .solution_item {
    flex: unset;
    width: 100%;
    margin: 1.25rem 0;
  }
}

.index_solution .content .solution_grid .solution_item .icon {
  width: 8.625rem;
  height: 8.625rem;
  border-radius: 50%;
  border: 10px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  position: absolute;
  top: -40px;
  left: 0;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid .solution_item .icon {
    width: 6.625rem;
    height: 6.625rem;
  }
}

.index_solution .content .solution_grid .solution_item .icon img {
  width: 50%;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid .solution_item .text {
    padding-left: 5rem;
  }
}

.index_solution .content .solution_grid .solution_item .text h3 {
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
}

.index_solution .content .solution_grid .solution_item .text p {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  display: none;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid .solution_item .text p {
    display: block;
  }
}

.index_solution .content .solution_grid .solution_item:nth-child(1) {
  margin-left: 0;
}

.index_solution .content .solution_grid .solution_item:nth-last-child(1) {
  margin-right: 0;
}

.index_solution .content .solution_grid .solution_item:hover {
  cursor: pointer;
  flex: unset;
  width: 50%;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.index_solution .content .solution_grid .solution_item:hover .text {
  padding-left: 10rem;
}

.index_solution .content .solution_grid .solution_item:hover .text p {
  display: block;
}

.index_solution .content .solution_grid .on.solution_item {
  flex: unset;
  width: 50%;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid .on.solution_item {
    flex: unset;
    width: 100%;
  }
}

.index_solution .content .solution_grid .on.solution_item .text {
  padding-left: 10rem;
}

@media (max-width: 768px) {
  .index_solution .content .solution_grid .on.solution_item .text {
    padding-left: 5rem;
  }
}

.index_solution .content .solution_grid .on.solution_item .text p {
  display: block;
}

.index_solution .bgimgul {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.index_solution .bgimgul .bgimgli.on {
  display: block;
}

.index_solution .bgimgul .bgimgli {
  display: none;
  width: 100%;
  height: 100%;
}

.index_solution .bgimgul .bgimgli img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section04 {
  position: relative;
  height: 100vh;
  display: table-cell;
  vertical-align: middle;
}

.section04 .subtitle {
  color: #fff;
  -webkit-text-fill-color: aliceblue;
  background: transparent;
}

.section04 .bgg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.section04 .bgg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  opacity: 0;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  background-size: cover;
  background-position: center center;
}

.section04 .bgg div.active {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.section04 .left .title1 .tit {
  color: #fff;
  text-align: left;
}

.section04 .left .text {
  margin: 1.5rem 0 3.75rem;
  color: #FFF;
  padding-right: 3rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.875rem;
}

.section04 .left .more-b {
  color: #fff;
  border: 1px solid #fff;
}

.section04 .right .name {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.875rem;
  margin-top: 1rem;
  text-align: center;
}

.section04 .right ul li > div {
  position: relative;
  height: 11.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 9;
}

.section04 .right ul li > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  margin: 0 auto;
  z-index: -1;
}

.section04 .right ul li > div .icon {
  text-align: center;
}

.section04 .right ul li > div .icon img {
  filter: brightness(0) invert(1);
}

.section04 .right ul li > div .name {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.section04 .right ul li > div:hover::before {
  transform: scale(1);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.section04 .right .icon img {
  height: 3.5rem;
}

.title {
  color: #000;
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  position: relative;
}

.subtitle {
  color: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem;
  /* 330% */
  text-transform: uppercase;
}

.text {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.875rem;
}

.channel_product .text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

.channel_product ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9375rem;
  margin-bottom: 3.125rem;
}

.channel_product ul li {
  cursor: pointer;
  padding: 2rem 0 1.75rem;
  flex: 1 0 0;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.channel_product ul li .icon img {
  height: 2.75rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  filter: brightness(0);
}

.channel_product ul li .name {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  margin-top: .75rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.channel_product ul li:hover, .channel_product ul li.active {
  background: #d4ac63;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.channel_product ul li:hover .icon img, .channel_product ul li.active .icon img {
  filter: brightness(0) invert(1);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  transform: rotateY(180deg);
}

.channel_product ul li:hover .name, .channel_product ul li.active .name {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  color: #fff;
}

.list_appliacation .text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}

.list_appliacation ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.375rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.list_appliacation ul li {
  cursor: pointer;
  padding: 2rem 0 1.75rem;
  flex: 1 0 0;
  text-align: center;
}

.list_appliacation ul li .icon img {
  height: 3.125rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  filter: brightness(0.5);
}

.list_appliacation ul li .name {
  color: #d4ac63;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: .75rem;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_appliacation ul li:hover, .list_appliacation ul li.active {
  background: #d4ac63;
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
}

.list_appliacation ul li:hover .icon img, .list_appliacation ul li.active .icon img {
  filter: brightness(0) invert(1);
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  transform: rotateY(360deg) scale(1.2);
}

.list_appliacation ul li:hover .name, .list_appliacation ul li.active .name {
  transition: all .4s;
  -webkit-transform: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  color: #fff;
}

.list_appliacation .swiper-slide .bgg {
  padding: 4.375rem 0;
}

.list_appliacation .swiper-slide .circle {
  background: rgba(2, 127, 209, 0.4);
  width: 32.5rem;
  height: 32.5rem;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_appliacation .swiper-slide .circle .icon {
  text-align: center;
}

.list_appliacation .swiper-slide .circle .icon img {
  height: 6.875rem;
  filter: brightness(0) invert(1);
}

.list_appliacation .swiper-slide .circle .name {
  color: #FFF;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 2.8125rem;
  margin-top: 1.1875rem;
}

@media (max-width: 767px) {
  .phone_show_767 {
    display: block;
  }
  .swiper-pagination-bullet {
    margin: 3px;
  }
  .channel_product {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .channel_product ul {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .channel_product ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 990px) {
  .list_appliacation ul {
    display: none !important;
  }
  .m-imgny {
    padding-bottom: 50%;
  }
}

@media (max-width: 767px) {
  .list_appliacation .swiper-slide .circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .list_appliacation {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .list_appliacation .swiper-slide .circle .icon img {
    height: 3.25rem;
  }
  .list_appliacation .swiper-slide .circle .name {
    font-size: 16px;
    line-height: 1.2;
  }
  .section04 .left .text {
    padding-right: 0;
  }
}

.p_top {
  position: absolute;
  top: -6.25rem;
}

.m_show {
  display: none;
}

@media (max-width: 767px) {
  .pc_show {
    display: none;
  }
  .m_show {
    display: block;
  }
}

footer {
  background: #d4ac63;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 990px) {
  footer {
    display: none;
  }
}

footer .wh .foot_top {
  padding-top: 4.0625rem;
}

footer .wh .foot_top .footnav {
  display: flex;
  justify-content: space-between;
}

footer .wh .foot_top .footnav .tt {
  color: #000;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 900;
}

footer .wh .foot_top .footnav .subfootnav {
  margin-top: 1.125rem;
}

footer .wh .foot_top .footnav .subfootnav .subfootli a {
  color: #DDD;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

footer .wh .foot_top .footnav .lastli .inpt {
  margin-top: 1.125rem;
  position: relative;
}

footer .wh .foot_top .footnav .lastli .inpt input {
  width: 21.1875rem;
  height: 2.625rem;
  border-radius: 1.375rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.5);
  font-size: .875rem;
  font-weight: 400;
  padding-left: .625rem;
  background-color: unset;
}

footer .wh .foot_top .footnav .lastli .inpt .embtn {
  border: unset;
  width: 6.875rem;
  height: 2.625rem;
  border-radius: 1.375rem;
  background: var(--color-zt);
  position: absolute;
  right: 0;
  color: #FFF;
  font-size: .875rem;
  font-weight: 700;
}

footer .wh .foot_top .footnav .lastli .social-share {
  display: flex;
}

footer .wh .foot_top .footnav .lastli .social-share .social-share-icon {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #999999;
  margin: 0 .25rem;
}

footer .wh .share_ul {
  display: flex;
  align-items: center;
  padding-bottom: 1.875rem;
}

footer .wh .share_ul span {
  font-size: 1.25rem;
  color: #fff;
  margin-right: .625rem;
}

footer .wh .share_ul ul {
  display: flex;
}

footer .wh .share_ul ul li .social-share-icon {
  border: 1px solid #fff;
  color: #fff;
  font-size: 1rem;
}

footer .wh .share_ul ul li:nth-last-child(1) a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 4px;
  text-align: center;
}

footer .wh .share_ul ul li:nth-last-child(1) a:hover {
  background-color: #4dc247;
}

footer .wh .share_ul ul li:nth-last-child(1) img {
  width: 20px;
  filter: brightness(0) invert(1);
}

footer .wh .foot_bottom {
  padding-top: 4.0625rem;
  padding-bottom: 2.625rem;
}

footer .wh .foot_bottom .tt a {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
}

footer .wh .foot_bottom .coot_contact_content ul {
  display: flex;
  justify-content: space-between;
}

footer .wh .foot_bottom .coot_contact_content ul li {
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .wh .foot_bottom .coot_contact_content ul li:nth-last-child(1) {
  width: 25%;
}

footer .wh .foot_bottom .coot_contact_content ul li .titbox {
  display: flex;
  align-items: center;
  margin-bottom: .625rem;
}

footer .wh .foot_bottom .coot_contact_content ul li .titbox .tit {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
  margin-left: .6875rem;
}

footer .wh .foot_bottom .coot_contact_content ul li p {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2rem;
}

footer .wh .foot_bottom .coot_contact_content ul li p a {
  color: #fff;
}

footer .copyright {
  border-top: 1px solid rgba(204, 204, 204, 0.2);
  background-color: rgba(6, 113, 183, 0.3);
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  /* 200% */
  text-align: left;
  padding: .375rem 0;
}

footer .copyright a {
  color: #fff;
}

footer .copyright p {
  color: #fff;
}

footer .copyright span:nth-last-child(1) {
  display: none;
}
.list_honoe .honor_swiper {
  margin-top: 2.5rem;
  padding-bottom: 3.75rem;
}

.list_honoe .name {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid #dedede;

  font-size: 1.025rem;
}

.list_honoe .swiper-slide>div {
  padding: 1rem;
  border: 1px solid #dedede;
}

.list_honoe .swiper-slide>div .over img {
  padding: 1.5rem;
}

.list_honoe .swiper-slide:hover>div {
  border-color: #e36610;
}

.list_honoe .swiper-slide:hover img {
  transform: scale(1.1);
}

.honor_swiper .swiper-pagination {
  display: none;
}

.list_honoe .swiper-slide:hover .name {
  color: #d4ac63;
}

.list_honoe .swiper-pagination-bullet {
  background: #000;
  opacity: 1;
}

.list_honoe .swiper-pagination-bullet-active {
  background: #d4ac63;
}
.en_name {
    font-size: 3.125rem;
    line-height: 1;
    color: #d4ac63;
    font-family: MOOLBOR;
    position: relative;
    top: -1.375rem;
}
.cn_name {
    font-size: 2rem;
    line-height: 2.25rem;
    color: #000000;
    position: relative;
}
.cn_name::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2rem;
    width: 1.5625rem;
    height: 4px;
    background-color: #d4ac63;
}
