 
.wh {
  padding: 0 5%;
}

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

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

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

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

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

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

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

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

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

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

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

.flex21 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
     
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.kajjt i img {
  width: 100%;
}

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

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

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

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

.sticky .head2 {
  background: #fff;
}

.sticky .head2 .logo a img.a {
  display: none;
}

.sticky .head2 .logo a img.b {
  display: inline-block;
}

.sticky .head2 #menu .nav_a1 li > a {
  color: #333333;
}

.sticky .head2 #menu .nav_a1 li:hover > a {
  color: #1F2A66;
}

.sticky .head2 #menu .nav_a1 li > a::before {
  background: #1F2A66;
}

.sticky .head2 .sska i {
  color: #1F2A66;
}

.sticky .head2 .sgag a.ma img.b {
  display: inline-block;
}

.sticky .head2 .sgag a.ma img.a {
  display: none;
}  
@media (max-width: 768px) {
  .abt-cont1 {
    padding: 2.5rem 0;
  }
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a1 {
  width: 49.06877%;
}

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

.abt-cont1 .abt-cont1_v1 .abt-cont1_a1 .mySwiper4 {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a1 .swiper-pagination1 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9;
  text-align: center;
  bottom: 3%;
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a1 .swiper-pagination1 span {
  background: #C1C1C1;
  width: .6875rem;
  height: .6875rem;
  border-radius: 50%;
  opacity: 0.8;
  margin: 0 .3125rem;
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a1 .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #3c6fb5;
  opacity: 1;
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a2 {
  width: 46.06017%;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-cont1_v1 .abt-cont1_a2 {
    width: 100%;
    margin-top: 1.5em;
  }
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a2 .p {
  color: #707070;
  font: 500 1rem/1.5em;
  margin-top: 1.5em;
}

@media (max-width: 768px) {
  .abt-cont1 .abt-cont1_v1 .abt-cont1_a2 .p {
    margin-top: 1em;
  }
}

.abt-cont1 .abt-cont1_v1 .abt-cont1_a2 .p span {
  color: #1F2A66;
  font-weight: 600;
}

.rtyhah2 {
    font-size: 42px;
    color: #3c6fb5;
    font-weight: 600;
    line-height: 1.6;
}

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

.abt-cont2 {
  background: url(../images/bj4.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 3.5rem 0 4.6875rem;
}

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

.abt-cont2 .qywenh li {
  width: 49%;
  background: rgba(255, 255, 255, 0.85);
  padding: 4rem 0;
  border-radius: 0.8rem;
  margin-top: 2.125rem;
}
.abt-cont2 .qywenh li i{
 color:#3c6fb5;
 font-size:50px;
}
@media (max-width: 768px) {
  .abt-cont2 .qywenh li {
    margin-top: 1rem;
    padding: 2.2rem 0;
  }
}

.abt-cont2 .qywenh li img {
  width: 4.4375rem;
}

@media (max-width: 768px) {
  .abt-cont2 .qywenh li img {
    width: 3rem;
  }
}

.abt-cont2 .qywenh li .aggwxas {
  margin-left: 2rem;
}

@media (max-width: 540px) {
  .abt-cont2 .qywenh li .aggwxas {
    margin-left: 0;
    width: 100%;
    padding: 1em 8% 0;
    text-align: center;
  }
}

.abt-cont2 .qywenh li .aggwxas h2 {
  color: #000000;
  font: 600 2rem/1.8em;
}

@media (max-width: 768px) {
  .abt-cont2 .qywenh li .aggwxas h2 {
    font-size: 1.4rem;
  }
}

.abt-cont2 .qywenh li .aggwxas .p {
  color: #333;
  font: 500 16px/35px;
  margin-top: 0.3em;
}

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

.abt-cont2 .qywenh li:last-child {
  width: 100%;
}

.abt-cont3 {
  background: url(../images/bj5.jpg) no-repeat center top;
  -o-background-size: cover;
     background-size: cover;
  padding: 5.25rem 0 10.9375rem;
}

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

.abt-cont3 .mySwiper5 {
  margin-top: 1rem;
}

.abt-cont3 .mySwiper5 .sezx {
  display: inline-block;
  border: 1px solid #3c6fb5;
  border-radius: 0.8rem;
  padding: 2em 1.5em;
  line-height:35px;
  background:#FFF;
  color: #333;
  min-width: 32.5%;
  text-align: left;
}

@media (max-width: 768px) {
  .abt-cont3 .mySwiper5 .sezx {
    font-size: 1rem;
    padding: 1.5em;
  }
}

.abt-cont3 .mySwiper5 .sezx strong {
  color: #3c6fb5;
  display: inline-block;
  width: 5em;
}

.abt-cont3 .ahxwas_a3 {
  margin-top: 4.375rem;
  position: relative;
}

@media (max-width: 768px) {
  .abt-cont3 .ahxwas_a3 {
    margin-top: 1.5rem;
  }
}

.abt-cont3 .ahxwas_a3:after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #C6C6C6;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.abt-cont3 .ahxwas_a3 .jtxas > div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
   transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #A7A7A7;
  border-radius: 50%;
  z-index: 3;
  text-align: center;
  background: #fff;
  cursor:pointer
}
.abt-cont3 .ahxwas_a3 .jtxas > div:hover{
 border:1px solid #3c6fb5;
 background-color:#3c6fb5;
}
.abt-cont3 .ahxwas_a3 .jtxas > div:hover i{
 color:#FFF;
}
.abt-cont3 .ahxwas_a3 .jtxas > div.swiper-button-next1 {
  left: 0;
}
.abt-cont3 .ahxwas_a3 .jtxas > div.swiper-button-next1 i{
  font-size:25px;
}
.abt-cont3 .ahxwas_a3 .jtxas > div.swiper-button-prev1 i{
  font-size:25px;
}
.abt-cont3 .ahxwas_a3 .jtxas > div.swiper-button-prev1 {
  right: 0;
}

.abt-cont3 .ahxwas_a3 .jtxas > div i {
  color: #A7A7A7;
  font: 500 1rem/2.25rem "Montserrat";
}

.abt-cont3 .mySwiper6 {
  margin: 0 7.14286%;
  position: relative;
}

@media (max-width: 768px) {
  .abt-cont3 .mySwiper6 {
    margin: 0 12%;
  }
}

.abt-cont3 .mySwiper6 .a .xhasz {
  border-radius: 50%;
  border: 1px solid #D3D3D3;
  position: relative;
}

.abt-cont3 .mySwiper6 .a .xhasz i {
  display: block;
  font-size: 0;
  visibility: hidden;
}

.abt-cont3 .mySwiper6 .a .xhasz .szxds {
  width: 90%;
  height: 90%;
  z-index: 1;
  position: absolute;
  left: 5%;
  top: 5%;
  background: #3c6fb5;
  text-align: center;
  color: #fff;
 font-size:25px;
 font-weight:600;
  border-radius: 50%;
  cursor:pointer;
}

@media (max-width: 768px) {
  .abt-cont3 .mySwiper6 .a .xhasz .szxds {
    font-size: 16px;
  }
}

.abt-cont3 .mySwiper6 .swiper-slide-thumb-active .xhasz .szxds {
  background: #cd291e;
}

.abt-cont4 {
  background: #F6F8FB;
  padding: 5.5rem 0 4.125rem;
}

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

.abt-cont4 .a5_v1 {
  margin-top: 0;
}

.abt-cont5 {
  padding: 7.375rem 0 10rem;
}

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

.abt-cont5 .abt-cont5_a1 {
  width: 29.28571%;
  margin-top:30px;
}

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

.abt-cont5 .abt-cont5_a1 .p {
  color: #707070;
  line-height:35px;
}

@media (max-width: 768px) {
  .abt-cont5 .abt-cont5_a1 .p {
    font-size: 1rem;
    margin-top: 1em;
  }
}

.abt-cont5 .abt-cont5_a1 .jtxasx {
  margin-top: 1.5em;
}

@media (max-width: 768px) {
  .abt-cont5 .abt-cont5_a1 .jtxasx {
    margin-top: 0.6em;
  }
}

.abt-cont5 .abt-cont5_a1 .jtxasx > div {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #A7A7A7;
  border-radius: 50%;
  text-align: center;
  background: #fff;
  display: inline-block;
  cursor:pointer; 
}
.abt-cont5 .abt-cont5_a1 .jtxasx > div:hover{
   background: #3c6fb5;
    border: 1px solid #3c6fb5;
}
.abt-cont5 .abt-cont5_a1 .jtxasx > div  i {
  font-size:25px;
}
.abt-cont5 .abt-cont5_a1 .jtxasx > div:hover i{
   color:#FFF;
}
.abt-cont5 .abt-cont5_a1 .jtxasx > div.swiper-button-prev1a {
  margin-left: 1em;
}

.abt-cont5 .abt-cont5_a1 .jtxasx i {
  color: #A7A7A7;
  font: 500 1rem/2.25rem "sourcehansans";
}

.abt-cont5 .abt-cont5_a2 {
  width: 69.78571%;
}

@media (max-width: 768px) {
  .abt-cont5 .abt-cont5_a2 {
    width: 100%;
    margin-top: 1em;
  }
}

.abt-cont5 .abt-cont5_a2 .mySwiper7 .a {
  border: 1px solid #A7A7A7;
  border-radius: 0.1rem;
  padding:2px;
  overflow: hidden;
}
 