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

* {
  outline: none;
}



p {
  padding: 0;
  margin: 0;
}

.wh {
  padding: 0 12.5%;
}

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

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

.wh1 {
  padding: 0 2.86458%;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: .875rem;
  }
}

.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #02489D;
  color: #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.6s;*/
  /*-moz-transition-duration: 0.6s;*/
  /*  -o-transition-duration: 0.6s;*/
  /*     transition-duration: 0.6s;*/
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}

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

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

.more-msl.bs {
  color: #fff;
  border: 1px solid #fff;
}

.more-msl.bs:before {
  background: #fff;
}

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

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

@media (max-width: 768px) {
  .more-msl1 {
    line-height: 2.8rem;
    width: 9rem;
    font-size: .875rem;
  }
}

.more-msl1:before {
  background: #08938E;
}

.more-msl1:after {
  background: #02489D;
}

.more-msl1:before, .more-msl1:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  -moz-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    -o-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
       transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.more-msl1:hover {
  color: #fff;
  border-color: #02489D;
}

.more-msl1:hover:before, .more-msl1:hover:after {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
       transform: translate3d(0, 100%, 0);
}

.more-msl1:hover:after {
  -webkit-transition-delay: 0.175s;
  -moz-transition-delay: 0.175s;
    -o-transition-delay: 0.175s;
       transition-delay: 0.175s;
}

.more-msl1.bs {
  color: #fff;
  border: 1px solid #fff;
}

.more-msl1.bs:before {
  background: #08938E;
}

.more-msl1.bs:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}

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

.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}

@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    /* padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden; */
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img img {
    /* position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; */
  }
  .pc-banner .mySwipera .swiper-slide .img > img{
    height: auto;
  }
  /* .m-imgny {
    padding-bottom: 50%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  } */
}

.m-img-news {
  padding-bottom: 68.20276%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

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

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

.head .head2 {
  line-height: 5.625rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  background: #fff;
  position: relative;    background-color: #eee;
}

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

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

.head .head2 .logo a img.b {
  display: none;
}

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

.head .head2 .sska, .head .head2 .zywena {
  font-size: 1rem;
  color: #fff;
}

.head .head2 .sska a, .head .head2 .zywena a {
  font: 500 1.125rem/1em "sourcehansans";
  color: #333;
}

.head .head2 .sska i, .head .head2 .zywena i {
  color: #333;
  font-size: 1.25rem;
  margin-right: 0.2em;
}

.head .head2 .zywena {
  text-align: center;
  margin-left: 1em;
  margin-right: 1rem;
  position: relative;
}

#menu {
  margin-right: 5vw;
}

@media (max-width: 1440px) {
  #menu {
    /*margin-right: 7vw;*/
  }
}

@media (max-width: 1366px) {
  #menu {
    margin-right: 2vw;
  }
}

@media (max-width: 1280px) {
  #menu {
    /*margin-right: 3vw;*/
  }
}

#menu .nav_a1 li {
  float: left;
}

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

#menu .nav_a1 li > a {
  font-size: 1.25rem;
  padding: 0 0.5em;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

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

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

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

#menu .nav_a1 li > a span {
  position: relative;
  display: block;
  padding: 0 1em;
}
@media (max-width: 1080px){
  #menu .nav_a1 li > a span {
    padding: 0 0.25em;
  }
}

#menu .nav_a1 li > a span:after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: #02489D;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

#menu .nav_a1 li .sec {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background: white;
  z-index: 999;
  text-align: center;
  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);
  text-align: center;
  line-height: 1;
}

#menu .nav_a1 li .sec > a {
  font: 500 1rem/3em "sourcehansans";
  padding: 0.3em 0;
  color: #000;
  display: inline-block;
}

#menu .nav_a1 li .sec > a + a {
  margin-left: 3%;
}

#menu .nav_a1 li .sec > a:hover {
  color: #02489D;
}

#menu .nav_a1 li .sec .rux-aas dl + dl {
  margin-left: 5%;
}

#menu .nav_a1 li .sec .rux-aas dl > a {
  font: 600 1.25rem/3em "sourcehansans";
  padding: 0.3em 0;
  color: #000;
  display: inline-block;
  margin-right: 2.4em;
}

#menu .nav_a1 li .sec .rux-aas dl > a:hover {
  color: #02489D;
}

#menu .nav_a1 li .sec .rux-aas dl dd a {
  color: #000;
  display: inline-block;
  font: 500 1.125rem/3em "sourcehansans";
}

#menu .nav_a1 li .sec .rux-aas dl dd a:hover {
  color: #02489D;
}

#menu .nav_a1 li .sec .rux-aas dl dd a + a::before {
  content: "|";
  color: #CDCDCD;
  padding: 0 1em;
}

#menu .nav_a1 li .sec1 {
  background: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  top: -webkit-calc(100% + 1px);
  top: -moz-calc(100% + 1px);
  top: calc(100% + 1px);
  line-height: 1.5em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
   -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
       transform: translateY(20px);
}

#menu .nav_a1 li .sec1 a {
  color: #909090;
}

#menu .nav_a1 li .sec1 .wh {
  margin: 0 -4%;
}

#menu .nav_a1 li .sec1 dl {
  width: -webkit-calc(100%/7);
  width: -moz-calc(100%/7);
  width: calc(100%/7);
  padding: 1rem 1%;
}

@media (max-width: 1366px) {
  #menu .nav_a1 li .sec1 dl {
    width: -webkit-calc(100%/6);
    width: -moz-calc(100%/6);
    width: calc(100%/6);
  }
}

#menu .nav_a1 li .sec1 dl .cont dt a {
  color: #595959;
  font: 500 1.25rem/1.5em "sourcehansans";
  border-bottom: 1px solid #CECECE;
  display: block;
  padding: 0.3em 0;
}

#menu .nav_a1 li .sec1 dl .cont dt a:hover {
  color: #02489D;
}

#menu .nav_a1 li .sec1 dl .cont dd {
  margin-top: 1em;
}

#menu .nav_a1 li .sec1 dl .cont dd a {
  display: block;
  color: #909090;
  font: 500 1rem/1.5em "sourcehansans";
  word-wrap: break-word;
  word-break: break-all;
}

#menu .nav_a1 li .sec1 dl .cont dd a:hover {
  color: #02489D;
}

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

#menu .nav_a1 li:hover .sec, #menu .nav_a1 li:hover .sec1 {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transform: translateY(0);
}

#menu .nav_a1 li:hover > a span::after, #menu .nav_a1 li.active > a span::after {
  width: 100%;
}

/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 999;
  display: none;
}

.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25%;
}

.inp {
  width: 100%;
  height: 100px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.bu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
}

.bu .iconfont {
  font-size: 3.125rem;
}

.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: white;
  cursor: pointer;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.search-con:hover {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}

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

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

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

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

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

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

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

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

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

.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 36px;
  max-width: 40%;
}

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

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

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}

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

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}

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

.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}

.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

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

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

.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.m-bm-head.white {
  background: #fff;
}

.m-bm-head.white .m-bm-head-box .m-bm-navbtn span, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:after, .m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}

.m-bm-head.white .m-bm-menu {
  background: #fff;
}

.m-bm-head.white .m-bm-nav > li, .m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}

.m-bm-head.white .m-bm-nav > li > a, .m-bm-head.white .m-bm-nav .aniut i, .m-bm-head.white .m-bm-nav > li .sec a, .m-bm-head.white .mrhgxt {
  color: #000;
}
 body {
    padding-top: 5.625rem;
  }
@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}

/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

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

.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  /*height: 44rem;*/
}

.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: calc(100vh - 16rem);
  -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 .mySwipera .banwez {
  width: 100%;
  z-index: 99;
  text-align: center;
  color: #FFFFFF;
}

.pc-banner .mySwipera .banwez dt {
  font: 600 4.375rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez dt {
    font-size: 1.8rem;
    text-shadow: 0 0 0.2em rgba(0, 0, 0, 0.5)
  }
}

.pc-banner .mySwipera .banwez dd {
  font: 500 2.25rem/1.5em "montserrat";
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez dd {
    font-size: 1rem;
    margin-top: 0.3em; text-shadow: 0 0 0.2em rgba(0, 0, 0, 0.5)
  }
}

.pc-banner .mySwipera .banwez a.more-msl {
  display: block;
  margin: 0 auto;
  margin-top: 2em;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez a.more-msl {
    margin-top: 0.6em;    line-height: 2.2rem;
  }
}

.pc-banner .mySwipera .swiper-pagination {
  position: absolute;
  left: 0;
  bottom: 3%;
  width: 100%;
}

.pc-banner .mySwipera .swiper-pagination span {
  opacity: 1;
  background: transparent;
  width: 2.5625rem;
  height: .3125rem;
  border-radius: .1875rem;
  margin: 0 .4375rem;
  border: 1px solid #fff;
}

.pc-banner .mySwipera .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .swiper-pagination span {
    margin: 0 .2375rem;
  }
}
@media (max-width: 990px){
  .pc-banner .mySwipera .swiper-slide .img > img{
    height: auto;
  }
}

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

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

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

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

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

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

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

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

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

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

.xz img {
  -webkit-transition: all .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);
}

.gong-p {
  color: #323232;
  font: 500 1.25rem/1.6em "sourcehansans";
  text-align: justify;
}

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

.title1 {
  color: #323232;
  /*text-align: center;*/
}
.title1.ta{
   text-align: center; 
}
.title1 .tit {
  font: 600 2.9rem/1.5em "sourcehansans";
}

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

.title1 .tit::after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: #02489D;
  /*margin: 0 auto;*/
  margin-top: 0.1em;
  display: none;
}
.title1.ta .tit::after{
    margin: 0 auto;
}
.title1 .p {
  margin-top: 0.5em;
  /* text-align: center; */
}

.title1.bs {
  color: #fff;
}

.title1.bs .p {
  color: #fff;
}
.cont1.index{
    padding-top: 3rem;
}

