﻿
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;
  }
}
body {
  outline: none;
  font-family: "Montserrat", "Noto Sans SC", sans-serif !important;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: rgba(0,0,0,0.7);
  --color-zt: #1a3495;
  --head-height: 6.25rem;
  --cbasta: 13.5416666667%;
  --pandrd: 7.8125rem 0;
}
@media (max-width: 1366px) {
  :root {
    --cbasta: 5.78125%;
  }
}
@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem 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 "Noto Sans SC";
  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.7rem 1.5rem;
  background-color: #EBEBEC;
  color: #1B1C21;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans SC";
}
.more-b > * {
  -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);
}
.more-b span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  -webkit-transition-delay: 0.06s;
     -moz-transition-delay: 0.06s;
       -o-transition-delay: 0.06s;
          transition-delay: 0.06s;
  line-height: 2.2rem;
  text-transform: uppercase;
  font-family: "Montserrat";
  font-weight: 600;
}
.more-b i {
  display: inline-block;
  font-size: 0.75rem;
  -webkit-transition-delay: 0.12s;
     -moz-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  color: #1B1C21;
  font-weight: 400;
  vertical-align: middle;
}
.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);
}
.more-b:hover {
  border-color: var(--color-zt);
}
.more-b:hover > * {
  -webkit-transform: translateX(0.75rem);
     -moz-transform: translateX(0.75rem);
      -ms-transform: translateX(0.75rem);
       -o-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
  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.hs {
  background: var(--color-zt);
  color: #fff;
}
.more-b.hs i {
  color: #fff;
}
.more-b.hs:hover {
  color: #1B1C21;
}
.more-b.hs:hover > * {
  color: #1B1C21;
}
.more-b.hs:hover i {
  color: #1B1C21;
}
.more-b.hs:hover::after {
  background-color: #EBEBEC;
}

@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: 40%;
    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;
  }
}
@media (max-width: 768px) {
	.m-imgny {
		padding-bottom: 40%;
	}
}
.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.head .head2 {
  line-height: var(--head-height);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px);
}
.head .head2 .logo a {
  display: block;
}
.head .head2 .logo a img {
  height: 4.6875rem;
}
.head .head2 .zywena a.rhgxt {
  color: #1B1C21;
  font: 500 1.42rem/1em "Montserrat";
}
.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 0.2rem;
}
.head .head2 .sska {
  margin: 0 2.5rem 0 1.5rem;
  line-height: 1;
}
.head .head2 .sska a {
  color: #1B1C21;
}
.head .head2 .sska a i {
  font-size: 1.25rem;
}
.head.sticky .head2 {
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.9);
}

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

#menu .nav_a1 li {
  float: left;
  position: relative;
}
#menu .nav_a1 li a {
  display: block;
  color: rgba(0, 0, 0, 0.8);
  font-family: "Noto Sans SC";
}
#menu .nav_a1 li > a {
  font-size: 1.42rem;
  padding: 0 1.5625rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 1680px) {
  #menu .nav_a1 li > a {
    padding: 0 2.55em;
  }
}
@media (max-width: 1920px) {
  #menu .nav_a1 li > a {
    padding: 0 2.4em;
  }
}
@media (min-width: 1920px) {
  #menu .nav_a1 li > a {
    padding: 0 2.4em;
  }
}
@media (max-width: 1366px) {
  #menu .nav_a1 li > a {
    padding: 0 1.6em;
  }
}
@media (max-width: 1024px) {
  #menu .nav_a1 li > a {
    padding: 0 0.8em;
  }
}
#menu .nav_a1 li > a span {
  position: relative;
  display: block;
}
#menu .nav_a1 li > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  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);
}
#menu .nav_a1 li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
}
#menu .nav_a1 li .sec {
  position: absolute;
  top: -webkit-calc(100% + 0.5rem);
  top: -moz-calc(100% + 0.5rem);
  top: calc(100% + 0.5rem);
  width: 100%;
  left: 0%;
  background: white;
  z-index: 9;
  text-align: center;
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
     -moz-transform: translateY(20px);
      -ms-transform: translateY(20px);
       -o-transform: translateY(20px);
          transform: translateY(20px);
}
#menu .nav_a1 li .sec a {
  font: 400 1.146rem/1.5em "Noto Sans SC";
  padding: 0.6em 0;
  color: #1B1C21;
}
#menu .nav_a1 li .sec a:hover {
  color: #fff;
  background-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);
  -moz-transform: translateY(20px);
   -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
       transform: translateY(20px);
  text-align: left;
  line-height: 1;
  border-top: 1px solid #E4E4E4;
}
#menu .nav_a1 li .sec1 dl {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          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 "Noto Sans SC";
  position: relative;
}
#menu .nav_a1 li .sec1 dl dd a {
  display: block;
  color: #96999C;
  font: 400 1rem/1.5em "Noto Sans SC";
  padding: 0.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;
  -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);
}
#menu .nav_a1 li:hover > a, #menu .nav_a1 li.active > a {
  color: var(--color-zt);
}
#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}

.nav-img {
  padding-bottom: 65%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 0.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 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: #000;
}

.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: 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%;
  -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 .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: "Noto Sans SC";
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Noto Sans SC";
  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 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: 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: #1a3495;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 {
    top: 28%;
  }
}
.pc-banner .mySwipera .banwez1 .tit {
  font: 700 2.6rem/1.25em "Noto Sans SC";
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .tit {
    font-size: 2rem;
  }
}
.pc-banner .mySwipera .banwez1 .p {
  color: #1a3495;
  font: 400 1.5rem/1.5em "Noto Sans SC";
  margin-top: 1.5rem;
  width: 40%;
}
@media (max-width: 1024px) {
  .pc-banner .mySwipera .banwez1 .p {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .p {
    font-size: 1.25rem;
    margin-top: 0.5em;
    width: 75%;
  }
}
.pc-banner .mySwipera .banwez1 .p p {
  position: relative;
  background: url(../images/ffdd8d83e8debe5f331443d5e4067932.svg) no-repeat center;
  -o-background-size: 100% auto;
     background-size: 100% auto;
  padding: 1rem 0.5em;
  margin-top: 1rem;
}
.pc-banner .mySwipera .banwez1 .p p::before {
  content: "·";
  display: inline-block;
  margin-right: 0.25rem;
}
.pc-banner .mySwipera .banwez1 .wer-xas {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .wer-xas {
    margin-top: 1.25rem;
  }
  .pc-banner .mySwipera .banwez1 .p p {background:none;}
}
.pc-banner .mySwipera .er-gat {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 100%;
  z-index: 9;
  text-align: center;
}
.pc-banner .mySwipera .er-gat .swiper-pagination1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.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: 10;
  -webkit-animation: run 1s infinite linear;
     -moz-animation: run 1s infinite linear;
       -o-animation: run 1s infinite linear;
          animation: run 1s infinite linear;
  width: 4.125rem;
}
@media (max-width: 768px) {
  .pc-banner a.mouse {
    width: 3.5rem;
  }
}
.pc-banner a.mouse img {
  width: 100%;
}

