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

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

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

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

@font-face {
  font-family: 'sss';
  src: url(../images/sss.ttf);
}

p {
  padding: 0;
  margin: 0;
}

.wh {
  padding: 0 13.54167%;
}

@media (max-width: 1366px) {
  .wh {
    padding: 0 5.78125%;
  }
}

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

.wh1 {
  padding: 0 2.60417%;
  margin: 0 auto;
}

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

.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: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 500 1rem/3.125rem "sourcehansans";
  width: 10rem;
  text-align: center;
  border-radius: 1.5625rem;
  -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.2rem;
    width: 7.3rem;
    font-size: .875rem;
  }
}

.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  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.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
  -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: #333;
}

.more-msl:hover::before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
   -ms-transform: scale(2);
    -o-transform: scale(2);
       transform: scale(2);
}

.more-msla {
  display: inline-block;
  color: #939292;
  border: 1px solid #939292;
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 500 1rem/3.125rem "sourcehansans";
  width: 10rem;
  text-align: center;
  border-radius: 1.5625rem;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
}

@media (max-width: 768px) {
  .more-msla {
    line-height: 2.2rem;
    width: 7.3rem;
    font-size: .875rem;
  }
}

.more-msla:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #939292;
  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.3s;
  -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}

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

.more-msla:hover::before {
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
   -ms-transform: scale(2);
    -o-transform: scale(2);
       transform: scale(2);
}

@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.a {
    padding-bottom: 80%;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 999;
}

.head .head2 {
  line-height: 5.1875rem;
  background: rgba(255, 255, 255, 0.8);
}

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

.head .head2 .logo a img {
  height: 2.1875rem;
}

.head .head2 .hjerhha {
  margin: 0 1em 0 2em;
}

.head .head2 .hjerhha i {
  display: inline-block;
  width: 1.15rem;
}

.head .head2 .hjerhha i img {
  -webkit-transform: translateY(-2px);
     -moz-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
       -o-transform: translateY(-2px);
          transform: translateY(-2px);
}

.head .head2 .hjerhha a {
  color: #000;
  font-size: 1rem;
  margin-right: 0.3em;
}

.head .head2 .hjerhha a:hover {
  color: #26713A;
}

.head .head2 .sska i {
  color: #000;
  font-size: 1.15rem;
}

.head .sskbj {
  display: none;
}

.head .searchbox {
  border-top: 2px solid #26713A;
  top: 5.1875rem;
}

.head .serbtn {
  background: #26713A;
}

.zywena {
  text-align: center;
}

.zywena a {
  display: inline-block;
  color: #000;
  font: 600 1.25rem/1.5em "sourcehansans";
  padding: 1em;
}

.zywena a:hover {
  color: #26713A;
}

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

#menu .nav_a1 li + li {
  margin-left: 1.5rem;
}

@media (max-width: 1200px) {
  #menu .nav_a1 li + li {
    margin-left: 1vw;
  }
}

#menu .nav_a1 li a {
  display: block;
  color: #000000;
  font-family: "sourcehansans";
}

#menu .nav_a1 li > a {
  font-size: 1rem;
  position: relative;
  padding: 0 1em;
}

#menu .nav_a1 li > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  left: 0;
  bottom: -12px;
}

#menu .nav_a1 li > a::before {
  content: "";
  width: 0;
  height: 2px;
  background: #26713A;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

#menu .nav_a1 li .sec {
  position: absolute;
  top: -webkit-calc(100% + 12px);
  top: -moz-calc(100% + 12px);
  top: calc(100% + 12px);
  width: 150%;
  left: -25%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
  text-align: center;
  padding: 0.5em 0;
  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);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

#menu .nav_a1 li .sec a {
  font: 500 .875rem/1.5em "";
  padding: 0.5em 0;
  color: #333;
}

#menu .nav_a1 li .sec a:hover {
  color: #26713a;
}

#menu .nav_a1 li .sec:after {
  content: '';
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border-width: 10px;
  cursor: pointer;
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
  border-top: none;
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  z-index: 99;
}

#menu .nav_a1 li:hover > a::before {
  width: 100%;
}

#menu .nav_a1 li:hover .sec {
  opacity: 1;
  visibility: visible;
  -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: #26713A;
}

/*手机端头部*/
.mslm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
  background: #000;
}

.mslm-head-box {
  position: relative;
  height: 60px;
}

.mslm-head-box .mslm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}

.mslm-head-box .mslm-logo h1, .mslm-head-box .mslm-logo a {
  display: inline;
  font-size: 0;
}

.mslm-head-box .mslm-logo img {
  height: 34px;
}

.mslm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}

.mslm-navbtn span, .mslm-navbtn:after, .mslm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.mslm-navbtn span {
  margin: 4.5px 0;
}

.mslm-navbtn:after, .mslm-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%;
}

.mslm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

.mslm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mslm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mslm-search-btn {
  position: absolute;
  z-index: 9;
  right: 4%;
  top: 0;
  bottom: 0;
  width: auto;
  text-align: center;
  line-height: 60px;
  color: #fff;
}

.mslm-search-btn span {
  font-size: .75rem;
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: top;
}

.mslm-search-btn .iconfont {
  font-size: 21px;
}

.mslm-search-btn .icon-font {
  display: block;
  width: 100%;
  height: 100%;
}

.mslm-search-btn .icon-font:after {
  background-position: -30px -210px;
}

.mslm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #fff;
}

.mslm-menu .mslm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}

.mslm-nav > li {
  border-bottom: 1px solid #E9E9E9;
  position: relative;
}

.mslm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #333333;
  font-family: "sourcehansans";
  padding: 0 4%;
}

.mslm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid #E9E9E9;
}

.mslm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #333333;
  line-height: 35px;
}

.mslm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.mslm-nav .mslm-menu-jt {
  position: absolute;
  width: 20%;
  height: 50px;
  line-height: 50px;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 9;
}

.mslm-nav .mslm-menu-jt .icon-font {
  display: block;
  width: 100%;
  height: 100%;
}

.mslm-nav .mslm-menu-jt .icon-font:after {
  background-position: -30px -240px;
}

.mslm-nav .mslm-menu-jt.clicked .icon-font:after {
  background-position: -30px -270px;
}

.mslm-nav .mslm-sub-menu {
  background: #1E1E1E;
  display: none;
}

.mslm-nav .mslm-sub-menu > li {
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
}

.mslm-nav .mslm-sub-menu > li > a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 40px;
  text-indent: 2em;
}

.mslm-search {
  position: fixed;
  z-index: 99999;
  left: 100%;
  bottom: 0;
  top: 60px;
  width: 100%;
  background: #fff;
  padding: 0 0 0;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.mslm-search .mslm-search-close-btn {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

@media (max-width: 420px) {
  .mslm-search .mslm-search-close-btn {
    left: 15px;
  }
}

.mslm-search .mslm-search-close-btn i {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  font-size: 24px;
}

.mslm-search .mslm-search-close-btn i:after {
  background-position: -30px -300px;
}

.mslm-search .mslm-search-box {
  height: 52px;
  border-bottom: 2px solid #E9E9E9;
}

.mslm-search .mslm-search-box input[type="text"] {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #333333;
  font-family: "sourcehansans";
  font-size: 14px;
  height: 52px;
  text-indent: 1em;
}

.mslm-search .mslm-search-box input[type="text"]::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #333333;
  font-family: "sourcehansans";
}

.mslm-search .mslm-search-box input[type="text"]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #333333;
  font-family: "sourcehansans";
}

.mslm-search .mslm-search-box input[type="text"]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #333333;
  font-family: "sourcehansans";
}

.mslm-search .mslm-search-box input[type="text"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
  font-family: "sourcehansans";
}

.mslm-search .mslm-search-box #s_btn {
  width: 20%;
  height: 52px;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 0;
  background: none;
  border: none;
}

.mslm-search .mslm-search-box #s_btn .iconfont {
  font-size: 20px;
  color: #fff;
}

.mslm-search .mslm-search-box #s_btn .icon-font {
  display: block;
  width: 100%;
  height: 100%;
}

.mslm-search .mslm-search-box #s_btn .icon-font:after {
  background-position: -30px -210px;
}

.mslm-search .mslm-seaerch-wz span,
.mslm-search .mslm-seaerch-wz a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mslm-search.clicked {
  left: 0;
}

.aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
}

.mslm-nav li > a {
  font-weight: 600;
}

.mslm-nav li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "sourcehansans";
  font-weight: 500;
}

a.jjta {
  color: #fff;
}

a.jjta span {
  font-size: 14px;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}

.pc-banner {
  position: relative;
}

.pc-banner .jtaaz > div {
  position: absolute;
  z-index: 9;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pc-banner .jtaaz .swiper-button-prev1 {
  left: 4%;
}

.pc-banner .jtaaz .swiper-button-next1 {
  right: 4%;
}

.pc-banner .jtaaz i {
  color: #fff;
  font-size: 3rem;
}

.pc-banner .mySwipera {
  height: 100%;
}

.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}

.pc-banner .banner-wen {
  width: 100%;
  z-index: 99;
  top: 64%;
}

@media (max-width: 990px) {
  .pc-banner .banner-wen {
    top: 50%;
  }
  .pc-banner .banner-wen .wh {
    padding: 0 15%;
  }
}

.pc-banner .banner-wen .banner-cont {
  color: #fff;
}

.pc-banner .banner-wen .banner-cont h2 {
  font: 600 3.125rem/1.3em "sourcehansans";
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.pc-banner .banner-wen .banner-cont .dl {
  padding: 1em 0;
}

.pc-banner .banner-wen .banner-cont .dl dd {
  font: 500 1.4rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .pc-banner .banner-wen .banner-cont .ban-wen2 {
    float: none;
  }
  .pc-banner .banner-wen .banner-cont .ban-wen2 h2 {
    font-size: 1.35rem;
  }
  .pc-banner .banner-wen .banner-cont .ban-wen2 .dl dd {
    font-size: 1rem;
  }
}

@-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);
  }
}

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

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

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

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

.zmfd {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 15s;
  /*动画所花费的时间*/
}

.banerhs-img .banimg1 {
  width: 15.26042%;
  position: absolute;
  right: 0;
  top: 0;
}