.cont1 {
  padding: 5.625rem 0 6.875rem;
  background: url(https://cloud-assets-brwq.oss-cn-heyuan.aliyuncs.com/lernew0418/uploads/20230904/55884cbb08c66222ad2d35f9aae518f9.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}
.cont1 .title1 .p{
  text-align: center;
}
.cont1::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .cont1 {
    padding: 2rem 0;
  }
}
.cont1 .wh{
  position: relative;
  z-index: 1;
}
.cont1 .title1 {
    text-align: center;
}

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

.cont1 .mySwiper1 {
  margin: 0 1rem;
  margin-top: 2.8125rem;
  position: relative;
}

@media (max-width: 768px) {
  .cont1 .mySwiper1 {
    margin: 0 4%;
    margin-top: 1.5rem;
  }
}

.cont1 .mySwiper1 .swiper-wrapper {
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont1 .mySwiper1 .swiper-slide .cont {
  position: relative;
  -webkit-transform: scale(0.85);
     -moz-transform: scale(0.85);
      -ms-transform: scale(0.85);
       -o-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.cont1 .mySwiper1 .swiper-slide .img {
  border-radius: 1.8rem;
  overflow: hidden;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  position: relative;
}
.cont1 .mySwiper1 .swiper-slide .img::after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://cloud-assets-brwq.oss-cn-heyuan.aliyuncs.com/lernew0418/uploads/20230524/2b49dde68432a016a4a6a43f674a5b0d.svg) no-repeat center bottom;
  background-size: cover;
}

@media (max-width: 1440px) {
  .cont1 .mySwiper1 .swiper-slide .img {
    height: 25rem;
  }
}

@media (max-width: 768px) {
  .cont1 .mySwiper1 .swiper-slide .img {
    height: auto;
    border-radius: 1rem;
  }
}

.cont1 .mySwiper1 .swiper-slide .img i {
  display: block;
  font-size: 0;
}

.cont1 .mySwiper1 .swiper-slide .img i img {
  width: 100%;
}

.cont1 .mySwiper1 .swiper-slide .img .wenz {
  color: #fff;
  text-align: center;
  top: auto;
  bottom: 3rem;
  width: 100%;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
  z-index: 1;
}
.cont1 .mySwiper1 .swiper-slide .img .wenz dt a,.cont1 .mySwiper1 .swiper-slide .img .wenz dd a{
  color: #fff;
}

.cont1 .mySwiper1 .swiper-slide .img .wenz dt {
  font: 600 2.5rem/1.5em "sourcehansans";
}
.cont1 .mySwiper1 .next1a,.cont1 .mySwiper1 .prev1a{
  position: absolute;
  top: 50%;
  z-index: 9;transform: translateY(-50%); 
}
.cont1 .mySwiper1 .next1a i,.cont1 .mySwiper1 .prev1a i{
  color: rgba(255, 255, 255, 0.5);
  font: 500 4rem/1.2em "sourcehansans";    transition: all .6s;
}
.cont1 .mySwiper1 .next1a i:hover,.cont1 .mySwiper1 .prev1a i:hover{
  color: #fff;
}
.cont1 .mySwiper1 .next1a{
  left: 4%;
}
.cont1 .mySwiper1 .prev1a{
  right: 4%;
}
@media (max-width: 768px) {
  .cont1 .mySwiper1 .swiper-slide .img .wenz dt {
    font-size: 1.5rem;
  }
}

.cont1 .mySwiper1 .swiper-slide .img .wenz dd {
  font: 500 1.125rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cont1 .mySwiper1 .swiper-slide .img .wenz dd {
    font-size: 1rem;
    padding: 0.5em 5%;
  }
}

.cont1 .mySwiper1 .swiper-slide .img .wenz a.more-msl {
  display: none;
  margin-top: 1.4rem;
}

@media (max-width: 768px) {
  .cont1 .mySwiper1 .swiper-slide .img .wenz a.more-msl {
    margin-top: 0.8rem;
  }
}

.cont1 .mySwiper1 .swiper-slide.swiper-slide-active .cont {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.cont1 .mySwiper1 .swiper-slide.swiper-slide-active .img {
  height: 100%;
}

.cont1 .mySwiper1 .swiper-slide.swiper-slide-active .img .wenz {
  -webkit-transform: translateY(-2rem);
     -moz-transform: translateY(-2rem);
      -ms-transform: translateY(-2rem);
       -o-transform: translateY(-2rem);
          transform: translateY(-2rem);
}

.cont1 .mySwiper1 .swiper-slide.swiper-slide-active .img .wenz a.more-msl {
  display: inline-block;
}

.cont1 .swiper-pagination1 {
  margin-top: 5rem;
  padding: 0 32%;
}

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

.cont1 .swiper-pagination1 span {
  background: #fff;
  height: .375rem;
  opacity: 1;
  border-radius: .25rem;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .cont1 .swiper-pagination1 span {
    height: .25rem;
    margin: 0 0.3rem;
  }
}

.cont1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #02489D;
}

.cont2 {
  padding: 4.375rem 0 1.375rem;
  position: relative;
}

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

.cont2::after {
  content: "";
  width: 100%;
  height: 52.5%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: #F3F4F8;
}

@media (max-width: 768px) {
  .cont2::after {
    height: 54%;
    display: none;
  }
}

.cont2 .a2_v1 .a2_b1 {
  width: 37.77778%;
}

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

.cont2 .a2_v1 .a2_b1 .gong-p {
  margin-top: 4.5em;
}

@media (max-width: 768px) {
  .cont2 .a2_v1 .a2_b1 .gong-p {
    margin-top: 1.5rem;
  }
}

.cont2 .a2_v1 .a2_b1 a.more-msl {
  margin-top: 1.5em;
}

.cont2 .a2_v1 .a2_b2 {
  width: 58.54167%;
}
.cont2 .a2_v1 .a2_b2 .mySwiper8 .swiper-pagination1{
    text-align: center;
}
.cont2 .a2_v1 .a2_b2 .mySwiper8 .swiper-pagination1 span{
width: 1rem;
height: 1rem;
background: #666;
margin: 0 0.35rem;
}
.cont2 .a2_v1 .a2_b2 .mySwiper8 .swiper-pagination1 span.swiper-pagination-bullet-active{
    background: #165BAA;
}

@media (max-width: 768px) {
  .cont2 .a2_v1 .a2_b2 {
    width: 100%;
    margin-top: 2rem;
    display: none;
  }
}

.cont2 .a2_v1 .a2_b2 img {
  width: 100%;
}

.cont3 {
  background: url(../images/bj1.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
     background-attachment: fixed;
  padding: 5rem 0 9.625rem;
}
.cont3 .gong-p{
    text-align: center;
    margin-top: 0.5em;
}
@media (max-width: 768px) {
  .cont3 {
    padding: 2rem 0;
  }
}

.cont3 .a3_v1 .a3_b1 {
  width: 66%;
}
.cont3 .a3_v1{
    margin-top: 3rem;
}
@media (max-width: 768px) {
    .cont3 .a3_v1{
    margin-top: 1.5rem;
}
  .cont3 .a3_v1 .a3_b1 {
    width: 100%;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.cont3 .a3_v1 .a3_b1 .tabca {
  background: #FFFFFF;
  border-radius: 1.875rem;
  padding: 1rem 6.04333% 6.04333%;
  border-radius: 1.875rem;
  overflow: hidden;
  text-align: right;
}

.cont3 .a3_v1 .a3_b1 .tabca i {
  width: 66.3626%;
  font-size: 0;
  display: inline-block;
}

.cont3 .a3_v1 .a3_b1 .tabca i img {
  width: 100%;
}

.cont3 .a3_v1 .a3_b1 .tabca dl {
  text-align: left;
  color: #323232;
  margin-top: -2em;
}

.cont3 .a3_v1 .a3_b1 .tabca dl dt {
  font: 600 1.875rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b1 .tabca dl dt {
    font-size: 1.25rem;
  }
}

.cont3 .a3_v1 .a3_b1 .tabca dl dd {
  font: 500 1.125rem/1.5em "sourcehansans";
  max-width: 70%;
  height: 3em;
  overflow: hidden;
  margin: 0.4em 0 1em;
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b1 .tabca dl dd {
    font-size: 1rem;
    height: auto;
    max-width: 100%;
  }
}

.cont3 .a3_v1 .a3_b1 .tabca dl a.more {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background: #165BAA;
  color: #fff;
  line-height: 3.125rem;
  border-radius: 50%;
  text-align: center;
}

.cont3 .a3_v1 .a3_b1 .tabca dl a.more i {
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b1 .tabca dl a.more {
    width: 2.8rem;
    height: 2.8rem;
    line-height: 2.8rem;
  }
  .cont3 .a3_v1 .a3_b1 .tabca dl a.more i {
    font-size: 1.25rem;
  }
}

.cont3 .a3_v1 .a3_b2 {
  width: 30%;
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 {
    width: 100%;
    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;
  }
}

.cont3 .a3_v1 .a3_b2 dl {
  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;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100%/5);
  position: relative;
  /* cursor: pointer; */
  
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 dl {
    height: auto;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    margin-bottom: 1em;
  }
}

.cont3 .a3_v1 .a3_b2 dl::after {
  content: "";
  display: block;
  position: absolute;
  right: 4.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 80%;
  width: 1px;
  background: #585858;
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 dl::after {
    display: none;
  }
}

.cont3 .a3_v1 .a3_b2 dl::before {
  content: "";
  display: block;
  position: absolute;
  right: 4.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  height: .625rem;
  width: .625rem;
  background: #02489D;
  border-radius: 50%;
  opacity: 0;
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 dl::before {
    display: none;
  }
}

.cont3 .a3_v1 .a3_b2 dl .cont {
  text-align: right;
  margin-right: 2.5em;
  color: #3F3F3F;
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 dl .cont {
    text-align: center;
    margin-right: 0;
    width: 100%;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0.5em;
  }
}

.cont3 .a3_v1 .a3_b2 dl .cont dt {
  font: 600 1.5rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 dl .cont dt {
    font-size: 1.125rem;
  }
}

.cont3 .a3_v1 .a3_b2 dl .cont dd {
  font: 500 1.125rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cont3 .a3_v1 .a3_b2 dl .cont dd {
    font-size: 1rem;
    height: 3em;
    overflow: hidden;
  }
}

.cont3 .a3_v1 .a3_b2 dl .img {
  background: #fff;
  border: 1px solid #CFCFCF;
  border-radius: 50%;
  width: 3.625rem;
  height: 3.625rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont3 .a3_v1 .a3_b2 dl .img img {
  width: 1.875rem;
}

.cont3 .a3_v1 .a3_b2 dl.on::after {
  background: #02489D;
}

.cont3 .a3_v1 .a3_b2 dl.on::before {
  opacity: 1;
}

.cont3 .a3_v1 .a3_b2 dl.on .cont dt a{
  color: #02489D;
}

.cont3 .a3_v1 .a3_b2 dl.on .img {
  background: #02489D;
  border: 1px solid #02489D;
}

.cont3 .a3_v1 .a3_b2 dl.on .img img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(110deg) brightness(105%) contrast(104%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(110deg) brightness(105%) contrast(104%);
}

.cont4 {
  background: url(../images/bj2.jpg) no-repeat center bottom;
  -o-background-size: cover;
     background-size: cover;
  background-attachment: fixed;
  padding: 8.5rem 0;
}

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

.cont4 .a4_v1 .a4_b1 {
  width: 42.29167%;
}

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

.cont4 .a4_v1 .a4_b1 .title1 .tit::after {
  background: #fff;
}

.cont4 .a4_v1 .a4_b1 a.more-msl {
  margin-top: 1.8em;
}

@media (max-width: 768px) {
  .cont4 .a4_v1 .a4_b1 a.more-msl {
    margin-top: 1.5rem;
  }
}

.cont4 .a4_v1 .a4_b2 {
  width: 41.45833%;
}

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

.cont4 .a4_v1 .a4_b2 dl {
  width: 17rem;
  height: 17rem;
  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;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.6875rem;
  margin: 1.5rem 0;
}

@media (max-width: 1024px) {
  .cont4 .a4_v1 .a4_b2 dl {
    width: 15rem;
    height: 15rem;
  }
}

@media (max-width: 768px) {
  .cont4 .a4_v1 .a4_b2 dl {
    width: 42.5vw;
    height: 42.5vw;
    margin: 1rem 0;
  }
}

.cont4 .a4_v1 .a4_b2 dl i {
  display: block;
  font-size: 0;
  width: 51.10294%;
}

.cont4 .a4_v1 .a4_b2 dl i img {
  width: 100%;
}

.cont5 {
  background: #F3F4F8;
  padding: 7.625rem 0 9.5rem;
}

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

@media (max-width: 768px) {
  .cont5 .sort1 {
    width: 100%;
    margin-top: 1.5rem;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cont5 .sort1 li + li {
  margin-left: 1.5em;
}

@media (max-width: 768px) {
  .cont5 .sort1 li + li {
    margin-left: 1em;
  }
}

.cont5 .sort1 li a {
  display: block;
  border: 1px solid #323232;
  color: #323232;
  font: 500 1rem/3.125rem "sourcehansans";
  border-radius: 1.875rem;
  width: 10.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .cont5 .sort1 li a {
    width: 8.5rem;
    line-height: 2.5rem;
  }
}

.cont5 .sort1 li:hover a, .cont5 .sort1 li.on a {
  color: #fff;
  background: #02489D;
  border-color: #02489D;
}

.cont5 .a5_v1 {
  margin-top: 3.125rem;
}

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

.cont5 .a5_v1 .a5_b1 .xw_a1 {
  width: 32.08333%;
}

@media (max-width: 768px) {
  .cont5 .a5_v1 .a5_b1 .xw_a1 {
    display: none;
  }
}

.cont5 .a5_v1 .a5_b1 .xw_a1 li {
  border-radius: 1.875rem;
  overflow: hidden;
  height: 100%;
}

.cont5 .a5_v1 .a5_b1 .xw_a1 li a {
  display: block;
  position: relative;
  height: 100%;
}

.cont5 .a5_v1 .a5_b1 .xw_a1 li a i {
  display: block;
  font-size: 0;
  height: 100%;
}

.cont5 .a5_v1 .a5_b1 .xw_a1 li a i img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont5 .a5_v1 .a5_b1 .xw_a1 li a .tit {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(2, 72, 157, 0.9);
  color: #fff;
  width: 100%;
  font: 600 1.25rem/1.5em "sourcehansans";
  padding: 1.3rem 2rem;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 {
  width: 32.08333%;
  border-radius: 1.875rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cont5 .a5_v1 .a5_b1 .xw_a2 {
    display: none;
  }
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li {
  height: 100%;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont {
  height: 45%;
  padding: 2rem;
  background-color: #02489D;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont a.tit {
  display: block;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  color: #fff;
  font: 600 1.25rem/1.5em "sourcehansans";
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont .p {
  color: #fff;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 0.5em;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont .data {
  color: #FFFFFF;
  font: 500 1rem/1.5em "sourcehansans";
  margin-top: 1.25em;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont .data a {
  display: block;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont .data a i {
  font-size: 1.8rem;
  width: 1.5rem;
  display: block;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li .cont .data a i img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li a.img {
  height: 55%;
  display: block;
  font-size: 0;
}

.cont5 .a5_v1 .a5_b1 .xw_a2 li a.img img {
  width: 100%;
  height: 100%;
}

.cont5 .a5_v1 .a5_b1 .xw_a3 {
  width: 32.08333%;
}

@media (max-width: 768px) {
  .cont5 .a5_v1 .a5_b1 .xw_a3 {
    width: 100%;
  }
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li + li {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .cont5 .a5_v1 .a5_b1 .xw_a3 li + li {
    margin-top: 1rem;
  }
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont {
  padding: 1.35rem 2rem;
  background-color: #fff;
  border-radius: 1.875rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cont5 .a5_v1 .a5_b1 .xw_a3 li .cont {
    border-radius: 1rem;
    padding: 1.35rem;
  }
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont a.tit {
  display: block;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  color: #323232;
  font: 600 1.25rem/1.5em "sourcehansans";
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont .p {
  color: #6F6F6F;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 0.3em;
}

@media (max-width: 768px) {
  .cont5 .a5_v1 .a5_b1 .xw_a3 li .cont .p {
    font-size: 1rem;
  }
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont .data {
  color: #C2C2C2;
  font: 500 1rem/1.5em "sourcehansans";
  margin-top: 0.4em;
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont .data a {
  display: block;
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont .data a i {
  font-size: 1.8rem;
  width: 1.5rem;
  display: block;
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont .data a i img {
  width: 100%;
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont:hover {
  background: #02489D;
}

.cont5 .a5_v1 .a5_b1 .xw_a3 li .cont:hover a.tit, .cont5 .a5_v1 .a5_b1 .xw_a3 li .cont:hover .p, .cont5 .a5_v1 .a5_b1 .xw_a3 li .cont:hover .data {
  color: #fff;
}

.cont6 {
  background: url(../images/bj3.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  background-attachment: fixed;
  padding: 12rem 0 11.5625rem;
}

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

.cont6 dl {
  text-align: center;
  color: #fff;
}

.cont6 dl dt {
  font: 600 3.125rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cont6 dl dt {
    font-size: 1.8rem;
  }
}

.cont6 dl dd {
  font: 500 1.8rem/1.5em "sourcehansans";
  padding: 0.15em 0 1em;
}

@media (max-width: 768px) {
  .cont6 dl dd {
    font-size: 1.25rem;
  }
}

.foot-fot {
  position: relative;
  background: #111111;
}

.foot-fot .foota1 {
  position: relative;
  z-index: 1;
  padding: 5.25rem 0 5rem;
}

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

.foot-fot .foota1 .foot-tit {
  color: #fff;
  font: 600 1.25rem/1.5em "sourcehansans";
}

.foot-fot .foota1 .foot-tit a {
  color: #fff;
  display: block;
}

.foot-fot .foota1 .dseca {
  margin-top: 0.6em;
}

.foot-fot .foota1 .dseca > a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font: 500 1rem/1.8em "sourcehansans";
}

.foot-fot .foota1 .dseca > a:hover {
  color: #fff;
}

.foot-fot .foota1 .dseca p {
  color: rgba(255, 255, 255, 0.6);
  font: 500 1rem/1.8em "sourcehansans";
}

.foot-fot .foota1 .fo-a3 .contact1 {
  border: 1px solid #3F3F3F;
  border-radius: 1.5625rem;
  margin-top: 1.5em;
}

.foot-fot .foota1 .fo-a3 .contact1 input {
  background: transparent;
  border-right: none;
  width: 16.875rem;
  color: #fff;
  font: 500 1rem/3.12rem "sourcehansans";
  text-indent: 1.2em;
}

.foot-fot .foota1 .fo-a3 .contact1 button {
  color: #fff;
  background: transparent;
  text-align: center;
  width: 3.25rem;
  font: 500 1rem/3.12rem "sourcehansans";
  border: none;
  border-left: 1px solid #3F3F3F;
  outline: none;
}

.foot-fot .foota1 .fo-a3 .contact1 button i {
  font-size: 1.25rem;
}
.foot-fot .foota1 .fo-a4{
  width: 100%;
  color: #fff;
  font: 500 1rem/1.5em "sourcehansans";
  margin-top: 1.5rem;
}
.foot-fot .foota1 .fo-a4 a{
  color: rgba(255, 255, 255, 0.8);
  font: 500 1rem/1.5em "sourcehansans";
}
.foot-fot .foota1 .fo-a4 a:hover{
  color: #fff;
}

.foot-fot .foota2 {
  background: #1A1B1C;
  color: #FFFFFF;
  font: 500 1rem/1.65em "sourcehansans";
  padding: 1.2em 0;
}

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

.foot-fot .foota2 a:hover {
  font-weight: 600;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}

.hidden {
  display: none;
}

.dbb {
  height: 50px;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 30%;
  z-index: 999;
  width: 3.125rem;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
  border-radius: .625rem;
}
.zd_erha1{
     position: fixed;
  left: 0.5%;
  bottom: 30%;
  z-index: 999;
  width: 3.125rem;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
  border-radius: .625rem;
}


@media (max-width: 768px) {
    .zd_erha{
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
    }
  .zd_erha .aat_list li {
     display: none !important;
     border-top: none;
  }
  .zd_erha .aat_list li:after{
      display: none;
  }
   .zd_erha .aat_list li.db{
      display: block !important;
  }
  .zd_erha .aat_list li > a:hover{
      background: none !important;
  }
  .zd_erha .aat_list li > a{
      padding: 9% !important;
  }
}

.zd_erha .aat_list li,.zd_erha1 .aat_list li {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0;
}

.zd_erha .aat_list li + li:after,.zd_erha1 li + li:after {
  content: "";
  width: 50%;
  height: 1px;
  background: #DEDDDD;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.zd_erha .aat_list li.db{
  display: none;
}
.zd_erha .aat_list li > a {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
  padding: 10% 15%;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.zd_erha1 li > a {
  display: block;
  width: 100%;
  height: 2.25rem;
  position: relative;
  margin: 0 auto;
  padding: 10% 5%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  text-align: center;
}
.zd_erha1 li > a p{
    color: #fff;
    font-size: 1rem;
}
.zd_erha .aat_list li > a:hover{
  background: rgba(0, 0, 0, 0.5);
}

.zd_erha .aat_list li > a img {
  width: 100%;
  height: 100%;
}

.zd_erha .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1rem;
  width: auto;
  right: -webkit-calc(110% + 5px);
  right: -moz-calc(110% + 5px);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
     -moz-transform: translateX(110%);
      -ms-transform: translateX(110%);
       -o-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  -moz-transition: all .7s;
  transition: all .7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}

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

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

.zd_erha .aat_list li:hover .cbl-cont {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
.zd_erha1 li > a{
        /*margin: 0.4rem auto;*/
}

.nbanner {
  overflow: hidden;
}

.nbanner .img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.nbanner .nbanner-wen1 {
  width: 100%;
  z-index: 9;
}

@media (max-width: 990px) {
  .nbanner .nbanner-wen1 {
    top: 50%;
  }
}

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

.nbanner .nbanner-wen1 .banner-cont h2 {
  font: 600 4rem/1.5em "montserrat";
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont h2 {
    font-size: 1.85rem;
  }
}

.nbanner .nbanner-wen1 .banner-cont .p {
  font: 500 2rem/1.3em "sourcehansans";
  text-transform: uppercase;
  margin-top: 0.25em;
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p {
    font-size: 1.125rem;
  }
}

.fo-av {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 9;
  display: none;
}

.fo-av .ajhhsd {
  color: #FFFFFF;
  font: 500 1rem/2rem "sourcehansans";
  padding: 1.3em 0;
}

@media (max-width: 768px) {
  .fo-av .ajhhsd {
    line-height: 1.5em;
    padding: 1em 0;
  }
}

.fo-av .ajhhsd span:last-child {
  display: none;
}

.fo-av .ajhhsd a {
  color: #FFFFFF;
}

.fo-av .ajhhsd a:hover {
  color: #02489D;
}

.n_mbx {
  position: relative;
  margin-top: 1rem;
}

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

.n_mbx .n_src {
  font-size: 0;
  text-align: center;
}

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

.n_mbx .n_src li + li {
  margin-left: 1.375rem;
}

@media (max-width: 768px) {
  .n_mbx .n_src li + li {
    margin-left: 0;
  }
  .n_mbx .n_src li{
    margin: 0.2rem 1% !important;
    width: 48%;
  }
}

.n_mbx .n_src li a {
  display: block;
  color: #323232;
  font: 500 1rem/3.125rem "sourcehansans";
  position: relative;
  text-transform: uppercase;
  padding: 0 1.25em;
  border: 1px solid #323232;
  border-radius: 1.625rem;
  min-width: 10.5rem;
}

@media (max-width: 768px) {
  .n_mbx .n_src li a {
    min-width: inherit;
    padding: 0;
    line-height: 2.5em;
    width: 100%;
    display: block;
  }
}

.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a, .n_mbx .n_src li.on a {
  color: #fff;
  background: #02489D;
  border-color: #02489D;
}

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

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

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0 0;
  border-radius: 4px;
}

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

.pagination > li {
  display: inline;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  margin-left: -1px;
  line-height: 2.375rem;
  color: #7D7D7D;
  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;
  line-height: 2.1;
}

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

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
  z-index: 2;
  color: #02489D;
  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: #02489D;
  border-color: #02489D;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

.pager li {
  display: inline;
}

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

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

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

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

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

.ajhhsd {
  color: #4D4D4D;
  font: 500 1rem/1.5em "sourcehansans";
  padding: 1em 0;
}

.ajhhsd a {
  color: #4D4D4D;
}

.ajhhsd a:hover {
  color: #02489D;
}

.ajhhsd span {
  padding: 0 0.3em;
}

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

.xw_ny_banner {
  background: #333;
  -o-background-size: cover;
     background-size: cover;
  padding: 13.5rem 0 7.25rem;
}

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

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

.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "montserrat";
}

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

.nav-page li {
  padding-bottom: 1em;
}

.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}

.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "sourcehansans";
  color: #333;
}

@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}

.nav-page li .sec {
  margin-top: 0.5em;
}

.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "sourcehansans";
  color: #777;
  margin-right: 1em;
}

.nav-page li .sec a:hover {
  color: #02489D;
}

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

.ssy-sskaa {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}

.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}

.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "sourcehansans";
  background: transparent;
  color: #999;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}

.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}

.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "sourcehansans";
  color: #333;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.sssjga {
  color: #333;
  font: 600 1.25rem/1.5em "sourcehansans";
  margin-bottom: 1em;
}

.ss-list li + li {
  margin-top: 2rem;
}

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

.ss-list li div.img {
  width: 25%;
}

@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}

.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}

.ss-list li .xw-nycont {
  width: 72%;
}

.ss-list li .xw-nycont.w100 {
  width: 100%;
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}

.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "sourcehansans";
  overflow: hidden;
  margin-bottom: 0.2em;
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}

.ss-list li .xw-nycont span {
  color: #02489D;
  font: 500 1rem/1.5em "montserrat";
}

.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "montserrat";
}

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

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

.shzr-content {
  color: #252323;
  font: 500 1rem/2em "sourcehansans";
  padding: 1rem 0 3rem;
}

.shzr-content h4 {
  margin-bottom: 0.5em;
}

.list_content {
  padding: 4.5rem 0;
}
.hycp .col-md-4{
    margin-bottom: 1.625rem;
}
.hycp .col-md-4 img{
    width: 100%;
}
.hycp .col-md-4 p:nth-child(1){
    padding: 10px 0;
    font-size: 1.125rem;
}

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

@-webkit-keyframes scale2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

.ny-tit .tit {
  color: #251816;
  font: 600 2.8125rem/1.5em "sourcehansans";
}

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

.ny-tit .tit::after {
  content: "";
  display: block;
  width: 2em;
  background: #02489D;
  height: 1px;
  margin: 0.05em 0 0.2em;
  display: none;
}

@media (max-width: 768px) {
  .ny-tit .tit::after {
    margin: 0.1em 0 0.3em;
  }
}

.ny-tit p {
  color: #737171;
  font: 500 1.25rem/1.5em "sourcehansans";
}

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

#abt1, #abt2, #abt3, #abt4, #abt5 {
  height: 5.625rem;
  margin-top: -5.625rem;
}

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

.abt-cont1 {
  background: url(https://cloud-assets-brwq.oss-cn-heyuan.aliyuncs.com/lernew0418/uploads/20230818/5e01712315992612c85bab78d8c2cafe.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 8rem 0;
}

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

.abt-cont1 .title1 {
  /* text-align: center; */
}

.abt-cont1 .title1 .tit {
  width: 100%;
  line-height: 1.4em;
}

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

.abt-cont1 .title1 .tit::after {
  margin: 0.7rem 0 1.5rem;
}

.abt-cont1 .title1 .gong-p {
  /* text-align: center; */
  color: #606060;
  font: 500 1.25rem/1.8em "sourcehansans";
  width: 100%;
}

@media (max-width: 768px) {
  .abt-cont1 .title1 .tit::after {
    margin: 0.5rem 0 1.2rem;
  }
  .abt-cont1 .title1 .gong-p {
    font-size: 1.125rem;
    text-align: justify;
    width: 100%;
  }
}

.abt-cont2 {
  background: url(../images/bja2.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  background-attachment: fixed;
  padding: 10.3125rem 0 10.9375rem;
}

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

.abt-cont2 .abt_a1_v1 .abt_a1_b1 {
  width: 46.73611%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt_a1_v1 .abt_a1_b1 {
    width: 100%;
  }
}

.abt-cont2 .abt_a1_v1 .abt_a1_b1 .gong-p {
  margin: 1em 0 2em;
}

@media (max-width: 768px) {
  .abt-cont2 .abt_a1_v1 .abt_a1_b1 .gong-p {
    margin: 0.5em 0 1em;
  }
}

.abt-cont2 .abt_a1_v1 .abt_a1_b1 .tbxas {
  padding-right: 10%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt_a1_v1 .abt_a1_b1 .tbxas {
    padding-right: 0;
  }
}

.abt-cont2 .abt_a1_v1 .abt_a1_b1 .tbxas li {
  width: 13.81872%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt_a1_v1 .abt_a1_b1 .tbxas li {
    width: 16%;
  }
}

.abt-cont2 .abt_a1_v1 .abt_a1_b1 .tbxas li i {
  display: block;
  font-size: 0;
}

.abt-cont2 .abt_a1_v1 .abt_a1_b1 .tbxas li i img {
  width: 100%;
}

.abt-cont2 .abt_a1_v1 .abt_a1_b1 a.more-msl {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .abt-cont2 .abt_a1_v1 .abt_a1_b1 a.more-msl {
    margin-top: 1.25rem;
  }
}

.abt-cont2 .abt_a1_v1 .abt_a1_b2 {
  width: 45.13889%;
}

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

.abt-cont2 .abt_a1_v1 .abt_a1_b2 .mySwiper2 .swiper-slide .img {
  display: block;
}

.abt-cont2 .abt_a1_v1 .abt_a1_b2 .mySwiper2 .swiper-slide .img i {
  display: block;
  font-size: 0;
}

.abt-cont2 .abt_a1_v1 .abt_a1_b2 .mySwiper2 .swiper-slide .img i img {
  width: 100%;
}

.abt-cont2 .abt_a1_v1 .abt_a1_b2 .mySwiper2 .swiper-slide .img u {
  display: block;
  font-size: 0;
  width: 100%;
  height: 100%;
  padding: 18%;
}

.abt-cont2 .abt_a1_v1 .abt_a1_b2 .mySwiper2 .swiper-slide .img u img {
  width: 100%;
  height: 100%;
}

.abt-cont3 .abt-a3_v1 {
  background: url(../images/bja3.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 5.625rem 0 6rem;
}

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

.abt-cont3 .abt-a3_v1 .fzlc {
  margin-top: 3.25rem;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc {
    margin-top: 1.25rem;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 {
  position: relative;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide {
  padding: 0 9.72222%;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide {
    padding: 0;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .img {
  width: 60.15762%;
  overflow: hidden;
  border-radius: 1.5625rem;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .img {
    border-radius: 1rem;
    width: 100%;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .img img {
  width: 100%;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p {
  width: 30%;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p {
    width: 100%;
    margin-top: 0.8rem;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p h2 {
  color: #02489D;
  font: 600 2.5rem/1.2em "montserrat";
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p h2 {
    font-size: 1.6rem;
    margin-top: 0.25em;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p .tit {
  color: #323232;
  font: 600 1.875rem/1.5em "sourcehansans";
  margin-top: 0.3em;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p .tit {
    font-size: 1.4rem;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p .p {
  color: #323232;
  font: 500 1.125rem/1.7em "sourcehansans";
  margin-top: 0.8em;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .swiper-slide .cont .cont-p .p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas {
    display: none;
  }
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .next1a {
  left: 0;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .prev1a {
  right: 0;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .next1a, .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .prev1a {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #EAEAEA;
  width: 3.75rem;
  height: 3.75rem;
  text-align: center;
  border-radius: 50%;
  z-index: 9;
  background: #FFFFFF;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .next1a i, .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .prev1a i {
  color: #131313;
  font-size: 1.125rem;
  line-height: 3.75rem;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .next1a:hover, .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .prev1a:hover {
  background: #02489D;
  border-color: #02489D;
}

.abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .next1a:hover i, .abt-cont3 .abt-a3_v1 .fzlc .mySwiper11 .jtxas .prev1a:hover i {
  color: #fff;
}

.abt-cont3 .abt-a3_v2 {
  background: #02489D;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 {
    padding: 2rem 0;
  }
}
.abt-cont3 .abt-a3_v2 .mySwiper3{
    width: 100%;
    margin: 0 auto;
}
.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide {
  opacity: 0.4;
}
.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide:nth-child(1) .xhasz i{
    display: none;
}

.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide .xhasz {
  color: #fff;
}

.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide .xhasz i {
  display: block;
  width: 0.85rem;
  margin-right: 0.6em;
}
.tdt-control-copyright{
    display: none;
}
@media (max-width: 768px) {
    .abt-cont3 .abt-a3_v2 .mySwiper3{
    width: 100%;
}
  .abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide .xhasz i {
    width: 0.5rem;
  }
}

.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide .xhasz i img {
  width: 100%;
}

.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide .xhasz .szxds {
  font: 600 2rem/1.5em "montserrat";
}

@media (max-width: 768px) {
  .abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide .xhasz .szxds {
    font-size: 1.25rem;
  }
}

.abt-cont3 .abt-a3_v2 .mySwiper3 .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.zzry-body {
  background: #FAFAFA;
}

.zzry-list {
  margin: 0 -1.5%;
  margin-top: 3rem;
}

@media (max-width: 990px) {
  .zzry-list {
    margin: 0 -1%;
  }
}

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

.zzry-list li {
  width: 25%;
  padding: 0 1.5%;
  margin-top: 1.4rem;
}

@media (max-width: 990px) {
  .zzry-list li {
    width: 25%;
    padding: 0 1%;
  }
}

@media (max-width: 768px) {
  .zzry-list li {
    margin-top: 0.8rem;
    width: 50%;
  }
}

.zzry-list li a.block {
  display: block;
}

.zzry-list li a.block .img {
  width: 100%;
  overflow: hidden;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.07);
  border-radius: 0.2rem;
}

.zzry-list li a.block .img i {
  display: block;
  font-size: 0;
  overflow: hidden;
}

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

.zzry-list li a.block h2 {
  text-align: center;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 0.5em;
}

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

.abt-cont4 {
  padding: 4.0625rem 0 7.9375rem;
}

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

.abt-cont4 .abt_a4_v1 .abt_a4_b1 {
  width: 17.36111%;
  border-right: 1px solid #B9B9B9;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .abt-cont4 .abt_a4_v1 .abt_a4_b1 {
    width: 100%;
    border-right: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 0 1.5rem;
  }
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 dl {
  color: #323232;
  font: 500 1rem/3.125rem "sourcehansans";
  border: 1px solid #323232;
  border-radius: 1.625rem;
  width: 67.2%;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 768px) {
  .abt-cont4 .abt_a4_v1 .abt_a4_b1 dl {
    width: 32.333%;
    line-height: 3rem;
    /* flex: auto; */
  }
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 dl + dl {
  margin-top: 1.5625rem;
}

@media (max-width: 768px) {
  .abt-cont4 .abt_a4_v1 .abt_a4_b1 dl + dl {
    margin-top: 0;
  }
}

.abt-cont4 .abt_a4_v1 .abt_a4_b1 dl.on {
  background: #02489D;
  color: #fff;
  border-color: #02489D;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 {
  width: 20.48611%;
}

@media (max-width: 768px) {
  .abt-cont4 .abt_a4_v1 .abt_a4_b2 {
    width: 100%;
  }
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl {
  padding-left: 12%;
}

@media (max-width: 768px) {
  .abt-cont4 .abt_a4_v1 .abt_a4_b2 dl {
    padding-left: 0;
    padding-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a {
  display: block;
  color: #323232;
  font: 500 1rem/1.5em "sourcehansans";
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a + a {
  margin-top: 1.25em;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a:hover, .abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a.active {
  color: #02489D;
}

.abt-cont4 .abt_a4_v1 .abt_a4_b3 {
  width: 62.15278%;
}

@media (max-width: 768px) {
  .abt-cont4 .abt_a4_v1 .abt_a4_b3 {
    width: 100%;
  }
  .abt-cont4 .abt_a4_v1 .abt_a4_b3 .amap-icon img {
    width: 20px !important;
    height: 26px !important;
  }
  .abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a + a{
    margin-top: 0.5em
  }
  .abt-cont4 .abt_a4_v1 .abt_a4_b2 dl a{
    margin-top: 0.5em;
    width: 49%;
  }
}

.abt-cont4 .abt_a4_v1 .abt_a4_b3 #map {
  width: 100%;
  height: 23.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.lx-bja1 {
  background: url(../images/bja4.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 4.5rem 0 4.6875rem;
}

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

.lx-bja1 .lx-cont1 .lx_a1_v1 {
  margin-top: 2.1875rem;
}

@media (max-width: 768px) {
  .lx-bja1 .lx-cont1 .lx_a1_v1 {
    margin-top: 0.5rem;
  }
}

.lx-bja1 .lx-cont1 .lx_a1_v1 dl {
  width: 31.94444%;
  background: #fff;
  border: 1px solid #D3D3D3;
  border-radius: 1.5625rem;
  text-align: center;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .lx-bja1 .lx-cont1 .lx_a1_v1 dl {
    width: 100%;
    margin-top: 1rem;
    border-radius: 1rem;
  }
}

.lx-bja1 .lx-cont1 .lx_a1_v1 dl i {
  display: block;
  font-size: 0;
  width: 2.875rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .lx-bja1 .lx-cont1 .lx_a1_v1 dl i {
    width: 2.5rem;
  }
}

.lx-bja1 .lx-cont1 .lx_a1_v1 dl i img {
  width: 100%;
}

.lx-bja1 .lx-cont1 .lx_a1_v1 dl dt {
  color: #323232;
  font: 600 1.5rem/1.5em "sourcehansans";
  padding: 0.6em 0 0.3em;
}

@media (max-width: 768px) {
  .lx-bja1 .lx-cont1 .lx_a1_v1 dl dt {
    font-size: 1.25rem;
  }
}

.lx-bja1 .lx-cont1 .lx_a1_v1 dl dd {
  color: #323232;
  font: 600 1.25rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .lx-bja1 .lx-cont1 .lx_a1_v1 dl dd {
    font-size: 1rem;
    padding: 0 1em;
  }
}

.lx-cont1 {
  margin-top: 3.875rem;
}

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

.jjfa-cont5 .gong-p {
  font-size: 1.125rem;
  margin-top: 1em;
}

.jjfa-cont5 form {
  margin-top: 0.5em;
}

.jjfa-cont5 form .msg-a1 .inpt {
  width: 32.28571%;
  margin-top: 1rem;
  position: relative;
}
.jjfa-cont5 form .msg-a1 .inpt .m_label{
    position: absolute;
    left: 1.5em;
    top: 0;
    color: #777777;
  font: 500 1rem/3.125rem "sourcehansans";
}
.jjfa-cont5 form .msg-a1 .inpt .m_label span{
    color: #f00;
}
@media (max-width: 768px) {
  .jjfa-cont5 form .msg-a1 .inpt {
    width: 100%;
  }
}

.jjfa-cont5 form .msg-a1 .inpt input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #777777;
  font: 500 1rem/3.125rem "sourcehansans";
  border-radius: 1.6875rem;
  padding: 0 1.5em;
}

.jjfa-cont5 form .msg-a1 .inpt xm-select {
  width: 100%;
  color: #6B6A6A;
  font: 500 1rem/3.125rem "helvetica";
  padding: 0 1.5em;
  border: none;
  height: 3.125rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1.6875rem; 
}
.jjfa-cont5 form .msg-a1 .inpt xm-select .xm-label{
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.jjfa-cont5 form .msg-a1 .inpt xm-select .scroll{
  max-height: 100%;
  overflow-y: auto;
}
.jjfa-cont5 form .msg-a1 .inpt xm-select .scroll::-webkit-scrollbar {
  width:3px;
  height:3px;
  background-color: #F5F5F5;
  }
  .jjfa-cont5 form .msg-a1 .inpt xm-select .scroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
  }
  .jjfa-cont5 form .msg-a1 .inpt xm-select .scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  }
.jjfa-cont5 form .msg-a1 .inpt xm-select > .xm-icon{
  right: 1.5em;
}
.jjfa-cont5 form .msg-a1 .inpt xm-select > .xm-tips{
  color: #777777;
  font: 500 1rem/3.125rem "sourcehansans";
}
.jjfa-cont5 form .msg-a1 .inpt xm-select > .xm-body .xm-option-content{
  line-height: 36px;
}

.jjfa-cont5 form .msg-a1 .inpt select option {
  font: 500 1rem/2rem "helvetica";
  height: 2rem;
}

.jjfa-cont5 form .msg-a2 {
  margin-top: 1.625rem;
  position: relative;
}

@media (max-width: 768px) {
  .jjfa-cont5 form .msg-a2 {
    margin-top: 1rem;
  }
}

.jjfa-cont5 form .msg-a2 textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #777777;
  font: 500 1rem/1.5rem "sourcehansans";
  border-radius: .9375rem;
  padding: 1em 1.5em;
}

.jjfa-cont5 .div_aghgha {
  margin-top: 1rem;
}

.jjfa-cont5 .div_aghgha .more-msl {
  background: #02489D;
  border-color: #02489D;
  color: #fff;
}

.lx-bja2 {
  background: #02489D;
  text-align: center;
  color: #fff;
  padding: 3.25rem 0;
}

.lx-bja2 .tit {
  font-size: 2rem;
  line-height: 1.5em;
}

.lx-bja2 a.more-msl {
  margin-top: 1.5em;
}

.dow-content {
  padding: 5rem 0 1rem;
}

@media (max-width: 768px) {
  .dow-content {
    padding: 2rem 0 0.5rem;
  }
  .lx-bja2 .tit{
      font-size: 1.35rem;
  }
}

.dow-content .dow-list {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .dow-content .dow-list {
    margin-top: 0;
  }
}

.dow-content .dow-list li {
  border-bottom: 1px solid #DBD9D9;
  padding: 2.25rem 0 1.375rem;
}

@media (max-width: 768px) {
  .dow-content .dow-list li {
    padding: 1.2rem 0 0.8rem;
  }
}

.dow-content .dow-list li a .wehxa dt {
  color: #3F3F3F;
  font: 600 1.875rem/1.4em "sourcehansans";
}

@media (max-width: 768px) {
  .dow-content .dow-list li a .wehxa dt {
    font-size: 1.125rem;
  }
}

.dow-content .dow-list li a .wehxa dt:hover {
  color: #02489D;
}

.dow-content .dow-list li a .wehxa .p {
  margin-top: 0.35em;
}

@media (max-width: 768px) {
  .dow-content .dow-list li a .wehxa .p {
    padding-bottom: 0.2em;
  }
}

.dow-content .dow-list li a .wehxa .p span {
  display: inline-block;
  color: #797979;
  font: 500 1.25rem/1.4em "sourcehansans";
}

@media (max-width: 768px) {
  .dow-content .dow-list li a .wehxa .p span {
    font-size: 1rem;
  }
}

.dow-content .dow-list li a .wehxa .p span + span {
  margin-left: 2em;
}

@media (max-width: 768px) {
  .dow-content .dow-list li a .wehxa .p span + span {
    margin-left: 1em;
  }
}

.dow-content .dow-list li a .xza {
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  background: #C5C0C0;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 768px) {
    .dow-content .dow-list li a .wehxa{
        width: calc(97% - 3rem);
    }
  .dow-content .dow-list li a .xza {
    width: 3rem;
    height: 3rem;
    line-height: 2.8rem;
  }
}

.dow-content .dow-list li a .xza img {
  width: 45%;
}

.dow-content .dow-list li a .xza:hover {
  background: #02489D;
}

.n-content {
  padding: 5rem 0 1rem;
}

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

.zxzx-cont .mySwiper4 {
  padding: 0 1px 3.875rem;
  position: relative;
  margin-top: 3rem;
}

@media (max-width: 1366px) {
  .zxzx-cont .mySwiper4 {
    padding: 0 1px 3.875rem;
  }
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 {
    padding: 0 1px 0;
    margin-top: 1.5rem;
  }
}
input.inp:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}
input.inp {
	-webkit-text-fill-color: #fff;  
}
i.jjats-as{
        display: inline-block;
        position: relative;
}
.zxzx-cont .mySwiper4 .swiper-slide {
  /*opacity: 0.5;*/
}

.zxzx-cont .mySwiper4 .swiper-slide .cont {
  position: relative;
}

.zxzx-cont .mySwiper4 .swiper-slide .cont a.img {
  display: block;
  font-size: 0;
  border-radius: 1.5625rem;
   padding-bottom: 60%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
}
.zxzx-cont .mySwiper4 .swiper-slide .cont a.img img {
  width: 100%;
   position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.zxzx-cont .mySwiper4 .swiper-slide .cont .da-cont {
  position: absolute;
  left: 50%;
  width: 86.28571%;
  bottom: -3.875rem;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f3f4f8;
  border-radius: 1.875rem;
  padding: 1.6rem 2.375rem;
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 .swiper-slide .cont .da-cont {
    padding: 1rem;
    border-radius: 1rem;
    position: static;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    margin: -15vw auto 0;
  }
}

.zxzx-cont .mySwiper4 .swiper-slide .cont .da-cont a.name {
  display: block;
  color: #323232;
  font: 600 1.25rem/1.5em "sourcehansans";
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 .swiper-slide .cont .da-cont a.name {
    font-size: 1.125rem;
  }
}

.zxzx-cont .mySwiper4 .swiper-slide .cont .da-cont dd {
  color: #323232;
  font: 500 1.125rem/1.7em "sourcehansans";
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 .swiper-slide .cont .da-cont dd {
    font-size: 1rem;
    margin-top: 0.2em;
  }
}

.zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-active, .zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-next {
  opacity: 1;
}

.zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-active .cont:hover .da-cont, .zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-next .cont:hover .da-cont {
  background: #02489D;
}

.zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-active .cont:hover .da-cont a.name, .zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-active .cont:hover .da-cont dd, .zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-next .cont:hover .da-cont a.name, .zxzx-cont .mySwiper4 .swiper-slide.swiper-slide-next .cont:hover .da-cont dd {
  color: #fff;
}

.zxzx-cont .mySwiper4 .jtxas .next1a, .zxzx-cont .mySwiper4 .jtxas .prev1a {
  position: absolute;
  z-index: 9;
  top: 43%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.zxzx-cont .mySwiper4 .jtxas .next1a i, .zxzx-cont .mySwiper4 .jtxas .prev1a i {
  color: #fff;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 .jtxas .next1a i, .zxzx-cont .mySwiper4 .jtxas .prev1a i {
    font-size: 2rem;
  }
}

.zxzx-cont .mySwiper4 .jtxas .next1a {
  left: 2%;
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 .jtxas .next1a {
    left: 4%;
  }
}

.zxzx-cont .mySwiper4 .jtxas .prev1a {
  right: 2%;
}

@media (max-width: 768px) {
  .zxzx-cont .mySwiper4 .jtxas .prev1a {
    right: 4%;
  }
}

.xw-ss-bj {
  margin-top: 2.8125rem;
  display: none;
}

@media (max-width: 768px) {
  .xw-ss-bj {
    margin-top: 1rem;
  }
}

.xw-ss-bj form .contact select {
  width: 14.16667%;
  color: #767373;
  font: 500 1rem/3.125rem "sourcehansans";
  border: 1px solid #EDEDED;
  border-radius: 1.625rem;
  height: 3.125rem;
  padding: 0 1.3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/aghghx1.svg) no-repeat scroll -webkit-calc(100% - 1.125rem) center #fff;
  background: url(../images/aghghx1.svg) no-repeat scroll -moz-calc(100% - 1.125rem) center #fff;
  background: url(../images/aghghx1.svg) no-repeat scroll calc(100% - 1.125rem) center #fff;
}

@media (max-width: 768px) {
  .xw-ss-bj form .contact select {
    width: 30%;
  }
}

.xw-ss-bj form .contact .sskz {
  width: 31.25%;
  color: #767373;
  font: 500 1rem/3.125rem "sourcehansans";
  border: 1px solid #EDEDED;
  border-radius: 1.625rem;
  padding: 0 1.3rem;
  /*margin-left: 1.5rem;*/
}

@media (max-width: 768px) {
  .xw-ss-bj form .contact .sskz {
    width: 65%;
    margin-left: 5%;
  }
}

.xw-ss-bj form .contact .sskz button {
  border: none;
  outline: none;
  width: 2rem;
  background: transparent;
}

.xw-ss-bj form .contact .sskz button i {
  color: #02489D;
  font-size: 1.5rem;
}

.xw-ss-bj form .contact .sskz input {
  width: -webkit-calc(100% - 2rem);
  width: -moz-calc(100% - 2rem);
  width: calc(100% - 2rem);
  text-indent: 1em;
}

.ny-news-content .news-list {
  margin: 0 -1%;
}

.ny-news-content .news-list li {
  width: -webkit-calc(100%/3);
  width: -moz-calc(100%/3);
  width: calc(100%/3);
  padding: 0 1%;
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li {
    width: 50%;
    margin-top: 1rem;
  }
}

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

.ny-news-content .news-list li .cont-p {
  border: 1px solid #EBEBEB;
  border-radius: 1.5rem;
  padding: 1.625rem 2.1875rem 0;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p {
    padding: 1rem 1.2rem 0;
    border-radius: 1rem;
  }
}

.ny-news-content .news-list li .cont-p a.img {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  font-size: 0;
  padding-bottom: 61.84211%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p a.img {
    border-radius: 1rem;
  }
}

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

.ny-news-content .news-list li .cont-p .cont {
  margin-top: 1.8em;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p .cont {
    margin-top: 1em;
  }
}

.ny-news-content .news-list li .cont-p .cont h2 a {
  display: block;
  color: #323232;
  font: 600 1.25rem/1.5em "sourcehansans";
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

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

.ny-news-content .news-list li .cont-p .cont h2 a:hover {
  color: #02489D;
}

.ny-news-content .news-list li .cont-p .cont .p {
  color: #6F6F6F;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 0.75em;
  height: 3em;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p .cont .p {
    font-size: 1rem;
    margin-top: 0.25em;
  }
}

.ny-news-content .news-list li .cont-p .sjas-a {
  border-top: 1px solid #EAEAEA;
  padding: 1.5rem 0;
  margin-top: 1.6875rem;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p .sjas-a {
    padding: 1rem 0;
    margin-top: 1rem;
  }
}

.ny-news-content .news-list li .cont-p .sjas-a .data {
  text-align: right;
}

.ny-news-content .news-list li .cont-p .sjas-a .data span {
  display: block;
  color: #000000;
  font: 600 1.5rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p .sjas-a .data span {
    font-size: 1.25rem;
  }
}

.ny-news-content .news-list li .cont-p .sjas-a .data p {
  color: #6F6F6F;
  font: 500 1rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p .sjas-a .data p {
    font-size: .875rem;
  }
}

.ny-news-content .news-list li .cont-p .sjas-a a.b {
  display: block;
  width: 2.125rem;
}

@media (max-width: 768px) {
  .ny-news-content .news-list li .cont-p .sjas-a a.b {
    width: 2rem;
  }
}

.ny-news-content .news-list li .cont-p .sjas-a a.b img {
  width: 100%;
}

.show-news-content {
  padding: 4.0625rem 0 5.125rem;
}

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

.show-news-content .show-news-a1_v1 {
  width: 62.15278%;
}
.show-news-content .show-news-a1_v1.w100{
   width: 100%;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 {
    width: 100%;
  }
}

.show-news-content .show-news-a1_v1 .title-a {
  color: #323232;
  font: 600 2rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .title-a {
    font-size: 1.5rem;
  }
}

.show-news-content .show-news-a1_v1 .date-a, .show-news-content .show-news-a1_v1 .fenxad {
  color: #323232;
  font: 500 1.25rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .date-a, .show-news-content .show-news-a1_v1 .fenxad {
    font-size: 1rem;
  }
}

.show-news-content .show-news-a1_v1 .fenxad {
  margin-left: 1em;
}

.show-news-content .show-news-a1_v1 .fenxad a {
  color: #6D6D6D;
  border-color: #6D6D6D;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .fenxad a {
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 1rem;
  }
}

.show-news-content .show-news-a1_v1 .fenxad a:hover {
  color: #fff;
  background: #6D6D6D;
}

.show-news-content .show-news-a1_v1 .wehhsd {
  padding: 0.7em 0 1.5em;
  border-bottom: 1px solid #EBEBEB;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .wehhsd {
    padding: 0.5em 0 1em;
  }
}

.show-news-content .show-news-a1_v1 .content {
  padding: 1em 0;
}

.show-news-content .show-news-a1_v1 .content .xinwn-consss {
  color: #565656;
  font: 500 1.25rem/1.6em "sourcehansans";
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss p{
       margin-top: 0.8em;
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss br{
    /*display: none;*/
}
.show-news-content .show-news-a1_v1 .content .xinwn-consss img {
  width: 100%;
  border-radius: 1.5625rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v1 .content .xinwn-consss {
    font-size: 1rem;
  }
  .show-news-content .show-news-a1_v1 .content .xinwn-consss img {
    border-radius: 1rem;
  }
}

.show-news-content .show-news-a1_v2 {
  width: 31.45833%;
  margin-top: 6.5rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 {
    display: none;
  }
}

.show-news-content .show-news-a1_v2 .rm-titlea {
  color: #323232;
  font: 600 2rem/1.5em "sourcehansans";
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li {
  width: 100%;
  margin-top: 2.375rem;
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p {
  border: 1px solid #EBEBEB;
  border-radius: 1.5rem;
  padding: 1.625rem 2.1875rem 0;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p {
    padding: 1rem 1.2rem 0;
    border-radius: 1rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p a.img {
  display: block;
  border-radius: 1.5rem;
  overflow: hidden;
  font-size: 0;
  padding-bottom: 61.84211%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p a.img {
    border-radius: 1rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p a.img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont {
  margin-top: 1.8em;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont {
    margin-top: 1em;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont h2 a {
  display: block;
  color: #323232;
  font: 600 1.25rem/1.5em "sourcehansans";
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont h2 a {
    font-size: 1.125rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont h2 a:hover {
  color: #02489D;
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont .p {
  color: #6F6F6F;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 0.75em;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .cont .p {
    font-size: 1rem;
    margin-top: 0.25em;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a {
  border-top: 1px solid #EAEAEA;
  padding: 1.5rem 0;
  margin-top: 1.6875rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a {
    padding: 1rem 0;
    margin-top: 1rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a .data {
  text-align: right;
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a .data span {
  display: block;
  color: #000000;
  font: 600 1.5rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a .data span {
    font-size: 1.25rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a .data p {
  color: #6F6F6F;
  font: 500 1rem/1.3em "sourcehansans";
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a .data p {
    font-size: .875rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a a.b {
  display: block;
  width: 2.125rem;
}

@media (max-width: 768px) {
  .show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a a.b {
    width: 2rem;
  }
}

.show-news-content .show-news-a1_v2 .news-list-tjaz li .cont-p .sjas-a a.b img {
  width: 100%;
}

.pain {
  margin-top: 1.5rem;
}

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

.pain .prev, .pain .next {
  width: 47.48603%;
}

@media (max-width: 768px) {
  .pain .prev, .pain .next {
    width: 100%;
  }
}

.pain .prev a, .pain .next a {
  display: block;
  color: #636161;
  font: 500 1.25rem/1.5em "sourcehansans";
  border: 1px solid #EBEBEB;
  border-radius: 1.875rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 5%;
}

@media (max-width: 768px) {
  .pain .prev a, .pain .next a {
    padding: 1rem 3%;
    border-radius: 0.875rem;
    font-size: 1rem;
  }
}

.pain .prev a i, .pain .next a i {
  font-size: 2rem;
  width: 2rem;
}

@media (max-width: 768px) {
  .pain .prev a i, .pain .next a i {
    font-size: 1.75rem;
  }
}

.pain .prev a p, .pain .next a p {
  width: -webkit-calc(100% - 2rem);
  width: -moz-calc(100% - 2rem);
  width: calc(100% - 2rem);
  padding: 0 1.5em;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pain .prev a p, .pain .next a p {
    padding: 0 1em;
  }
}

.pain .prev a:hover, .pain .next a:hover {
  color: #02489D;
}

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

.pain .next a p {
  text-align: right;
}

.case-content .cont-p {
  margin-top: 2.8125rem;
}

@media (max-width: 768px) {
  .case-content .cont-p {
    margin-top: 1.5rem;
  }
}

.case-content .cont-p li .cont a.img {
  display: block;
  font-size: 0;
  width: 57.56944%;
  padding-bottom: 35%;
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 1.5625rem;
}
.case-content .cont-p li .cont .imgsmr{
  width: 57.56944%;border-radius: 1.5625rem;overflow: hidden;position: relative;
}

@media (max-width: 768px) {
  .case-content .cont-p li .cont a.img {
    width: 100%;
    border-radius: 1rem;
    padding-bottom: 60%;
  }
  .case-content .cont-p li .cont .imgsmr{
    width: 100%; border-radius: 1rem;
  }
}
.case-content .cont-p li .cont .mySwiper6 .swiper-slide a.img{
  display: block;
  font-size: 0;
  width: 100%;
  padding-bottom: 61%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.case-content .cont-p li .cont .mySwiper6{
  position: relative;
}
.case-content .cont-p li .cont .mySwiper6 .swiper-pagination1{
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 5%;
  z-index: 9;
  text-align: center;
}
.case-content .cont-p li .cont .mySwiper6 .swiper-pagination1 span{
   width: 1rem;
   height: 1rem;
   border-radius: 50%;
   background: #fff;
   border: 1px solid #02489D;
   opacity: 1;
}
.case-content .cont-p li .cont .mySwiper6 .swiper-pagination1 span.swiper-pagination-bullet-active{
    background: #02489D;
}
@media (max-width: 768px){
  .case-content .cont-p li .cont .mySwiper6 .swiper-slide a.img{
    width: 100%;
    padding-bottom: 60%;
  }
}
.case-content .cont-p li .cont .mySwiper6 .swiper-slide a.img img{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
     object-fit: cover;
}

.case-content .cont-p li .cont a.img > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-content .cont-p li .cont .cont-a {
  width: 36.18056%;
}

@media (max-width: 768px) {
  .case-content .cont-p li .cont .cont-a {
    width: 100%;
    margin-top: 1rem;
  }
}

.case-content .cont-p li .cont .cont-a .tit {
  color: #323232;
  font: 600 2.25rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .case-content .cont-p li .cont .cont-a .tit {
    font-size: 1.5rem;
  }
}

.case-content .cont-p li .cont .cont-a .p {
  color: #323232;
  font: 500 1.2rem/1.6em "sourcehansans";
  text-align: justify;
  margin: 0.7em 0 1.2em;
}

@media (max-width: 768px) {
  .case-content .cont-p li .cont .cont-a .p {
    font-size: 1rem;
    margin: 0.3em 0 0.8em;
  }
}

.case-content .case-ny-vtt {
  padding: 4.5rem 0 6.25rem;
}

@media (max-width: 768px) {
  .case-content .case-ny-vtt {
    padding: 2rem 0;
  }
}

.case-content .case-ny-v1 {
  background: #F3F4F8;
}

@media (max-width: 768px) {
}

.case-content .case-ny-v1 .cont-p li .cont a.img {
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (max-width: 768px) {
  .case-content .case-ny-v1 .cont-p li .cont a.img {
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.product-content {
  padding: 2.5rem 0 1rem;
}

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

.product-content .cp-fna1 .cp-tit {
  color: #262626;
  font: 600 1.875rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .cp-tit {
    font-size: 1.5rem;
  }
}

.product-content .cp-fna1 .cp-sdtaa {
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast {
    width: 100%;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a {
  padding: 0 1em;
  display: block;
  color: #262626;
  font: 500 1.25rem/4rem "sourcehansans";
  position: relative;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a {
    font-size: 1.125rem;
    line-height: 3em;padding: 0 0.5em;
  }
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: #02489D;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a::after {
    height: 2px;
  }
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li:hover a, .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li.active a {
  color: #02489D;
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li:hover a::after, .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li.active a::after {
  width: 100%;
}
.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast{
  /* width: 100%; */
  margin: 0.5rem 0;
}
.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk {
  width: 26.04167%;
  border: 1px solid #D7D3D3;
  border-radius: 1.625rem;
  overflow: hidden;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk {
    width: 100%;
    margin-top: 1rem;
  }
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk input {
  width: -webkit-calc(100% - 3.75rem);
  width: -moz-calc(100% - 3.75rem);
  width: calc(100% - 3.75rem);
  font: 500 1.125rem/3.125rem "sourcehansans";
  color: #666;
  text-indent: 1.3em;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk input {
    font-size: 1rem;
    line-height: 3em;
  }
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk input[type="text"]::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #BEBEBE;
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk input[type="text"]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #BEBEBE;
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk input[type="text"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #BEBEBE;
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk button {
  width: 3.75rem;
  background: none;
  border: none;
}

.product-content .cp-fna1 .cp-sdtaa .cp-ahts .cpssk button i {
  font: 500 1.25rem/3.125rem "sourcehansans";
  color: #323232;
}

.product-content .cp-fna1 .agge_a {
  border: 1px solid #D7D3D3;
  border-bottom: none;
  margin-top: 1.8125rem;
  border-radius: 1.875rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .agge_a {
    margin-top: 1rem;
    border-radius: 1rem;
  }
}

.product-content .cp-fna1 .agge_a li {
  border-bottom: 1px solid #D7D3D3;
  background: #fff;
}

.product-content .cp-fna1 .agge_a li dt {
  width: 15%;
  border-right: 1px solid #D7D3D3;
  text-indent: 1.5rem;
  color: #373737;
  font: 600 1.125rem/1.5em "sourcehansans";
  padding: 1em 0;
  background: #F3F4F8;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .agge_a li dt {
    text-indent: 0;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(215, 211, 211, 0.5);
    padding: 0.75em 0;
  }
}

.product-content .cp-fna1 .agge_a li .weggaa {
  width: 85%;
  font: 500 1.125rem/1.5em "sourcehansans";
  padding: 1em 2%;
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .agge_a li .weggaa {
    padding: 1em;
    font-size: 1rem;
    line-height: 1.8em;
    width: 100%;
  }
}

.product-content .cp-fna1 .agge_a li .weggaa .wheh_a {
  color: #373737;
}

.product-content .cp-fna1 .agge_a li .weggaa .wheh_a a {
  display: inline-block;
  margin-right: 1em;
}

.product-content .cp-fna1 .agge_a li .weggaa .wheh_a a::before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  margin-right: .3125rem;
  vertical-align: middle;
  display: inline-block;
  background: url(../images/radio.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
  -webkit-transform: translateY(-1px);
     -moz-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
       -o-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 768px) {
  .product-content .cp-fna1 .agge_a li .weggaa .wheh_a a::before {
    width: 1rem;
    height: 1rem;
  }
}

.product-content .cp-fna1 .agge_a li .weggaa .wheh_a a.active {
  color: #02489D;
}

.product-content .cp-fna1 .agge_a li .weggaa .wheh_a a.active:before {
  background: url(../images/radio_active.svg) no-repeat center;
  -o-background-size: cover;
     background-size: cover;
}

.cp-fna2 .product-list {
  margin: 0 -1.5%;
}

.cp-fna2 .product-list li {
  width: -webkit-calc(100%/3);
  width: -moz-calc(100%/3);
  width: calc(100%/3);
  padding: 0 1.5%;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .cp-fna2 .product-list li {
    width: -webkit-calc(100%/2);
    width: -moz-calc(100%/2);
    width: calc(100%/2);
    margin-top: 1.25rem;
  }
}

@media (max-width: 540px) {
  .cp-fna2 .product-list li {
    width: 100%;
  }
}

.cp-fna2 .product-list li .hwerx {
  width: 100%;
  border: 1px solid #CDCDCD;
  border-radius: 1.875rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cp-fna2 .product-list li .hwerx {
    border-radius: 1rem;
  }
}

.cp-fna2 .product-list li .hwerx a.img {
  display: block;
  padding-bottom: 66%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  background-color: #F3F4F8;
}

.cp-fna2 .product-list li .hwerx a.img i {
  display: block;
  width: 85%;
  font-size: 0;
}

.cp-fna2 .product-list li .hwerx a.img i img {
  width: 100%;
}

.cp-fna2 .product-list li .hwerx .cont {
  padding: 1.25rem 0 2.1875rem;
}

@media (max-width: 768px) {
  .cp-fna2 .product-list li .hwerx .cont {
    padding: 1rem 0 1.5rem;
  }
}

.cp-fna2 .product-list li .hwerx .cont h2 a {
  display: block;
  font: 600 1.5rem/1.5em "sourcehansans";
  text-align: center;
}

@media (max-width: 768px) {
  .cp-fna2 .product-list li .hwerx .cont h2 a {
    font-size: 1.25rem;
  }
}

.cp-fna2 .product-list li .hwerx .cont .sad-sda {
  margin-top: 1.1rem;
}

.cp-fna2 .product-list li .hwerx .cont .sad-sda a {
  display: inline-block;
  color: #323232;
  font: 500 1rem/2.5rem "sourcehansans";
  border: 1px solid #CDCDCD;
  width: 6.6875rem;
  text-align: center;
  border-radius: 1.25rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

.cp-fna2 .product-list li .hwerx .cont .sad-sda a + a {
  margin-left: 1.125rem;
}

@media (max-width: 768px) {
  .cp-fna2 .product-list li .hwerx .cont .sad-sda a {
    line-height: 2.2em;
    width: 5.8rem;
  }
  .cp-fna2 .product-list li .hwerx .cont .sad-sda a + a {
    margin-left: 1rem;
  }
}

@media (max-width: 540px) {
  .cp-fna2 .product-list li .hwerx .cont .sad-sda a {
    width: 6.5rem;
  }
}

.cp-fna2 .product-list li .hwerx .cont .sad-sda a:hover {
  background: #02489D;
  color: #fff;
}

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

.case-show-content {
  padding: 2.5rem 0 5rem;
}

.cp-show-bj {
  padding: 4.375rem 0 3.125rem;
  background: #F3F4F8;
}

@media (max-width: 990px) {
  .cp-show-bj {
    padding: 0rem 0 2rem;
  }
}

.cp-show-bj .ajhhsd, .cp-show-bj .ajhhsd a {
  color: #7C7C7C;
}

.cp-show-bj .ajhhsd a:hover {
  color: #02489D;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img {
  width: 48.47222%;
  position: relative;
  margin-left: 3%;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img {
    width: 100%;
    margin-left: 0;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img img {
  width: 100%;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .mySwiper5 {
  position: relative;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .mySwiper5 .swiper-slide .img img {
  width: 100%;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .next1a, .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .prev1a {
  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%);
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .next1a i, .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .prev1a i {
  color: #B9B9B9;
  font-size: 3rem;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .next1a i, .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .prev1a i {
    font-size: 2rem;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .next1a i:hover, .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .prev1a i:hover {
  color: #165BAA;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .next1a {
  left: -3%;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .next1a {
    left: 0;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .prev1a {
  right: -5%;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cp-show-img .jtxas .prev1a {
    right: 0;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p {
  width: 40.69444%;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p {
    width: 100%;
    margin-top: 1em;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .cp-tit {
  color: #323232;
  font: 600 3.4375rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .cp-tit {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .tag {
    margin-top: 0.5em;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .tag span {
  color: #323232;
  font: 500 1rem/1.875rem "sourcehansans";
  padding: 0 1em;
  background: #fff;
  border-radius: .9375rem;
  display: inline-block;
  margin-right: 0.7em;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .text {
  color: #323232;
  font: 500 1.125rem/1.5em "sourcehansans";
  margin-top: 1em;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .text {
    font-size: 1rem;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur {
  margin-top: 2.5em;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur {
    margin-top: 1em;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur a {
  display: inline-block;
  color: #323232;
  font: 500 1rem/2.5rem "sourcehansans";
  border: 1px solid #CDCDCD;
  width: 6.6875rem;
  text-align: center;
  border-radius: 1.25rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur a + a {
  margin-left: 1.125rem;
}

@media (max-width: 768px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur a {
    line-height: 2.2em;
    width: 5.8rem;
  }
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur a + a {
    margin-left: 1rem;
  }
}

@media (max-width: 540px) {
  .cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur a {
    width: 6.5rem;
  }
}

.cp-show-bj .cp-show-a1 .cp-show-a1b1 .cont-p .annur a:hover {
  background: #02489D;
  color: #fff;
}

.cp-show-a2 .paggs1 {
  margin-top: 2rem;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .cp-show-a2 .paggs1 {
    margin-top: 1rem;
  }
}

.cp-show-a2 .paggs1 .table-bordered td, .cp-show-a2 .paggs1 .table-bordered th {
  vertical-align: middle;
  border-color: #D7D3D3;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  padding: 0.75rem 1em;
}

@media (max-width: 768px) {
  .cp-show-a2 .paggs1 .table-bordered td, .cp-show-a2 .paggs1 .table-bordered th {
    padding: 0.75rem;
  }
}

.cp-show-a2 .paggs1 table {
  color: rgba(0, 0, 0, 0.6);
  min-width: 768px;
}

.cp-show-a2 .paggs1 table + table {
  margin-top: 2em;
}

@media (max-width: 768px) {
  .cp-show-a2 .paggs1 table + table {
    margin-top: 1em;
  }
}

.cp-show-a2 .paggs1 tr td {
  border-right: none;
  border-left: none;
}

.cp-show-a2 .paggs1 tr td:first-child {
  font-weight: 600;
}

.cp-show-a2 .paggs1 tr td b {
  width: .875rem;
  height: .875rem;
  border-radius: 50%;
  margin-right: 0.2em;
  display: inline-block;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.1); 
}

.cp-show-a2 .paggs1 tr:first-child {
  background: #F3F4F8;
}

.cp-show-a2 .paggs1 tr:first-child td {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
}

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

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

.cp-show-a3 .cp-show-a3v1 {
  padding: 1.5rem;
  border: 1px solid #D7D3D3;
  border-radius: 1.875rem;
  margin-top: 3rem;
}
.cp-show-a3 .cp-show-a3v2 {
  padding: 0 1rem;
  border: 1px solid #D7D3D3;
  border-radius: 1.875rem;
  margin-top: 3rem;
  text-align: center;
  background-color: #f3f4f8;
}
.cp-show-a3 .cp-show-a3v2 img{
    height: 20rem;
}

@media (max-width: 768px) {
  .cp-show-a3 .cp-show-a3v1 {
    border-radius: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
  }
  .cp-show-a3 .cp-show-a3v2 {
    border-radius: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
  }
}
.cp-show-a3 .cp-show-a3v1 {
    text-align: center;
}
.cp-show-a3 .cp-show-a3v1 img {
  /*width: 100%;*/
}

.product-show-content {
  padding: 4.0625rem 0;
}

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

.cp-show-a4 {
  background: #F3F4F8;
  padding: 3rem 0 5rem;
}

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

.cp-show-a4 .cj-list {
  margin: 0 -0.5%;
  margin-top: 3.125rem;
}

@media (max-width: 768px) {
  .cp-show-a4 .cj-list {
    margin-top: 0.5rem;
    margin: 0 -1%;
  }
}

.cp-show-a4 .cj-list li {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0.5%;
}

@media (max-width: 768px) {
  .cp-show-a4 .cj-list li {
    -webkit-flex: 50%;
       -moz-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin-top: 1rem;
    padding: 0 1%;
  }
}

.cp-show-a4 .cj-list li .img {
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
}
.cp-show-a4 .cj-list li .img .msxxds{
    width: 100%;
    height: 100%;
     background-color: rgba(0,0,0,.5);
      transition: all .5s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    text-align: center;
    font:500 1rem/1.5em "sourcehansans";
    color: #fff;
    padding: 1rem;
}
.cp-show-a4 .cj-list li .img:hover .msxxds{
    opacity:1;
    transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 768px) {
  .cp-show-a4 .cj-list li .img {
    border-radius: 1rem;
  }
}

.cp-show-a4 .cj-list li .img i {
  display: block;
  padding-bottom: 25rem;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .cp-show-a4 .cj-list li .img i {
    padding-bottom: 15rem;
  }
}

.cp-show-a4 .cj-list li .img i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/yya.svg) no-repeat center bottom;
  -o-background-size: cover;
     background-size: cover;
}

.cp-show-a4 .cj-list li .img i > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cp-show-a4 .cj-list li .img .tit {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 100%;
  padding: 0 1em;
  color: #fff;
  text-align: center;
  font: 600 1.75rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .cp-show-a4 .cj-list li .img .tit {
    font-size: 1.25rem;
  }
}

.db-content {
  padding: 9.8125rem 0 0;
}

@media (max-width: 768px) {
  .db-content {
    padding-top: 2rem;
  }
}

.db-content .cp-fna1 .cp-tit {
  color: #262626;
  font: 600 1.875rem/1.5em "sourcehansans";
}

@media (max-width: 768px) {
  .db-content .cp-fna1 .cp-tit {
    font-size: 1.5rem;
  }
}

.db-content .cp-fna1 .cp-sdtaa {
  margin-top: 0.5em;
}

.db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast {
  width: 100%;
  border-bottom: 1px solid #DADADA;
}

@media (max-width: 768px) {
  .db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast {
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a {
  padding: 0 1em;
  display: block;
  color: #848484;
  font: 600 1.25rem/4rem "sourcehansans";
  position: relative;
}

@media (max-width: 768px) {
  .db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a {
    font-size: 1.125rem;
    line-height: 3em;
  }
}

.db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: #02489D;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

@media (max-width: 768px) {
  .db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li a::after {
    height: 2px;
  }
}

.db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li:hover a, .db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li.active a {
  color: #02489D;
}

.db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li:hover a::after, .db-content .cp-fna1 .cp-sdtaa .cp-ahts .cpast li.active a::after {
  width: 100%;
}

.cp-fna23 {
  margin-top: 2.625rem;
}

.cp-fna23 .box-wp {
  overflow-x: auto;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .cp-fna23 .box-wp {
    padding-bottom: 1rem; margin-bottom: 3rem;
  }
}

.cp-fna23 .box-wp::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
  /*display: none;*/
}

.cp-fna23 .box-wp::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #E2E2E2;
  /*display: none;*/
}

.cp-fna23 .box-wp::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
  /*display: none;*/
}
.cp-fna23 .box-wp .m-comparison{
        cursor: ew-resize;
}
.cp-fna23 .box-wp .box-tabhd {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}

.cp-fna23 .box-wp .box-tabhd a.tjcp {
  position: absolute;
  right: 0;
  top: 0;
  background: #02489D;
  color: #fff;
  width: 2.3125rem;
  height: auto;
  padding: 1.25em 0;
  border-top-right-radius: .625rem;
  border-bottom-right-radius: .625rem;
  font: 500 1rem/2.3125rem "sourcehansans";
  letter-spacing: 0.4em;
  z-index: 9;
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item {
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #fff;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  /* border-right: 1px solid #dcdcdc; */
  border-right: 1px solid #D7D3D3;
  /*border-bottom: 1px solid #D7D3D3;*/
  /* border-bottom: 1px solid #dcdcdc; */
  box-sizing: border-box;
  position: relative;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item a.gb {
  display: block;
  position: absolute;
  right: 0.5rem;
  top: 0.3rem;
  z-index: 1;
}
.cp-fna23 .box-wp .box-tabhd .fix.fix3{
        border-right:none;
}
.cp-fna23 .box-wp .box-tabhd .tabhd-item a.gb i {
  color: #B0B0B0;
  font-size: 1rem;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix1 {
  position: sticky;
  left: 0;
  width: 382px;
  z-index: 3;
}

@media (max-width: 1024px) {
  .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix1 {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix1 {
    width: 200px;
    position: relative;
  }
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2, .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix3 {
  width: 430px;
}

@media (max-width: 1024px) {
  .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2, .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix3 {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2, .cp-fna23 .box-wp .box-tabhd .tabhd-item.fix3 {
    width: 300px;
  }
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img {
  /*padding: 15px 30px;*/
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  height: 22rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  /*border-bottom: 1px solid #D7D3D3;*/
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .box-info {
  color: #000000;
  font: 500 1rem/3em "sourcehansans";
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .box-info p.info-check {
  line-height: 1.7em;
  padding-left: 1.5rem;
  background: url(../images/radio.svg) no-repeat left center;
  -o-background-size: 1.125rem auto;
     background-size: 1.125rem auto;
  cursor: pointer;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .box-info p.info-check.checked {
  background-image: url(../images/radio_active.svg);
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .img {
  width: 100%;
  background: #F3F4F8;
  height: 12.9375rem;
  position: relative;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 1.875rem;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .img > img {
  width: auto;
  max-height: 80%;
  margin: 0 auto;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .img .wejsf {
  text-align: center;
  width: 100%;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .img .wejsf i {
  display: block;
  font-size: 0;
  width: 32.11268%;
  margin: 0 auto;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .img .wejsf i img {
  width: 100%;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tup-img .img .wejsf p {
  color: #A0A0A0;
  font: 600 1.125rem/1.5em "sourcehansans";
  margin-top: 0.5em;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tabbd-item {
  padding: 15px 30px;
  line-height: 30px;
  font-size: 1rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  border-bottom: 1px solid #D7D3D3;
  color: rgba(0, 0, 0, 0.6);
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item .tabbd-item.on {
  background: #DBECFF;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item a.more-msla {
  display: inline-block;
  color: #02489D;
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 500 1rem/3.125rem "sourcehansans";
  border-radius: 1.5625rem;
  width: 10rem;
  background: #DBECFF;
  text-align: center;
  border: 1px solid #A4C8F1;
  -webkit-transition-duration: 0.3s;
     -moz-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
  margin: 2.15rem auto 0;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2 .tup-img {
  text-align: center;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2 .tup-img .tit {
  color: #323232;
  font: 600 1.125rem/2.3em "sourcehansans";
  width: 100%;
  margin-top: 0.5em;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2 .tup-img a.xp-more {
  display: inline-block;
  background: #02489D;
  color: #fff;
  font: 500 1rem/2.5rem "sourcehansans";
  border: 1px solid #02489D;
  width: 6.6875rem;
  text-align: center;
  border-radius: 1.25rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  margin: 0 auto;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix2 .tabbd-item {
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cp-fna23 .box-wp .box-tabhd .tabhd-item.fix3 .tabbd-item {
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cpxuanz {
  position: absolute;
  left: 0;
  top: 120%;
  width: 100%;
}
.msga2 .cpxuanz{
     top: 100%;
}

.cpxuanz .cont {
  border: 1px solid #CDCDCD;
  background: #fff;
  border-radius: 1.875rem;
  padding: 1.25rem 5%;
}

.cpxuanz .cont .tabs-wrapper {
  border: 1px solid #CDCDCD;
  border-radius: 1.25rem;
  text-align: left;
  overflow: hidden;
}

.cpxuanz .cont .tabs-wrapper + .tabs-wrapper {
  margin-top: 0.8rem;
}

.selectBox.ss-lsitb1 {
  position: relative;
  width: 100%;
}

.selectBox.ss-lsitb1 #inptSelect {
  width: 100%;
  font: 500 1rem/2.5rem "sourcehansans";
  padding: 0 8%;
}

.selectBox.ss-lsitb1 .optionDiv {
  display: none;
  width: 100%;
  border-radius: 1px;
  background: #fff;
  position: static;
  z-index: 100;
  left: -2px;
  border-radius: 2px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  padding: 0 8%;
}

.selectBox.ss-lsitb1 .optionDiv.ulShow {
  display: block;
}

.selectBox.ss-lsitb1 .optionDiv ul {
  border-top: 1px solid #E3DCDC;
}

.selectBox.ss-lsitb1 .optionDiv ul li {
  cursor: pointer;
  line-height: 2rem;
  font-size: .875rem;
  text-indent: 0.5em;
}

.selectBox.ss-lsitb1 .optionDiv ul li a {
  display: block;
}

.selectBox.ss-lsitb1 .optionDiv ul li:hover {
  background-color: #F6F6F6;
  -webkit-transition: .5s all;
  -o-transition: .5s all;
  -moz-transition: .5s all;
  transition: .5s all;
}

.selectBox.ss-lsitb1 .optionDiv ul li a.active {
  background: #02489D;
  color: #fff;
}

.selectBox.ss-lsitb2 {
  position: relative;
  width: 100%;
}

.selectBox.ss-lsitb2 #inptSelect {
  width: 100%;
  font: 500 1rem/2.5rem "sourcehansans";
  padding: 0 8%;
}

.selectBox.ss-lsitb2 .optionDiv {
  display: none;
  width: 100%;
  border-radius: 1px;
  background: #fff;
  position: static;
  z-index: 100;
  left: -2px;
  border-radius: 2px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  padding: 0 8%;
}

.selectBox.ss-lsitb2 .optionDiv.ulShow {
  display: block;
}

.selectBox.ss-lsitb2 .optionDiv ul {
  border-top: 1px solid #E3DCDC;
  padding: 0.3em 0;
}

.selectBox.ss-lsitb2 .optionDiv ul li {
  cursor: pointer;
  line-height: 2rem;
  font-size: .875rem;
}

/*修改开始*/
/*.selectBox.ss-lsitb2 .optionDiv ul li a {
  display: block;
  line-height: 1.7em;
  padding-left: 1.5rem;
  background: url(../images/radio.svg) no-repeat left center;
  -o-background-size: 1rem auto;
     background-size: 1rem auto;
  cursor: pointer;
}

.selectBox.ss-lsitb2 .optionDiv ul li a.active {
  background-image: url(../images/radio_active.svg);
}*/
.selectBox.ss-lsitb2 .optionDiv ul li{
  display: block;
  line-height: 1.7em;
  padding-left: 1.5rem;
  background: url(../images/radio.svg) no-repeat left center;
  -o-background-size: 1rem auto;
     background-size: 1rem auto;
  cursor: pointer;
}
.selectBox.ss-lsitb2 .optionDiv ul li.checked {
  background-image: url(../images/radio_active.svg);
}
/*修改结束*/

.ww_btn_Dropdown_arrow {
  display: block;
  position: absolute;
  top: 45%;
  right: 5%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ww_btn_Dropdown_arrow i {
  font-size: .875rem;
}


form#f1ab {
  margin-top: 1.5625rem;
  width: 60.07143%;
  background: #FFFFFF;
  border: 1px solid #EAE3E3;
  box-shadow: 0.3125rem 0.3125rem 0.9375rem rgba(211, 208, 208, 0.25);
  border-radius: 1.25rem;
  margin: 1rem auto 0;
  padding: 2rem 4% 3.5rem;
}

@media (max-width: 768px) {
  form#f1ab {
    width: 100%;
    margin: 1rem 0;
    padding: 1.5rem 6%;
  }
}

form#f1ab .contact .msga1 dl {
  width: 48%;
}

@media (max-width: 768px) {
  form#f1ab .contact .msga1 dl {
    width: 100%;
  }
}

form#f1ab .contact dl {
  margin-bottom: 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  form#f1ab .contact dl {
    margin-bottom: 0.6rem;
  }
}

form#f1a .contact dl .text {
  color: #5B6569;
  font: 500 1rem/1.5em "helvetica";
  padding: 0.4em 0 0.6em;
}

form#f1ab .contact dl input {
  width: 100%;
  border: 1px solid #D6D3D3;
  border-radius: 1.5625rem;
  color: rgba(71, 77, 87, 0.9);
  font: 500 1rem/3.125rem "helvetica";
  text-indent: 1.5em;
}

form#f1ab .contact dl input[type="text"]::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgba(71, 77, 87, 0.6);
}

form#f1ab .contact dl input[type="text"]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(71, 77, 87, 0.6);
}

form#f1ab .contact dl input[type="text"]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(71, 77, 87, 0.6);
}

form#f1ab .contact dl input[type="text"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(71, 77, 87, 0.6);
}

form#f1ab .contact dl textarea {
  width: 100%;
  border: 1px solid #D6D3D3;
  border-radius: 1rem;
  color: #6B6A6A;
  font: 500 1rem/1.9rem "helvetica";
  padding: 0.65em 1.5em;
}

form#f1ab .contact dl input[type="text"]::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #6B6A6A;
}

form#f1ab .contact dl input[type="text"]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
 color: #6B6A6A;
}

form#f1ab .contact dl input[type="text"]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6B6A6A;
}

form#f1ab .contact dl input[type="text"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6B6A6A;
}
a.xuczhe{
    border: 1px solid #A4C8F1;
    background: #DBECFF;
    color: #02489D;
    font: 500 1rem/3.125rem "sourcehansans";
    display: block; border-radius: 1.5625rem;
    text-align: center;
}
.pead-jsda {
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: auto;
  z-index: 999;
}

.pead-jsda .pead-cont {
  box-shadow: 1px 1px 3.125rem rgba(0, 0, 0, 0.3);
  background: #fff;
  z-index: 999;
  width: 32.44792%;
  padding: 1.5rem 2.13027% 2.5rem;
  border-radius: 1.8rem;
}

@media (max-width: 768px) {
  .pead-jsda .pead-cont {
    width: 80%;border-radius: 1rem; padding: 1rem 4% 2rem;
  }
}

.pead-jsda .pead-cont a.jataxta {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
}

@media (max-width: 768px) {
  .pead-jsda .pead-cont a.jataxta {
    right: 0.5rem;
  }
}

.pead-jsda .pead-cont a.jataxta i {
  color: #888888;
  font: 100 2.5rem/1em "sourcehansans";
}

.pead-jsda .pead-cont .tit {
  text-align: left;
  color: #333;
  font: 600 1.95rem/2em "sourcehansans";
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pead-jsda .pead-cont .tit {
    font-size: 1.35rem;
  }
}

.pead-jsda .pead-cont form#f1ab {
  margin-top: 10;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.div_aghgha .more-msl{
    color: #fff;
    background: #02489D;
    border-color: #02489D;
}
.db-cont span{
    position: absolute;
    right: 0;
    top: 0;
    background: #f00;
    color: #fff;
    width: 1rem;
    height: 1rem;
    font-size: 0.5rem;
    line-height: 1rem;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
}
@media (max-width: 768px) {
  .pead-jsda .pead-cont form#f1ab {
    width: 100%;
    margin: 0;
    padding: 0;
    max-height: 50vh;
    overflow-y: auto;
  }
  .pead-jsda .pead-cont a.jataxta i{
      font-size: 2rem;
  }
  .db-cont span{
      width: 1.3rem;
    height: 1.3rem; line-height: 1.3rem;
     right: -0.2rem;
    top: -0.2rem;
  }
}
.box-tabbd b{
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    margin-right: 0.2em;
    display: inline-block;
    overflow: hidden;    box-shadow: 0 0 0.5rem rgba(0,0,0,0.21); 
    /*float: left;*/
}
.box-tabbd b div{
    display: none;
}
.m-comparison .px_list .fix2 p{
    /* width: auto; */
    word-wrap:break-word; word-break:break-all;
}
.m-comparison .px_list .fix2{
    /* flex-flow: initial;
    flex:initial; */
    vertical-align: middle;
}
.ewrhas1 a.more-msl{
    margin-left: 1rem;
}

.list_jjfaa1{
    padding: 4rem 0;
    color: #606060;
    font: 500 1.25rem/1.8em "sourcehansans";
}
.list_jjfaa2{
    background: url(../images/bja3.jpg) no-repeat center;
    background-size: cover;
    padding: 4rem 0;
}
.list_jjfaa2 .mySwiper7{
    margin-top: 2.5rem;
    padding: 0 1px;
}
.list_jjfaa2 .mySwiper7 .hwerx {
  width: 100%;
  border: 1px solid #CDCDCD;
  border-radius: 1.875rem;
  overflow: hidden;
  background: #fff;
}

@media (max-width: 768px) {
    .list_jjfaa1{
        padding: 2rem 0;
        font-size: 1.125rem;
    }
    .list_jjfaa2{
         padding: 2rem 0;
    }
  .list_jjfaa2 .mySwiper7 .hwerx {
    border-radius: 1rem;
  }
  .list_jjfaa2 .mySwiper7{
      margin-top: 1.5rem;
  }
}

.list_jjfaa2 .mySwiper7 .hwerx a.img {
  display: block;
  padding-bottom: 66%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  background-color: #F3F4F8;
}

.list_jjfaa2 .mySwiper7 .hwerx a.img i {
  display: block;
  width: 85%;
  font-size: 0;
}

.list_jjfaa2 .mySwiper7 .hwerx a.img i img {
  width: 100%;
}

.list_jjfaa2 .mySwiper7 .hwerx .cont {
  padding: 1.25rem 0;
}

@media (max-width: 768px) {
 .list_jjfaa2 .mySwiper7 .hwerx .cont {
    padding: 1rem 0;
  }
}

.list_jjfaa2 .mySwiper7 .hwerx .cont h2 a {
  display: block;
  font: 600 1.5rem/1.5em "sourcehansans";
  text-align: center;
}

@media (max-width: 768px) {
  .list_jjfaa2 .mySwiper7 .hwerx .cont h2 a {
    font-size: 1.25rem;
  }
}

.list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda {
  margin-top: 1.1rem;
}

.list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda a {
  display: inline-block;
  color: #323232;
  font: 500 1rem/2.5rem "sourcehansans";
  border: 1px solid #CDCDCD;
  width: 6.6875rem;
  text-align: center;
  border-radius: 1.25rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}

.list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda a + a {
  margin-left: 1.125rem;
}

@media (max-width: 768px) {
  .list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda a {
    line-height: 2.2em;
    width: 5.8rem;
  }
  .list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda a + a {
    margin-left: 1rem;
  }
}

@media (max-width: 540px) {
  .list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda a {
    width: 6.5rem;
  }
}

.list_jjfaa2 .mySwiper7 .hwerx .cont .sad-sda a:hover {
  background: #02489D;
  color: #fff;
}
.jjfa-list{
    margin-top: 2rem;
}
.jjfa-list li{
    padding: 1.5rem 0;
    /*border-bottom: 1px solid #f0f0f0;*/
}
.jjfa-list li .hwerx{
    background: #F5F5F5;
}
.jjfa-list li .hwerx a.more-msl{
    margin-top: 1.5rem;
}
.jjfa-list li .hwerx a.img{
     width: 45%;
    padding-bottom: 24%;
    position: relative;
    height: 0;
    overflow: hidden;
}
.jjfa-list li:nth-child(2n) .hwerx a.img{
    order: 1;
}
.jjfa-list li .hwerx a.img img{
    width: 100%;
     position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.jjfa-list li .hwerx .cont{
       width: 55%;
       padding: 0 4%;
}
.jjfa-list li .hwerx .cont h2 a{
    display: block;
    color: #333;
    font: 400 1.5rem/1.5em "sourcehansans";
    padding: 0.2rem 0;
}
.jjfa-list li .hwerx .cont .datea{
    display: block;
    color: #999;
    font: 400 1rem/1.5em "sourcehansans";
}
.jjfa-list li .hwerx .cont .p{
     color: #999;
    font: 400 1.125rem/1.5em "sourcehansans";
    margin-top: 1rem;
}
.jjfa-list li .hwerx .cont h2 a:hover{
    color: #02489D;
}
.jjfa-list li:nth-child(2n) .hwerx a.img{
    /*order: 1;*/
}
a.more-msl-as{
    margin-right: 1rem;
}
.mySwipercp .swiper-pagination{
    bottom: 5%;
    display: inline-block;
    width: auto;
    left: 50%;transform: translateX(-50%);
    display: none;
}
.mySwipercp .swiper-pagination span{
    width: 1rem;
    height: 1rem;
    background: #fff;
    margin: 0 0.35rem;
}
.mySwipercp .swiper-pagination span.swiper-pagination-bullet-active{
    background: #165BAA;
} 
.mySwipercp .banwez{
      width: 100%;
}
.mySwipercp .banwez dt{
    color: #fff;
       font: 600 4rem/1.5em "montserrat";
  
}
.search-box1{
  margin-right: 3rem;
}
.search-box1 form{
  background: #fff;
  border-radius: 0.2rem;
  height:2.25rem;
  line-height: 2.25rem;
  overflow: hidden;
}
.search-box1 form input{
    vertical-align: top;
    font-size: 0.856rem;
    padding-left: 0.5rem;
}
.search-box1 form button{
    border: none;
    padding: 0 0.7rem;
    background: none;
}
.search-box1 form button i{
    color: #333;
    font-size: 1.25rem;
}
.cont7 .a7b1{
   width: 50%;
   background: url(../images/bj2.jpg) no-repeat center top;
   -o-background-size: cover;
   background-size: cover;
   padding: 9.375rem 9% 8rem 12.5%;
}
.cont7 .a7b2{
  width: 50%;
  padding: 9.375rem 12.5% 8rem 7%;
  background: #F3F4F8;
}
.a7c1 .title1 .tit::after{
  margin-left: 0;
}
.a7b1 .a7c1 .title1 .tit::after{
  background: #fff;
}
.a7c1 a.more-msl{
  margin-top: 0.45rem;
}
.a7c2 .gong-p{
  color: #fff;
  font: 500 1.25rem/1.6em "sourcehansans";
  text-align: justify;
  margin-top: 2rem;
}
.a7c3{
    /*padding: 0 17%;*/
}
.a7c3 dl{
  width: 45%;
  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;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  margin: 1rem 0;
  padding: 1.56rem 0;
}
.a7c3 dl i{
  display: block;
  font-size: 0;
  width: 39%;
}
.a7c3 dl i img{
  width: 100%;
}
.a7b2 .xw_a3 li{
  margin-top: 2rem;
}
.a7b2 .xw_a3 li a{
  background-color: #FFFFFF;
  border-radius: 1.3125rem;
  padding: 1.6rem 1rem;
}
.a7b2 .xw_a3 li .data{
  width: 6.5rem;
  text-align: right;
  padding: 0.4rem 0;
  padding-right: 1.5rem;
  border-right: 1px solid #BCBCBC;
}
.a7b2 .xw_a3 li .data span{
  display: block;
  color: #000000;
  font: 600 1.5rem/1.2em "sourcehansans";
}
.a7b2 .xw_a3 li .data b{
  display: block;font: 400 1rem/1.2em "sourcehansans";
  color: #6F6F6F;
}
.a7b2 .xw_a3 li .cont-p{
  width: calc(100% - 8.5rem);
  padding-right: 0.5em;
}
.a7b2 .xw_a3 li .cont-p .tit{
  color: #323232;
  font: 600 1.25rem/1.5em "sourcehansans";
}
.a7b2 .xw_a3 li .cont-p .p{
  color: #6F6F6F;
  font: 400 1.125rem/1.4em "sourcehansans";
  margin-top: 0.25rem;
}
.a7b2 .xw_a3 li a:hover{
  background: #02489D;
}
.a7b2 .xw_a3 li a:hover .data span,.a7b2 .xw_a3 li a:hover .data b,.a7b2 .xw_a3 li a:hover .cont-p .tit,.a7b2 .xw_a3 li a:hover .cont-p .p{
  color: #fff;
}
.social-share1{
    margin-top: 1rem;
}
.social-share1 a{
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.8);
    text-align: center;
    line-height: 2.2rem;
     font-size: 1.125rem;
    color: rgba(255,255,255,0.8);    transition: all .5s;
}
.social-share1 a+a{
    margin-left: 0.6rem;
}
.social-share1 a:hover{
    background: #fff; border: 1px solid #fff;
    color: #333;
}
@media (max-width: 1366px){
  .cont7 .a7b1{
    padding-left: 5.78125%;
  }
  .cont7 .a7b2{
    padding-right: 5.78125%;
  }
  .search-box1{
    margin-right: 1.5rem;
  }
}
@media (max-width: 1080px) {
    #menu .nav_a1 li > a{
       padding: 0 0.4em;
    }
}
@media (max-width: 768px) {
  .a7c2 .gong-p{
    font-size: 1rem;
  }
    .mySwipercp .banwez dt{
        font-size: 1.85rem;
    }
    .jjfa-list{
        margin-top: 0.5rem;
    }
    .jjfa-list li{
        padding: 1.5rem 0;
    }
    .jjfa-list li .hwerx a.img{
        width: 100%;padding-bottom: 72%;
    }
    .jjfa-list li .hwerx .cont{
        width: 100%;
        padding: 1.5rem 4%;
    }
    .jjfa-list li .hwerx .cont h2 a{
        font-size: 1.25rem;
    }
    .jjfa-list li .hwerx .cont .p{
       margin-top: 0.5rem;
    }
    .jjfa-list li:nth-child(2n) .hwerx a.img{
        order: 0;
    }
    .jjfa-list li .hwerx a.more-msl{
        margin-top: 1rem;
    }
    .cont7 .a7b1{
      width: 100%;
      padding: 2rem 4%;
    }
    .cont7 .a7b2{
      width: 100%;
      padding: 2rem 4%;
    }
    .a7c1 a.more-msl{
      margin-top:0;
    }
    .a7c2 .gong-p{
      margin-top: 1rem;
    }
    .a7c3 {
        margin-top: 1rem;
    }
    .a7c3 dl{
      margin: 0.65rem 0;
    }
    .a7b2 .xw_a3 li .cont-p .tit{
      font-size: 1.125rem;
    }
    .a7b2 .xw_a3 li .cont-p .p{
      font-size: 1rem;
    }
    .a7b2 .xw_a3 li{
      margin-top: 1rem;
    }
    .a7b2 .xw_a3 li a{
      border-radius: 1rem;
    }
}