.wer-xas {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wer-xas .jtxs {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-zt);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .wer-xas .jtxs {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.wer-xas .jtxs i {
  color: #fff;
  font-size: 1.5rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .wer-xas .jtxs i {
    font-size: 1.25rem;
  }
}
.wer-xas p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-left: 0.65em;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  font-family: "Noto Sans SC";
}
.wer-xas:hover .jtxs i {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wer-xas:hover p {
  color: var(--color-zt);
  -webkit-transform: translateX(0.3125rem);
     -moz-transform: translateX(0.3125rem);
      -ms-transform: translateX(0.3125rem);
       -o-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}
.wer-xas.bs p {
  color: #fff;
}

@-webkit-keyframes run {
  from {
    bottom: 6%;
    opacity: 0;
  }
  to {
    bottom: 4%;
    opacity: 1;
  }
}

@-moz-keyframes run {
  from {
    bottom: 6%;
    opacity: 0;
  }
  to {
    bottom: 4%;
    opacity: 1;
  }
}

@-o-keyframes run {
  from {
    bottom: 6%;
    opacity: 0;
  }
  to {
    bottom: 4%;
    opacity: 1;
  }
}

@keyframes run {
  from {
    bottom: 6%;
    opacity: 0;
  }
  to {
    bottom: 4%;
    opacity: 1;
  }
}
.label_el {
  color: rgba(26, 26, 26, 0);
  text-shadow: none;
  -webkit-text-stroke-width: 0.47px;
  -webkit-text-stroke-color: #fff;
}
@media (max-width: 768px) {
  .label_el {
    -webkit-text-stroke-width: 0.3px;
  }
}

@-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 "Noto Sans SC";
  text-align: justify;
}
@media (max-width: 768px) {
  .gong-p {
    font-size: 1.125rem;
  }
}
.gong-p.bs {
  color: var(--color-bs);
}

.title1 .tit {
  color: rgba(0, 0, 0, 0.8);
  font-size: 3rem;
  line-height: 1.35em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .title1 .tit {
    font-size: 1.8rem;
  }
}
.title1 .entit {
  color: #1a3495;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.35em;
  font-family: "Montserrat";
  text-transform: capitalize;
}
@media (max-width: 768px) {
  .title1 .entit {
    font-size: 1.25rem;
  }
}
.title1.bs .tit, .title1.bs .entit {
  color: var(--color-bs);
}

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

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

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

@keyframes rotatedHalf1 {
  0% {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-pagination1 {
  text-align: center;
}
.swiper-pagination1 span {
  opacity: 1;
  background: transparent;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  margin: 0 0.3125rem !important;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.swiper-pagination1 span.swiper-pagination-bullet-active {
  background: var(--color-zt);
  border-color: var(--color-zt);
}
.swiper-pagination1.bs span {
  border-color: #fff;
}
.swiper-pagination1.bs span.swiper-pagination-bullet-active {
  border-color: #fff;
  background: #fff;
}

.cont1 {
  padding: 7.8125rem 0 6.875rem;
  position: relative;
}
@media (max-width: 768px) {
  .cont1 {
    padding: 2.5rem 0;
  }
}
.cont1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url(../images/bj1.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  z-index: -1;
}
.cont1 .a1v1 {
  margin-top: -3rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 {
    margin-top: 1.5rem;
  }
}
.cont1 .a1v1 .a1_list1 {
  width: 28.1428571429%;
  position: relative;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1_list1 {
    display: none;
  }
}
.cont1 .a1v1 .a1_list1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 92%;
  width: 2px;
  display: block;
  background: rgba(0, 0, 0, 0.1);
}
.cont1 .a1v1 .a1_list1 .gallery-thumbs {
  height: 28.5rem;
  overflow-x: visible;
}
.cont1 .a1v1 .a1_list1 .swiper-slide .tit {
  color: #000000;
  font-size: 1.625rem;
  line-height: 1.5em;
  padding-left: 1em;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.cont1 .a1v1 .a1_list1 .swiper-slide .tit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #1a3495;
  opacity: 0;
}
.cont1 .a1v1 .a1_list1 .swiper-slide.swiper-slide-thumb-active .tit {
  color: #1a3495;
}
.cont1 .a1v1 .a1_list1 .swiper-slide.swiper-slide-thumb-active .tit::after {
  opacity: 1;
}
.cont1 .a1v1 .a1c1 {
  width: 70.4285714286%;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 {
    width: 100%;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .img-a {
  width: 65.2591170825%;
  border-radius: 50%;
  background: -webkit-linear-gradient(left, #1a3495 0%, rgba(0, 136, 233, 0) 100%);
  background: -moz-linear-gradient(left, #1a3495 0%, rgba(0, 136, 233, 0) 100%);
  background: -o-linear-gradient(left, #1a3495 0%, rgba(0, 136, 233, 0) 100%);
  background: linear-gradient(90deg, #1a3495 0%, rgba(0, 136, 233, 0) 100%);
  padding: 1.875rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .img-a {
    width: 80%;
    padding: 1.25rem;
    margin: 0 auto;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .img-a .img {
  border-radius: 50%;
  overflow: hidden;
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .img-a .img img {
  width: 100%;
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a {
  width: 30.7101727447%;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a {
    width: 100%;
    margin-top: 1rem;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a .tit {
  color: #1a3495;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a .tit {
    font-size: 1.75rem;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a .tit1 {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a .tit1 {
    margin-top: 0.55rem;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.8em;
  padding: 0.5rem 0 0;
}
.cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a a.wer-xas {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 .mySwiper1 .swiper-slide .cont-p .cont-a a.wer-xas {
    margin-top: 1rem;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .jt-gong {
  margin-top: -3.375rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cont1 .a1v1 .a1c1 .mySwiper1 .jt-gong {
    margin: 0 auto;
  }
}
.cont1 .a1v1 .a1c1 .mySwiper1 .jt-gong > div {
  margin-left: 1rem;
}

.jt-gong > div {
  background: #F3F3F3;
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .jt-gong > div {
    width: 3rem;
    height: 3rem;
  }
}
.jt-gong > div i {
  color: #000000;
  font-size: 1rem;
}
.jt-gong > div:hover {
  background: var(--color-zt);
}
.jt-gong > div:hover i {
  color: #fff;
}
.jt-gong > div.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.cont2 {
  background-repeat: no-repeat;
  background-position: center;
  -o-background-size: cover;
     background-size: cover;
  padding: 14.375rem 0 9.375rem;
}
@media (max-width: 768px) {
  .cont2 {
    padding: 2.5rem 0;
  }
}
.cont2 .a2b1 {
  width: 45.5%;
}
@media (max-width: 768px) {
  .cont2 .a2b1 {
    width: 100%;
  }
}
.cont2 .a2b1 .title1 {
  position: relative;
}
.cont2 .a2b1 .title1 .cont-aav {
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 10rem;
  line-height: 0.8em;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  font-weight: 700;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  stroke: rgba(255, 255, 255, 0.2);
  text-align: right;
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .cont2 .a2b1 .title1 .cont-aav {
    font-size: 5rem;
  }
}
.cont2 .a2b1 .title1 .cont-aav .t1 {
  font-size: 5rem;
  line-height: 1em;
}
@media (max-width: 768px) {
  .cont2 .a2b1 .title1 .cont-aav .t1 {
    font-size: 2.5rem;
  }
}
.cont2 .a2b1 .p1 {
  margin: 2rem 0 2.6rem;
}
@media (max-width: 768px) {
  .cont2 .a2b1 .p1 {
    margin: 1rem 0 1.3rem;
  }
}
.cont2 .a2b2 {
  width: 49.2857142857%;
}
@media (max-width: 768px) {
  .cont2 .a2b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.cont2 .a2b2 .a2b2c1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
@media (max-width: 768px) {
  .cont2 .a2b2 .a2b2c1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.cont2 .a2b2 .a2b2c1 li {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(7px);
}
@media (max-width: 768px) {
  .cont2 .a2b2 .a2b2c1 li {
    border-radius: 1rem;
  }
}
.cont2 .a2b2 .a2b2c1 li a.block {
  color: #fff;
  display: block;
  text-align: center;
  padding: 4.125rem 3%;
}
@media (max-width: 768px) {
  .cont2 .a2b2 .a2b2c1 li a.block {
    padding: 2rem 3%;
  }
}
.cont2 .a2b2 .a2b2c1 li a.block i {
  display: block;
  width: 5.625rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cont2 .a2b2 .a2b2c1 li a.block i {
    width: 3.5rem;
  }
}
.cont2 .a2b2 .a2b2c1 li a.block i img {
  width: 100%;
}
.cont2 .a2b2 .a2b2c1 li a.block .tit {
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 0.5rem;
}
.cont2 .a2b2 .a2b2c1 li:hover {
  background: rgba(0, 136, 233, 0.9);
}

.cont3 {
  padding: 7.25rem 0 6rem;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .cont3 .xw-sort {
    width: 100%;
    margin-top: 1.5rem;
    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;
  }
}
.cont3 .xw-sort li a {
  display: inline-block;
  color: #1a3495;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.65rem 1.8rem;
  border: 1px solid rgba(0, 136, 233, 0.4);
  border-radius: 2rem;
}
@media (max-width: 768px) {
  .cont3 .xw-sort li a {
    padding: 0.65rem 2.2rem;
  }
}
.cont3 .xw-sort li + li {
  margin-left: 1rem;
}
.cont3 .xw-sort li:hover a, .cont3 .xw-sort li.on a {
  background: #1a3495;
  color: #fff;
}
.cont3 .a3v1 {
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 {
    margin-top: 0.65rem;
  }
}
.cont3 .a3v1 .ttz {
  display: none;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 {
  width: 65.7142857143%;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .ttz .a3c1 .a3d1 {
    width: 100%;
  }
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li {
  width: 47.8260869565%;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .ttz .a3c1 .a3d1 li {
    width: 100%;
    margin-top: 1rem;
  }
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p {
  border-radius: 1.25rem;
  background: #F6F6F6;
  padding: 1.25rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .img {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .img img {
  width: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .cont-xta {
  width: 100%;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .cont-xta {
    padding-bottom: 0;
  }
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .cont-xta .tit {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .cont-xta .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.8em;
  margin: 0.5rem 0 1rem;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .cont-xta .p1 {
    margin: 0.5rem 0 0.75rem;
  }
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p .cont-xta .date {
  color: rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.8em;
  font-weight: 500;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p:hover {
  background: #1a3495;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p:hover .img 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);
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p:hover .cont-xta .tit {
  color: #fff;
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p:hover .cont-xta .p1 {
  color: rgba(255, 255, 255, 0.7);
}
.cont3 .a3v1 .ttz .a3c1 .a3d1 li a.cont-p:hover .cont-xta .date {
  color: rgba(255, 255, 255, 0.21);
}
/* .cont3 .a3v1 .ttz .a3c1 .a3d1 li:nth-child(2n) a.cont-p .img {
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
} */
@media (max-width: 768px) {
  .cont3 .a3v1 .ttz .a3c1 .a3d1 li:nth-child(2n) a.cont-p .img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 {
  width: 31.4285714286%;
}
@media (max-width: 768px) {
  .cont3 .a3v1 .ttz .a3c1 .a3d2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li {
  --topx:1.25rem;
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li:not(:last-child) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
  padding-bottom: var(--topx);
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li:not(:first-child) {
  padding-top: var(--topx);
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p .img {
  width: 47.7272727273%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p .img img {
  width: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p .cont-xta {
  width: 46.3636363636%;
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p .cont-xta .tit {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p .cont-xta .date {
  color: rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.8em;
  font-weight: 500;
  margin-top: 1rem;
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p:hover .img 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);
}
.cont3 .a3v1 .ttz .a3c1 .a3d2 li a.cont-p:hover .cont-xta .tit {
  color: #1a3495;
}

.foot-fot {
  position: relative;
  background: #E6F4FF;
}
.foot-fot .foota1 {
  position: relative;
}
@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}
.foot-fot .foota1 .foota1b1 {
  padding: 2.8125rem 0;
  border-bottom: 1px solid rgba(66, 77, 84, 0.1);
}
.foot-fot .foota1 .foota1b1 .dlogo {
  width: 12.5rem;
}
.foot-fot .foota1 .foota1b1 .dlogo img {
  width: 100%;
}
.foot-fot .foota1 .foota1b1 .d_chxa {
  width: -webkit-calc(87% - 12.5rem);
  width: -moz-calc(87% - 12.5rem);
  width: calc(87% - 12.5rem);
}
.foot-fot .foota1 .foota1b1 .d_chxa li .img {
  width: 3rem;
  margin-right: 1rem;
}
.foot-fot .foota1 .foota1b1 .d_chxa li .img img {
  width: 100%;
}
.foot-fot .foota1 .foota1b1 .d_chxa li p {
  color: #424D54;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.5em;
}
.foot-fot .foota1 .foota1b2 {
  padding: 1.25rem 0 2rem;
}
.foot-fot .foota1 .foot-tit {
  color: #424D54;
  font: 600 1.28rem/1.5em "Noto Sans SC";
}
.foot-fot .foota1 .foot-tit a {
  color: #424D54;
  display: block;
}
.foot-fot .foota1 .dseca {
  margin-top: 0.6em;
}
.foot-fot .foota1 .dseca img {
  width: 8.6em;
}
.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(66, 77, 84, 0.7);
  font: 400 1.2rem/1.85em "Noto Sans SC";
}
.foot-fot .foota1 .dseca > a:hover {
  color: var(--color-zt);
}
.foot-fot .foota1 .dseca p {
  color: rgba(66, 77, 84, 0.5);
  font: 400 1rem/1.75em "Noto Sans SC";
}
.foot-fot .foota1 .fo-a2 .dlogo img {
  height: 3rem;
}
.foot-fot .foota1 .fo-a2 .p {
  color: rgba(0, 0, 0, 0.5);
  font: 400 1rem/1.5em "Noto Sans SC";
  margin-top: 1.375rem;
}
.foot-fot .foota1 .fo-a2 .dtel {
  color: #F36F20;
  font: 700 1.625rem/1.25em "Montserrat";
}
.foot-fot .foota1 .fo-a2 .social-share {
  margin-top: 0.8rem;
}
.foot-fot .foota1 .fo-a2 .social-share a {
  color: #9C9C9C;
  border-color: #9C9C9C;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.125rem;
}
.foot-fot .foota1 .fo-a2 .social-share a:hover {
  background: var(--color-zt);
  border-color: var(--color-zt);
  color: #fff;
}
.foot-fot .foota2 {
  color: rgba(255, 255, 255, 0.5);
  font: 400 1.2rem/1.65em "Noto Sans SC";
  padding: 0.8em 0;
  background: var(--color-zt);
}
.foot-fot .foota2 a {
  color: rgba(255, 255, 255, 0.5);
}
.foot-fot .foota2 a:hover {
  color: white;
}
.foot-fot .foota2 p + p {
  margin-left: 1rem;
}
@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 > a {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
  background: #1a3495;
  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: 2.25rem;
}
.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 .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1rem;
  width: auto;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: -100%;
  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: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.zd_erha .aat_list li .cbl-cont.erghgsb {
  width: 10rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.zd_erha .aat_list li .cbl-cont.erghgsb img {
  width: 100%;
}

.zd_erha .aat_list li:hover .cbl-cont {
  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 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          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 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 , .pagination .page-num-current, .pagination .page-num-current: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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  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 "Noto Sans SC";
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont h2 a span {
  font: 500 1.25rem/1.35em "Noto Sans SC";
}
@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 "Noto Sans SC";
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Noto Sans SC";
  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 .p1 {
  color: #fff;
  font: 700 3rem/1.35em "Noto Sans SC";
}
@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}
.nbanner .nbanner-wen1 .banner-cont .p2 {
  color: #fff;
  font: 700 1.625rem/1.5em "Montserrat";
  text-transform: capitalize;
}
.nbanner .nbanner-wen1 .banner-cont.hs .p1 {
  color: #000000;
}
.nbanner .nbanner-wen1 .banner-cont.hs .p2 {
  color: #1a3495;
}
.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 {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
@media (max-width: 768px) {
  .n_mbx {
    overflow-x: auto;
  }
}
.n_mbx .n_src {
  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;
}
@media (max-width: 768px) {
  .n_mbx .n_src {
    white-space: nowrap;
    display: block;
  }
}
.n_mbx .n_src li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .n_mbx .n_src li {
    -webkit-flex: auto;
       -moz-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    display: inline-block;
  }
}
.n_mbx .n_src li:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.n_mbx .n_src li a {
  display: block;
  color: #000;
  font: 500 1.125rem/3.125rem "Noto Sans SC";
  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;
  text-align: center;
}
.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 1em;
  }
}
.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  color: var(--color-zt);
  font-weight: 700;
}
.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);
}

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

@-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-tit .tit {
  color: #000;
  font: 700 2.875rem/1.35em "Noto Sans SC";
}
@media (max-width: 768px) {
  .ny-tit .tit {
    font-size: 1.8rem;
  }
}

.abt-cont1 {
  padding: var(--pandrd);
}
.abt-cont1 .abt-a1 {
  width: 45.1428571429%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1 {
    width: 100%;
  }
}
.abt-cont1 .abt-a1 .title1 {
  position: relative;
}
.abt-cont1 .abt-a1 .title1 .cont-aav {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  text-transform: uppercase;
  font-size: 7.5rem;
  line-height: 0.8em;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  font-weight: 700;
  -webkit-text-stroke-color: rgba(5, 5, 5, 0.1);
  stroke: rgba(5, 5, 5, 0.1);
  text-align: right;
  font-family: "Roboto";
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1 .title1 .cont-aav {
    font-size: 3.5rem;
  }
}
.abt-cont1 .abt-a1 .title1 .cont-aav .t1 {
  font-size: 3.75rem;
  line-height: 1em;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a1 .title1 .cont-aav .t1 {
    font-size: 1.8rem;
    line-height: 1.5em;
  }
}
.abt-cont1 .abt-a1 .p1 {
  text-indent: 2em;
  margin-top: 1.5rem;
}
.abt-cont1 .abt-a2 {
  width: 50%;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a2 {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.abt-cont1 .abt-a2 .img {
  border-radius: 1.125rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont1 .abt-a2 .img {
    border-radius: 1rem;
  }
}
.abt-cont1 .abt-a2 .img img {
  width: 100%;
}

.abt-cont2 {
  padding: var(--pandrd);
  background-repeat: no-repeat;
  -o-background-size: cover;
     background-size: cover;
  -webkit-transition: background-position cubic-bezier(0, 0, 0.35, 1) 0.5s;
  -o-transition: background-position cubic-bezier(0, 0, 0.35, 1) 0.5s;
  -moz-transition: background-position cubic-bezier(0, 0, 0.35, 1) 0.5s;
  transition: background-position cubic-bezier(0, 0, 0.35, 1) 0.5s;
}
.abt-cont2 .mySwiper2 {
  position: relative;
  margin-top: 3.25rem;
}
@media (max-width: 768px) {
  .abt-cont2 .mySwiper2 {
    margin-top: 1.5rem;
  }
}
.abt-cont2 .mySwiper2 .cont-p {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  backdrop-filter: blur(14px);
  text-align: center;
  padding: 6rem 8% 5rem;
}
@media (max-width: 768px) {
  .abt-cont2 .mySwiper2 .cont-p {
    padding: 4rem 8% 2.5rem;
  }
}
.abt-cont2 .mySwiper2 .cont-p i {
  display: block;
  font-size: 0;
  width: 5rem;
  margin: 0 auto;
}
.abt-cont2 .mySwiper2 .cont-p i img {
  width: 100%;
}
.abt-cont2 .mySwiper2 .cont-p .wenata .tit {
  color: #000000;
  font-size: 1.5rem;
  line-height: 2em;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.abt-cont2 .mySwiper2 .cont-p .wenata .p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  line-height: 1.65em;
  height: 4.95em;
  overflow: hidden;
}
@media (max-width: 768px) {
  .abt-cont2 .mySwiper2 .cont-p .wenata .p {
    height: auto;
  }
}
.abt-cont2 .mySwiper2 .swiper-pagination1 {
  margin-top: 4.375rem;
}
@media (max-width: 768px) {
  .abt-cont2 .mySwiper2 .swiper-pagination1 {
    margin-top: 1.5rem;
  }
}

.abt-cont3 {
  padding: var(--pandrd);
  background: url(../images/bj1.png) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}
.abt-cont3 .abt-a3_v1 {
  position: relative;
  z-index: 1;
}
.abt-cont3 .abt-a3_v1:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  height: 1px;
  z-index: -1;
  border-top: 1px dashed #0088E8;
}
.abt-cont3 .mySwiper3 {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url(../images/c14fbdbc397a505a8f189ab6dbbfc8f5.svg) center no-repeat;
  --heisd: 18rem;
  -o-background-size: var(--heisd);
     background-size: var(--heisd);
  padding: 0 4%;
}
@media (max-width: 768px) {
  .abt-cont3 .mySwiper3 {
    --heisd: 15rem;
  }
}
.abt-cont3 .mySwiper3 .arrow .swiper-button-prev1, .abt-cont3 .mySwiper3 .arrow .swiper-button-next1 {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 3.375rem;
  height: 3.375rem;
  line-height: 3.375rem;
  border-radius: 50%;
  background: var(--color-zt);
  text-align: center;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.abt-cont3 .mySwiper3 .arrow .swiper-button-prev1 i, .abt-cont3 .mySwiper3 .arrow .swiper-button-next1 i {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
}
.abt-cont3 .mySwiper3 .arrow .swiper-button-prev1 {
  left: 0;
}
.abt-cont3 .mySwiper3 .arrow .swiper-button-next1 {
  right: 0;
}
.abt-cont3 .mySwiper3 .swiper-slide {
  height: var(--heisd);
  position: relative;
  background: url(../images/sad1.svg) center no-repeat;
  -o-background-size: 1.125rem;
     background-size: 1.125rem;
}
.abt-cont3 .mySwiper3 .swiper-slide .time {
  font-size: 2.5rem;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  line-height: 1.5em;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 56%;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 500;
}
.abt-cont3 .mySwiper3 .swiper-slide.swiper-slide-active {
  -o-background-size: 0;
     background-size: 0;
}
.abt-cont3 .mySwiper3 .swiper-slide.swiper-slide-active .time {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .abt-cont3 .mySwiper3 .swiper-slide.swiper-slide-active .time {
    font-size: 2.25rem;
  }
}
.abt-cont3 .abt-a3_v2 {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 {
    margin-top: 1.5rem;
  }
}
.abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li {
  text-align: center;
}
.abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .tit {
  color: #1a3495;
  font-size: 1.75rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .tit {
    font-size: 1.5rem;
  }
}
.abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.25rem;
  line-height: 1.8em;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 .abt-a3_v2c1 li .p {
    font-size: 1.125rem;
  }
}

.honr_content {
  background: #ffffff;
  overflow: hidden;
  padding: 4rem 0 8rem;
}
@media (max-width: 768px) {
  .honr_content {
    padding: 2rem 0 0.75rem;
  }
}
.honr_content .honer-list {
  margin-top:3.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2.5rem;
}
@media (max-width: 768px) {
  .honr_content .honer-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  .honr_content .honer-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
.honr_content .honer-list li a.img {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .honr_content .honer-list li a.img {
    border-radius: 1rem;
    padding: 1.5rem 0;
  }
}
.honr_content .honer-list li a.img img {
  width: 80%;
}
.honr_content .honer-list li .tit {
  text-align: center;
  color: #000;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1rem;
}

.lx-cont1 {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .lx-cont1 {
    padding: 2rem 0;
  }
}
.lx-cont1 .lx-a1b1 {
  width: 39.6428571429%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b1 {
    width: 100%;
  }
}
.lx-cont1 .lx-a1b1 .cont-ab {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b1 .cont-ab {
    margin-top: 1rem;
  }
}
.lx-cont1 .lx-a1b1 .cont-ab .tit {
  color: rgba(0, 0, 0, 0.8);
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b1 .cont-ab .tit {
    font-size: 1.25rem;
  }
}
.lx-cont1 .lx-a1b1 .cont-ab .ashxdt li {
  margin-top: 1rem;
}
.lx-cont1 .lx-a1b1 .cont-ab .ashxdt li p img {
  width: 10rem;
}
.lx-cont1 .lx-a1b1 .cont-ab .ashxdt li .img {
  width: 3.5rem;
  margin-right: 0.75rem;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b1 .cont-ab .ashxdt li .img {
    width: 3rem;
  }
}
.lx-cont1 .lx-a1b1 .cont-ab .ashxdt li .img img {
  width: 100%;
}
.lx-cont1 .lx-a1b1 .cont-ab .ashxdt li p {
  color: #030303;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
  width: -webkit-calc(98% - 4.25rem);
  width: -moz-calc(98% - 4.25rem);
  width: calc(98% - 4.25rem);
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b1 .cont-ab .ashxdt li p {
    width: -webkit-calc(98% - 3.75rem);
    width: -moz-calc(98% - 3.75rem);
    width: calc(98% - 3.75rem);
  }
}
.lx-cont1 .lx-a1b2 {
  width: 57.1428571429%;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b2 {
    width: 100%;
    margin-top: 1rem;
  }
}
.lx-cont1 .lx-a1b2 #myMap {
  height: 27rem;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .lx-cont1 .lx-a1b2 #myMap {
    height: 22rem;
  }
}

.lx-cont2 {
  background: #F7F7F7;
  padding: var(--pandrd);
}
.lx-cont2 form .m_label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  position: absolute;
  left: 1em;
  line-height: 3.75rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lx-cont2 form .m_label {
    line-height: 3rem;
  }
}
.lx-cont2 form .m_label span {
  color: #F00;
}
.lx-cont2 form .msg-a1 .inpt {
  position: relative;
  width: 31.4285714286%;
}
@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt {
    width: 100%;
    margin-top: 1rem;
  }
}
.lx-cont2 form .msg-a1 .inpt input {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  line-height: 3.75rem;
  font-size: 1rem;
  color: #333;
  padding: 0 1em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 .inpt input {
    line-height: 3rem;
  }
}
.lx-cont2 form .msg-a1 {
  margin-top: 2.625rem;
}
@media (max-width: 768px) {
  .lx-cont2 form .msg-a1 {
    margin-top: 0.5rem;
  }
}
.lx-cont2 form .msg-a2 {
  margin-top: 1.75rem;
}
@media (max-width: 768px) {
  .lx-cont2 form .msg-a2 {
    margin-top: 1rem;
  }
}
.lx-cont2 form .msg-a2 .inpt {
  position: relative;
}
.lx-cont2 form .msg-a2 .inpt textarea {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  line-height: 1.5em;
  font-size: 1rem;
  color: #333;
  padding: 1em;
  font-weight: 500;
}
.lx-cont2 form .msg-a2 .inpt .m_label {
  line-height: 1.5em;
  top: 1em;
}
.lx-cont2 form .div_aghgha {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .lx-cont2 form .div_aghgha {
    margin-top: 1rem;
  }
}
.lx-cont2 form .div_aghgha button {
  border: none;
  border-radius: 0.625rem;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5em;
  background: #0088E8;
  padding: 0.78em 4em;
  border: 1px solid #0088E8;
}
.lx-cont2 form .div_aghgha button:after {
  background-color: #fff;
}
.lx-cont2 form .div_aghgha button:hover {
  color: #0088E8;
}

.lx-cont3 {
  padding: 6.25rem 0 1rem;
}
@media (max-width: 768px) {
  .lx-cont3 {
    padding: 2rem 0 0.5rem;
  }
}
.lx-cont3 .job-list1a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .lx-cont3 .job-list1a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 450px) {
  .lx-cont3 .job-list1a {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.lx-cont3 .job-list1a li {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  box-shadow: 0.25rem 1.25rem 1.5rem 0px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .lx-cont3 .job-list1a li {
    border-radius: 1rem;
  }
}
.lx-cont3 .job-list1a li .cont-sdsd {
  padding: 3.125rem 9%;
}
@media (max-width: 768px) {
  .lx-cont3 .job-list1a li .cont-sdsd {
    padding: 2rem 7%;
  }
}
.lx-cont3 .job-list1a li .cont-sdsd .name {
  color: #000000;
  font-size: 1.625rem;
  line-height: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0 0 0.4rem;
  position: relative;
}
.lx-cont3 .job-list1a li .cont-sdsd .name::after {
  content: "";
  width: 1.5em;
  background: var(--color-zt);
  height: 0.1875rem;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .lx-cont3 .job-list1a li .cont-sdsd .name {
    font-size: 1.45rem;
  }
}
.lx-cont3 .job-list1a li .cont-sdsd .p1 {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 2em;
  margin-top: 1rem;
}
.lx-cont3 .job-list1a li .cont-sdsd .p1 b {
  color: #000000;
}
.lx-cont3 .job-list1a li:hover {
  background: #0088E8;
  -o-background-size: cover;
     background-size: cover;
}
.lx-cont3 .job-list1a li:hover .cont-sdsd .name {
  color: #fff;
  border-color: #fff;
}
.lx-cont3 .job-list1a li:hover .cont-sdsd .name::after {
  background: #fff;
}
.lx-cont3 .job-list1a li:hover .cont-sdsd .p1 {
  color: #fff;
}
.lx-cont3 .job-list1a li:hover .cont-sdsd .p1 b {
  color: #fff;
}

.job-tanc.layui-layer {
  width: 45.4166666667% !important;
  border-radius: 1.25rem;
  background: #FFF;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer {
    width: 90% !important;
    border-radius: 1rem;
  }
}
.job-tanc.layui-layer .layui-layer-setwin .layui-layer-close2 {
  position: absolute;
  right: 2.2rem;
  top: 1.5rem;
  background: none;
  width: auto;
  height: auto;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .layui-layer-setwin .layui-layer-close2 {
    right: 0;
    top: 0;
  }
}
.job-tanc.layui-layer .layui-layer-setwin .layui-layer-close2:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.job-tanc.layui-layer .layui-layer-setwin .layui-layer-close2::before {
  content: "\e723";
  font-family: "iconfont" !important;
  font-size: 2rem;
  font-weight: 400;
  color: #999999;
}
.job-tanc.layui-layer .pead-cont .cont-p {
  padding: 2rem 2.75rem 3.5rem;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont .cont-p {
    padding: 1rem 1.5rem 2rem;
  }
}
.job-tanc.layui-layer .pead-cont dt {
  color: #1a3495;
  font: 600 2.25rem/1.5em "Noto Sans SC";
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont dt {
    font-size: 1.65rem;
    padding-bottom: 1rem;
  }
}
.job-tanc.layui-layer .pead-cont .tita {
  color: #1a3495;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont .tita {
    font-size: 1.125rem;
  }
}
.job-tanc.layui-layer .pead-cont .ashgxa1 p {
  width: 50%;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont .ashgxa1 p {
    font-size: 1rem;
  }
}
.job-tanc.layui-layer .pead-cont .p2 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont .p2 {
    font-size: 1rem;
  }
}
.job-tanc.layui-layer .pead-cont .p3 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a3495;
  font: 600 1.25rem/1.5em "Noto Sans SC";
  padding: 1.25rem 2.75rem 2rem;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont .p3 {
    font-size: 1rem;
    padding: 1rem 1.5rem 1.5rem;
  }
}
.job-tanc.layui-layer .pead-cont .p3 a {
  color: #1a3495;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .job-tanc.layui-layer .pead-cont .p3 a {
    font-size: 1.25rem;
  }
}

.dow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.625rem;
  margin-top: 3.625rem;
}
@media (max-width: 1024px) {
  .dow-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .dow-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.dow-list li {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: url(../images/bj2.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  box-shadow: 0.25rem 1.25rem 1.5rem 0px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .dow-list li {
    border-radius: 1rem;
  }
}
.dow-list li .cont-p {
  padding: 2rem 2.5rem;
}
@media (max-width: 768px) {
  .dow-list li .cont-p {
    padding: 1.5rem;
  }
}
.dow-list li .cont-p .img {
  width: 25.5775577558%;
}
.dow-list li .cont-p .img img {
  width: 100%;
}
.dow-list li .cont-p .cont-sdsd {
  width: 61.0561056106%;
  color: #000000;
}
@media (max-width: 768px) {
  .dow-list li .cont-p .cont-sdsd {
    width: 66.0066006601%;
  }
}
.dow-list li .cont-p .cont-sdsd .name {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5em;
}
.dow-list li .cont-p .cont-sdsd .p1 {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 2em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .dow-list li .cont-p .cont-sdsd .p1 {
    margin-top: 0.75rem;
  }
}
.dow-list li .cont-p .cont-sdsd .p1 span {
  color: #000;
  text-transform: uppercase;
}
.dow-list li .cont-p .cont-sdsd .more-a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.5rem 2.25em;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .dow-list li .cont-p .cont-sdsd .more-a {
    margin-top: 1rem;
    padding: 0.4rem 2em;
  }
}
.dow-list li:hover {
  background-image: url(../images/bj3.jpg);
}
.dow-list li:hover .cont-p .cont-sdsd {
  color: #fff;
}
.dow-list li:hover .cont-p .cont-sdsd .p1 {
  color: #fff;
}
.dow-list li:hover .cont-p .cont-sdsd .p1 span {
  color: #fff;
}
.dow-list li:hover .cont-p .cont-sdsd .more-a {
  color: #0088E8;
  font-weight: 700;
}

.shfw-cont1 {
  padding: 5.75rem 0;
}
@media (max-width: 768px) {
  .shfw-cont1 {
    padding: 2rem 0;
  }
}
.shfw-cont1 .shfw-a1list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.625rem;
}
@media (max-width: 768px) {
  .shfw-cont1 .shfw-a1list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.shfw-cont1 .shfw-a1list1 li i {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .shfw-cont1 .shfw-a1list1 li i {
    border-radius: 1rem;
  }
}
.shfw-cont1 .shfw-a1list1 li i img {
  width: 100%;
}
.shfw-cont1 .shfw-a1list1 li .wenata {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .shfw-cont1 .shfw-a1list1 li .wenata {
    margin-top: 1rem;
  }
}
.shfw-cont1 .shfw-a1list1 li .wenata .tit {
  color: #000000;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .shfw-cont1 .shfw-a1list1 li .wenata .tit {
    font-size: 1.25rem;
  }
}
.shfw-cont1 .shfw-a1list1 li .wenata .p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .shfw-cont1 .shfw-a1list1 li .wenata .p {
    font-size: 1rem;
  }
}

.shfw-cont2 {
  background: #F8F8F8;
  padding: 5.75rem 0;
}
@media (max-width: 768px) {
  .shfw-cont2 {
    padding: 2rem 0;
  }
}
.shfw-cont2 .shfw-a2b1 {
  width: 50%;
}
@media (max-width: 768px) {
  .shfw-cont2 .shfw-a2b1 {
    width: 100%;
  }
}
.shfw-cont2 .shfw-a2b1 .cont-pxc {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .shfw-cont2 .shfw-a2b1 .cont-pxc {
    margin-top: 0.5rem;
  }
}
.shfw-cont2 .shfw-a2b1 .cont-pxc .asx_list1 li {
  padding: 1.25rem 0;
}
.shfw-cont2 .shfw-a2b1 .cont-pxc .asx_list1 li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.shfw-cont2 .shfw-a2b1 .cont-pxc .asx_list1 li .tit1 {
  color: #1a3495;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .shfw-cont2 .shfw-a2b1 .cont-pxc .asx_list1 li .tit1 {
    font-size: 1.25rem;
  }
}
/* .shfw-cont2 .shfw-a2b1 .cont-pxc .asx_list1 li .tit1::before {
  content: "·";
  margin-right: 0.25rem;
} */
.shfw-cont2 .shfw-a2b1 .cont-pxc .asx_list1 li p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 0.25rem;
}
.shfw-cont2 .shfw-a2b2 {
  width: 46.4285714286%;
}
@media (max-width: 768px) {
  .shfw-cont2 .shfw-a2b2 {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.shfw-cont2 .shfw-a2b2 .img {
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .shfw-cont2 .shfw-a2b2 .img {
    border-radius: 1rem;
  }
}
.shfw-cont2 .shfw-a2b2 .img img {
  width: 100%;
}

.news-content {
  padding: 4.8125rem 0 1rem;
}
@media (max-width: 768px) {
  .news-content {
    padding: 2rem 0 0.5rem;
  }
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
}
@media (max-width: 768px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.news-list li a.cont-p {
  border-radius: 1.25rem;
  background: #F6F6F6;
  padding: 1.25rem;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
  display: block;
}
.news-list li a.cont-p .img {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.news-list li a.cont-p .img img {
  width: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.news-list li a.cont-p .cont-xta {
  width: 100%;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .news-list li a.cont-p .cont-xta {
    padding-bottom: 0;
  }
}
.news-list li a.cont-p .cont-xta .tit {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
}
.news-list li a.cont-p .cont-xta .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.8em;
  margin: 0.5rem 0 1rem;
}
@media (max-width: 768px) {
  .news-list li a.cont-p .cont-xta .p1 {
    margin: 0.5rem 0 0.75rem;
  }
}
.news-list li a.cont-p .cont-xta .date {
  color: rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.8em;
  font-weight: 500;
}
.news-list li a.cont-p:hover {
  background: #1a3495;
}
.news-list li a.cont-p:hover .img 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);
}
.news-list li a.cont-p:hover .cont-xta .tit {
  color: #fff;
}
.news-list li a.cont-p:hover .cont-xta .p1 {
  color: rgba(255, 255, 255, 0.7);
}
.news-list li a.cont-p:hover .cont-xta .date {
  color: rgba(255, 255, 255, 0.21);
}

.show-news-content {
  padding: 4.75rem 0;
}
@media (max-width: 768px) {
  .show-news-content {
    padding: 2rem 0;
  }
}
.show-news-content .show-news-a1_v1 {
  width: 64.2857142857%;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 {
    width: 100%;
  }
}
.show-news-content .show-news-a1_v1 .title-a {
  color: #000000;
  font-size: 2.25rem;
  line-height: 1.1em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-a {
    font-size: 1.5rem;
    line-height: 1.5em;
  }
}
.show-news-content .show-news-a1_v1 .date-a-xa {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .date-a-xa {
    margin-top: 0.35rem;
  }
}
.show-news-content .show-news-a1_v1 .date-a {
  font-size: 1rem;
  line-height: 2em;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
}
.show-news-content .show-news-a1_v1 .date-a span {
  color: rgba(0, 0, 0, 0.8);
}
.show-news-content .show-news-a1_v1 .fen-xiang {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
}
.show-news-content .show-news-a1_v1 .fen-xiang .social-share a {
  color: #D1D1D1;
  border-color: #D1D1D1;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1rem;
}
.show-news-content .show-news-a1_v1 .fen-xiang .social-share a:hover {
  background: #000;
  color: #fff;
}
.show-news-content .show-news-a1_v1 .xinwn-consss {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.6em;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  padding: 1.5rem 0 2rem;
  margin-top: 0.65rem;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .xinwn-consss {
    padding: 1rem 0 1.5rem;
  }
}
.show-news-content .show-news-a1_v1 .xinwn-consss img {
  border-radius: 1.25rem;
}
.show-news-content .show-news-a1_v1 .pain {
  padding-top: 1rem;
}
.show-news-content .show-news-a1_v1 .pain .prev, .show-news-content .show-news-a1_v1 .pain .next {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .pain .prev, .show-news-content .show-news-a1_v1 .pain .next {
    padding: 0.25rem 0;
  }
}
.show-news-content .show-news-a1_v1 .pain .prev a, .show-news-content .show-news-a1_v1 .pain .next a {
  color: #000000;
}
.show-news-content .show-news-a1_v1 .pain .prev a:hover, .show-news-content .show-news-a1_v1 .pain .next a:hover {
  color: var(--color-zt);
}
.show-news-content .show-news-a1_v2 {
  width: 28.7142857143%;
}
@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 {
    display: none;
  }
}
.show-news-content .show-news-a1_v2 .title-a {
  color: #000000;
  font-size: 1.75rem;
  line-height: 1.6em;
  font-weight: 700;
}
.show-news-content .show-news-a1_v2 .xw_liast1 {
  margin-top: 1.5rem;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li a.img {
  display: block;
  font-size: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li a.img img {
  width: 100%;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li .cont-p {
  padding: 1.5rem 0;
  border-bottom: 1px solid #DBDBDB;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li .cont-p a.tit {
  display: block;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 600;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li .cont-p a.tit:hover {
  color: var(--color-zt);
}
.show-news-content .show-news-a1_v2 .xw_liast1 li .cont-p .p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.5em;
  margin: 0.35em 0 0.65em;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li .cont-p span {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
}
.show-news-content .show-news-a1_v2 .xw_liast1 li:not(:nth-child(1)) a.img {
  display: none;
}

.news-content1 {
  padding: 3.75rem 0 1rem;
}
@media (max-width: 768px) {
  .news-content1 {
    padding: 2rem 0 0.5rem;
  }
}
.news-content1 .news-list1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.375rem;
}
@media (max-width: 768px) {
  .news-content1 .news-list1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 450px) {
  .news-content1 .news-list1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.news-content1 .news-list1 li a.cont-p {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  box-shadow: 0.25rem 1.25rem 1.5rem 0px rgba(0, 0, 0, 0.04);
  padding: 2rem 5%;
  display: block;
}
.news-content1 .news-list1 li a.cont-p .tit {
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0.25rem 0 0.75rem;
}
.news-content1 .news-list1 li a.cont-p .tit::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5em;
  height: 2px;
  background: #1a3495;
}
.news-content1 .news-list1 li a.cont-p .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1rem;
}
.news-content1 .news-list1 li a.cont-p .date {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 1.5rem;
  font-family: "Montserrat";
  font-weight: 500;
}
.news-content1 .news-list1 li a.cont-p:hover {
  background: var(--color-zt);
}
.news-content1 .news-list1 li a.cont-p:hover .tit {
  color: var(--color-bs);
  border-color: #fff;
}
.news-content1 .news-list1 li a.cont-p:hover .tit::before {
  background: var(--color-bs);
}
.news-content1 .news-list1 li a.cont-p:hover .p1 {
  color: var(--color-bs);
}
.news-content1 .news-list1 li a.cont-p:hover .date {
  color: var(--color-bs);
}

.product-list li {
  padding: 5.625rem 0;
}
@media (max-width: 768px) {
  .product-list li {
    padding: 2.25rem 0;
  }
}
.product-list li:nth-child(2n-1) {
  background: url(../images/bj4.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}
.product-list li .cont-p {
  width: 42.1428571429%;
}
@media (max-width: 768px) {
  .product-list li .cont-p {
    width: 100%;
  }
}
.product-list li .cont-p .tit {
  color: #0088E8;
  font-size: 2.875rem;
  line-height: 1.4em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .product-list li .cont-p .tit {
    font-size: 1.8rem;
  }
}
.product-list li .cont-p .tit p {
  font-weight: 400;
  color: #000000;
}
.product-list li .cont-p .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin: 1rem 0 2rem;
}
@media (max-width: 768px) {
  .product-list li .cont-p .p1 {
    margin: 0.5rem 0 1rem;
  }
}
.product-list li .img {
  width: 48.5714285714%;
  display: block;
  font-size: 0;
}
@media (max-width: 768px) {
  .product-list li .img {
    width: 100%;
  }
}
.product-list li .img img {
  width: 100%;
}
.product-list li:nth-child(2n) .cont-p {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 768px) {
  .product-list li:nth-child(2n) .cont-p {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.pro-show-cont1 {
  background: url(../images/bj5.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding: 11rem 0 0;
}
@media (max-width: 768px) {
  .pro-show-cont1 {
    padding: 2rem 0 0;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
  width: 42.1428571429%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tit1 {
  color: #0088E8;
  font-size: 2.875rem;
  line-height: 1.4em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tit1 {
    font-size: 1.8rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .tit1 p {
  font-weight: 400;
  color: #000000;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .rhahs_a i {
  display: block;
  width: 3.5rem;
  margin-right: 0.75rem;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .rhahs_a i {
    width: 2.85rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .rhahs_a i img {
  width: 100%;
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .rhahs_a p {
  color: #0088E8;
  font-size: 2rem;
  line-height: 2em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .rhahs_a p {
    font-size: 1.5rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .txt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin: 1rem 0 2rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .pro-show-a1b1 .txt {
    margin: 0.5rem 0 1rem;
  }
}
.pro-show-cont1 .pro-show-a1v1 .img_tup {
  width: 48.5714285714%;
}
@media (max-width: 768px) {
  .pro-show-cont1 .pro-show-a1v1 .img_tup {
    width: 100%;
  }
}
.pro-show-cont1 .pro-show-a1v1 .img_tup img {
  width: 100%;
}

.pro-show-cont2 {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .pro-show-cont2 {
    padding: 2rem 0;
  }
  .pro-show-cont2 .ny-tit .tit {
    text-wrap: balance;
  }
}
.pro-show-cont2 .pro-show-a2v1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 {
    margin-top: 1.25rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b1 {
  width: 42.7142857143%;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b1 {
    width: 100%;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b1 .img img {
  width: 100%;
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b1 p {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1.25rem;
  line-height: 1.5em;
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 {
  width: 49.7142857143%;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li {
  color: #000000;
  font-size: 1.25rem;
  cursor: pointer;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li {
    font-size: 1.125rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li span {
  display: inline-block;
  position: relative;
  line-height: 3.2rem;
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  bottom: 0;
  background: #0088E8;
  height: 2px;
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li.on {
  color: #0088E8;
  font-weight: 700;
  font-size: 1.625rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li.on {
    font-size: 1.35rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast1 li.on span::after {
  width: 100%;
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 {
    margin-top: 1rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .tita1 {
  color: #0088E8;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .tita1 {
    font-size: 1.8rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .tita2 {
  color: #000000;
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 1.35em;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .tita2 {
    font-size: 1.8rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .p1 {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .p1 {
    margin-top: 0.75rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .p1 p {
  padding-left: 1em;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.375rem;
  line-height: 2em;
}
@media (max-width: 768px) {
  .pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .p1 p {
    font-size: 1.125rem;
  }
}
.pro-show-cont2 .pro-show-a2v1 .pro-show-a2b2 .ast2 li .p1 p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}

.pro-show-cont3 {
  background: #E6F4FF;
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .pro-show-cont3 {
    padding: 2rem 0;
  }
}
.pro-show-cont3 .mySwiper4 {
  padding: 0 1px;
  margin-top: 2.8125rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 .mySwiper4 {
    margin-top: 1.25rem;
  }
}
.pro-show-cont3 .mySwiper4 .swiper-slide .over {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.pro-show-cont3 .mySwiper4 .swiper-slide .over img {
  width: 100%;
}
.pro-show-cont3 .mySwiper4 .swiper-slide .name {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-top: 1rem;
}
.pro-show-cont3 .mySwiper4 .swiper-pagination1 {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont3 .mySwiper4 .swiper-pagination1 {
    margin-top: 1.25rem;
  }
}
.pro-show-cont3.show-case-cont2 {
  background: #F8F8F8;
}

.pro-show-cont4 {
  padding: 6.25rem 0;
  background: #F8F8F8;
}
@media (max-width: 768px) {
  .pro-show-cont4 {
    padding: 2rem 0;
  }
}
.pro-show-cont4 .paggs1 {
  overflow-x: auto;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .pro-show-cont4 .paggs1 {
    margin-top: 1.25rem;
  }
}
.pro-show-cont4 .paggs1 table {
  min-width: 768px;
  border: none;
}
.pro-show-cont4 .paggs1 table tr {
  background: #fff;
}
.pro-show-cont4 .paggs1 table tr:nth-child(2n-1) {
  background: #E6F4FF;
}
.pro-show-cont4 .paggs1 table tr:first-child {
  background: #1a3495;
}
.pro-show-cont4 .paggs1 table tr:first-child td {
  color: #FFFFFF;
}
.pro-show-cont4 .paggs1 table tr td {
  border: none;
  color: #000000;
  font-weight: 500;
  font-size: 1rem;
}
.pro-show-cont4 .paggs1 table tr td:first-child {
  padding-left: 2em;
}
.pro-show-cont4 .paggs1 table tr td:not(:first-child) {
  text-align: center;
}

.pro-show-cont5 {
  padding: 6.25rem 0 1rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 {
    padding: 2rem 0 1rem;
  }
}
.pro-show-cont5 .p1-txt {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1.6rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p1-txt {
    margin-top: 1.5rem;
  }
}
.pro-show-cont5 .p2-txt {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p2-txt {
    margin-top: 1.25rem;
  }
}
.pro-show-cont5 .p2-txt .p2-txta1 {
  width: 31.4285714286%;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p2-txt .p2-txta1 {
    width: 100%;
  }
}
.pro-show-cont5 .p2-txt .p2-txta1 .tita1 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 2.875rem;
  line-height: 1.4em;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p2-txt .p2-txta1 .tita1 {
    font-size: 1.8rem;
  }
}
.pro-show-cont5 .p2-txt .p2-txta1 .tita1 .tit2 {
  color: #0088E8;
  font-weight: 700;
}
.pro-show-cont5 .p2-txt .p2-txta1 .p1 {
  margin-top: 1.5rem;
  max-height: 29rem;
  overflow-y: auto;
}
.pro-show-cont5 .p2-txt .p2-txta1 .p1::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}
.pro-show-cont5 .p2-txt .p2-txta1 .p1::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
}
.pro-show-cont5 .p2-txt .p2-txta1 .p1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p2-txt .p2-txta1 .p1 {
    margin-top: 1rem;
    max-height: inherit;
  }
}
.pro-show-cont5 .p2-txt .p2-txta1 .p1 p {
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.375rem;
  line-height: 2em;
  padding-left: 1em;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p2-txt .p2-txta1 .p1 p {
    font-size: 1.25rem;
    line-height: 1.75em;
  }
}
.pro-show-cont5 .p2-txt .p2-txta1 .p1 p::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.pro-show-cont5 .p2-txt .p2-txta2 {
  width: 54.2857142857%;
}
@media (max-width: 768px) {
  .pro-show-cont5 .p2-txt .p2-txta2 {
    width: 100%;
  }
}
.pro-show-cont5 .p2-txt .p2-txta2 img {
  width: 100%;
}

.pro-show-cont6 {
  padding: 6.25rem 0;
  background: #F8F8F8;
}
@media (max-width: 768px) {
  .pro-show-cont6 {
    padding: 2rem 0;
  }
}
.pro-show-cont6 .mySwiper6 {
  margin-top: 3.125rem;
  padding: 0 1px;
}
@media (max-width: 768px) {
  .pro-show-cont6 .mySwiper6 {
    margin-top: 1.5rem;
  }
}
.pro-show-cont6 .mySwiper6 .swiper-slide .con-p {
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .pro-show-cont6 .mySwiper6 .swiper-slide .con-p {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
}
.pro-show-cont6 .mySwiper6 .swiper-slide .con-p .tit1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 0 0 1rem;
}
.pro-show-cont6 .mySwiper6 .swiper-slide .con-p .tit1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 2em;
  height: 2px;
  background: #0088E8;
}
.pro-show-cont6 .mySwiper6 .swiper-slide .con-p .tit1 .tit {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
}
.pro-show-cont6 .mySwiper6 .swiper-slide .con-p .tit1 b {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #1a3495;
  font-family: "Roboto";
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1em; /* 65.217% */
  text-transform: capitalize;
  color: transparent;
  display: block;
}
.pro-show-cont6 .mySwiper6 .swiper-slide .con-p .p1 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.65em;
  margin-top: 1.5rem;
  height: 4.95em;
  overflow: hidden;
}

.case-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .case-list li {
    padding: 1.5rem 0;
  }
}
.case-list li a.img {
  display: block;
  width: 45.7142857143%;
  border-radius: 1.125rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .case-list li a.img {
    width: 100%;
    border-radius: 1rem;
  }
}
.case-list li a.img img {
  width: 100%;
}
.case-list li .cont-p {
  width: 49.4285714286%;
}
@media (max-width: 768px) {
  .case-list li .cont-p {
    width: 100%;
    margin-top: 1.125rem;
  }
}
.case-list li .cont-p .tit {
  color: #000000;
  font-size: 1.625rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .case-list li .cont-p .tit {
    font-size: 1.35rem;
  }
}
.case-list li .cont-p .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.85em;
  font-weight: 400;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .case-list li .cont-p .p1 {
    margin-top: 0.5rem;
  }
}
.case-list li .cont-p .wer-xas {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .case-list li .cont-p .wer-xas {
    margin-top: 0.75rem;
  }
}

.show-case-cont1 {
  padding: 10rem 0 7.125rem;
}
@media (max-width: 768px) {
  .show-case-cont1 {
    padding: 2rem 0;
  }
}
.show-case-cont1 .show-case-a1 {
  width: 44.2857142857%;
}
@media (max-width: 768px) {
  .show-case-cont1 .show-case-a1 {
    width: 100%;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1rem;
  }
}
.show-case-cont1 .show-case-a1 .tit1 {
  color: #0088E8;
  font-size: 2.875rem;
  line-height: 1.4em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .show-case-cont1 .show-case-a1 .tit1 {
    font-size: 1.8rem;
  }
}
.show-case-cont1 .show-case-a1 .txt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.36rem;
  line-height: 1.65em;
  margin: 1rem 0 2rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .show-case-cont1 .show-case-a1 .txt {
    margin: 0.5rem 0 1rem;
  }
}
.show-case-cont1 .show-case-a1 .rhahs_a i {
  display: block;
  width: 3.5rem;
  margin-right: 0.75rem;
}
@media (max-width: 768px) {
  .show-case-cont1 .show-case-a1 .rhahs_a i {
    width: 2.85rem;
  }
}
.show-case-cont1 .show-case-a1 .rhahs_a i img {
  width: 100%;
}
.show-case-cont1 .show-case-a1 .rhahs_a p {
  color: #0088E8;
  font-size: 2rem;
  line-height: 2em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .show-case-cont1 .show-case-a1 .rhahs_a p {
    font-size: 1.5rem;
  }
}
.show-case-cont1 .show-case-a2 {
  width: 50.7142857143%;
}
@media (max-width: 768px) {
  .show-case-cont1 .show-case-a2 {
    width: 100%;
  }
}
.show-case-cont1 .show-case-a2 .img img {
  width: 100%;
}
.show-case-cont1 .show-case-a2 .imgrtx {
  overflow: hidden;
  border-radius: 1.125rem;
}
.show-case-cont1 .show-case-a2 .mySwiper5 {
  overflow: hidden;
  border-radius: 1.125rem;
}
.show-case-cont1 .show-case-a2 .mySwiper5 .swiper-slide .img {
  padding-bottom: 66%;
  width: 100%;
  position: relative;
  height: 0;
}
.show-case-cont1 .show-case-a2 .mySwiper5 .swiper-slide .img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.show-case-cont1 .show-case-a2 .swiper-pagination1 {
  margin-top: 1.5rem;
}

.show-case-cont4 {
  padding: 0 0 7.125rem;
}
@media (max-width: 768px) {
  .show-case-cont4 {
    padding-bottom: 2rem;
  }
}
.show-case-cont4 .title1 .tit {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .show-case-cont4 .title1 .tit {
    font-size: 1.65rem;
  }
  .index_one .product_list .product_item .text {height:5rem;}
}
.show-case-cont4 .p1 {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
  margin: 1rem 0 2rem;
  text-align: justify;
}
.index_one {
  padding: 8.3125rem 0;
}
.bgf7 {
    background: #F7F7F7;
}
.index_one .tabbox ul li {
  padding: 0 0.625rem;
  font-size:1.26rem;
}
.index_one .tabbox ul li.active {
  color: #1a3495;
}
.index_one .tabbox ul li:hover {
  color: #1a3495;
  cursor: pointer;
}
.index_one .product_list.product_tab {
  display: none;
}
.index_one .product_list.product_tab2 {
  display: none;
}
.index_one .product_list.active {
  display: block;
}
.index_one .product_list.activeflex.active {
  display: flex;
}
.about_pro  .product_item{
      border-radius: 1.25rem;
  background: #f5f5f5;
  padding:1.5625rem 1.875rem 2.1875rem; 
  overflow: hidden;
}
.index_one .product_list .product_item {
  border-radius: 1.25rem;
  background: #FFF;
  padding: 1.4625rem 1.2rem 2.0875rem;
 
  min-width: 23%;
  overflow: hidden;
      height: 100%;
}
.about_pro  .product_item .img,
.index_one .product_list .product_item .img {
  text-align: center;
  padding-bottom: 1.375rem;
}
.about_pro  .product_item .img .over,
.index_one .product_list .product_item .img .over {
  /*height: 15.625rem;*/
}
.about_pro  .product_item .img .over img,
.index_one .product_list .product_item .img .over img {
  height: 100%;
  width: auto;
}
.index_one .subtitle {
    margin-top: 1.25rem;
    font-size: 1.125rem;
        color: #565656;
}
.index_one .product_list .product_item .text,
.about_pro  .product_item .text{
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
  height: 4rem;
}
.margin .swiper_btn {
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}
.index_one .product_list .product_item .text p ,
.about_pro  .product_item .text p{
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  font-size: 1.23rem;
}
.about_pro  .product_item:hover .text p,
.index_one .product_list .product_item:hover .text p {
  color: #1a3495;
}
.about_pro  .product_item:hover .img .over img,
.index_one .product_list .product_item:hover .img .over img {
  transform: scale(1.1);
}
.index_one .product_list .swiper {
  margin: 0 -0.9375rem;
  overflow: hidden;
}
.index_one .product_list .swiper .swiper-slide {
  padding: 0 0.9375rem;
}
.see-more.borcf .button {
  border: 0.0625rem solid #fff;
}
.see-more.borcf .button span {
  color: #fff;
}
.see-more--centered {
  text-align: center;
}
.button--white {
  background-color: #fff;
  color: #052E45;
  position: relative;
}
.button {
  height: 3.5rem;
  line-height: 1.5rem;
  border: 0.0625rem solid rgba(5, 46, 69, 0.25);
  padding-right: 4.0625rem;
  padding-left: 1.875rem;
  border-radius: 1.875rem;
  color: #052E45;
  transition: color ease 0.3s;
  background: 0 0;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 100%;
}
.button::before {
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #1a3495;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
  content: "";
}
.button > span:first-child {
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size:1rem;
}
.button .button__arrow {
  width: 3.375rem;
  height: 3.375rem;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.button:hover {
  color: #1a3495;
}
.button:hover::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.button:hover .button__arrow {
  color: #fff;
}
.MicrosoftMap .Infobox .infobox-body {width:260px !important;}

@media (max-width: 990px) {
	.index_one .left {
		top: 80px;
	}
}
@media (max-width: 767px) {
	.index_one {
		padding: 30px 0;
	}
	.index_one .left {
    padding-right: 15px;
    margin-bottom: 20px;
    position: static;
  }
  .index_one .line4 {
    -webkit-line-clamp: 2;
  }
  .index_one .name {
    font-size: 16px;
    margin: 10px 0 0;
  }
  .index_one .right {
    padding-left: 15px;
  }
  .index_one .right ul {
    margin: 0 -7px;
  }
  .index_one .right ul li {
    padding: 0 7px;
    margin-bottom: 20px;
  }
  .index_one .content {
    padding-bottom: 30px;
  }
  .index_one .left .content {
    padding-bottom: 0;
  }
  .index_one .content {
    padding-bottom: 15px;
  }
  .title.mb40 {
      margin-bottom: 20px;
  }.about_pro .product_item ,
  .index_one .product_list .product_item{
    border-radius: 5px; 
    padding: 8px 8px 15px;
  }
  .index_one .product_list.product_tab>div {
      padding: 0 6px;
  }
  .index_one .product_list.product_tab {
      margin: 20px -6px 0;
  }.index_one .product_list .product_item {
      margin-bottom: 15px;
  }
  .index_one .tabbox .tab_ul {
      margin-top: 20px;
      line-height: 30px;
  }.index_one .product_list .product_item .text, .about_pro .product_item .text {
      padding-top: 10px;
  }.about_pro .product_item .img, .index_one .product_list .product_item .img {
      padding-bottom: 8px;
  }.index_one .tabbox ul li {
    padding: 0 0.625rem;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-bottom: 5px;
    margin: 0 5px 5px;
}.index_one .tabbox ul  {
    justify-content: center;
}
.index_one .product_list .product_item .img .over img {
  height: 140px;
  width: auto;
  object-fit: contain;
}
}