.banerhs-img .banimg2 {
  width: 40.9375%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@-webkit-keyframes run {
  from {
    bottom: 40px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

@-moz-keyframes run {
  from {
    bottom: 40px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

@-o-keyframes run {
  from {
    bottom: 40px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

@keyframes run {
  from {
    bottom: 40px;
    opacity: 0;
  }
  to {
    bottom: 20px;
    opacity: 1;
  }
}

.kajjt {
  text-align: center;
  -webkit-animation: run 1s infinite linear;
     -moz-animation: run 1s infinite linear;
       -o-animation: run 1s infinite linear;
          animation: run 1s infinite linear;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 2%;
  z-index: 99;
}

.kajjt i {
  width: 1.0625rem;
  display: inline-block;
}

.kajjt i img {
  width: 100%;
}

.kajjt span {
  display: block;
  color: #fff;
  font: 500 .875rem/1.5em "sourcehansans";
}

.fp-scrollable .fp-section, .fp-scrollable .fp-slide {
  height: auto;
}

#menua {
  position: fixed;
  right: 0.5%;
  top: 40%;
  z-index: 99;
  background: rgba(38, 113, 58, 0.8);
  border-radius: 3rem;
  padding: 1rem 0.5rem;
  display: none;
}

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

#menua li a {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: .5625rem;
  font-weight: 600;
  line-height: 2.7em;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

#menua li a::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: #000;
  vertical-align: middle;
  margin-left: 0.3em;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  display: none;
}

#menua li.active a {
  color: #fff;
  font-weight: 600;
}

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

.title_a1 h2 {
  color: #000000;
  font: 500 2.1rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .title_a1 h2 {
    font-size: 1.5rem;
  }
}

.title_a1 p {
  color: #26713A;
  font: 500 2rem/1.1em "sourcehansans";
}

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

.title_a1 p::after {
  content: "";
  display: block;
  width: 4.75rem;
  height: 2px;
  background: #26713A;
  margin: 0.4em 0;
}

@media (max-width: 768px) {
  .title_a1 p::after {
    width: 3rem;
  }
}

.title_a1 .p {
  color: #5B5A5A;
  font: 500 1rem/1.625em "sourcehansans";
}

.title_a1 .p b {
  color: #26713A;
}

.title_a1.ta p::after {
  margin: 0.4em auto;
}

.xz img {
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

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

.pc-banner {
  overflow: hidden;
  height: 100%;
}

.fp-watermark {
  display: none;
}

@media (max-width: 990px) {
  .section2 {
    padding: 2.5rem 0;
  }
}

.section2 .a2_v1 .a2_b1 {
  width: 62.57143%;
}

@media (max-width: 768px) {
  .section2 .a2_v1 .a2_b1 {
    width: 100%;
  }
}

.section2 .a2_v1 .a2_b1 .title_a1 .p {
  padding: 0 16%;
}

.section2 .a2_v1 .a2_b1 .a2_c1 {
  text-align: center;
}

.section2 .a2_v1 .a2_b1 .a2_c1 a.more-msla {
  margin: 1em auto 0;
}

.section2 .a2_v1 .a2_b1 .a2_c2 {
  position: relative;
  overflow: hidden;
  margin-top: 1em;
}

.section2 .a2_v1 .a2_b1 .a2_c2:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -3px;
  background: #fff;
  z-index: 5;
  height: 6px;
}

.section2 .a2_v1 .a2_b1 .a2_c2 i {
  display: block;
  font-size: 0;
}

.section2 .a2_v1 .a2_b1 .a2_c2 i img {
  width: 100%;
}

.section2 .a2_v1 .a2_b1 .a2_c2 .gifa {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: -28%;
  z-index: -1;
  padding: 1px;
  width: 100%;
}

.section2 .a2_v1 .a2_b1 .a2_c2 .gifa img {
  width: 100%;
}

.section2 .a2_v1 .a2_b2 {
  width: 36.71429%;
}

@media (max-width: 768px) {
  .section2 .a2_v1 .a2_b2 {
    width: 70%;
    margin: 0 auto;
  }
}

.section2 .a2_v1 .a2_b2 .wehha {
  position: relative;
  overflow: hidden;
}

.section2 .a2_v1 .a2_b2 i {
  display: block;
  font-size: 0;
}

.section2 .a2_v1 .a2_b2 i img {
  width: 100%;
}

.section2 .a2_v1 .a2_b2 .gifa {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  padding: 1px;
  width: 100%;
}

.section2 .a2_v1 .a2_b2 .gifa img {
  width: 100%;
}

.section3 {
  padding-top: 5.1875rem;
  position: relative;
}

@media (max-width: 990px) {
  .section3 {
    padding-top: 0;
  }
}

.section3 .banimg3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 40.83333%;
}

.section3 .a3_v1 {
  background: url(../images/bj1.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  height: 32.78689%;
  padding-top: 2.5rem;
}

@media (max-width: 990px) {
  .section3 .a3_v1 {
    padding: 2.5rem 0;
    height: auto;
  }
}

.section3 .a3_v1 .title_a1 {
  text-align: left;
  width: 62.71429%;
}

@media (max-width: 500px) {
  .section3 .a3_v1 .title_a1 {
    width: 100%;
  }
}

.section3 .a3_v1 .title_a1 h2 {
  color: #fff;
}

.section3 .a3_v1 .title_a1 p::after {
  margin: 0.4em 0;
}

.section3 .a3_v1 .title_a1 .p {
  color: #FFFFFF;
  margin-top: 1em;
}

.section3 .a3_v1 a.more-msl {
  margin-right: 10%;
}

@media (max-width: 500px) {
  .section3 .a3_v1 a.more-msl {
    margin-right: 0;
    margin-top: 1em;
  }
}

.section3 .a3_v2 {
  height: 67.21311%;
}

.section3 .a3_v2 .w-accor0 {
  overflow: hidden;
  width: 100%;
}

@media (min-width: 991px) {
  .section3 .a3_v2 .w-accor0 {
    height: 100% !important;
  }
}

.section3 .a3_v2 .w-accor0 li {
  overflow: hidden;
}

.section3 .a3_v2 .w-accor0 .img_ar {
  position: relative;
}

.section3 .a3_v2 .w-accor0 .img_ar:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.section3 .a3_v2 .w-accor0 .img_ar .wegga2 {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(255, 255, 255, 0.6);
  padding: 1em 5%;
  width: 100%;
  font: 500 1.875rem/1.5em "sourcehansans";
  z-index: 9;
}

@media (max-width: 768px) {
  .section3 .a3_v2 .w-accor0 .img_ar .wegga2 {
    font-size: 1.25rem;
    padding: 0.5em 5%;
  }
}

.section3 .a3_v2 .w-accor0 .img_ar .wegga2 p {
  display: none;
  font: 500 1.5rem/1.4em "sourcehansans";
}

@media (max-width: 768px) {
  .section3 .a3_v2 .w-accor0 .img_ar .wegga2 p {
    font-size: 1rem;
  }
}

.section3 .a3_v2 .w-accor0 .img_ar .wegga1 {
  position: absolute;
  left: 50%;
  bottom: -100%;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
  font: 500 1.875rem/1.5em "sourcehansans";
  z-index: 9;
  -webkit-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  text-align: center;
  -webkit-transform: translate(-50%, 50%);
     -moz-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
       -o-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.section3 .a3_v2 .w-accor0 .img_ar .wegga1 p {
  display: none;
  font: 500 1.5rem/1.4em "sourcehansans";
}

.section3 .a3_v2 .w-accor0 .img_ar img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section3 .a3_v2 .w-accor0 .cur .img_ar .wegga2 {
  display: none;
}

.section3 .a3_v2 .w-accor0 .cur .img_ar .wegga1 {
  position: absolute;
  bottom: 50%;
  color: white;
}

.section3 .a3_v2 .w-accor0 .cur .img_ar .wegga1 p {
  display: block;
}

.section4 {
  background: url(../images/bj2.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  position: relative;
}

.section4 .banimg4 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22.8125%;
}

@media (max-width: 990px) {
  .section4 {
    padding: 2.5rem 0;
  }
}

.section4:after {
  content: "";
  display: block;
  width: 1px;
  height: 35%;
  position: absolute;
  left: 17%;
  top: 0;
  z-index: 1;
  background: #5B5A5A;
  -webkit-transform: rotate(31deg);
     -moz-transform: rotate(31deg);
      -ms-transform: rotate(31deg);
       -o-transform: rotate(31deg);
          transform: rotate(31deg);
}

@media (max-width: 1290px) {
  .section4:after {
    left: 10%;
  }
}

@media (max-width: 990px) {
  .section4:after {
    display: none;
  }
}

.section4:before {
  content: "";
  display: block;
  width: 1px;
  height: 35%;
  position: absolute;
  left: 48.95833%;
  bottom: 0;
  z-index: 1;
  background: #26713A;
  -webkit-transform: skewX(-31deg);
     -moz-transform: skewX(-31deg);
      -ms-transform: skewX(-31deg);
       -o-transform: skewX(-31deg);
          transform: skewX(-31deg);
}

@media (max-width: 1366px) {
  .section4:before {
    left: 41.66667%;
  }
}

@media (max-width: 1290px) {
  .section4:before {
    left: 48.66667%;
  }
}

@media (max-width: 990px) {
  .section4:before {
    display: none;
  }
}

.section4 .a4_v1 .a4_b1 {
  width: 55.14286%;
}

@media (max-width: 500px) {
  .section4 .a4_v1 .a4_b1 {
    width: 100%;
  }
}

.section4 .a4_v1 .a4_b2 {
  width: 36.42857%;
}

@media (max-width: 500px) {
  .section4 .a4_v1 .a4_b2 {
    width: 100%;
  }
}

.section4 .a4_v1 .a4_b2 .p {
  margin: 1.5em auto;
}

.title_a1bais h2 {
  color: #fff;
}

.title_a1bais p {
  color: #fff;
}

.title_a1bais .p {
  color: #fff;
}

.section5 {
  background: url(../images/bj3.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  position: relative;
  overflow: hidden;
}

@media (max-width: 990px) {
  .section5 {
    padding: 3rem 0;
  }
}

.section5 .a5_v1 {
  max-width: 41%;
}

@media (max-width: 500px) {
  .section5 .a5_v1 {
    max-width: 100%;
  }
}

.section5 .a5_v1 a.more-msl {
  margin-top: 1.8em;
}

.section5 .banimg5 {
  position: absolute;
  top: 0;
  right: 0;
  width: 43.85417%;
  height: 39.625rem;
  -webkit-animation-duration: 5s;
}

.section5 .zmfd {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35.625%;
}

.section6 {
  position: relative;
}

.section6:after {
  content: "";
  display: block;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  background: url(../images/bj4.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}

@media (max-width: 990px) {
  .section6:after {
    background: none;
  }
}

.section6 .banimg7 {
  position: absolute;
  left: 0;
  top: 0;
  width: 46.30208%;
}

.section6 .a6_v1 {
  position: relative;
  z-index: 1;
  height: 100%;
}

.section6 .a6_v1 .a6_b1 {
  width: 50%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  padding-left: 13.54167%;
  padding-right: 7%;
}

@media (max-width: 1366px) {
  .section6 .a6_v1 .a6_b1 {
    padding-left: 5.78125%;
    padding-right: 5%;
  }
}

.section6 .a6_v1 .a6_b1 a.more-msl {
  margin-top: 1.8em;
}

@media (max-width: 990px) {
  .section6 .a6_v1 .a6_b1 {
    width: 100%;
    padding: 2.5rem 5.78125%;
    background: url(../images/bj4.jpg) no-repeat center;
    -o-background-size: cover;
       background-size: cover;
  }
}

.section6 .a6_v1 .a6_b2 {
  width: 50%;
  height: 100%;
}

@media (max-width: 990px) {
  .section6 .a6_v1 .a6_b2 {
    width: 100%;
  }
}

.section6 .a6_v1 .a6_b2 .a6_c1 {
  height: 28%;
}

.section6 .a6_v1 .a6_b2 .a6_c1 li {
  width: 50%;
  height: 100%;
}

.section6 .a6_v1 .a6_b2 .a6_c1 li a {
  display: block;
  overflow: hidden;
  height: 100%;
}

.section6 .a6_v1 .a6_b2 .a6_c1 li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section6 .a6_v1 .a6_b2 .a6_c2 {
  height: 44%;
  padding: 0 25.54167% 0 5%;
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/bj5.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}

@media (max-width: 1366px) {
  .section6 .a6_v1 .a6_b2 .a6_c2 {
    padding: 0 13.5% 0 5%;
  }
}

@media (max-width: 990px) {
  .section6 .a6_v1 .a6_b2 .a6_c2 {
    padding: 2.5rem 5.78125%;
  }
}

.section6 .a6_v1 .a6_b2 .a6_c2 .banimg8 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40.625%;
  z-index: -1;
}

.section6 .a6_v1 .a6_b2 .a6_c2 .xw_aaq1 li h2 {
  margin-top: 0.4em;
}

.section6 .a6_v1 .a6_b2 .a6_c2 .xw_aaq1 li h2 a {
  display: block;
  color: #000000;
  font: 500 1.125rem/1.5em "sourcehansans";
}

.section6 .a6_v1 .a6_b2 .a6_c2 .xw_aaq1 li span {
  display: block;
  color: #848484;
  font: 500 .875rem/1.5em "sourcehansans";
  padding: 0.5em 0;
}

.section6 .a6_v1 .a6_b2 .a6_c2 .xw_aaq1 li .p {
  color: #848484;
  font: 500 .875rem/1.5em "sourcehansans";
}

.foot-fot {
  background: #FFFFFF;
  padding-top: 3.75rem;
  border-top: 1px solid #E7E7E7;
}

@media (max-width: 990px) {
  .foot-fot {
    padding-top: 1rem;
  }
}

.foot-fot .foota1 .d_nav {
  padding-bottom: 2rem;
}

.foot-fot .foota1 .d_nav li > a {
  color: #494848;
  font: 500 1.125rem/1.5em "sourcehansans";
}

.foot-fot .foota1 .d_nav li .sec {
  margin-top: 0.5em;
}

.foot-fot .foota1 .d_nav li .sec a {
  color: #919090;
  font: 500 .875rem/1.8em "sourcehansans";
  display: block;
}

.foot-fot .foota1 .d_nav li .sec a:hover {
  color: #26713A;
}

.foot-fot .foota1 .d_nav li.derma .d_erma {
  width: 5.3125rem;
  text-align: center;
}

.foot-fot .foota1 .d_nav li.derma .d_erma + .d_erma {
  margin-left: 1em;
}

.foot-fot .foota1 .d_nav li.derma .d_erma p {
  color: #919090;
  font: 500 .875rem/2em "sourcehansans";
  margin-top: 0.3em;
}

.foot-fot .foota1 .fenxhah {
  padding: 3.125rem 0 1.5625rem;
}

@media (max-width: 990px) {
  .foot-fot .foota1 .fenxhah {
    padding: 0 0 1rem;
  }
}

.foot-fot .foota1 .fenxhah a {
  display: inline-block;
  width: 2rem;
  padding: 0 0.1rem;
}

@media (max-width: 768px) {
  .foot-fot .foota1 .fenxhah a {
    width: 2.5rem;
  }
}

.foot-fot .foota1 .fenxhah a img {
  width: 100%;
}

.foot-fot .foota2 {
  padding: 1.2rem 0;
  color: #919090;
  font: 500 .875rem/1.5em "sourcehansans";
  border-top: 1px solid #E7E7E7;
  text-align: center;
}

.foot-fot .foota2 a {
  color: #919090;
}

.foot-fot .foota2 a:hover {
  color: #000;
}

.foot1-m {
  padding-bottom: 1.4em;
  display: none;
  width: 100%;
}

.foot1-m .derma-m {
  width: 100%;
  margin: 1.5em auto 0;
}

.foot1-m .derma-m .d_erma {
  text-align: center;
  margin: 0 1em;
}

.foot1-m .derma-m .d_erma img {
  width: 87px;
}

@media (max-width: 600px) {
  .foot1-m .derma-m .d_erma {
    margin: 0 0.5em;
  }
  .foot1-m .derma-m .d_erma img {
    width: 75px;
  }
}

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

/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
  .section, .fp-tableCell {
    height: auto !important;
  }
  .kajjt {
    display: none;
  }
}

.section {
  overflow: hidden;
  max-height: 100vh;
}

.dbb {
  height: 50px;
}

@media (min-width: 990px) {
  .section .fp-tableCell {
    height: 100% !important;
  }
  .active .title_a1 {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
      -o-animation-duration: 0.5s;
         animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: .5s;
       -moz-animation-delay: .5s;
         -o-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-name: fadeInUp;
       -moz-animation-name: fadeInUp;
         -o-animation-name: fadeInUp;
            animation-name: fadeInUp;
  }
  .active .a2_c1 {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
      -o-animation-duration: 0.5s;
         animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: 0.6s;
       -moz-animation-delay: 0.6s;
         -o-animation-delay: 0.6s;
            animation-delay: 0.6s;
    -webkit-animation-name: fadeInUp;
       -moz-animation-name: fadeInUp;
         -o-animation-name: fadeInUp;
            animation-name: fadeInUp;
  }
  .active .a2_c2 {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
      -o-animation-duration: 0.5s;
         animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: .5s;
       -moz-animation-delay: .5s;
         -o-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-name: fadeInLeftBig;
       -moz-animation-name: fadeInLeftBig;
         -o-animation-name: fadeInLeftBig;
            animation-name: fadeInLeftBig;
  }
  .active .a2_b2 {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
      -o-animation-duration: 0.8s;
         animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: 0.8s;
       -moz-animation-delay: 0.8s;
         -o-animation-delay: 0.8s;
            animation-delay: 0.8s;
    -webkit-animation-name: fadeInRightBig;
       -moz-animation-name: fadeInRightBig;
         -o-animation-name: fadeInRightBig;
            animation-name: fadeInRightBig;
  }
  .active .a3_v1 .more-msl {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
      -o-animation-duration: 0.8s;
         animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: 0.8s;
       -moz-animation-delay: 0.8s;
         -o-animation-delay: 0.8s;
            animation-delay: 0.8s;
    -webkit-animation-name: fadeInRightBig;
       -moz-animation-name: fadeInRightBig;
         -o-animation-name: fadeInRightBig;
            animation-name: fadeInRightBig;
  }
  .active .a4_b2 .more-msla {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
      -o-animation-duration: 0.8s;
         animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: 0.8s;
       -moz-animation-delay: 0.8s;
         -o-animation-delay: 0.8s;
            animation-delay: 0.8s;
    -webkit-animation-name: fadeInUp;
       -moz-animation-name: fadeInUp;
         -o-animation-name: fadeInUp;
            animation-name: fadeInUp;
  }
  .active .a4_b1 {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
      -o-animation-duration: 0.8s;
         animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: .5s;
       -moz-animation-delay: .5s;
         -o-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-name: fadeInLeftBig;
       -moz-animation-name: fadeInLeftBig;
         -o-animation-name: fadeInLeftBig;
            animation-name: fadeInLeftBig;
  }
  .active .a6_b1 .more-msl {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
      -o-animation-duration: 0.5s;
         animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: .5s;
       -moz-animation-delay: .5s;
         -o-animation-delay: .5s;
            animation-delay: .5s;
    -webkit-animation-name: fadeInUp;
       -moz-animation-name: fadeInUp;
         -o-animation-name: fadeInUp;
            animation-name: fadeInUp;
  }
  .active .xw_aaq1 {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
      -o-animation-duration: 0.8s;
         animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
         animation-fill-mode: both;
    -webkit-animation-delay: 0.8s;
       -moz-animation-delay: 0.8s;
         -o-animation-delay: 0.8s;
            animation-delay: 0.8s;
    -webkit-animation-name: fadeInRightBig;
       -moz-animation-name: fadeInRightBig;
         -o-animation-name: fadeInRightBig;
            animation-name: fadeInRightBig;
  }
}

.rightfix {
  right: 1%;
}

.right_div {
  padding: 0.5rem;
}

.fix_ul li:first-child > .right_div {
  padding: 0 0.5rem;
}

.fix_ul li {
  background: #35B6AD;
  border-radius: 50%;
  border: none;
  font-size: 0;
  padding: 0.8rem;
}

.fix_ul li + li {
  margin-top: 0.5rem;
}

.fix_ul li:nth-child(2) i img {
  margin-top: .125rem;
}

.fix_ul li.tops {
  background: transparent;
}

.fix_ul li a {
  line-height: 1;
  font-size: 0;
}

.fix_ul li i {
  line-height: 1;
  display: inline-block;
  font-size: 0;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

.cont-yd1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.cont-yd1 .banimg9 {
  position: absolute;
  right: 0;
  top: 0;
  width: 37.29167%;
  z-index: 1;
  height: 100%;
}

.cont-yd1 .banimg9 i {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.cont-yd1 .banimg9 img {
  width: 200%;
  position: absolute;
  left: 0;
  bottom: -5%;
  max-width: 1920px;
}

.cont-yd1 .yd-cont {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.cont-yd1 u {
  display: block;
  font-size: 0;
}

.cont-yd1 u img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  -webkit-animation-name: banscaleDraw;
     -moz-animation-name: banscaleDraw;
       -o-animation-name: banscaleDraw;
          animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
     -moz-animation-timing-function: ease-in-out;
       -o-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
     -moz-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
     -moz-animation-duration: 20s;
       -o-animation-duration: 20s;
          animation-duration: 20s;
}

.cont-yd1 .yd_logo {
  width: 13.4375rem;
  margin-top: 5%;
}

.cont-yd1 .pr {
  height: 100vh;
  z-index: 2;
}

.cont-yd1 .erhhas {
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 768px) {
  .cont-yd1 .erhhas {
    top: 50%;
  }
}

.cont-yd1 .erhhas .p {
  color: #fff;
  font: 500 2.8125rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .cont-yd1 .erhhas .p {
    font-size: 1.5rem;
  }
}

.cont-yd1 .erhhas .ahhtas {
  margin-top: 15%;
}

.cont-yd1 .erhhas .ahhtas li {
  display: inline-block;
  margin-right: 3.625rem;
}

.cont-yd1 .erhhas .ahhtas li a {
  display: block;
  color: #FFFFFF;
  font: 500 1.875rem/1.3em "sourcehansans";
  position: relative;
}

@media (max-width: 768px) {
  .cont-yd1 .erhhas .ahhtas li a {
    font-size: 1.25rem;
  }
}

.cont-yd1 .erhhas .ahhtas li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.cont-yd1 .erhhas .ahhtas li a:hover:after {
  width: 100%;
}

@media (max-width: 990px) {
  .ydybd {
    padding: 0 !important;
  }
}

.ny_headbj .head .head2 {
  background: #fff;
}

.banerhs-imga .banimg1 {
  width: 20.46875%;
  position: absolute;
  right: 0;
  top: 0;
}

.banerhs-imga .banimg2 {
  width: 27.29167%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.nbanner {
  overflow: hidden;
}

.nbanner .img img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}

.nbanner .banner-wen {
  width: 100%;
  z-index: 99;
  top: 55%;
}

@media (max-width: 768px) {
  .nbanner .banner-wen {
    top: 50%;
  }
}

.nbanner .banner-wen .banner-cont {
  color: #fff;
}

.nbanner .banner-wen .banner-cont h2 {
  font: 600 3.125rem/1.3em "sourcehansans";
  letter-spacing: 0.1rem;
}

.nbanner .banner-wen .banner-cont .dl {
  padding: 1em 0;
}

.nbanner .banner-wen .banner-cont .dl dd {
  font: 500 1.4rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .nbanner .banner-wen .banner-cont .ban-wen2 {
    float: none;
  }
  .nbanner .banner-wen .banner-cont .ban-wen2 h2 {
    font-size: 1.35rem;
  }
  .nbanner .banner-wen .banner-cont .ban-wen2 .dl dd {
    font-size: 1rem;
  }
}

.n_mbx {
  position: absolute;
  right: 13.54167%;
  width: auto;
  z-index: 99;
  bottom: 0;
}

@media (max-width: 1366px) {
  .n_mbx {
    right: 5.78125%;
  }
}

@media (max-width: 768px) {
  .n_mbx {
    right: 4%;
    position: static;
    width: 92%;
    margin: 0 auto;
  }
}

.n_mbx .what .n_src {
  text-align: right;
  margin: 1.2em 0;
}

@media (max-width: 768px) {
  .n_mbx .what .n_src {
    text-align: center;
  }
}

.n_mbx .what .n_src li {
  display: inline-block;
}

.n_mbx .what .n_src li + li {
  margin-left: 2em;
}

.n_mbx .what .n_src li a {
  display: block;
  color: #FFFFFF;
  font: 500 1rem/2em "sourcehansans";
}

@media (max-width: 768px) {
  .n_mbx .what .n_src li a {
    color: #000;
    font-size: 1.2rem;
  }
}

.n_mbx .what .n_src li:hover a, .n_mbx .what .n_src li.active a {
  color: #26713A;
}

.ajhhsd {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}

.mbx {
  color: #FFFFFF;
  font: 500 1rem/2em "sourcehansans";
  margin: 1.2em 0;
}

.mbx span:last-child {
  display: none;
}

.mbx a {
  color: #FFFFFF;
}

.mbx a:hover {
  color: #26713A;
}

.ny-content {
  margin-bottom: 6.25rem;
}

@media (max-width: 768px) {
  .ny-content {
    margin-bottom: 2rem;
  }
}

@-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;
}

.nabt-cont1 {
  background: url(../images/abtbj.jpg) no-repeat center bottom;
  -o-background-size: 100% auto;
     background-size: 100% auto;
  position: relative;
}

@media (max-width: 768px) {
  .nabt-cont1 {
    -o-background-size: cover;
       background-size: cover;
    background-position: 62% 0;
  }
}

.nabt-cont1 .banimg6 {
  position: absolute;
  right: 0;
  top: 8%;
  width: 33.95833%;
}

.nabt-cont1 .banimg6 img {
  width: 100%;
}

.nabt-cont1 .nabt-a1_b1 {
  padding: 4.8125rem 0;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b1 {
    padding: 2.4rem 0;
  }
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 {
  width: 47.14286%;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 {
    width: 100%;
  }
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 .mySwiper2 {
  position: relative;
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 .mySwiper2 .a {
  overflow: hidden;
  border-radius: 1.6rem;
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 .mySwiper2 .swiper-pagination1 {
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1em;
  z-index: 99;
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 .mySwiper2 .swiper-pagination1 span {
  display: inline-block;
  background: #AAA9A9;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  opacity: 1;
  margin: 0 0.2em;
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c1 .mySwiper2 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #26713A;
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c2 {
  width: 47.57143%;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c2 {
    width: 100%;
    margin-top: 2rem;
  }
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c2 .p {
  color: #5B5A5A;
  font: 500 1rem/1.625em "sourcehansans";
  margin-top: 1.5em;
}

.nabt-cont1 .nabt-a1_b1 .nabt-a1_b1c2 .p span {
  color: #26713A;
  font-weight: 600;
}

.nabt-cont1 .nabt-a1_b2 {
  padding: .625rem 0 3.125rem;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b2 {
    padding-bottom: 1.5rem;
  }
}

.nabt-cont1 .nabt-a1_b2 .aggts {
  position: relative;
  margin-top: 2em;
  z-index: 1;
}

.nabt-cont1 .nabt-a1_b2 .aggts::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  top: 3.2rem;
  background: #26713A;
  height: 2px;
  z-index: -1;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b2 .aggts::after {
    display: none;
  }
}

.nabt-cont1 .nabt-a1_b2 .aggts li {
  width: 31%;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b2 .aggts li {
    width: 100%;
    margin-bottom: 1em;
  }
}

.nabt-cont1 .nabt-a1_b2 .aggts li h2 {
  text-align: center;
  color: #fff;
  font: 500 1.425rem/1.5rem "sourcehansans";
  background: #26713A;
  border-top-right-radius: 1.8rem;
  padding: 2.3rem 0;
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b2 .aggts li h2 {
    padding: 1.5rem 0;
  }
}

.nabt-cont1 .nabt-a1_b2 .aggts li .eghgat {
  padding: 2.0625rem 0 0 15.67442%;
  position: relative;
}

.nabt-cont1 .nabt-a1_b2 .aggts li .eghgat::after {
  content: "";
  display: block;
  background: url(../images/ahgt.svg) no-repeat left top;
     background-size: auto 100%;
  width: 2.4375rem;
  height: 3.1rem;
  position: absolute;
  left: 5%;
  top: 0;
}
.nabt-cont1 .nabt-a1_b2 .aggts li:last-child .eghgat::before{
  content: "";
  display: block;
  width: 2.4375rem;
  position: absolute;
  left: 5%;
  height: .0625rem;
  background: #26713A;    top: 18%;
}
@media (max-width: 1042px){
  .nabt-cont1 .nabt-a1_b2 .aggts li:last-child .eghgat::before{
    top: 14%;
  }
}
@media (max-width: 768px){
  .nabt-cont1 .nabt-a1_b2 .aggts li:last-child .eghgat::before{
    top: 17%;height: 1px;
  }
}
.nabt-cont1 .nabt-a1_b2 .aggts li:last-child .eghgat::after{
  height: 4.8rem; background: url(../images/ahgt1.svg) no-repeat left top;
  background-size: auto 100%;
}

.nabt-cont1 .nabt-a1_b2 .aggts li .eghgat dt {
  color: #26713A;
  font: 600 1.2rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .nabt-cont1 .nabt-a1_b2 .aggts li .eghgat dt {
    font-size: 1.25rem;
  }
}

.nabt-cont1 .nabt-a1_b2 .aggts li .eghgat .dd dd {
  color: #5B5A5A;
  font: 500 1rem/2.25em "sourcehansans";
  padding-left: 1em;
  background: url(../images/thhn.svg) no-repeat left 0.95em;
}

.nabt-cont2 {
  background: url(../images/bjsa.jpg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  padding-top: 5.625rem;
}

@media (max-width: 768px) {
  .nabt-cont2 {
    padding-top: 2.2rem;
  }
}

.nabt-cont2 .title_a1 h2 {
  color: #fff;
}

.nabt-cont2 .mySwiper3 {
  margin: 0 -3%;
  margin-top: 3.125rem;
}

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

.nabt-cont2 .mySwiper3 .swiper-slide {
  /* Center slide text vertically */
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
       justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
       align-items: center;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8);
}

@media (max-width: 768px) {
  .nabt-cont2 .mySwiper3 .swiper-slide {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

.nabt-cont2 .mySwiper3 .swiper-slide .a {
  width: 100%;
}

.nabt-cont2 .mySwiper3 .swiper-slide h2 {
  text-align: center;
  color: #fff;
  font: 600 1.5rem/1.8em "sourcehansans";
  margin-top: 1em;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  display: none;
}

@media (max-width: 768px) {
  .nabt-cont2 .mySwiper3 .swiper-slide h2 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    display: block;
  }
}

.nabt-cont2 .mySwiper3 .swiper-slide-active, .nabt-cont2 .mySwiper3 .swiper-slide-duplicate-active {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.nabt-cont2 .mySwiper3 .swiper-slide-active h2, .nabt-cont2 .mySwiper3 .swiper-slide-duplicate-active h2 {
  display: block;
}

.nabt-cont2 .mySwiper3 .swiper-pagination1 {
  text-align: center;
  width: 100%;
  margin: 2rem auto 2.6rem;
}

@media (max-width: 768px) {
  .nabt-cont2 .mySwiper3 .swiper-pagination1 {
    margin: 1rem auto;
  }
}

.nabt-cont2 .mySwiper3 .swiper-pagination1 span {
  display: inline-block;
  background: #AAA9A9;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  opacity: 1;
  margin: 0 0.2em;
}

.nabt-cont2 .mySwiper3 .mySwiperatb .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #26713A;
}

.nabt-cont2 .nabt-a2_v1 {
  background: rgba(0, 0, 0, 0.46);
  padding: 5.3125rem 0;
}

@media (max-width: 768px) {
  .nabt-cont2 .nabt-a2_v1 {
    padding: 2.5rem 0;
  }
}

.nabt-cont2 .nabt-a2_v1 .nabt-a2_c1 {
  width: 33.33%;
}

@media (max-width: 768px) {
  .nabt-cont2 .nabt-a2_v1 .nabt-a2_c1 {
    width: 100%;
  }
}

.nabt-cont2 .nabt-a2_v1 .nabt-a2_c1 li {
  width: 100%;
}

.nabt-cont2 .nabt-a2_v1 .nabt-a2_c1 li a {
  display: block;
  color: #fff;
  font: 600 1.125rem/1.9em "sourcehansans";
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .nabt-cont2 .nabt-a2_v1 .nabt-a2_c1 li a {
    font-size: 1rem;
  }
}

.nabt-cont2 .nabt-a2_v1 .nabt-a2_c1 li a:hover {
  color: #26713A;
}

.nabt-cont3 {
  margin-top: 5rem;
  position: relative;
}

@media (max-width: 768px) {
  .nabt-cont3 {
    margin-top: 2.5rem;
  }
}

.nabt-cont3 .banimg7 {
  position: absolute;
  right: 1%;
  bottom: -10%;
  width: 33.95833%;
  z-index: -1;
}

.nabt-cont3 .banimg7 img {
  width: 100%;
}

.nabt-cont3 .spbfa {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding-bottom: 56%;
}

.nabt-cont3 .spbfa img {
  visibility: hidden;
}

.nabt-cont3 .spbfa video {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: fill;
     object-fit: fill;
}

.nabt-cont4 {
  margin-top: 6rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .nabt-cont4 {
    margin-top: 2.5rem;
    padding-bottom: 2rem;
  }
}

.nabt-cont4 .mySwiperata {
  margin-top: 2em;
}

.nabt-cont4 .mySwiperata .swiper-slide a {
  display: block;
}

.nabt-cont4 .mySwiperata .swiper-slide a .p {
  margin-top: 1em;
}

.nabt-cont4 .mySwiperata .swiper-slide a .p span {
  display: block;
  color: #A6A4A4;
  font: 500 1rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .nabt-cont4 .mySwiperata .swiper-slide a .p span {
    font-size: 0.8rem;
  }
}

.nabt-cont4 .mySwiperata .swiper-slide a .p p {
  color: #000000;
  font: 500 1.5rem/1.4em "sourcehansans";
}

@media (max-width: 768px) {
  .nabt-cont4 .mySwiperata .swiper-slide a .p p {
    font-size: 1.1rem;
  }
}

.lxwm-cont1 {
  margin-top: 3rem;
}

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

.lxwm-cont1 .lxwm-cont1-v1 {
  margin-top: 2.25rem;
}

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

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 {
  width: 40.71429%;
}

@media (max-width: 768px) {
  .lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 {
    width: 100%;
  }
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 dl + dl {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 dl + dl {
    margin-top: 1rem;
  }
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 dl dt {
  color: #5B5A5A;
  font: 600 1.375rem/1.2em "sourcehansans";
}

@media (max-width: 768px) {
  .lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 dl dt {
    font-size: 1.2rem;
    line-height: 1.4em;
  }
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 dl dd {
  color: #5B5A5A;
  font: 500 1.125rem/1.25em "sourcehansans";
  margin-top: 0.2em;
}

@media (max-width: 768px) {
  .lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a1 dl dd {
    font-size: 1rem;
    line-height: 1.4em;
  }
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 {
  width: 59.28571%;
  padding-left: 5%;
  border-left: 1px solid #D8D8D8;
}

@media (max-width: 768px) {
  .lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 {
    width: 100%;
    padding-left: 0;
    border-left: none;
    margin-top: 1.5em;
  }
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 h2.msg_tit {
  color: #5B5A5A;
  font: 600 1.375rem/1.2em "sourcehansans";
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form {
  margin-top: 1rem;
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form input {
  width: 100%;
  border: 1px solid #A5A5A5;
  font: 500 1rem/3em "sourcehansans";
  border-radius: 1.5em;
  text-indent: 1.2em;
  margin-bottom: 1.3rem;
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form textarea {
  width: 100%;
  border: 1px solid #A5A5A5;
  font: 500 1rem/1.5em "sourcehansans";
  border-radius: 0.8em;
  padding: 1.2em;
  margin-bottom: 1.3rem;
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form button {
  color: #26713A;
  font: 500 1rem/3em "sourcehansans";
  border-radius: 1.5em;
  border: 1px solid #26713A;
  background: transparent;
}

@media (max-width: 768px) {
  .lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form button {
    width: 9.375rem;
  }
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form button::before {
  background: #26713A;
}

.lxwm-cont1 .lxwm-cont1-v1 .lxwm-cont1-a2 form button:hover {
  color: #fff;
}

.lxwm-cont2 {
  margin-top: 10.875rem;
  padding-bottom: 14.375rem;
}

@media (max-width: 768px) {
  .lxwm-cont2 {
    margin-top: 3rem;
    padding-bottom: 5rem;
  }
}

.lxwm-cont2 .lxwm-cont2-v1 {
  margin: 3.625rem 0 0;
}

@media (max-width: 768px) {
  .lxwm-cont2 .lxwm-cont2-v1 {
    margin-top: 1.5rem;
  }
}

h2.tithah2 {
  color: #000000;
  font: 500 2rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  h2.tithah2 {
    font-size: 1.3rem;
  }
}

.jrwm-cont1 {
  margin-top: 2rem;
  position: relative;
}

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

.jrwm-cont1 .banimg8 {
  position: absolute;
  right: 0;
  top: 2%;
  width: 27.91667%;
  z-index: -1;
}

.jrwm-cont1 .banimg8 img {
  width: 100%;
}

.jrwm-cont1 .p {
  color: #5B5A5A;
  font: 500 1.125rem/1.4em "sourcehansans";
}

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

.jrwm-cont1 h3 {
  color: #000000;
  font: 600 1.375rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .jrwm-cont1 h3 {
    font-size: 1.1rem;
  }
}

.jrwm-cont1 .jrwm-a1_b1 {
  margin-top: 2em;
}

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

.jrwm-cont1 .jrwm-a1_b2 {
  margin-top: 4em;
}

@media (max-width: 768px) {
  .jrwm-cont1 .jrwm-a1_b2 {
    margin-top: 1.8rem;
  }
}

.jrwm-cont1 .jrwm-a1_b2 h3 {
  padding: 0.5em 0;
}

.jrwm-a1_b3 {
  margin-top: 3.375rem;
}

@media (max-width: 768px) {
  .jrwm-a1_b3 {
    margin-top: 1.8rem;
  }
}

.jrwm-a1_b3 dl {
  text-align: center;
  color: #fff;
  font: 500 1.125rem/16.25rem "sourcehansans";
  width: 16.25rem;
  background: rgba(0, 0, 0, 0.76);
  border-radius: 50%;
  margin: 0 -1.2rem;
}

@media (max-width: 768px) {
  .jrwm-a1_b3 dl {
    width: 9rem;
    line-height: 9rem;
    font-size: 1rem;
  }
}

.jrwm-a1_b3 dl:nth-child(2) {
  background: rgba(38, 113, 58, 0.96);
  position: relative;
  z-index: 1;
}

.jrwm-cont2 {
  margin-top: 5.125rem;
}

@media (max-width: 768px) {
  .jrwm-cont2 {
    margin-top: 2.5rem;
  }
}

.jrwm-cont2 .jmaggtr {
  color: #000000;
  font: 600 1.375rem/1.5em "sourcehansans";
}

.jrwm-cont2 .xhggras {
  margin-top: 3.125rem;
}

@media (max-width: 768px) {
  .jrwm-cont2 .xhggras {
    margin-top: 1.5rem;
  }
}

.jrwm-cont2 .xhggras li {
  width: -webkit-calc(100%/6);
  width: -moz-calc(100%/6);
  width: calc(100%/6);
  text-align: center;
  padding: 1.875rem 0;
  border: 1px solid #D9D9D9;
  background: #FBFBFB;
}

@media (max-width: 1000px) {
  .jrwm-cont2 .xhggras li {
    width: -webkit-calc(100%/3);
    width: -moz-calc(100%/3);
    width: calc(100%/3);
  }
  .jrwm-cont2 .xhggras li:nth-child(4) {
    margin-left: 0;
  }
  .jrwm-cont2 .xhggras li:nth-child(n+4) {
    margin-top: -1px;
  }
}

@media (max-width: 768px) {
  .jrwm-cont2 .xhggras li {
    width: -webkit-calc(100%/2);
    width: -moz-calc(100%/2);
    width: calc(100%/2);
  }
  .jrwm-cont2 .xhggras li:nth-child(4) {
    margin-left: -1px;
  }
  .jrwm-cont2 .xhggras li:nth-child(n+4) {
    margin-top: 0;
  }
  .jrwm-cont2 .xhggras li:nth-child(2n+1) {
    margin-left: 0;
  }
  .jrwm-cont2 .xhggras li:nth-child(n+3) {
    margin-top: -1px;
  }
}

.jrwm-cont2 .xhggras li + li {
  margin-left: -1px;
}

.jrwm-cont2 .xhggras li i {
  display: block;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.jrwm-cont2 .xhggras li i img {
  height: 3.125rem;
}

.jrwm-cont2 .xhggras li p {
  color: #000000;
  font: 600 1.125rem/1.5em "sourcehansans";
  margin-top: 0.8em;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .jrwm-cont2 .xhggras li p {
    font-size: 1rem;
  }
}

.jrwm-cont2 .xhggras li:hover i {
  -webkit-transform: rotateY(180deg);
     -moz-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.jrwm-cont2 .jrwm-a2_v1 {
  margin-top: 5rem;
}

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

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 {
  background: url(../images/ahghgt.jpg) no-repeat center;
  overflow: hidden;
  -o-background-size: cover;
     background-size: cover;
  margin-top: 1.5rem;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 li {
  background: rgba(0, 0, 0, 0.76);
  overflow: hidden;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 li + li {
  border-left: 1px solid #000;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 li h3 {
  color: #fff;
  font: 600 1.375rem/1em "sourcehansans";
  width: 1.1em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar img {
  visibility: hidden;
}

@media (max-width: 600px) {
  .jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar img {
    height: 80vw;
  }
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar .wehhata {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 0 5%;
  height: 100%;
  display: none;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar .wehhata .werghga {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  padding: 0 5%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar .wehhata .werghga h2 {
  font: 600 1.375rem/1.6em "sourcehansans";
}

@media (max-width: 768px) {
  .jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar .wehhata .werghga h2 {
    font-size: 1.2rem;
  }
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar .wehhata .werghga .p {
  font: 500 1.125rem/1.4em "sourcehansans";
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  .jrwm-cont2 .jrwm-a2_v1 .w-accor1 .img_ar .wehhata .werghga .p {
    font-size: 1rem;
  }
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 li.cur, .jrwm-cont2 .jrwm-a2_v1 .w-accor1 li.swiper-slide-active {
  background: rgba(38, 113, 58, 0.96);
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 li.cur h3, .jrwm-cont2 .jrwm-a2_v1 .w-accor1 li.swiper-slide-active h3 {
  display: none;
}

.jrwm-cont2 .jrwm-a2_v1 .w-accor1 li.cur .img_ar .wehhata, .jrwm-cont2 .jrwm-a2_v1 .w-accor1 li.swiper-slide-active .img_ar .wehhata {
  display: block;
}

.jrwm-cont3 {
  background: #FBFBFB;
  padding: 4.0625rem 0 2.5rem;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  margin-top: 6rem;
}

@media (max-width: 768px) {
  .jrwm-cont3 {
    margin-top: 2.5rem;
    padding: 2.0625rem 0 1rem;
  }
}

.jrwm-cont3 .mySwiper3a {
  margin: 0 -3%;
  margin-top: 3.125rem;
}

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

.jrwm-cont3 .mySwiper3a .swiper-slide {
  /* Center slide text vertically */
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
       justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
       align-items: center;
  -webkit-transition: 300ms;
  -o-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8);
}

@media (max-width: 768px) {
  .jrwm-cont3 .mySwiper3a .swiper-slide {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

.jrwm-cont3 .mySwiper3a .swiper-slide .a {
  width: 100%;
}

.jrwm-cont3 .mySwiper3a .swiper-slide .a .over {
  border-radius: 50%;
}

.jrwm-cont3 .mySwiper3a .swiper-slide .a img {
  border-radius: 50%;
}

.jrwm-cont3 .mySwiper3a .swiper-slide h2 {
  text-align: center;
  color: #000000;
  font: 600 1.125rem/1.8em "sourcehansans";
  margin-top: 1em;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  display: none;
}

@media (max-width: 768px) {
  .jrwm-cont3 .mySwiper3a .swiper-slide h2 {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    display: block;
  }
}

.jrwm-cont3 .mySwiper3a .swiper-slide-active, .jrwm-cont3 .mySwiper3a .swiper-slide-duplicate-active {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.jrwm-cont3 .mySwiper3a .swiper-slide-active h2, .jrwm-cont3 .mySwiper3a .swiper-slide-duplicate-active h2 {
  display: block;
}

.jrwm-cont3 .mySwiper3a .swiper-pagination1 {
  text-align: center;
  width: 100%;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .jrwm-cont3 .mySwiper3a .swiper-pagination1 {
    margin: 1rem auto;
  }
}

.jrwm-cont3 .mySwiper3a .swiper-pagination1 span {
  display: inline-block;
  background: #AAA9A9;
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  opacity: 1;
  margin: 0 0.2em;
}

.jrwm-cont3 .mySwiper3a .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #26713A;
}

.jrwm-cont4 {
  padding: 4.0625rem 0;
}

@media (max-width: 768px) {
  .jrwm-cont4 {
    padding: 2.0625rem 0;
  }
}

.job-list {
  margin-top: 3.125rem;
}

@media (max-width: 768px) {
  .job-list {
    margin-top: 1.6rem;
  }
}

.job-list li {
  background: #FBFBFB;
  padding: 0 2.15054%;
}

.job-list li + li {
  margin-top: 1.5625rem;
}

@media (max-width: 768px) {
  .job-list li + li {
    margin-top: 1rem;
  }
}

.job-list li dt a .h2a {
  color: #5B5A5A;
  font: 600 1.375rem/5.4375rem "sourcehansans";
  padding-left: 2.375rem;
  background: url(../images/sd1.svg) no-repeat left center;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
}

@media (max-width: 768px) {
  .job-list li dt a .h2a {
    font-size: 1rem;
    line-height: 4rem;
    -o-background-size: 1rem auto;
       background-size: 1rem auto;
    padding-left: 1.6rem;
  }
}

.job-list li dt a .antas i {
  color: #5B5A5A;
  font: 600 1.375rem/5.4375rem "sourcehansans";
}

@media (max-width: 768px) {
  .job-list li dt a .antas i {
    font-size: 1rem;
    line-height: 4rem;
  }
}

.job-list li .wehha-job .content {
  color: #5B5A5A;
  font: 500 1.125rem/1.4em "sourcehansans";
  border-top: 2px solid #EAEAEA;
  padding: 1.75rem 0;
}

@media (max-width: 768px) {
  .job-list li .wehha-job .content {
    font-size: 1rem;
    padding: 1.05rem 0;
  }
}

.job-list li .wehha-job .content span {
  font-weight: 600;
}

.job-list li .wehha-job .content strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.job-list li .wehha-job .h3a {
  color: #26713A;
  font: 600 1.375rem/1.2em "sourcehansans";
  padding: 0.2em 0 2.4375rem;
}

@media (max-width: 768px) {
  .job-list li .wehha-job .h3a {
    font-size: 1.2rem;
  }
}

.job-list li.active dt a .h2a {
  color: #26713A;
  background: url(../images/sd2.svg) no-repeat left center;
  -o-background-size: 1.25rem auto;
     background-size: 1.25rem auto;
}
.job-list li .wehha-job .content em {
  font-style: italic;
}

@media (max-width: 768px) {
  .job-list li.active dt a .h2a {
    -o-background-size: 1rem auto;
       background-size: 1rem auto;
  }
}

.job-list li.active dt a .antas i {
  color: #26713A;
}

.myzx-cont1 {
  background: url(../images/bja3.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 8.75rem 0 8.5625rem;
}

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

.myzx-cont1 .myzx-a1_v1 .myzx-a1_b1 {
  width: 40.85714%;
}

@media (max-width: 768px) {
  .myzx-cont1 .myzx-a1_v1 .myzx-a1_b1 {
    width: 100%;
  }
}

.myzx-cont1 .myzx-a1_v1 .myzx-a1_b1 .p {
  margin-top: 1.7em;
}

.myzx-cont1 .myzx-a1_v1 .myzx-a1_b1 .p span {
  color: #26713A;
  font-weight: 600;
}

.myzx-cont1 .myzx-a1_v1 .myzx-a1_b2 {
  width: 46.5%;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .myzx-cont1 .myzx-a1_v1 .myzx-a1_b2 {
    width: 80%;
    margin: 0 auto;
    margin-top: 1.5rem;
  }
}

.myzx-cont2 {
  background: #FBFBFB;
  padding: 4.875rem 0;
  position: relative;
  overflow: hidden;
}

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

.myzx-cont2 .wh {
  position: relative;
  z-index: 1;
}

.myzx-cont2 .banimg4-myzx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45.88542%;
}

.myzx-cont2 .banimg6-myzx {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45.88542%;
}

.myzx-cont2 .mySwiper4 {
  padding: 12.0625rem 0;
  margin-top: 5.3125rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .myzx-cont2 .mySwiper4 {
    padding: 1rem 0;
    margin-top: 1.2rem;
  }
}

.myzx-cont2 .mySwiper4:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border-bottom: 2px dashed #E0E0E0;
}

@media (max-width: 768px) {
  .myzx-cont2 .mySwiper4:after {
    display: none;
  }
}

.myzx-cont2 .mySwiper4 .fzlc_v1 {
  position: relative;
}

.myzx-cont2 .mySwiper4 .fzlc_v1 .a {
  border: 1px solid #CECECE;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  position: relative;
  background: #fff;
}

.myzx-cont2 .mySwiper4 .fzlc_v1 .a .b {
  position: absolute;
  width: -webkit-calc(100% - 1rem);
  width: -moz-calc(100% - 1rem);
  width: calc(100% - 1rem);
  height: -webkit-calc(100% - 1rem);
  height: -moz-calc(100% - 1rem);
  height: calc(100% - 1rem);
  left: 0.5rem;
  top: 0.5rem;
  background: #FBFBFB;
  text-align: center;
  color: #26713A;
  font: 500 1.875rem/1.2em "sourcehansans";
  border-radius: 50%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
}

.myzx-cont2 .mySwiper4 .fzlc_v1 .a .b p {
  width: 100%;
}

.myzx-cont2 .mySwiper4 .fzlc_v1 .wegga {
  position: absolute;
  height: 12.0625rem;
  width: 18.5rem;
  left: 50%;
  margin-left: -0.8875rem;
  color: #5B5A5A;
  font: 500 1.125rem/1.625rem "sourcehansans";
  padding-left: 1.5625rem;
  padding-top: 2.1875rem;
}

@media (max-width: 768px) {
  .myzx-cont2 .mySwiper4 .fzlc_v1 .wegga {
    position: static;
    margin-left: 0;
    padding: 0;
    background: none !important;
    height: auto;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    margin-top: 0.5em;
  }
}

.myzx-cont2 .mySwiper4 .swiper-slide:nth-child(2n-1) .wegga {
  background: url(../images/ajjta.svg) no-repeat left top;
  -o-background-size: auto 100%;
     background-size: auto 100%;
  top: -12.0625rem;
}

.myzx-cont2 .mySwiper4 .swiper-slide:nth-child(2n) .wegga {
  background: url(../images/ajjta1.svg) no-repeat left top;
  -o-background-size: auto 100%;
     background-size: auto 100%;
  bottom: -12.0625rem;
}

.myzx-cont2 .mySwiper4 .swiper-slide:hover .a .b {
  background: #26713A;
  color: #fff;
}

@media (max-width: 1366px) {
  .myzx-cont2 .jtaga {
    text-align: center;
  }
}

.myzx-cont2 .jtaga .swiper-button-next1 {
  position: absolute;
  left: -8%;
  border: 1px solid #CECECE;
  border-radius: 50%;
  width: 3.9rem;
  line-height: 3.7rem;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1366px) {
  .myzx-cont2 .jtaga .swiper-button-next1 {
    position: static;
    display: inline-block;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .myzx-cont2 .jtaga .swiper-button-next1 {
    width: 2.7rem;
    line-height: 2.4rem;
  }
}

.myzx-cont2 .jtaga .swiper-button-next1 i {
  color: #9A9CA6;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .myzx-cont2 .jtaga .swiper-button-next1 i {
    font-size: 1.2rem;
  }
}

.myzx-cont2 .jtaga .swiper-button-prev1 {
  position: absolute;
  right: -8%;
  border: 1px solid #CECECE;
  border-radius: 50%;
  width: 3.9rem;
  line-height: 3.7rem;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1366px) {
  .myzx-cont2 .jtaga .swiper-button-prev1 {
    position: static;
    display: inline-block;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .myzx-cont2 .jtaga .swiper-button-prev1 {
    width: 2.7rem;
    line-height: 2.4rem;
  }
}

.myzx-cont2 .jtaga .swiper-button-prev1 i {
  color: #9A9CA6;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .myzx-cont2 .jtaga .swiper-button-prev1 i {
    font-size: 1.2rem;
  }
}

.myzx-cont3 {
  padding: 5.5375rem 0 4rem;
}

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

.myzx-cont3 .mySwiperat .over {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .myzx-cont3 .mySwiperat .over {
    margin-top: 1rem;
  }
}

.jmaggtr-tu {
  color: #000000;
  font: 500 2rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .jmaggtr-tu {
    font-size: 1.5rem;
  }
}

.yfzx-cont1 {
  position: relative;
}

.yfzx-cont1 .banimg4at {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
  width: 33.95833%;
}

.yfzx-cont1 .yfzx-a1_v1 {
  margin-top: 3.5rem;
}

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

.yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a {
  margin-top: 3.45rem;
}

@media (max-width: 768px) {
  .yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a {
    margin-top: 2rem;
  }
}

.yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a .yfzx-a1_b1 {
  width: 54.5%;
}

@media (max-width: 768px) {
  .yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a .yfzx-a1_b1 {
    width: 100%;
  }
}

.yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a .yfzx-a1_b2 {
  width: 40%;
  color: #5B5A5A;
  font: 500 1.125rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a .yfzx-a1_b2 {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.yfzx-cont1 .yfzx-a1_v1 .yfzx-a1v1a .yfzx-a1_b2 span {
  color: #26713A;
  font-weight: 600;
}

.yfzx-cont1 .yfzx-a1_v2 {
  margin-top: 3.75rem;
}

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

.yfzx-cont1 .yfzx-a1_v2 .job-list {
  margin-top: 1.5rem;
}

.yfzx-cont1 .yfzx-a1_v3 {
  margin-top: 3.375rem;
}

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

.yfzx-cont1 .yfzx-a1_v3 .yfzx-a1_v3c1 {
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  .yfzx-cont1 .yfzx-a1_v3 .yfzx-a1_v3c1 {
    margin-top: 0;
  }
}

.yfzx-cont1 .yfzx-a1_v3 .yfzx-a1_v3c1 li {
  width: 32.5%;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font: 600 1.375rem/1.5em "sourcehansans";
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.76);
  margin-top: 0.65em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .yfzx-cont1 .yfzx-a1_v3 .yfzx-a1_v3c1 li {
    width: 48%;
    font: 600 1rem/1.5em "sourcehansans";
    padding: 0.8rem 0;
  }
}

.yfzx-cont1 .yfzx-a1_v3 .yfzx-a1_v3c1 li:hover {
  background: #26713A;
  color: #fff;
}

.yfzx-a1_v4 {
  margin-top: 3.375rem;
}

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

.yfzx-a1_v4 .yfzx-a1_v4a1 {
  color: #5B5A5A;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .yfzx-a1_v4 .yfzx-a1_v4a1 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

.yfzx-a1_v4 .yfzx-a1_v4a1 span {
  color: #26713A;
  font-weight: 600;
}

.yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas {
    padding: 1em 0 2em;
  }
}

.yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas li {
  width: 32.333%;
}

@media (max-width: 768px) {
  .yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas li {
    width: 100%;
    margin-top: 1em;
  }
}

.yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas li i {
  display: block;
  overflow: hidden;
}

.yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas li h2 {
  color: #5B5A5A;
  font: 500 1.125rem/1.625rem "sourcehansans";
  background: #FBFBFB;
  border: 1px solid #EDEDED;
  padding: 0.85em 1.6em;
  height: 4.95rem;
}

@media (max-width: 768px) {
  .yfzx-a1_v4 .yfzx-a1_v4a2 .aggtas li h2 {
    height: auto;
  }
}

.yfzx-cont2 {
  background: #FBFBFB;
  padding: 5.375rem 0 4.9375rem;
  position: relative;
  overflow: hidden;
}

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

.yfzx-cont2 .wh {
  position: relative;
  z-index: 2;
}

.yfzx-cont2 .banimg4at {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32.8125%;
}

.yfzx-cont2 .yfzx-cont2a1 .title_a1 {
  width: 47.5%;
}

@media (max-width: 768px) {
  .yfzx-cont2 .yfzx-cont2a1 .title_a1 {
    width: 100%;
  }
}

.yfzx-cont2 .yfzx-cont2a1 .agf_weha {
  width: 50%;
}

.yfzx-cont2 .yfzx-cont2a1 .agf_weha li {
  padding: 0 8%;
}

.yfzx-cont2 .yfzx-cont2a1 .agf_weha li span {
  display: inline-block;
}

.yfzx-cont2 .yfzx-cont2a1 .agf_weha li p::after {
  display: none;
}

.yfzx-cont2 .yfzx-cont2a1 .wehha {
  width: 42.28571%;
  margin-right: 5%;
}

@media (max-width: 768px) {
  .yfzx-cont2 .yfzx-cont2a1 .wehha {
    width: 80%;
    margin: 1.5rem auto;
  }
}

.yfzx-cont3 {
  padding: 3.5rem 0;
}

.yfzx-cont3 .ysfa_tit {
  text-align: center;
}

.yfzx-cont3 .ysfa_tit li {
  display: inline-block;
  position: relative;
}

.yfzx-cont3 .ysfa_tit li + li {
  margin-left: 2em;
}

.yfzx-cont3 .ysfa_tit li:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  bottom: 0px;
  height: 3px;
  background: #26713A;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.yfzx-cont3 .ysfa_tit li a {
  display: block;
  color: #000000;
  font: 500 1.7rem/2em "sourcehansans";
}

.yfzx-cont3 .ysfa_tit li:hover:after, .yfzx-cont3 .ysfa_tit li.on:after {
  width: 100%;
}

.yfzx-cont3 .yfzx-cont3v1 {
  margin-top: 1.5rem;
}

.yfzx-cont3 .yfzx-cont3list1 li {
  width: 32.3333%;
  text-align: center;
  padding: 1rem 2%;
  background: #FBFBFB;
  margin-top: 0.65em;
  height: 4.8rem;
  cursor: pointer;
  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;
}

.yfzx-cont3 .yfzx-cont3list1 li:not(:nth-child(3n)) {
  margin-right: 1.5%;
}

@media (max-width: 768px) {
  .yfzx-cont3 .yfzx-cont3list1 li {
    width: 49%;
  }
  .yfzx-cont3 .yfzx-cont3list1 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .yfzx-cont3 .yfzx-cont3list1 li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

@media (max-width: 600px) {
  .yfzx-cont3 .yfzx-cont3list1 li {
    width: 100%;
  }
  .yfzx-cont3 .yfzx-cont3list1 li:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .yfzx-cont3 .yfzx-cont3list1 li:not(:nth-child(2n)) {
    margin-right: 0;
  }
}

.yfzx-cont3 .yfzx-cont3list1 li p {
  color: #666;
  font: 600 1rem/1.4em "sourcehansans";
}

.yfzx-cont3 .yfzx-cont3list1 li span {
  display: none;
  color: rgba(255, 255, 255, 0.4);
  font: 500 .875rem/1.5em "sourcehansans";
  margin-top: 0.2em;
}

.zzzx-cont1 {
  padding: 3.625rem 0;
  position: relative;
}

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

.zzzx-cont1 .banimg7-myzx {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
  width: 33.95833%;
}

.zzzx-cont1 .dl .dd {
  margin-top: 4.375rem;
}

@media (max-width: 768px) {
  .zzzx-cont1 .dl .dd {
    margin-top: 1.8rem;
  }
}

.zzzx-cont1 .dl .dd .img {
  width: 54.65616%;
}

@media (max-width: 768px) {
  .zzzx-cont1 .dl .dd .img {
    width: 100%;
  }
}

.zzzx-cont1 .dl .dd .wegga {
  width: 39.82808%;
}

@media (max-width: 768px) {
  .zzzx-cont1 .dl .dd .wegga {
    width: 100%;
    margin-top: 1.5em;
  }
}

.zzzx-cont1 .dl .dd .wegga .p {
  color: #5B5A5A;
  font: 500 1.125rem/1.5em "sourcehansans";
}

.zzzx-cont1 .dl .dd .wegga .p span {
  font-weight: 600;
}

@media (max-width: 768px) {
  .zzzx-cont1 .dl .dd .wegga .p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .zzzx-cont1 .dl .dd:nth-child(2) .img {
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .zzzx-cont1 .dl .dd:nth-child(2) .wegga {
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.zzzx-cont1 .w-accor2 {
  position: relative;
  overflow: hidden;
  -o-background-size: cover;
     background-size: cover;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .zzzx-cont1 .w-accor2 {
    margin-top: 2rem;
  }
}

.zzzx-cont1 .w-accor2 .tib-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.zzzx-cont1 .w-accor2 .tib-img .img {
  width: 100%;
  height: 100%;
  display: none;
}

.zzzx-cont1 .w-accor2 .tib-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zzzx-cont1 .w-accor2 li {
  background: rgba(0, 0, 0, 0.76);
  overflow: hidden;
}

.zzzx-cont1 .w-accor2 li + li {
  border-left: 1px solid #000;
}

.zzzx-cont1 .w-accor2 li h3 {
  color: #fff;
  font: 600 2rem/1em "sourcehansans";
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.zzzx-cont1 .w-accor2 .img_ar img.a {
  visibility: hidden;
}

@media (max-width: 600px) {
  .zzzx-cont1 .w-accor2 .img_ar img.a {
    height: 80vw;
  }
}

.zzzx-cont1 .w-accor2 .img_ar img.b {
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .zzzx-cont1 .w-accor2 .img_ar img.b {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.zzzx-cont1 .w-accor2 .img_ar .wehhata {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 0 5%;
  height: 100%;
  display: none;
}

.zzzx-cont1 .w-accor2 .img_ar .wehhata .werghga {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  padding: 0 10%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

.zzzx-cont1 .w-accor2 .img_ar .wehhata .werghga h2 {
  font: 600 2rem/1.6em "sourcehansans";
}

@media (max-width: 768px) {
  .zzzx-cont1 .w-accor2 .img_ar .wehhata .werghga h2 {
    font-size: 1.2rem;
  }
}

.zzzx-cont1 .w-accor2 .img_ar .wehhata .werghga .p {
  font: 500 1.125rem/1.4em "sourcehansans";
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  .zzzx-cont1 .w-accor2 .img_ar .wehhata .werghga .p {
    font-size: 1rem;
  }
}

.zzzx-cont1 .w-accor2 li.swiper-slide-active {
  position: relative;
}

.zzzx-cont1 .w-accor2 li.swiper-slide-active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 113, 58, 0.96);
  z-index: 1;
}

.zzzx-cont1 .w-accor2 li.swiper-slide-active h3 {
  display: none;
}

.zzzx-cont1 .w-accor2 li.swiper-slide-active .img_ar .wehhata {
  display: block;
}

.zzzx-cont1 .w-accor2 li.cur {
  background: rgba(38, 113, 58, 0.96);
}

.zzzx-cont1 .w-accor2 li.cur h3 {
  display: none;
}

.zzzx-cont1 .w-accor2 li.cur .img_ar .wehhata {
  display: block;
}

.agf_weha {
  margin-top: 1.4em;
}

@media (max-width: 768px) {
  .agf_weha {
    margin-top: 1em;
  }
}

.agf_weha li {
  text-align: center;
}

.agf_weha li span {
  display: block;
  color: #000000;
  font: 600 2.3125rem/1.4em "sourcehansans";
}

@media (max-width: 768px) {
  .agf_weha li span {
    font-size: 2rem;
  }
}

.agf_weha li p {
  color: #5B5A5A;
  font: 500 1.125rem/1.4em "sourcehansans";
}

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

.ny-news-content .news-list li.tjb {
  width: 32.333%;
  margin-bottom: 2.625rem;
  margin-right: 1.5%;
  position: relative;
  border-bottom: 2px solid #EDEDED;
}

.ny-news-content .news-list li.tjb:nth-child(4), .ny-news-content .news-list li.tjb:nth-child(7) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tjb {
    margin-bottom: 1.2rem;
    width: 49%;
    margin-right: 2%;
  }
  .ny-news-content .news-list li.tjb:nth-child(4), .ny-news-content .news-list li.tjb:nth-child(7) {
    margin-right: 2%;
  }
  .ny-news-content .news-list li.tjb:nth-child(2n+3) {
    margin-right: 0%;
  }
}

.ny-news-content .news-list li.tjb a.img {
  display: block;
}

.ny-news-content .news-list li.tjb .wenta {
  padding: 1.5625rem 5%;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tjb .wenta {
    padding: 0.9rem 5%;
  }
}

.ny-news-content .news-list li.tjb .wenta h2 a {
  display: block;
  color: #000000;
  font: 600 1.125rem/1.4em "sourcehansans";
  height: 2.8em;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tjb .wenta h2 a {
    font-size: 1rem;
  }
}

.ny-news-content .news-list li.tjb .wenta span {
  display: block;
  color: #848484;
  font: 500 1rem/1.4em "sourcehansans";
}

.ny-news-content .news-list li.tjb::after {
  content: "";
  width: 0;
  height: 2px;
  background: #26713A;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.ny-news-content .news-list li.tjb:hover::after {
  width: 100%;
}

.ny-news-content .news-list li.tja {
  width: 100%;
  box-shadow: 0 0.25rem 0.7rem rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 3.125rem 0 4.5rem;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tja {
    margin: 0 0 2rem;
  }
}

.ny-news-content .news-list li.tja a.img {
  width: 50.07143%;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tja a.img {
    width: 100%;
  }
}

.ny-news-content .news-list li.tja .wenta {
  width: 49.92857%;
  padding: 0 4%;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tja .wenta {
    width: 100%;
    padding: 4%;
  }
}

.ny-news-content .news-list li.tja .wenta h2 a {
  display: block;
  color: #000000;
  font: 600 1.375rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .ny-news-content .news-list li.tja .wenta h2 a {
    font-size: 1.2rem;
  }
}

.ny-news-content .news-list li.tja .wenta span {
  display: block;
  color: #848484;
  font: 500 1rem/1.5em "sourcehansans";
  padding: 0.5em 0;
}

.ny-news-content .news-list li.tja .wenta .p {
  color: #5B5A5A;
  font: 500 1rem/1.5em "sourcehansans";
}

.ny-news-content .news-list li.tja .wenta a.a {
  display: block;
  margin-top: 1.75rem;
}

.ny-news-content {
  overflow: hidden;
  position: relative;
}

.ny-news-content .banimg4 {
  position: absolute;
  width: 33.95833%;
  right: 2%;
  top: 10%;
  z-index: -1;
}

.lianxi-conss {
  padding: 5rem 0 5.125rem;
}

@media (max-width: 768px) {
  .lianxi-conss {
    padding: 1.8rem 0 2.125rem;
  }
}

.lianxi-conss .left {
  width: 22%;
}

@media (max-width: 990px) {
  .lianxi-conss .left {
    width: 100%;
  }
}

.lianxi-conss .left .liuyan .liuyan-ul li {
  margin: 0.3125rem 0;
}

.lianxi-conss .left .liuyan .liuyan-ul li input {
  border-bottom: 0.0625rem solid #000;
  width: 100%;
  height: 3.125rem;
  background: transparent;
}

.lianxi-conss .left .liuyan .liuyan-ul li input::-webkit-input-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li input:-moz-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li input::-moz-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li input:-ms-input-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li input::placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li textarea {
  color: #000000;
  font-size: 0.875rem;
  border: none;
  border-bottom: 0.0625rem solid #000;
  width: 100%;
  height: 6.25rem;
  background: transparent;
}

.lianxi-conss .left .liuyan .liuyan-ul li textarea::-webkit-input-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li textarea:-moz-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li textarea::-moz-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li textarea:-ms-input-placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li textarea::placeholder {
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .left .liuyan .liuyan-ul li button {
  color: #FFF;
  border: none;
  font-size: 0.875rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  -webkit-transition: 400ms ease-in-out;
  -o-transition: 400ms ease-in-out;
  border-radius: 3.125rem;
  display: block;
  background-color: #000;
  width: 8.75rem;
  line-height: 3.125rem;
  height: 3.125rem;
  margin-top: 1.625rem;
  text-align: center;
}

.lianxi-conss .left .liuyan .liuyan-ul li button:hover {
  box-shadow: inset 0 0 0rem 1.875rem #26713A;
  color: #FFF;
}

.lianxi-conss .right {
  position: relative;
  margin-top: -12.5rem;
  width: 75%;
  padding: 2.5rem 2.5rem 3.25rem;
  background: #ffffff;
  border-radius: 1.4375rem;
}

@media (max-width: 990px) {
  .lianxi-conss .right {
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .lianxi-conss .right {
    padding: 2rem 1.5rem 2.25rem;
  }
}

.lianxi-conss .right .lx-bt {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #26713A;
}

.lianxi-conss .right .zongbu {
  margin: 2.5rem 0;
  border-top: 0.0625rem solid #D6D6D6;
  border-bottom: 0.0625rem solid #D6D6D6;
  padding: 1.875rem 0 0;
}

.lianxi-conss .right .pp1 {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #000000;
}

.lianxi-conss .right .zp-div-con {
  font-size: 1rem;
  line-height: 1.5;
  color: #353535;
  margin-top: 0.625rem;
}

.lianxi-conss .right .fb-con .row {
  margin-bottom: 2.875rem;
}

.xingqing-con .rq {
  font-size: 1rem;
  line-height: 3.125rem;
  color: #000000;
}

.xingqing-con .rq i {
  font-size: 1.25rem;
  display: inline-block;
  margin-right: 0.3125rem;
}

.xingqing-con .biaoti-tilte {
  font-size: 1.875rem;
  line-height: 2.8rem;
  color: #000000;
}

@media (max-width: 768px) {
  .xingqing-con .biaoti-tilte {
    font-size: 1.475rem;
  }
}

.xingqing-con .fneng {
  font-size: 1rem;
  line-height: 3.125rem;
  color: #000000;
}

.xingqing-con .fneng .social-share {
  margin-left: 0.625rem;
}

.xingqing-con .fneng .social-share a {
  background: #000 !important;
  border: none;
  color: #fff;
}

.xingqing-con .xinwn-consss {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  margin: 1.875rem 0;
  padding: 1.875rem 0 3.125rem;
  border-top: 0.0625rem solid #D6D6D6;
  border-bottom: 0.0625rem solid #D6D6D6;
}

.xingqing-con .xinwn-consss img {
  /* width: 100%; */
}

@media (max-width: 768px) {
  .xingqing-con .xinwn-consss {
    margin: 1rem 0;
    padding: 1rem 0 2rem;
  }
}

.xingqing-con .pain .prev a,
.xingqing-con .pain .next a {
  display: inline-block;
  width: 8.75rem;
  line-height: 3.125rem;
  height: 3.125rem;
  font-size: 0.875rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  color: #848484;
  border-radius: 3.125rem;
  text-align: center;
  border: 1px solid #848484;
}

.xingqing-con .pain .prev a:hover,
.xingqing-con .pain .next a:hover {
  border: 1px solid #26713A;
  box-shadow: inset 0 0 0rem 1.875rem #26713A;
  color: #FFF;
}

.xingqing-con .xg-bt {
  font-size: 1.5rem;
  line-height: 3.125rem;
  color: #000000;
  margin-top: 2.5rem;
}

.xingqing-con .relevant-ul {
  margin-top: 0.75rem;
}

.xingqing-con .relevant-ul li {
  width: 45%;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #848484;
  margin: 10px 0;
  float: left;
}

.xingqing-con .relevant-ul li .bt-title {
  width: 60%;
  display: -webkit-box;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.5;
}

.xingqing-con .relevant-ul li .bt-title a {
  color: #848484;
}

.xingqing-con .relevant-ul li .bt-title a:hover {
  color: #26713A;
}

.xingqing-con .relevant-ul li .rq-date a {
  color: #848484;
}

.xingqing-con .relevant-ul li .rq-date a:hover {
  color: #26713A;
}

.xingqing-con .relevant-ul li:nth-child(2n) {
  float: right;
}

.fang {
  overflow: hidden;
}

/* 图片动画 */
.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);
}

.fang img {
  cursor: pointer;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.ny-content-cp {
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
}

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

.ny-content-cp .banimg4 {
  width: 22.1875%;
  position: absolute;
  left: 0;
  top: 4%;
  z-index: -1;
}

.ny-content-cp .banimg5 {
  width: 18.02083%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cp-list-aetya1 {
  margin-top: 2rem;
}

.cp-list-aetya1 li {
  width: 24%;
  margin-bottom: -webkit-calc(4%/3);
  margin-bottom: -moz-calc(4%/3);
  margin-bottom: calc(4%/3);
}

.cp-list-aetya1 li:not(:nth-child(4n)) {
  margin-right: -webkit-calc(4%/3);
  margin-right: -moz-calc(4%/3);
  margin-right: calc(4%/3);
}

@media (max-width: 768px) {
  .cp-list-aetya1 li {
    width: 49%;
  }
  .cp-list-aetya1 li:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .cp-list-aetya1 li:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

.cp-list-aetya1 li a.img {
  display: block;
  position: relative;
}

.cp-list-aetya1 li a.img i {
  display: block;
  font-size: 0;
}

.cp-list-aetya1 li a.img p {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 7%;
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.7);
  font: 600 1.25rem/1.4em "sourcehansans";
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .cp-list-aetya1 li a.img p {
    font-size: 1rem;
  }
}

.cp-list-aetya1 li a.img:hover p {
  background: rgba(38, 113, 58, 0.9);
}

.cp-content2 {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .cp-content2 {
    margin-top: 1.5rem;
  }
}

.cp-content2 .mySwiperatb {
  margin: 3.75rem 0 3.9rem;
  padding: 0.7rem;
}

@media (max-width: 768px) {
  .cp-content2 .mySwiperatb {
    margin: 1.8rem 0 2rem;
  }
}

.cp-content2 .mySwiperatb .swiper-slide {
  box-shadow: 0 0.2rem 0.7rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .cp-content2 .mySwiperatb .swiper-slide {
    margin-bottom: 1.5rem;
  }
}

.cp-content2 .mySwiperatb .swiper-slide a.img {
  display: block;
}

.cp-content2 .mySwiperatb .swiper-slide a.img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}

.cp-content2 .mySwiperatb .swiper-slide a.img img {
  width: 100%;
}

.cp-content2 .mySwiperatb .swiper-slide a.img .wehha {
  background: #E2E2E2;
  padding: 2.9375rem 0;
  color: #5B5A5A;
  font: 600 1.25rem/1.5em "sourcehansans";
  height: 4.5em;
  text-align: center;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

@media (max-width: 768px) {
  .cp-content2 .mySwiperatb .swiper-slide a.img .wehha {
    font-size: 1rem;
    padding: 2rem 0;
  }
}

.cp-show-cont1 {
  margin-top: 5rem;
}

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

.cp-show-cont1 .content {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .cp-show-cont1 .content {
    margin-top: 1.2rem;
  }
}

.cp-show-cont1 .content table {
  border: 1px solid #F5F5F5;
  color: #595959;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .cp-show-cont1 .content table {
    font-size: 1.1rem;
  }
}

.cp-show-cont1 .content table, .cp-show-cont1 .content table * {
  border-color: #F5F5F5;
}

.cp-show-cont1 .content table tr:nth-child(2n-1) {
  background: #E2E2E2;
}

.cp-show-cont1 .content table tr:nth-child(1) {
  background: #26713A;
  color: #fff;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .cp-show-cont1 .content table tr:nth-child(1) {
    font-size: 1rem;
  }
}

.cp-show-cont2 {
  margin-top: 3.125rem;
  background: #FBFBFB;
  padding: 2.875rem 0 4.375rem;
}

@media (max-width: 768px) {
  .cp-show-cont2 {
    margin-top: 2rem;
    padding: 1.5rem 0 2.3rem;
  }
}

.cp-show-cont2 form {
  margin-top: 2rem;
}

.cp-show-cont2 form input {
  width: 100%;
  border: 1px solid #A5A5A5;
  font: 500 1rem/3em "sourcehansans";
  border-radius: 1.5em;
  text-indent: 1.2em;
  margin-bottom: 1.3rem;
  background: transparent;
}

.cp-show-cont2 form textarea {
  width: 100%;
  border: 1px solid #A5A5A5;
  font: 500 1rem/3em "sourcehansans";
  border-radius: 0.8em;
  text-indent: 1.2em;
  margin-bottom: 1.3rem;
  background: transparent;
}

.cp-show-cont2 form button {
  color: #26713A;
  font: 500 1rem/3em "sourcehansans";
  border-radius: 1.5em;
  border: 1px solid #26713A;
  background: transparent;
}

@media (max-width: 768px) {
  .cp-show-cont2 form button {
    width: 9.375rem;
  }
}

.cp-show-cont2 form button::before {
  background: #26713A;
}

.cp-show-cont2 form button:hover {
  color: #fff;
}

.table-abt {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-abt .table tr td{
    text-align: center;
    vertical-align:middle;
}
.table-abt .table tr td:last-child{
    text-align: left;
}

.table-bordered {
  border: none;
  overflow-x: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .table-bordered {
    width: 768px;
  }
}

.ss-list li.tjb {
  width: 32.333%;
  margin-bottom: 2.625rem;
  margin-right: 1.5%;
  position: relative;
  border-bottom: 2px solid #EDEDED;
}

.ss-list li.tjb:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 768px) {
  .ss-list li.tjb {
    margin-bottom: 1.2rem;
    width: 49%;
    margin-right: 2%;
  }
  .ss-list li.tjb:nth-child(3n) {
    margin-right: 2%;
  }
  .ss-list li.tjb:nth-child(2n) {
    margin-right: 0%;
  }
}

.ss-list li.tjb a.img {
  display: block;
}

.ss-list li.tjb .wenta {
  padding: 1.5625rem 5%;
}

@media (max-width: 768px) {
  .ss-list li.tjb .wenta {
    padding: 0.9rem 5%;
  }
}

.ss-list li.tjb .wenta h2 a {
  display: block;
  color: #000000;
  font: 600 1.125rem/1.4em "sourcehansans";
  height: 2.8em;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ss-list li.tjb .wenta h2 a {
    font-size: 1rem;
  }
}

.ss-list li.tjb .wenta span {
  display: block;
  color: #848484;
  font: 500 1rem/1.4em "sourcehansans";
}

.ss-list li.tjb::after {
  content: "";
  width: 0;
  height: 2px;
  background: #26713A;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.ss-list li.tjb:hover::after {
  width: 100%;
}

@media (max-width: 990px) {
  #dituContent {
    height: 50vw !important;
  }
}

@media (max-width: 540px) {
  #dituContent {
    height: 80vw !important;
  }
}

a.i-ma {
  position: relative;
}

a.i-ma b {
  display: none;
  position: absolute;
  top: 105%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
}

@media (max-width: 768px) {
  a.i-ma b {
    padding: 7px 4px 4px;
  }
}

a.i-ma b img {
  max-width: 100px !important;
  width: 4.625rem !important;
}

.loadmore-nodata {
  margin: 0 auto 1.5em;
}

.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;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #26713A;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  margin: 0 0.2rem;
}

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

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #26713A;
  border-color: #26713A;
  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: 1rem 0 3.5rem;
  text-align: center;
  list-style: none;
}

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

.pager li {
  display: inline;
}

.pager li > a, .pager li > span {
  display: inline-block;
  padding: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 3rem;
  line-height: -webkit-calc(3rem - 2px);
  line-height: -moz-calc(3rem - 2px);
  line-height: calc(3rem - 2px);
}

.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: #fff;
}

.bais span {
  color: #333;
}

.ceshitext {
  display: none;
}

.tc_wen {
  padding: 15px;
  font: 500 1rem/1.5em "sourcehansans";
}

.tc_wen img {
  max-width: 100%;
}

.layui-layer {
  max-width: 90%;
  margin: 0 auto;
  max-height: 60vh;
}

@media (max-width: 990px) {
  .lxwm-cont2-v1 #container {
    height: 80vw !important;
  }
}

@media (max-width: 990px) {
  .m-sj {
    display: none !important;
  }
}

.pc-sj {
  display: none;
}

@media (max-width: 990px) {
  .pc-sj {
    display: block !important;
  }
}



/* 地图 */
.lxwm-cont2-v1 .cost{
  display: block !important;
}
.xwd_sdtit{
  margin-bottom: 3rem;
}
@media (max-width: 768px){
  .xwd_sdtit{
    margin-bottom: 1.2rem;
  } 
}
.xwd_sdtit li{
  margin: 0 1em;
}
@media (max-width: 768px){
  .xwd_sdtit li{
    margin: 0 0.5em;
  }
}
.xwd_sdtit li a{
  display: block;
  font: 500 1rem/2em "sourcehansans";
  padding: 0.5em 2em;
  background: #f1f1f1;
  border-radius: 0.2em;
}
.xwd_sdtit li.on a{
  background: #26713A;
  color: #fff;
}
@media (max-width: 768px){
  .xwd_sdtit li a{
    display: block;
    font: 500 0.8rem/2em "sourcehansans";
    padding: 0.5em 1em;
    background: #f1f1f1;
    border-radius: 0.2em;
  }
}
.content-window-card {
  position: relative;
  box-shadow: none;
  bottom: 0;
  left: 0;
  width: auto;
  padding: 0;
}

.content-window-card p {
  height: 2rem;
}

.custom-info {
  border: solid 1px silver;
}

div.info-top {
  position: relative;
  background: none repeat scroll 0 0 #F9F9F9;
  border-bottom: 1px solid #CCC;
  border-radius: 5px 5px 0 0;
}

div.info-top div {
  display: inline-block;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 31px;
  padding: 0 10px;
}

div.info-top img {
  position: absolute;
  top: 10px;
  right: 10px;
  transition-duration: 0.25s;
}

div.info-top img:hover {
  box-shadow: 0px 0px 5px #000;
}

div.info-middle {
  font-size: 12px;
  padding: 10px 6px;
  line-height: 20px;
}

div.info-bottom {
  height: 0px;
  width: 100%;
  clear: both;
  text-align: center;
}

div.info-bottom img {
  position: relative;
  z-index: 104;
}

.map span {
  margin-left: 5px;
  font-size: 11px;
}

.info-middle img {
  float: left;
  margin-right: 6px;
}

.dzsxwen{
  color: #505353;
    font-size: 1rem;
    line-height: 1.9rem;
    padding: 1.9rem 2.2rem;
    border: 1px solid #dbd9d9;
}
.dzsxwen .fujin{
  color: #000;
  font-size: 1.5rem;
  margin-bottom: .625rem;
  font-weight: 700;
}
.BMap_shadow img{
  display: none;
}
.amap-info-content{
  
}
.amap-info-content label{
  font-size: 1rem;
}
.amap-info-content .input-item{
  font-size: 0.8rem;
  color: #666;
}
@media (max-width: 768px){
  .dzsxwen{
    padding: 1.4rem 1rem;
  }
  .dzsxwen .fujin{
    font-size: 1.2rem;
  }
}