﻿@charset "utf-8";

/* base */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: Bebas;
  src: url(../fonts/Bebas.ttf);
}

@font-face {
  font-family: AvantGardeCE-Demi;
  src: url(../fonts/AvantGardeCE-Demi.ttf);
}


.solve .s_phone {
  display: none;
}


template {
  display: none;
}

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}


.alltime,
.alltime * {
  -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  -moz-transition: all .4s cubic-bezier(.4, 0, .2, 1);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}


.img_h {
  position: relative;
  cursor: pointer;
}

.img_h img {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.img_h img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.img_h.img_ha:hover img {
  opacity: 1;
}

.img_h.img_ha:hover img:nth-child(2) {
  opacity: 0;
}

a:hover .img_h.img_ha img,
.img_h:hover img {
  opacity: 0;
}

a:hover .img_h.img_ha img:nth-child(2),
.img_h:hover img:nth-child(2) {
  opacity: 1;
}


.visible-xs {
  display: none !important;
}

.clearfix::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

.container {
  margin: 0 auto;
  min-height: 1px;
  width: 90%;
  max-width: 1600px;
}

.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 58px;
  line-height: 24px;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 72px;
  line-height: 24px;
}

.o_fit video,
.o_fit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[dis-select] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[dis-drag] {
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}

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

.f-dr {
  /*水平*/
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.f-dc {
  /*垂直*/
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-1>* {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block;
  /* IE10失效的解决办法 */
}

.f-as {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.f-ac {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.f-ae {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.f-js {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.f-jc {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.f-je {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.f-jsb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}

/* base */

/* scrollbar */
@media (min-width: 1024px) {
  ::-webkit-scrollbar-track-piece {
    width: 10px;
    background-color: #ccc;
  }

  ::-webkit-scrollbar {
    width: 8px;
    height: 6px
  }

  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #666;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #333;
  }

  ::selection {
    background: #ccc;
    color: #fff;
  }
}

/* scrollbar */

/* animation */
/*
  animation: jump_down 1.8s infinite ease-in-out;
	-moz-animation: jump_down 1.8s infinite ease-in-out;
	-webkit-animation: jump_down 1.8s infinite ease-in-out;
  -o-animation: jump_down 1.8s infinite ease-in-out;
*/
/* jump_down */
@keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-moz-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-webkit-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

@-o-keyframes jump_down {
  0% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }

  50% {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
  }

  100% {
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
  }
}

/* jump_down */

/* animation */

/* page */
/*
  <div class="pagination">
    <div class="page_pc hidden-xs clearfix">
      <a href="javascript:;">上一页</a>
      <a href="javascript:;" class="page_num act">1</a>
      <a href="javascript:;" class="page_num">2</a>
      <a href="javascript:;" class="page_num">3</a>
      <a href="javascript:;">下一页</a>
      <em>共10页</em>
    </div>
    <a href="javascript:;" class="page_sj visible-xs">加载更多</a>
  </div>
*/
.pagination {
  margin: 40px auto; 
  background: #fff;
  padding: 15px;
  
}

.pagination .page a {
  width: 44px;
  height: 44px;
  border: solid 1px #bfbfbf;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  color: #333;
  margin-left: 20px;
  border-radius: 50%;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.pagination .page a:first-child {
  margin-left: 0;
}

.pagination .page a:hover {
  border-color: #007ac3;
  color: #007ac3;
}

.pagination .page a.active {
  background: #007ac3;
  border-color: #007ac3;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.pagination .prev .img_h {
  margin-right: 15px;
}

.pagination .next .img_h {
  margin-left: 15px;
}

.pagination .prev:hover,
.pagination .next:hover {
  color: #007ac3;
}

.pagination .next .img_h img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination .m {
  background: #007ac3;
  color: #fff;
  width: 140px;
  text-align: center;
  margin: 0 auto;
  height: 40px;
  line-height: 40px;
}


/* page */

/* common */
.md {
  position: relative;
  top: -100px;
}

.commonP {
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.commonP .swiper-pagination-bullet {}

.commonP .swiper-pagination-bullet.swiper-pagination-bullet-active {}

.common_tit {
  text-align: center;
}

.common_tit h3 {
  font-size: 50px;
  /* gmy */
  font-weight: bold;
  /* gmy */
  color: #333;
}

.common_tit h5 {
  font-size: 24px;
  line-height: 30px;
  color: #666;margin:10px 0;
}


#video_model {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}

#video_model .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

#video_model .video {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: 80%;
  max-width: 960px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  background: #252525;
}

#video_model .video .close {
  position: absolute;
  right: -50px;
  top: 0;
  width: 30px;
  z-index: 99999;
  cursor: pointer;
}

#video_model .video_inner {
  width: 100%;
  padding: 10px;
  overflow: hidden;
  position: relative;
}

#video_model .video_inner video {
  display: block;
  width: 100%;
  outline: none;
}

#video_model .video_inner .video_inner_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#video_model .video_inner .video_inner_mask img {
  cursor: pointer;
}

#video_model .video .text {
  padding: 16px 10px 30px;
}

#video_model .video .text h6 {
  font-size: 16px;
  color: #fff;
}

#video_model .video .text p {
  font-size: 12px;
  margin-top: 12px;
  color: #666;
}

/*
<!-- video_model -->
<div id="video_model">
  <div class="mask"></div>
  <div class="video">
    <div class="close"><img src="images/close.png" alt=""></div>
    <div class="video_inner"><video src="" autoplay controls x5-playsinline playsinline webkit-playsinline></video></div>
    <div class="text">
      <h6></h6>
      <p></p>
    </div>
  </div>
</div>
<!-- video_model -->
*/

/* common */

/* header */
.headerSJ {
  display: none;
}

/* header */

/* menu */

/* menu */

/* banner */
.banner {
  position: relative;
}

.banner .swiper-slide {
  overflow: hidden;
  position: relative;
}

/* banner */

/* index */

.common_btn {
  position: relative;
  top: 8px;
  display: block;
  width: 135px;
  height: 45px;
  border: solid 1px #999;
  text-align: center;
  line-height: 45px;
  position: relative;
  border-radius: 3px;
  font-size: 14px;
  color: #89898b;
  text-align: center;
  overflow: hidden;

}

.common_btn::before {
  content: attr(data-text);
  z-index: 10;
  position: absolute;
  left: 0;
  color: #fff;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.common_btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #007ac3;
  opacity: 0;
  z-index: 6;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}

a:hover .common_btn::before,
a.common_btn:hover::before {
  opacity: 1;
}

a:hover .common_btn::after,
a.common_btn:hover::after {
  opacity: 1;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.common_btn span {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  z-index: 1;
  display: block;
  opacity: 1;
}

.btn-pre img,
.btn-next img {
  outline: none;
}

.bannerP.swiper-pagination-bullets {
  position: absolute;
  bottom: 10px;
  z-index: 9;
  text-align: center;
  width: 300px;
}

.bannerP .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px;
}

.bannerP .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #187fc4;
}

#swiper2 .bannerP,
#swiper4 .bannerP,
.ind4_swiper .bannerP {
  display: none;
}

.header {
  width: 100%;
  height: 70px;
  padding: 0 8.33%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, .2);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header.header2 {
  height: 70px;
  line-height: 70px;
  display: none;
  background: rgba(83, 83, 83, 0.6);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header.header2 .menu_btn {
  position: absolute;
  right: 8.33%;
  top: 0;
}

.header_nav {
  margin-top: -4px;
}

.header_nav li {
  float: left;
  margin: 0 40px;
  line-height: 70px;
  font-size: 18px;
}

.header.white .header_nav li {
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header.white .header_nav li.active,
.header.white .header_nav li:hover {
  color: #007ac3;
}

.header.white .header_nav li::after {
  background: #007ac3;
}

.header_nav li::after {
  content: '';
  display: block;
  position: relative;
  height: 4px;
  background: #fff;
  bottom: 0;
  width: 0;
  transition: all .4s ease-in-out;
  margin: 0 auto;
}

.header_nav li.active::after,
.header_nav li:hover::after {
  width: 100%;
}

.header.white {
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
}

.header.white .logo {
  position: relative;
}

.header .logo img {

  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header .logo img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.header.white .logo img {
  opacity: 0;
}

.header.white .logo img:nth-child(2) {
  opacity: 1;
}

.swiper-container {
  width: 100%;
  position: relative;
}

.swiper-stop {
  cursor: pointer;
  position: relative;
  margin-left: 16px;
}

.swiper-stop::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background-color: #fff;
  opacity: 0.6;
  margin-right: 16px;
}

.swiper-stop .start {
  width: 4px;
  height: 12px;
  background-color: #fff;
  margin-left: 5px;
}

.header a.logo {
  height: 100%;
  position: relative;
}

.header .logo::after {
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background-color: #f0f0f0;
  margin: 0 20px;
}


.header_tel {
  background-color: #007ac3;
  width: 217px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  height: 70px;
  line-height: 35px;
  margin-right: 70px;
}

.header .search {
  width: 29px;
  height: 25px;
  position: relative;
}

.header .search img {

  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header .search img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.header.white .search img {
  opacity: 0;
}

.header.white .search img:nth-child(2) {
  opacity: 1;
}

.header_nav2 {
  background: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  display: none;
  width: 100%;
  overflow: hidden;
}

.header_nav2 .inner {
  width: 90%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 40px 0 50px;

}

.header_nav2 .inner .l {
  float: left;
  width: 25%;
  min-height: 160px;
  border-right: 1px solid #cdcdcd;
  padding-right: 50px;
}

.header_nav2 .inner .l {
  border: 0;
}


.header_nav2 .inner .l h4 {
  font-size: 34px;
  font-weight: bold;
  color: #007ac3;
  line-height: 32px;
}

.header_nav2 .inner .l .tc {
  line-height: 1.5;
  color: #666;
  font-size: 18px;
  margin: 20px 0 20px;
}

.header_nav2 .inner .l .more a {
  display: inline-block;
  border-bottom: 1px solid #999;
  color: #666;
  line-height: 1.1;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header_nav2 .inner .l .more a:hover {
  color: #007ac3;
  border-bottom: 1px solid #007ac3;
}


.header_nav2 .inner .l h6 {
  font-size: 18px;
  color: #666666;
  line-height: 24px;
  margin-top: 12px;
}

.header_nav2 .inner .r,
.header_nav2 .inner .r2 {
  float: right;
  width: 75%;
  padding-left: 6%;
}

.header_nav2 .inner .r3 {
  float: right;
  width: 75%;
  padding-left: 2%;
  background: #eeeded;
  position: relative;
  z-index: 5;
  line-height: 1.5;
}

.header_nav2 .inner .r3 .bg {
  display: block;
  width: 1500px;
  height: 1500px;
  position: absolute;
  top: -100px;
  left: 0;
  background: #eeeded;
  z-index: -1;
}

.header_nav2 .inner .r3 .dl1 {}

.header_nav2 .inner .r3 .dl1 dd {
  width: 23%;
  float: left;
  margin-right: 2.66%;
}

.header_nav2 .inner .r3 .dl1 dd:last-child {
  margin-right: 0;
}

.header_nav2 .inner .r3 .dl1 dd a {
  display: block;
  line-height: 1.5;
  margin-bottom: 5px;
  color: #6f6f6f;
  font-size: 17px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header_nav2 .inner .r3 .dl1 dd .rtc {
  margin: 10px 0 30px;
}

.header_nav2 .inner .r3 .dl1 dd .rtc a {
  color: #007ac3;
}

.header_nav2 .inner .r3 .dl1 dd a:hover {
  color: #007ac3;
}

.header_nav2 .inner .r3 .dl1 dd .rtt {
  color: #007ac3;
  border-bottom: 1px solid #007ac3;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}


.header_nav2 .inner .r3 .dl1 dd .rtt2 {
  color: #666;
  border-bottom: 1px solid #666;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;

}

.header_nav2 .inner .r3 .dl1 dd .rtt3 {
  margin-top: 20px;
}

.header_nav2 .inner .r3 .dl1 dd a {
  display: block;
}

.header_nav2 .inner .r a {
  float: left;
  width: 21.9%;
  margin-right: 4.13%;
  margin-bottom: 10px;
}

.header_nav2 .inner .r a .text {
  font-size: 18px;
  /* gmy */
  color: #333333;
  line-height: 50px;
}

.header_nav2 .inner .r a .text img {
  margin-left: 12px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header_nav2 .inner .r a:hover .text img {
  margin-left: 16px;
}

.header_nav2 .inner .r a:nth-child(4n) {
  margin-right: 0;
}

.header_nav2 .inner .r2 .r2_a {
  float: left;
}

.header_nav2 .inner .r2 .r2_a a {
  display: block;
  line-height: 1.5;
  padding-left: 20px;
  color: #666;
  margin-bottom: 20px;
  /* background: url(../Images/zz_4.png) center left no-repeat; */
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.header_nav2 .inner .r2 .r2_img {
  float: left;
  margin-left: 150px;
  max-width: 375px;
  overflow: hidden;
}

.header_nav2 .inner .r2 .r2_a a:hover {
  /* background: url(../Images/zz_5.png) center left no-repeat; */
  color: #007ac3;
}




.header_nav2n .inner {
  max-width: 1060px;
}


.header_nav3 {
  background: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  display: none;
  width: 100%;
}

.header_nav3 .outer {
  width: 90%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 40px 0 50px;
}

.header_nav3 .inner {
  width: 25%;
  float: left;
}

.header_nav3 .inner h4 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-top: 20px;
}

.header_nav3 .inner li {
  font-size: 14px;
  color: #333;
  float: none;
  margin: 0;
  line-height: 1.6;
  list-style: disc;
  margin: 0 80px 0 20px;
}

.header_nav3 .inner li a {
  color: #333;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header_nav3 .inner li a:hover {
  color: #006fb8;
}

/* 侧边定位 */
/* 右侧 */

.rightfiexd {
  position: fixed;
  right: 0px;
  top: 50%;
  margin-top: -102px;
  z-index: 10;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}

.rightfiexd.act {
  right: 0;
}

.rightfiexd .ul1 {
  width: 74px;
}

.rightfiexd .ul1 * {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.rightfiexd .ul1 li {
  cursor: pointer;
  margin-bottom: 1px;
  position: relative;
  border-radius: 4px 0px 0px 4px;
}

.rightfiexd .ul1 li .img {
  display: block;
  width: 84px;
  height: 76px;
  background: #007AC4;
  position: relative;
  right: 0;
  border-radius: 4px 0px 0px 4px;
}

.rightfiexd .ul1 li:nth-child(1) .img {
  background: #F6AC00;
}

.rightfiexd .ul1 li:nth-child(4) {
  background: #007AC4;
}

.rightfiexd .ul1 li .img img {
  display: block;
  width: 100%;
  width: 30px;
  margin: 0px auto 0;
  padding-top: 12px;
}

.rightfiexd .ul1 li .img span {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding-top: 6px;
  font-size: 12px;
  color: #fff;
}

.rightfiexd .ul1 li .cla {
  position: absolute;
  top: 0px;
  right: -180px;
  width: 160px;
  height: 76px;
  line-height: 76px;
  background: #007AC4;
  color: #fff;
  font-size: 20px;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}

.rightfiexd .ul1 li:hover .img {
  right: 10px;
}

.rightfiexd .ul1 li.dh:hover .img {
  right: 160px;
}

.rightfiexd .ul1 li.dh:hover .cla {
  right: -0px;
}

.rightfiexd .ul1 li .ewm {
  width: 100px;
  position: absolute;
  top: -7px;
  right: 84px;
  z-index: -1;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: right center;
  -webkit-transform-origin: right center;
}

.rightfiexd .ul1 li:hover .ewm {
  transform: scale(1);
  -webkit-transform: scale(1);
}




.btn-pre,
.btn-next {
  position: absolute;
  top: 50%;
  z-index: 200;
  outline: none;
  cursor: pointer;
}




.btn-pre {
  left: 82px;
}

.btn-next {
  right: 82px;
}

.btn-pre img,
.btn-next img {
  display: block;
  margin: auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.btn-pre img:nth-child(2),
.btn-next img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}

.btn-pre img:nth-child(2) {
  transform: rotate(-180deg);
}

.btn-next img:nth-child(1) {
  transform: rotate(180deg);
}

.btn-pre:hover img,
.btn-next:hover img {
  opacity: 0;
}

.btn-pre:hover img:nth-child(2),
.btn-next:hover img:nth-child(2) {
  opacity: 1;
}

.banner_bot {
  position: absolute;
  left: 0;
  bottom: 160px;
  width: 100%;
  z-index: 10;
}

.banner_bot .swiper-pagination {
  position: static;
}

.banner_bot .swiper-pagination-bullet {
  background: #fff;
  margin: 0 4px;
}

.swiper-stop .triangle {
  width: 0px;
  height: 0px;
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 0;
  display: none;
  margin-left: 6px;
}

.banner_b_l a:not(.logo) {
  display: inline-block;
  position: relative;
  margin-right: 8px;
  border: 1px solid transparent;
}

.banner_b_l a.tianmao {
  width: 32px;
  height: 31px;
  background-image: url('../Images/tianmao.png');
}

.banner_b_l a.tianmao:hover {
  background-image: url('../Images/tianmao-icon.png');
}

.banner_b_l a.jingdong {
  width: 32px;
  height: 31px;
  background-image: url('../Images/jingdong.png');
}

.banner_b_l a.jingdong:hover {
  background-image: url('../Images/1688-icon.png');
}

.header.white .banner_b_l a:not(.logo) {
  border: solid 1px #e6e6e6;
  border-radius: 50%;
}

.menu_btn {
  display: none;
}


.menu_outer {
  position: fixed;
  z-index: 99999;
  top: 0;
  height: 100%;
  right: 0px;
  background: #222;
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu_outer.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

nav.menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-around;
  height: 100%;
}

.menu_close {
  position: absolute;
  right: 80px;
  top: 45px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 20px;
}

.menu_outer2 .menu_close {
  top: 30px;
}

.menu_1 {
  width: 320px;
  margin-top: -100px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu_close.active+.menu_1 {
  margin-top: 45px;
}

.menu_1 li a {
  padding: 10px 80px 10px 60px;
  display: block;
}

.menu_1 li a h4 {
  font-family: 'MaruFoPro';
  font-size: 18px;
  letter-spacing: 1px;
  color: #75787b;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu_1 li a h5 {
  font-family: 'DINPro';
  font-size: 18px;
  color: #b9babc;
  margin-top: 28px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu_1 li a:hover h4 {
  color: #f65275;
}

.menu_1 li a:hover h5 {
  color: #f7a7b8;
}

.ind1_div {
  position: relative;
}

.ind1_div video {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  object-fit: cover;
  max-height: 100%;
}

.ind1_div .text {
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.ind1_div h4 {
  font-size: 72px;
}

.ind1_div h6 {
  font-size: 36px;
  margin-top: 32px;
}

.ind2 {
  padding: 100px 0;
  background-color: #f5f5f5;
  text-align: center;

}

#swiper2 {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ind2 h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 3.33%;
}

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

.ind2-item {
  background-color: #fff;
  padding: 81px 23px;
  text-align: left;
  display: block;
}

.ind2 .swiper-slide[data-swiper-slide-index="0"] .ind2-item {
  border-top: 2px solid #007fc2;

}

.ind2 .swiper-slide .ind2-item:hover .ind2_title,
.ind2 .swiper-slide .ind2-item:hover .ind2_content,
.ind2 .swiper-slide .ind2-item:hover .detail_btn {
  color: #fff;
}


.ind2 .swiper-slide[data-swiper-slide-index="1"] .ind2-item {
  border-top: 2px solid #e25a17;
}

.ind2 .swiper-slide[data-swiper-slide-index="2"] .ind2-item {
  border-top: 2px solid #f6bd00;
}

.ind2 .swiper-slide[data-swiper-slide-index="3"] .ind2-item {
  border-top: 2px solid #e90000;
}

.ind2 .swiper-slide[data-swiper-slide-index="4"] .ind2-item {
  border-top: 2px solid #5f5c5c;
}


.ind2 .swiper-slide .ind2-item {
  position: relative;


}

.ind2 .swiper-slide .ind2-item * {
  position: relative;
  z-index: 3;
}

.ind2 .swiper-slide .ind2-item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background: #007fc2;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.ind2 .swiper-slide[data-swiper-slide-index="1"] .ind2-item:after {
  background: #e25a17;
}

.ind2 .swiper-slide[data-swiper-slide-index="2"] .ind2-item:after {
  background: #f6bd00;
}

.ind2 .swiper-slide[data-swiper-slide-index="3"] .ind2-item:after {
  background: #e90000;
}

.ind2 .swiper-slide[data-swiper-slide-index="4"] .ind2-item:after {
  background: #5f5c5c;
}

.ind2 .swiper-slide .ind2-item:hover:after {
  height: 100%;
}



.ind2_title {
  margin: 20px 0;
  font-size: 28px;
  color: #460000;
}

.ind2_content {
  min-height: 90px;
}

.ind2_img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #767676;

}

.ind2_img img {
  -webkit-animation: icoAni .4s ease-in-out;
  -moz-animation: icoAni .4s ease-in-out;
  -ms-animation: icoAni .4s ease-in-out;
  -o-animation: icoAni .4s ease-in-out;
  animation: icoAni .4s ease-in-out;
}

.ind2_img img:nth-child(2) {
  opacity: 0;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 4;
}



.ind2-item:hover .ind2_img {
  border: 1px solid #fff;
  -webkit-animation: icoAni .4s ease-in-out;
  -moz-animation: icoAni .4s ease-in-out;
  -ms-animation: icoAni .4s ease-in-out;
  -o-animation: icoAni .4s ease-in-out;
  animation: icoAni .4s ease-in-out;

}

.ind2-item:hover .ind2_img img {
  opacity: 0;
}

.ind2-item:hover .ind2_img img:nth-child(2) {
  opacity: 1;
}



.ind2_btn,
.ind3_btn {
  margin-top: 80px;
}

.ind2-item:hover .ind2_btn {
  border: 1px solid #fff;
  color: #fff;
  ;

}




.ind3>div {
  width: 50%;

}

.ind3 img {
  width: 100%;
  min-height: 600px;
}

.ind3 section {
  width: 50%;
}

.ind3_div1 {
  margin-left: 53px;
  padding-right: 16.6%;
}

.ind3_div1 h3 {
  font-size: 42px;
  font-weight: bold;
}

.ind3_div1 p {
  font-size: 14px;
  color: #666;
}

.ind3_div1 .ind3_p1 {
  margin: 20px 0 12px 0;
  line-height: 1.8;

}

.ind3_div2 {
  display: flex;
  margin: 4px 0 32px 0;
  flex-wrap: wrap;
}

.ind3_div2 .ind3_item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20%;
}

.ind3_p2 {
  text-align: center;
}

.ind3_item p span {
  font-family: Bebas;
  font-size: 42px;
  color: #333;
  min-width: 60px;
}

.ind3_item:hover p {
  color: #007ac3;
}

.ind3_item:hover p span {
  color: #007ac3;
}

.ind4 .swiper-container {
  display: none;
}



.ind4 {
  background-color: #f5f5f5;
  padding: 103px 0 97px 0;
}

.ind4 h4 {
  height: 40px;
  font-size: 36px;
  line-height: 40px;
  color: #333;
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 62px;
  font-weight: bold;
  /* gmy */
}

.ind4 .ind4_l {
  background: url('../Images/ind4_6.png');
  display: flex;
  justify-content: space-between;
  background-size: cover;
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.ind4 .ind4_l .in4lt {
  width: 360px;
  overflow: hidden;
  position: relative;
  height: 580px;
  background: #fff;
}

.ind4 .ind4_l .in4lt .swiperl_int {
  display: block;
  height: 480px;
}

.ind4 .ind4_l .in4lt .swiperl_int .swiper-slide {
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.ind4 .ind4_l .in4lt .swiperl_int .swiper-slide:after {
  content: '';
  display: block;
  width: 0%;
  height: 4px;
  background: #007ac3;
  position: absolute;
  left: 0;
  bottom: 1px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.ind4 .ind4_l .in4lt .swiperl_int .swiper-slide .sbox {
  line-height: 80px;
}

.ind4 .ind4_l .in4lt .swiperl_int .swiper-slide .sbox img {
  display: block;
  margin: 22px 25px 0 70px;
  float: left;
}

.ind4 .ind4_l .prev_inl {
  width: 34px;
  height: 26px;
  margin: 20px auto 10px;
  background: url(../Images/jt_b.png) center no-repeat;
  cursor: pointer;
}

.ind4 .ind4_l .prev_inl:hover {
  background: url(../Images/jt_b1.png) center no-repeat;
}

.ind4 .ind4_l .next_inl {
  width: 34px;
  height: 26px;
  margin: 0px auto;
  background: url(../Images/jt_u.png) center no-repeat;
  cursor: pointer;
}

.ind4 .ind4_l .next_inl:hover {
  background: url(../Images/jt_u1.png) center no-repeat;
}

.ind4 .ind4_l .in4lt .swiperl_int .swiper-slide.act {
  background: #f0f0f0;
}

.ind4 .ind4_l .in4lt .swiperl_int .swiper-slide.act:after {
  width: 100%;
}

.ind4_ul .ind4_c {
  max-width: 460px;
  display: none;
}

.ind4_ul .ind4_c.active {
  display: block;
}

.ind4_l ul li {
  width: 360px;
  height: 84px;
  line-height: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  transition: all 1s ease-in-out;
  position: relative;
  top: 0;
}

.ind4_l ul li.noneactive {
  display: none;
}

.ind4_l ul li::after {
  content: '';
  display: block;
  position: absolute;
  height: 4px;
  background: #fff;
  bottom: 0;
  width: 0;
  transition: all .6s ease-in-out;
  margin: 0 auto;
  background: #007ac3;
  ;

}

.ind4_l li.active::after {
  width: 100%;
}

.ind4_l li.active {
  background-color: #f0f0f0;
}

.ind4_l ul li img {
  width: 53px;
  height: 43px;
}

.ind4_l ul li p {
  font-size: 18px;
  color: #333;
  margin-left: 23px;
}

.ind4_c {
  padding-left: 102px;
  padding-top: 80px;
}

.ind4_swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.ind4_r {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}



.ind4 .swiper-container .swiper-slide .ind4_r img {
  display: block;
  position: relative;
  top: 50%;
  opacity: 0;
  margin-top: 60px;
}


.ind4 .swiper-container.act .swiper-slide .ind4_r img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  transition-delay: .5s;
  -webkit-transition-delay: .5s;
  top: 0;
  opacity: 1;


}

.ind4_c_p1 {

  font-size: 24px;
  color: #007ac3;
}

.ind4_c_p2 {

  font-size: 14px;
  color: #666;
  padding: 23px 0 50px 0;
}

.ind4_c_a1 {
  font-size: 14px;
  color: #333;
  text-decoration: underline;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.ind4_c_a1:hover {
  color: #006fb8;
  text-decoration: underline;
}

.ind4_swiper {
  width: 640px;
}

a.ind4_c_a1 {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}


.ind5 {
  padding: 70px 0;
}

.ind5_container {
  max-width: 1416px;
  margin: auto;
  width: 74%;
  display: flex;
  justify-content: space-between;
}

.btn_marg {
  margin-top: 90px;
}

.ind5_2 {
  width: 303px;
  height: 40px;
  font-size: 36px;
  line-height: 40px;
  color: #333;
  margin-top: 20px;
  font-weight: bold;
}

.ind5_2 span {
  display: inline-block;
  padding: 2px 10px;
  background-color: #007ac3;
  border-radius: 3px;
  font-size: 22px;
  color: #fff;
  line-height: 34px;
  margin-right: 10px;
}

.ind5_3 {
  margin-top: -25px;
  padding: 10px 10px;
}

/* .ind5_3 ul li {
    width: 200px;
	height: 91px;
	background-color: #ffffff;
	box-shadow: 0px 0px 15px 0px
		rgba(83, 83, 83, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
} */

.ind5_3 a {
  /* width: 200px; */
  height: 91px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(83, 83, 83, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.ind5_3 a:hover {
  box-shadow: 0px 0px 15px 0px rgba(83, 83, 83, 0.2);
}

#swiper4 {
  margin-left: 100px;
  /* width: 885px; */
}

#swiper4 .swiper-slide {
  height: unset;
}


.ind6 {
  padding: 5.2% 8.33%;
  background-color: #f5f5f5;
}

.ind6_1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.ind6 h4 {
  font-weight: bold;
  font-size: 36px;
  color: #333;
}

.ind6_2 {
  display: flex;
  justify-content: space-between;

}

#swiper6 {
  padding-bottom: 50px;
}

#swiper6 .bannerP.swiper-pagination-bullets {
  bottom: 0px;
  width: 100%;
}

.ind6_3 a.active {
  background-color: #187fc4;
}

.ind6_3 .news {
  margin: 25px 0;
  width: 90px;
  height: 28px;
  line-height: 28px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #d0d0d0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.ind6_3 a {
  display: block;
}

.ind6_3 a:hover .news {
  background: #0866a5;
}

.ind6_3 .img {
  overflow: hidden;
  display: block;
}

.ind6_3 .img img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  display: block;
  width: 100%;
  height: 260px;
}

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

.ind6_3_p {
  margin: 0;
  font-size: 18px;
  color: #0866a5;
  min-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  font-weight: bold;
}

.p_style {
  margin: 0;
  color: #333;
  font-weight: bold;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ind6_3 a:hover .p_style {
  color: #0866a5;
}

.ind6_3_p2 {
  width: 100%;
  font-size: 14px;
  color: #666;
  height: 36px;
  /* gmy */
  text-overflow: -o-ellipsis-lastline;
  /* gmy */
  overflow: hidden;
  /* gmy */
  text-overflow: ellipsis;
  /* gmy */
  display: -webkit-box;
  /* gmy */
  -webkit-line-clamp: 2;
  /* gmy */
  line-clamp: 2;
  /* gmy */
  -webkit-box-orient: vertical;
  /* gmy */
}

.ind6_3_p3 {
  text-align: right;
  font-size: 14px;
  color: #999;
  margin-top: 52px;
}


#swiper4.swiper-container {
  padding-bottom: 50px;
}


.footer {
  padding-top: 80px;
  padding-bottom: 25px;
  background-color: #262626;
  color: #fff;
  font-size: 18px;
}

.footer .f_fixed {
  width: 100%;
  height: 67px;
  background-color: #007ac4;
  position: fixed;
  bottom: 0;
  display: none;
}

.footer .f_fixed .ul1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .f_fixed .tel_alert {
  width: 85%;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.footer .f_fixed .tel_alert .tel_phone {
  display: block;
  width: 100%;
  height: 58px;
  background-color: #fff;
  z-index: 999;
  color: #007ac3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 21px;
}

.footer .f_fixed .tel_alert .tel_phone img {
  width: 8%;
  height: 50%;
  margin-right: 10px;
}

.footer .f_fixed .tel_alert .quxiao {
  width: 100%;
  height: 58px;
  line-height: 58px;
  background-color: #fff;
  z-index: 999;
  color: #007ac3;
  text-align: center;
  border-radius: 8px;
  font-size: 21px;
}

.footer .f_fixed .ul1 li {
  width: 25%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.footer .f_fixed .ul1 li>div {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.footer .f_fixed .ul1 li img {
  width: 28%;
  height: 28%;
  margin-bottom: 1px;
}

.footer .f_fixed .ul1 li div div {
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

.footer .f_fixed .ul1 li.act {
  background-color: #f6ac00;
}

.footer_container {
  max-width: 1600px;
  width: 83.33%;
  margin: 0 auto;
}

.footer_1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer_2_title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: #fff;
  margin-top: 27px;
  margin-bottom: 38px;
}

.footer_2 ul li {
  margin-top: 10px;
}

.footer_2 ul li a {
  font-size: 14px;
  color: #fff;
  opacity: 0.5;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer_2 ul li a:hover {
  opacity: 1;
}

.footer_3 {
  width: 100%;
  background: url('../Images/footer_3.png') center bottom / 1600px auto no-repeat;
  text-align: center;
}

.footer_4 {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  padding: 20px 0;
}


.my-button-disabled {
  opacity: 0.1;
}

.footer_6 {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* line-height: 40px;
  text-align: center; */



}

.footer_6 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #686868;
}

.footer_6 a:hover {
  border: none;
  background-color: #034387;
}

.footer_6 a>img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.footer_6 a>img:nth-child(1) {
  opacity: 1;
}

.footer_6 a>img:nth-child(2) {
  opacity: 0;
}

.footer_6 a:hover>img:nth-child(1) {
  opacity: 0;
}

.footer_6 a:hover>img:nth-child(2) {
  opacity: 1;
}

.footer_7 {
  position: absolute;
  top: 100%;
  display: none;
  width: 130px;
  height: 150px;
}

.footer_7::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  position: relative;
  left: 10px;
}

.footer_7 p {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.footer_6.active a:hover .footer_7 {
  display: block;
}

.footer_6_marg {
  margin: 0 20px;
}

.footer_ul {
  display: flex;
  justify-content: space-between;
  width: 50%;
}


.divselect {
  margin-top: 15px;
  position: relative;

}

.divselect span {
  width: 220px;
  height: 46px;
  line-height: 46px;
  display: block;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
  padding-left: 40px;
  border: 1px solid rgba(102, 102, 102, .8)
}

.divselect span img {
  margin-left: 60px;
}

.divselect ul {
  width: 100%;
  border: 1px solid #333;
  /* background-color:#ffffff;  */
  position: absolute;
  margin-top: -1px;
  display: none;
  z-index: 3;
}

.divselect ul li {
  height: 24px;
  line-height: 24px;
}

.divselect ul li a {
  display: block;
  height: 24px;
  color: #fff;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
}

.divselect ul li a:hover {
  background-color: #CCC;
}


.ind5_container {
  width: 80%;
}

.ind4_list {
  position: relative;
  top: 0;
}

.ind4_list li span.big {
  font-size: 26px;
  font-weight: bold;
}

.ind4_list .next_li {
  padding-top: 4px;
  top: 0;
  display: block;
  line-height: 86px;
  text-align: center;
  cursor: pointer;
}

.ind4_list .next_li .i {
  display: inline-block;
  /* width: 45px;
  height: 28px; */
  /* border: 1px solid #000; */
}

.ind4_list .next_li .active-one {
  display: none
}

.ind4_list .next_li .move-up {
  width: 100%;
  height: 100%;
}

.ind4_list .next_li .move-up i {
  display: inline-block;
  width: 50px;
  height: 40px;
  background-image: url('../Images/arrow-up.png');
  background-size: 100%;
}

.ind4_list .next_li .move-up:hover i {
  background-image: url("../Images/2d209987dddd4eac883d1ffa6b4c2c91.gif).png");
  background-size: 100%;
}

.ind4_list .next_li .move-down {
  width: 100%;
  height: 100%;
}

.ind4_list .next_li .move-down i {
  display: inline-block;
  width: 50px;
  height: 40px;
  background-image: url('../Images/arrow-down.png');
  background-size: 100%;
}

.ind4_list .next_li .move-down:hover i {
  background-size: 100%;
  background-image: url("../Images/48a5110911a8497ab4c20f7d44316c02.gif).png");
}

.wrapper {
  overflow: hidden;
  max-width: 1920px;
  /* min-width: 1200px; */
  margin: 0 auto;
  width: 100%;
  height: 0;
}

@media screen and (min-width: 320px) and (max-width: 799px){
  .inner_banner {
    position: relative;
    text-align: center;
    padding-top: 0px !important;
  }
  .pagination {
    background: #fff;
    padding: 15px;
    margin: 0 !important;
  }
}


.inner_banner {
  position: relative;
  text-align: center;
  padding-top: 70px;
}

.inner_banner .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.inner_banner .text h4 {
  height: 42px;
  background-color: #005bac;
  border-radius: 19px;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: -1px;
  color: #faf3e3;
  padding: 0 20px;
}

.inner_banner .text h5 {
  font-size: 48px;
  color: #fff;
  margin-top: 10px;
}

.inner_banner .text h6 {
  font-size: 26px;
  color: #fff;
  margin-top: 20px;
}

.inner_banner_nav {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

.inner_banner_nav .l {
  font-size: 24px;
  color: #fff;
  width: 480px;
  height: 80px;
  line-height: 24px;
  background: linear-gradient(-78deg, #3871c16e 0%, #007ac3 100%);
}

.inner_banner_nav .l a {
  font-size: 16px;
}

.inner_banner_nav .l i {
  font-size: 16px;
  margin: 0 16px;
}

.inner_banner_nav .r {
  width: calc(100% - 480px);
}

.inner_banner_nav .r a {
  font-size: 16px;
  line-height: 80px;
  color: #666;
  margin-left: 74px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  position: relative;
}

.inner_banner_nav .r a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #007ac3;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.inner_banner_nav .r a.active,
.inner_banner_nav .r a:hover {
  color: #007ac3;
  font-weight: bold;
}

.inner_banner_nav .r a.active::after,
.inner_banner_nav .r a:hover::after {
  width: 100%;
}

.result_inp {
  width: 660px;
  max-width: 80%;
  position: relative;
}

.result_inp input {
  height: 50px;
  border: 0;
  background: #fff;
  width: 100%;
  border-radius: 25px;
  padding: 0 24px;
  font-size: 16px;
  color: #007ac3;
}

.result_inp input::placeholder {
  color: #999;
}

.result_inp .btn {
  position: absolute;
  right: 10px;
  top: 0;
  width: 50px;
  height: 50px;
}

.inner_banner .text h6.result_h6 {
  font-size: 16px;
  color: #ffffff;
}

.inner_banner .text h6.result_h6 span {
  font-size: 22px;
}

/* index */

@-webkit-keyframes icoSpin {
  0% {
    -webkit-transform: rotateY(0deg) scale(1.03);
  }

  100% {
    -webkit-transform: rotateY(360deg) scale(1.3);
  }
}

@-moz-keyframes icoSpin {
  0% {
    -moz-transform: rotateY(0deg) scale(1.0);
  }

  100% {
    -moz-transform: rotateY(360deg) scale(1.3);
  }
}

@-ms-keyframes icoSpin {
  0% {
    -ms-transform: rotateY(0deg) scale(1.0);
  }

  100% {
    -ms-transform: rotateY(360deg) scale(1.3);
  }
}

@-o-keyframes icoSpin {
  0% {
    -o-transform: rotateY(0deg) scale(1.0);
  }

  100% {
    -o-transform: rotateY(360deg) scale(1.3);
  }
}

@keyframes icoSpin {
  0% {
    transform: rotateY(0deg) scale(1.0);
  }

  100% {
    transform: rotateY(360deg) scale(1.3);
  }
}

/* solve */
@-webkit-keyframes icoAni {
  0% {
    -webkit-transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
  }
}

@-moz-keyframes icoAni {
  0% {
    -moz-transform: rotateY(0deg);
  }

  100% {
    -moz-transform: rotateY(360deg);
  }
}

@-ms-keyframes icoAni {
  0% {
    -ms-transform: rotateY(0deg);
  }

  100% {
    -ms-transform: rotateY(360deg);
  }
}

@-o-keyframes icoAni {
  0% {
    -o-transform: rotateY(0deg);
  }

  100% {
    -o-transform: rotateY(360deg);
  }
}

@keyframes icoAni {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@-webkit-keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1, 0.1);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1)
  }
}

@-moz-keyframes ripple {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1, 0.1);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -moz-transform: scale(1)
  }
}

@-ms-keyframes ripple {
  0% {
    opacity: 0;
    -ms-transform: scale(0.1, 0.1);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -ms-transform: scale(1)
  }
}

@-o-keyframes ripple {
  0% {
    opacity: 0;
    -o-transform: scale(0.1, 0.1);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -o-transform: scale(1)
  }
}

@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }

  5% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.point-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  opacity: 1;
  text-align: center;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.point-area .point-name {
  position: absolute;
  top: 12px;
  left: 46px;
  word-break: keep-all;
}

.point-area .point {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: transparent;
  z-index: 9;
}

.point-area .point.point-dot {
  background: #fff;
  width: 4px;
  height: 4px;
  z-index: 10;
}

.point-area .point.point-10,
.point-area .point.point-40,
.point-area .point.point-80,
.point-area .point.point-shadow {
  width: 100%;
  height: 100%;
}

.point-area .point-10:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: #007ac3;
  opacity: 0;
  -webkit-animation: ripple 4500ms ease-out 225ms infinite;
  -moz-animation: ripple 4500ms ease-out 225ms infinite;
  -o-animation: ripple 4500ms ease-out 225ms infinite;
  animation: ripple 4500ms ease-out 225ms infinite;
}

.point-area .point-40:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: #007ac3;
  opacity: 0;
  -webkit-animation: ripple 4500ms ease-out 900ms infinite;
  -moz-animation: ripple 4500ms ease-out 900ms infinite;
  -o-animation: ripple 4500ms ease-out 900ms infinite;
  animation: ripple 4500ms ease-out 900ms infinite;
}

.point-area .point-80:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: #007ac3;
  opacity: 0;
  -webkit-animation: ripple 4500ms ease-out 1800ms infinite;
  -moz-animation: ripple 4500ms ease-out 1800ms infinite;
  -o-animation: ripple 4500ms ease-out 1800ms infinite;
  animation: ripple 4500ms ease-out 1800ms infinite;
}

.point-area .point-shadow:after {
  -webkit-box-shadow: inset 0 0 5em rgba(68, 152, 246, 0.16);
  -moz-box-shadow: inset 0 0 5em rgba(68, 152, 246, 0.16);
  box-shadow: inset 0 0 5em rgba(68, 152, 246, 0.16);
}

.solve1_1 {
  background: #fff url(../Images/solve1_1bg.png) top center / 100% auto no-repeat;
  padding: 80px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.solve1_1icos {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.solve1_1icos a {
  background: url(../Images/solve1_1ico.png) center right / contain no-repeat;
  transition: all .5s;
  -webkit-transition: all .5s;
  /* Safari */
}


.solve1_1icos a:hover img {
  transform: scale(1.2);
  /* transition: all 0.4s; */
  -webkit-animation: icoSpin .4s ease-in-out;
  -moz-animation: icoSpin .4s ease-in-out;
  -ms-animation: icoSpin .4s ease-in-out;
  -o-animation: icoSpin .4s ease-in-out;
  animation: icoSpin .4s ease-in-out;


}
.img:hover {
  transform: scale(1);
}
.solve1_1icos a:last-child {
  background: transparent;
}

.solve1_1icos img {
  display: block;
  margin: 0 auto;
}

.solve1_1icos p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.solve1_1img {
  position: relative;
  margin-top: 60px;
}

.solve1_1img>div {
  position: absolute;
  z-index: 9;
}

.solve1_1img img:nth-child(1) {
  position: relative;
  z-index: 3;
}

.solve1_1img .img {
  position: absolute;
}

.solve1_1img .img img {
  z-index: 1;
}

.solve1_1img .img p {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 52px;
  font-size: 24px;
  color: #fff;
  bottom: 0;
  text-align: center;
  z-index: 9;
}

.solve1_1img>div:nth-of-type(1) {
  left: 10%;
  width: 24.5%;
  top: 5%;
}

.solve1_1img>div:nth-of-type(1) .img {
  width: 63%;
  left: 0;
  top: 0;
}

.solve1_1img>div:nth-of-type(1) .point-area {
  left: 100%;
  top: 85%;
}

.solve1_1img>div:nth-of-type(2) {
  left: 10%;
  top: 43%;
  width: 24.5%;
}

.solve1_1img>div:nth-of-type(2) .img {
  width: 63%;
  left: 0;
  top: 0;
}

.solve1_1img>div:nth-of-type(2) .point-area {
  left: 100%;
  top: 85%;
}

.solve1_1img>div:nth-of-type(3) {
  width: 33.1%;
  right: 10.5%;
  top: 0%;
}

.solve1_1img>div:nth-of-type(3) .img {
  right: 0;
  top: 0;
  width: 46.5%;
}

.solve1_1img>div:nth-of-type(3) .point-area {
  left: 0%;
  top: 97%;
}

.solve1_1img>div:nth-of-type(4) {
  width: 21.7%;
  right: 10.5%;
  top: 33%;
}

.solve1_1img>div:nth-of-type(4) .img {
  right: 0;
  top: 0;
  width: 70.8%;
}

.solve1_1img>div:nth-of-type(4) .point-area {
  left: 0%;
  top: 100%;
}

.solve1_1img>div:nth-of-type(5) {
  width: 34.9%;
  right: 10.5%;
  top: 65%;
}

.solve1_1img>div:nth-of-type(5) .img {
  right: 0;
  top: 3%;
  width: 44.2%;
}

.solve1_1img>div:nth-of-type(5) .point-area {
  left: 0%;
  top: 0%;
}

.solve1_2 {
  background: #eee;
  padding: 100px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.solve1_2 ul li {
  width: 25%;
  text-align: center;
  float: left;
  border-top: 1px solid rgba(27, 27, 27, 0.1);
  padding: 48px 0;
}

.solve1_2 ul li:nth-child(-n + 4) {
  border-top: 0;

}

.solve1_2 ul h4 {
  font-family: AvantGardeCE-Demi;
  font-size: 40px;
  color: #666;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_2 ul li:hover {
  box-shadow: darkgrey 10px 10px 30px 5px;
  background-color: #fff;
}

.solve1_2 ul li:hover h4 {
  color: #007ac3;
}

.solve1_2 ul h6 {
  font-size: 18px;
  line-height: 28px;
  height: 56px;
  color: #666;
  margin-top: 28px;
}

.solve1_3 {
  background: #fff;
  padding: 80px 0;
}

.solve1_3con {
  margin-top: 48px;
  position: relative;
}

.solve1_3con .left {
  position: relative;
  width: calc(50% - 0px);
  margin-right: 40px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  height: 550px;

}

.solve1_3con .left .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_3con .left .img.active {
  opacity: 1;
  visibility: visible;
}

.solve1_3con .right {
  width: calc(50% + 80px);
}

.solve1_3con li {
  margin-bottom: 20px;
}

.solve1_3con li:last-child {
  margin-bottom: 0px;
}

.solve1_3con li a {
  border-radius: 4px;
  border: solid 1px #c1c1c1;
  background: #f0f0f0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_3con li.active a {
  border-radius: 4px;
  border: solid 1px #007ac3;
  background: #007ac3;
}

.solve1_3con li a .l {
  width: 80px;
  text-align: center;
}

.solve1_3con li a .l p {
  width: 60px;
  line-height: 32px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_3con li a .l p:nth-child(2) {
  border-top: 1px solid #c0c0c0;
}

.solve1_3con li.active a .l p {
  color: #fff;
}

.solve1_3con li.active a .l p:nth-child(2) {
  border-top-color: #fff;
}

.solve1_3con li a .r {
  width: calc(100% - 80px);
  min-height: 80px;
  border-left: solid 1px #bdbdbd;
  padding: 20px 18px;
  background: #fff;
}

.solve1_3con li a .r h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  color: #666;
}

.solve1_3con li a .r h6 {
  display: none;
  font-size: 16px;
  line-height: 26px;
  color: #999;
  height: 160px;
  overflow: hidden;
}

.solve1_3con li:nth-child(1) a .r h6 {
  display: block;
}

.solve1_4 {
  background: #eee;
  padding: 100px 0;
  max-width: 1920px;
  margin: 0 auto;
}

.solve1_4 .container {
  margin-top: 50px;
}

.solve1_4 li {
  width: 23%;
  -webkit-transition: all .4s linear;
  -moz-transition: all .4s linear;
  -ms-transition: all .4s linear;
  -o-transition: all .4s linear;
  transition: all .4s linear;
  background-size: auto 100%;
  background-position: left center;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.solve1_4 li>img {
  display: block;
  max-width: 1060px;
  height: 555px;
}


.solve1_4 li:nth-child(2) {
  background-position: center center;
}

.solve1_4 li:nth-child(3) {
  background-position: right center;
}

.solve1_4 li .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6) url(../Images/zz.png) center bottom no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_4 li .img {
  width: 90px;
  margin: 0 auto;
  position: absolute;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  bottom: 55%;
  left: 50%;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_4 li p {
  font-size: 20px;
  letter-spacing: 4px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 50%;
  left: 0;
  text-align: center;
  width: 100%;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_4 li p::before {
  /* content: '';  gmy */
  display: block;
  margin: 0 auto 12px;
  width: 36px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve1_4 li.active {
  width: 54%;
}

.solve1_4 li.active .img {
  left: 86%;
}

.solve1_4 li.active .img img {
  display: none;
}

.solve1_4 li.active .mask {
  background: rgba(0, 0, 0, 0) url(../Images/zz.png) center bottom no-repeat;
  background-size: cover;
}


.solve1_4 li.active p {
  font-size: 24px;
  letter-spacing: 7px;
  color: #fff;
  bottom: 3%;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.solve1_4 li.active p::before {
  width: 0;
}

.solve1_5 {
  background: #fff;
  padding: 80px 0;
}

.solve1_5 ul {
  width: 100%;
  /* margin-top: 80px; */
  max-width: 1920px;
  margin: 80px auto;
}

.solve1_5 ul:nth-of-type(1) li {
  float: left;
}

.solve1_5 ul:nth-of-type(1) li:after {
  content: '';
  background: url(../Images/solve1_5ico_jt.png) center no-repeat;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 23px;
  margin: auto;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}

.solve1_5 ul:nth-of-type(1) li:last-child:after {
  display: none;
}

.solve1_5 ul:nth-of-type(2) {
  position: relative;
  margin-top: 100px;
  color: rgba(137, 137, 139, 0.3);
}

.solve1_5 ul:nth-of-type(2):before {
  content: '';
  background: url(../Images/solve1_5ico_jt.png) center no-repeat;
  position: absolute;
  left: 87.5%;
  top: -52px;
  bottom: 0;
  width: 20px;
  height: 23px;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}

.solve1_5 ul:nth-of-type(2) li {
  float: right;
}

.solve1_5 ul li .text {
  padding: 20px 0;
  max-width: 250px;
  margin: 0 auto;

}

.solve1_5 ul li:hover .text {
  box-shadow: #ddd 10px 10px 30px 5px;
}

.solve1_5 ul:nth-of-type(2) li:after {
  content: '';
  background: url(../Images/solve1_5ico_jt.png) center no-repeat;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 23px;
  margin: auto;
  -webkit-transform: translateX(50%) rotate(180deg);
  -moz-transform: translateX(50%) rotate(180deg);
  -ms-transform: translateX(50%) rotate(180deg);
  -o-transform: translateX(50%) rotate(180deg);
  transform: translateX(50%) rotate(180deg);
}

.solve1_5 ul:nth-of-type(2) li:first-child:after {
  display: none;
}

.solve1_5 ul li {
  text-align: center;
  width: 25%;
  position: relative;
  padding: 10px;

}

.solve1_5 ul li .img {
  width: 64px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.solve1_5 ul li .img img {
  -webkit-animation: icoAni .4s ease-in-out;
  -moz-animation: icoAni .4s ease-in-out;
  -ms-animation: icoAni .4s ease-in-out;
  -o-animation: icoAni .4s ease-in-out;
  animation: icoAni .4s ease-in-out;
}

.solve1_5 ul li .img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}

.solve1_5 ul li:hover .img img {
  -webkit-animation: icoAni .4s ease-in-out;
  -moz-animation: icoAni .4s ease-in-out;
  -ms-animation: icoAni .4s ease-in-out;
  -o-animation: icoAni .4s ease-in-out;
  animation: icoAni .4s ease-in-out;
  opacity: 0;
}

.solve1_5 ul li:hover .img img:nth-child(2) {
  opacity: 1;
}

.solve1_5 ul li h4 {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
}

.solve1_5 ul li:hover h4,
.solve1_5 ul li:hover h5 {
  color: #007ac3;
}

.solve1_5 ul li h5 {
  font-size: 18px;
  color: #666;
}

.solve1_6 {
  background: #eee;
  padding:0 0 100px 0;
  margin: 0 auto;
  max-width: 1920px;
}

.solve1_6con {
  margin-top: 50px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.solve1_6con .flex {
  position: relative;
}

.solve1_6con .l {
  width: 50%;
  padding-right: 60px;
}

.solve1_6con .r {
  width: 50%;
  padding-right: 140px;
}

.solve1_6con .r .text h4 {
  font-size: 36px;
  color: #333;
}

.solve1_6con .r .text h5 {
  font-size: 20px;
  color: #666;
  margin-top: 10px;
}

.solve1_6con .r .text h6 {
  font-size: 16px;
  line-height: 28px;
  color: #999;
  margin-top: 32px;
}

.solve1_6con .r .text .common_btn {
  top: 0;
  margin-top: 40px;
}

.solve1_6con .r .solve1_6P {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70px;
  padding: 30px 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}

.solve1_6con .r .solve1_6P span {
  width: 48px;
  height: 48px;
  margin: 8px 0;
  border-radius: 50%;
  opacity: 1;
  font-family: Arial;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  color: #666;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background: transparent;
  outline: none;
}

.solve1_6con .r .solve1_6P span.swiper-pagination-bullet-active {
  background: #3c85bb;
  color: #fff;
}

.solve2_1 {
  margin: 20px auto 80px auto;
}

.solve2_1 .common_tit h5 {
  font-size: 30px;
  color: #666;
}

.solve2_1 .common_tit h5 span {
  color: #007ac3;
}

.solve2_1con {
  margin-top: 20px;
}

.solve2_1 li {
  height: 100px;
  border-top: 1px solid rgba(27, 27, 27, 0.11);
}

.solve2_1 li:first-child {
  height: 160px;
  border-top: 0;
}

.solve2_1 li:first-child .img {
  height: 160px;
  width: 100%;
}

.solve2_1 li:nth-child(2) {
  border-top: 0;
}

.solve2_1 li img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve2_1 li:nth-child(n + 2):hover img {
  transform: rotateY(180deg);
  -WEBKIT-transform: rotateY(180deg);
}

.solve2_1 .m {
  width: 180px;
  background: #007ac3;
}

.solve2_1 .l {
  width: calc(50% - 80px);
  text-align: right;
}

.solve2_1 .l li {
  padding-right: 60px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve2_1 .l li:nth-child(1):hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.solve2_1 .l h4 {
  font-size: 24px;
  line-height: 36px;
  color: #007ac3;
}

.solve2_1 .l h6 {
  font-size: 14px;
  line-height: 26px;
  color: #333;
}

.solve2_1 .r {
  text-align: left;
}

.solve2_1 .r li {
  padding-right: 0px;
  padding-left: 60px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve2_1 .r li:nth-child(1):hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.solve2_1 .r h4 {
  color: #333;
}

.solve2_1 .r h6 {
  letter-spacing: -1px;
  color: #333;
  opacity: 0.7;
}

.solve2_1 .common_btn {
  margin: 40px auto 0;
}

.solve2_2 .common_tit {
  text-align: left;
}

.solve2_2 .common_tit h3,
.solve2_2 .common_tit h5 {
  color: #fff;
}

.solve2_2 .common_tit h5 {
  font-size: 16px;
  margin-top: 42px;
}

.solve2_2 .l {
  width: 40%;
  padding-top: 12%;
}

.solve2_2 .r {
  width: 50%;
  position: relative;
}

.solve2_2 .r .swiper-slide .point-area {
  display: none;
}

.solve2_2 .sBtn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -60px;
  width: 54px;
  height: 54px;
  z-index: 9;
  opacity: .3;
  outline: none;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve2_2 .r .point-area .point-dot,
.solve2_2 .r .point-area .point-10:after,
.solve2_2 .r .point-area .point-40:after,
.solve2_2 .r .point-area .point-80:after {
  background: #32f9f9;
}

.solve2_2 .r .point-area .point-name {
  height: 42px;
  line-height: 42px;
  background-color: #45b9dd;
  border-radius: 21px;
  padding: 0 30px;
  color: #fff;
  font-size: 18px;
  top: 2px;
  left: 60px;
}

.solve2_2 .r .point-area .point-name::before {
  content: '';
  width: 35px;
  height: 1px;
  background: #45b9dd;
  position: absolute;
  left: -35px;
  top: 19px;
}

.solve2_2 .r .point-area:nth-of-type(1) .point-name,
.solve2_2 .r .point-area:nth-of-type(2) .point-name,
.solve2_2 .r .point-area:nth-of-type(3) .point-name {
  left: -360%;
}

.solve2_2 .r .point-area:nth-of-type(1) .point-name::before,
.solve2_2 .r .point-area:nth-of-type(2) .point-name::before,
.solve2_2 .r .point-area:nth-of-type(3) .point-name::before {
  left: 98%;
}

.solve2_2 .sBtn:hover {
  opacity: 1;
}

.solve2_2 .sBtn.next {
  left: auto;
  right: -60px;
}

.solve2_2 .sBtn.next img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.solve2_3 {
  position: relative;
}

.solve2_3 .common_tit {
  position: absolute;
  left: 0;
  right: 0;
  text-align: left;
  top: 120px;
}

.solve2_3 .point-area .line {
  right: 22px;
  bottom: 22px;
  position: absolute;
}

.solve2_3 .point-area .line img {
  display: block;
}

.solve2_3 .point-area .line span {
  height: 42px;
  line-height: 42px;
  color: #fff;
  font-size: 20px;
  background-color: #45b9dd;
  border-radius: 21px;
  padding: 0 10px;
  position: absolute;
  word-break: keep-all;
  white-space: nowrap;
}

.solve2_3 .point-area:nth-of-type(1) .line {
  width: 172px;
}

.solve2_3 .point-area:nth-of-type(1) .line span {
  right: 100%;
  top: -21px;
}

.solve2_3 .point-area:nth-of-type(2) .line {
  width: 67px;
}

.solve2_3 .point-area:nth-of-type(2) .line span {
  right: 100%;
  top: -21px;
}

.solve2_3 .point-area:nth-of-type(3) .line {
  width: 248px;
  bottom: auto;
  top: 22px;
}

.solve2_3 .point-area:nth-of-type(3) .line span {
  right: 100%;
  bottom: -21px;
}

.solve2_3 .point-area:nth-of-type(4) .line {
  width: 285px;
}

.solve2_3 .point-area:nth-of-type(4) .line span {
  right: 100%;
  top: -21px;
}

.solve2_3 .point-area:nth-of-type(5) .line {
  width: 156px;
  right: auto;
  left: 22px;
}

.solve2_3 .point-area:nth-of-type(5) .line span {
  left: 100%;
  top: -21px;
}

.solve2_3 .point-area:nth-of-type(6) .line {
  width: 89px;
  right: auto;
  left: 22px;
}

.solve2_3 .point-area:nth-of-type(6) .line span {
  left: 100%;
  top: -21px;
}

.solve2_4 {
  padding: 0;
  margin: 80px 0;
}

.solve2_4 {
  padding: 0;
  margin: 80px 0;
}

.solve2_4 .left {
  height: 550px;
}

.solve2_4 li a .r h6 {
  height: 50px;
}


.solve2_5 {
  background: #fff;
  padding: 0;
  margin: 80px 0;
}

.solve2_5 .common_tit {
  text-align: left;
}

.solve3_1 {
  padding: 80px 0;
  background: #f2f2f2;
}

.solve3_1 .l {
  width: 25%;
  position: relative;
  z-index: 9;
}

.solve3_1 .l a {
  width: 100%;
  height: 148px;
  font-size: 24px;
  color: #333;
  background: #fff;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve3_1 .l a.active {
  width: 105%;
  padding-right: 5%;
  text-align: center;
  background: #007ac3;
  color: #fff;
}

.solve3_1 .r {
  width: 75%;
}

.solve3_1 .r .swiper-container {
  display: none;
  height: 740px;
}

.solve3_1 .r .swiper-container .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.solve3_1 .r .swiper-container .mask .inner {
  width: 100%;
  padding: 60px;
}

.solve3_1 .r .swiper-container .mask .text {
  width: 50%;
}

.solve3_1 .r .swiper-container .mask h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 1px;
  color: #fff;
}

.solve3_1 .r .swiper-container .mask h6 {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-top: 20px;
}

.solve3_1 .r .swiper-container .mask .inner .common_btn {
  border-color: #fff;
  color: #fff;
}

.solve3_1 .r .swiper-container .mask .inner .common_btn:hover {
  border-color: #006fb8;
}

.solve3_1 .r .swiper-container .sBtn {
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: absolute;
  border-radius: 50%;
  left: 56px;
  top: 0;
  bottom: 0;
  width: 66px;
  height: 66px;
  margin: auto;
  z-index: 16;
  outline: none;
  background: url(../Images/jt_l.png) center no-repeat;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-size: cover;
}

.solve3_1 .r .swiper-container .sBtn.sNext {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 56px;
  left: auto;

  background: url(../Images/jt_l.png) center no-repeat;
  background-size: cover;
}

.solve3_1 .r .swiper-container .sBtn img {
  display: none;
}

.solve3_1 .r .swiper-container .sBtn img:nth-child(1) {
  opacity: 0;
}

.solve3_1 .r .swiper-container .sBtn:hover {
  border: 2px solid #007ac3;
  background: #007ac3 url(../Images/jt_l.png) center no-repeat;
  background-size: cover;

}


.solve3_1 .r .swiper-slide .img {
  width: 100%;
  height: 100%;
}

.solve3_2 {
  margin: 80px auto;
}

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

.solve3_2 .common_tit span {
  margin-right: 40px;
  color: #006fb8;
}

.solve3_2 .common_tit h3 {
  margin-bottom: 20px;
}

.solve3_2S {
  margin-top: 80px;
}

.solve3_2S .img {
  max-width: 210px;
  width: 90%;
  margin: 0 auto;
}

.solve3_2S p {
  font-size: 16px;
  line-height: 60px;
  color: #333;
  text-align: center;
}

.solve3_2S .sP {
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.solve3_2S .sP span {
  height: 2px;
  background: #007ac3;
}

.solve3_3 {
  padding: 80px 0;
  background: #f2f2f2;
}

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

.solve3_3 .common_tit span {
  margin-right: 40px;
  color: #006fb8;
}

.solve3_3 .common_tit h3 {
  margin-bottom: 20px;
}

.solve3_3 .wenzi {
  width: 90%;
  max-width: 980px;
  margin: 30px auto 0;
}

.solve3_3 .wenzi .slt {
  width: 640px;
  float: left;
  text-align: justify;
}

.solve3_3 .wenzi .slt .stt {
  font-size: 28px;
  line-height: 1.5;
}

.solve3_3 .wenzi .slt .stt span {
  color: #006fb8;
}

.solve3_3 .wenzi .slt .stc {
  font-size: 18px;
  line-height: 1.5;
  color: #1a181b;
  margin-top: 10px;
}

.solve3_3 .wenzi .srt {
  width: calc(100% - 680px);
  float: right;
  padding-top: 30px;
}

.solve3_3 .wenzi .srt .srd {
  width: 33.33%;
  float: left;
  text-align: center;
  min-height: 75px;
  border-right: 1px solid #ddd;
  color: #666;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve3_3 .wenzi .srt .srd * {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve3_3 .wenzi .srt .srd .img {
  position: relative;
  display: block;
  margin: 0 auto 10px;
  width: 40px;
}

.solve3_3 .wenzi .srt .srd img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}

.solve3_3 .wenzi .srt .srd:last-child {
  border: 0;
}

.solve3_3 .wenzi .srt .srd:hover img:nth-child(1) {
  opacity: 0;
}

.solve3_3 .wenzi .srt .srd:hover img:nth-child(2) {
  opacity: 1;
}

.solve3_3 .wenzi .srt .srd:hover {
  color: #006fb8;
}






.solve3_3con {
  display: none;
}

.solve3_3con .top {
  max-width: 838px;
  margin: 0 auto;
  display: none;
}

.solve3_3 .btm {
  background: url(../Images/sb_bg.png) center no-repeat;
  margin-top: 30px;
}

.solve3_3 .btm img {
  display: block;
  margin: 0 auto;
  max-width: 980px;
  width: 90%;
}

.solve3_3con .bot {
  display: none;
  margin-top: -92px;
}

.solve3_3con .boti {
  width: 32%;
}

.solve3_3con .boti .img p {
  font-size: 24px;
  color: #333;
  margin-bottom: 24px;
}

.solve3_3con .boti .line {
  border-bottom: 1px solid #007ac3;
  border-right: 1px solid #007ac3;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  -o-flex: 1;
  flex: 1;
  height: 114px;
  position: relative;
  margin-bottom: 43px;
}

.solve3_3con .boti .line .point-area {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.solve3_3con .boti:nth-child(2) .img {
  text-align: right;
}

.solve3_3con .boti:nth-child(2) .line {
  border-right: 0;
  border-left: 1px solid #007ac3;
  order: -1;
}

.solve3_3con .boti:nth-child(2) .line .point-area {
  left: 0;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.solve3_4 {
  margin: 80px auto;

}

.solve3_4S .swiper-slide {
  height: 190px;
  border-right: 1px solid rgba(27, 27, 27, 0.2);
  border-bottom: 1px solid rgba(27, 27, 27, 0.2);
}

.solve3_4S .swiper-slide:nth-child(2n + 1) {}

.solve3_4S .swiper-slide:nth-last-child(-n + 2) {}

.solve3_4 .common_tit {
  text-align: left;
}

.solve3_4S {

  margin-top: 80px;
  border-top: 1px solid rgba(27, 27, 27, 0.2);
  border-lef: 1px solid rgba(27, 27, 27, 0.2);
}

.solve3_4S .sBtns {
  width: 200px;
  margin: 80px auto 0;
}

.solve3_4S .sBtn {
  width: 66px;
  height: 66px;
  outline: none;
}

.solve3_4S .sBtn.sNext {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.solve3_5 {
  margin: 80px auto;
}

.solve3_5 .common_tit {
  text-align: left;
}

.solve4_1 .common_tit {
  text-align: left;
}

.solve4_1 .con {
  margin-top: 80px;
}

.solve4_2 {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
  margin: 0 auto;
  max-width: 1920px;
}

.solve4_2 .common_tit {
  text-align: left;
}

.solve4_2 .img {
  max-width: 774px;
  margin: 0 auto;
}

.solve4_2 .container {
  position: relative;
}

.solve4_2 .dot {
  position: absolute;
}

.solve4_2 .dot .img h5 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #333;
  margin-top: 12px;
}

.solve4_2 .dot .img p {
  font-size: 16px;
  color: #333;
  opacity: 0.7;
}

.solve4_2 .dot .line {
  flex: 1;
  position: relative;
  top: 1px;
}

.solve4_2 .dot .line span {
  flex: 1;
  background: #3279be;
  height: 1px;
}

.solve4_2 .dot:nth-child(1) {
  left: 0;
  top: 14%;
  width: calc(64% - 269px);
}

.solve4_2 .dot:nth-child(1) .line .point-area {
  right: 0;
  top: auto;
  left: auto;
  bottom: 0;
  -webkit-transform: translate(50%, 50%);
  -moz-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  -o-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.solve4_2 .dot:nth-child(2) {
  right: 0;
  top: 8%;
  width: calc(52% - 269px);
}

.solve4_2 .dot:nth-child(2) .line {
  order: -1;
}

.solve4_2 .dot:nth-child(2) .line .point-area {
  top: auto;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.solve4_2 .dot:nth-child(2) .line span {
  order: 2;
}

.solve4_2 .dot:nth-child(3) {
  left: 0;
  bottom: 4%;
  width: calc(52% - 269px);
}

.solve4_2 .dot:nth-child(3) .line .point-area {
  right: 0;
  left: auto;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.solve4_2 .dot:nth-child(3) .img p {
  margin-bottom: 12px;
}

.solve4_3 {
  padding: 80px 0;
  max-width: 1920px;
  margin: 0 auto;
}

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

.solve4_3 .common_tit span {
  color: #006fb8;
}

.solve4_3 .snb {
  background: url(../Images/sb_5.png) center no-repeat;
  background-size: cover;
  padding: 40px 0;
  min-height: 880px;
}

.solve4_3 .common_tit h3 {
  margin-bottom: 20px;
}

.solve4_3 .common_tit h5 {
  color: #000;
}

.solve4_3 .abtn {
  margin: 30px auto;
  text-align: center;
}

.solve4_3 .abtn .ab_a {
  display: inline-block;
  width: 230px;
  line-height: 1.5;
  background: #333;
  color: #fff;
  padding: 5px 0;
  font-size: 20px;
  margin: 0 10px;
  cursor: pointer;
}

.solve4_3 .abtn .ab_a.act,
.solve4_3 .abtn .ab_a:hover {
  background: #007ac3;
}

.solve4_3 .abtn .ab_a span {
  display: block;
  font-size: 18px;
}

.solve4_3 .img0 {
  text-align: center;
  width: 100%;
}

.solve4_3 .img0 img {
  margin: 30px auto 0;
  max-width: 1270px;
  display: block;
  width: 100%;
}

.solve4_3 .img0 img:nth-child(2) {
  display: none;
}




.solve4_3 .con {
  margin-top: 80px;
}

.solve4_3 .con a {
  width: 49%;
  position: relative;
  display: block;
}

.solve4_3 .con a .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../Images/solve4_3_color.png) center bottom repeat-x;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve4_3 .con a:hover .mask {
  opacity: 0;
}

.solve4_3 .con a p {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  font-size: 24px;
  color: #222;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  text-align: center;
}

.solve4_3 .con a:hover p {
  color: #007ac3;
}

.solve4_4 {
  position: relative;
  padding: 80px 0;
  margin: 0 auto;
  max-width: 1920px;
}

.solve4_4 .common_tit {
  text-align: left;
}

.solve4_4 .common_tit * {
  color: #fff;
}

.solve4_4 .bgs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.solve4_4 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.solve4_4 .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.solve4_4 .container {
  position: relative;
  z-index: 9;
}

.solve4_4 .l {
  width: 45%;
}

.solve4_4 .l ::-webkit-scrollbar {
  width: 2px;
}

.solve4_4 .l ::-webkit-scrollbar-thumb {
  background-color: #fff;
}

.solve4_4 .l ::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.solve4_4 .l h5 {
  height: 120px;
  overflow: auto;
  padding-right: 10px;
  margin-top: 80px;
}

.solve4_4 .l .common_btn {
  margin-top: 200px;

  border-color: #fff;
  color: #fff;
}

.solve4_4 .l .common_btn:hover {
  border-color: #006fb8;
}

.solve4_4 .r a {
  position: relative;
}

.solve4_4 .r a:nth-child(1) {
  margin-right: 10px;
}

.solve4_4 .r a .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve4_4 .r a.active .mask {
  opacity: 0;
}

.solve4_5 {
  display: none;
  background: #fff;
  padding: 80px 0 0;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
 
}

.solve4_5 .common_tit {
  text-align: left;
}

.solve4_5 .con {
  margin-top: 80px;
  min-height: 300px;
}

.solve4_5 .l {
  width: 50%;
}

.solve4_5 .r {
  width: 50%;
  padding-left: 56px;
}

.solve4_5 h4 {
  font-size: 50px;
  line-height: 60px;
  color: #333;
}

.solve4_5>h5 {
  font-size: 24px;
  color: #333;
  opacity: .7;
  margin-top: 10px;
  width: 50%;
  padding-left: 56px;
}

.solve4_5 .common_tit h5 {
  width: 50%;
  padding-left: 56px;
  opacity: 1;
  color: #333;
  font-size: 24px;
  line-height: 1.5;
}

.solve4_5 .r h5 {
  font-size: 24px;
  color: #333;
  opacity: .7;
  margin-top: 10px;
}


.solve4_5 h6 {
  margin-top: 48px;
  font-size: 24px;
  line-height: 36px;
  color: #333;
}

.solve4_5 .common_btn {
  margin-top: 60px;
}

.solve4_5n {
  padding: 140px 0 100px;
  background: url(../Images/zz_1.png) center bottom no-repeat;
  background-size: cover;
  min-height: 700px;
  margin: 0px auto;
  max-width: 1920px;
}

.solve4_5n .slt {
  width: 70%;
  float: left;
  max-width: 800px;
}

.solve4_5n .slt .tt {
  font-size: 42px;
  /* 50 gmy */
  font-weight: bold;
  position: relative;
  padding-left: 195px;
}

.solve4_5n .slt .tt img {
  display: block;
  width: 190px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.solve4_5n .slt .tt2 {
  font-size: 56px;
  /* 50 gmy */
}

.solve4_5n .slt .tc {
  color: #333;
  line-height: 1.5;
  font-size: 20px;
  opacity: 0.8;
}

.solve4_5n .slt .sbt {
  margin-top: 85px;
  text-align: right;
}

.solve4_5n .slt .sbt .tt3 {
  position: relative;
  font-size: 38px;
  padding-right: 280px;
}

.solve4_5n .slt .sbt .tt3 img {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}

.solve4_5n .slt .tc2 {
  color: #333;
  line-height: 1.8;
  font-size: 20px;
  opacity: 0.8;
  margin: 20px 0;
}

.solve4_5n .slt a {
  display: inline-block;
  width: 200px;
  line-height: 56px;
  background: #007ac3;
  color: #fff;
  text-align: center;
  font-size: 16px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve4_5n .slt a:hover {
  background: #F6AC00;
}

.solve4_5n .slt .tc2 span {
  color: #006fb8;
}




.solve4_6 {
  background: #fff;
  margin: 0px auto;
  max-width: 1920px;
}

.solve5_1 {
  background: #f7f7f7;
  padding: 80px 0;
}

.solve5_1 .con {
  margin-top: 50px;
}

.solve5_1 .outer {
  background: #fff;
  border-radius: 4px;
  border: solid 1px #e5e5e5;
  padding: 8px;
}

.solve5_1 .inner {
  background: #fff;
  border: solid 1px #e5e5e5;
}

.solve5_1 .top {
  background: #eee;
  border-bottom: solid 1px #e5e5e5;
  font-size: 18px;
  line-height: 30px;
  color: #333;
  padding: 12px 14%;
  text-align: center;
}

.solve5_1 .bot {
  padding: 24px 10%;
}

.solve5_1 .bot h3 {
  font-size: 16px;
  line-height: 28px;
  color: #007ac3;
  text-align: center;
}

.solve5_1 .bot h3 span {
  font-family: Arial;
  font-size: 32px;
  font-weight: bold;
  color: #007ac3;
}

.solve5_1 .bot h3 i {
  display: inline-block;
  font-style: normal;
  height: 24px;
  line-height: 24px;
  background: #007ac3;
  border-radius: 2px;
  font-size: 14px;
  color: #fff;
  padding: 0 14px;
}

.solve5_1 .bot li {
  font-size: 16px;
  line-height: 32px;
  color: #666;
}

.solve5_1 .bot .btns {
  margin-top: 24px;
}

.solve5_1 .bot .btns a {
  width: 45%;
  height: 32px;
  line-height: 30px;
  text-align: center;
  background: #007ac3;
  border-radius: 2px;
  border: solid 1px #007ac3;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;


}

.solve5_1 .bot .btns a:nth-child(2) {
  border: solid 1px #b5b5b5;
  color: #666;
  background: transparent;
}

.solve5_1 .bot .btns a:nth-child(2):hover {
  background: #007ac3;
  border: solid 1px #007ac3;
  color: #fff;
}

.solve5_1 .sP {
  margin-top: 30px;
}

.solve5_1 .sP span {
  width: 100px;
  height: 4px;
  background: #fff;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  margin: 0 15px;
  opacity: 1;
  border-radius: 0;
}

.solve5_1 .sP span.swiper-pagination-bullet-active {
  background: #007ac3;
}

.solve5_2 .l {
  width: 50%;
  padding-left: calc(50vw - 800px);
  padding-right: 72px;
}

.solve5_2 .l .common_tit {
  text-align: left;
}

.solve5_2 .l h4 {
  margin: 20px 0;
}

.solve5_2 .l h5 {
  font-size: 16px;
}

.solve5_2 .l h4 span {
  font-size: 28px;
  color: #007ac3;
  padding: 0 30px;
  height: 60px;
  border-radius: 30px;
  border: solid 1px #007ac3;
}

.solve5_2 .l ul {
  width: 100%;
  margin-top: 40px;
}

.solve5_2 .l ul li {
  background: url(../Images/solve1_1ico.png) center right / contain no-repeat;
}

.solve5_2 .l ul li:hover img {
  -webkit-animation: icoAni .4s ease-in-out;
  -moz-animation: icoAni .4s ease-in-out;
  -ms-animation: icoAni .4s ease-in-out;
  -o-animation: icoAni .4s ease-in-out;
  animation: icoAni .4s ease-in-out;
}

.solve5_2 .l ul li:last-child {
  background: transparent;
}

.solve5_2 .l ul li img {
  display: block;
  margin: 0 auto;
}

.solve5_2 .l ul li p {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-top: 10px;
}

.solve5_2 .r {
  width: 50%;
}

.solve5_3 {
  background: #f7f7f7;
  padding: 80px 0;
}

.solve5_3 .con {
  margin-top: 50px;
}

.solve5_3 .con li {
  padding: 60px 0;
  width: 25%;
  float: left;
  background: #fff;
  border: solid 1px #e5e5e5;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
}

.solve5_3 .con li:nth-child(-n + 4) {
  border-top: 1px solid #e5e5e5;
}

.solve5_3 .con li:nth-child(4n) {
  border-right: 1px solid #e5e5e5;
}

.solve5_3 .con li .img {
  width: 60px;
  margin: 0 auto;
}

.solve5_3 .con li:hover .img {
  -webkit-animation: icoAni .4s ease-in-out;
  -moz-animation: icoAni .4s ease-in-out;
  -ms-animation: icoAni .4s ease-in-out;
  -o-animation: icoAni .4s ease-in-out;
  animation: icoAni .4s ease-in-out;
}

.solve5_3 .con li p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
  text-align: center;
}

.solve5_3 .con li p::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #aaa;
  margin: 0 auto 12px;
}

.solve5_4 {
  padding: 80px 0;
}

.solve5_4 .con {
  margin-top: 50px;
}

.solve5_4 .con li {
  width: calc(25% - 19.5px);
  margin-right: 26px;
  float: left;
}

.solve5_4 .con li:nth-child(4n) {
  margin-right: 0;
}

.solve5_4 .con li:nth-child(4n + 1) {
  clear: both;
}

.solve5_4 .con li p {
  text-align: center;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #dcdcdc;
}

.solve5_4 .con li p span {
  text-decoration: underline;
  font-size: 20px;
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.solve5_4 .con li:hover p span {
  color: #006fb8;
}

.solve5_4 .con .common_btn {
  margin: 40px auto 0;
}

.solve5_4 .con .detail_btn {
  margin-top: 0;
}

/* solve */

/* product */
.product {
  padding: 25px 0;
}

.product .top .r2 {
  display: none;
}



.product .top .l .ico {
  width: 30px;
}

.product .top .l {
  width: calc(100% - 300px);
}

.product .top .l ul {
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 1;
}

.product .top .l ul li {
  border-left: 1px solid #bfbfbf;
  padding: 0 20px;
  line-height: 16px;
  margin: 7px 0;
}

.product .top .l ul li:first-child {
  border-left: 0;
}

.product .top .l ul li a {
  font-size: 18px;
  line-height: 20px;
  color: #ff6235;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.product .top .l ul li a:hover,
.product .top .l ul li.active a {
  color: #006fb8;
}

.product .top .search {
  position: relative;
  width: auto;
  height: auto;
}

.product .top .r input {
  width: 256px;
  height: 52px;
  border-radius: 26px;
  border: solid 1px #cfcfcf;
  font-size: 14px;
  color: #333;
  padding-left: 72px;
  background: transparent;
}

.product .top .r img {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.product .top .r input::placeholder {
  color: #999;
}

.product .list {
  margin-top: 25px;
}

.product .list li {
  float: left;
  width: calc(25% - 19.5px);
  margin-right: 26px;
  margin-top: 26px;
}

.product .list li:nth-child(4n) {
  margin-right: 0;
}

.product .list li:nth-child(4n + 1) {
  clear: both;
}

.product .list li a {
  display: block;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 5px rgba(117, 117, 117, 0.05);
}

.product .list li:nth-child(-n + 4) {
  margin-top: 0;
}

.product .list li .img {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.product .list li .img img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  width: 100%;
  height: 270px;
}

.product .list li a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.product .list li .text {
  text-align: center;
  margin-top: 40px;
}

.product .list li .text h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.product .list li a:hover .text h4 {
  color: #007ac3;
}

.product .list li .text h5 {
  font-size: 14px;
  line-height: 32px;
  color: #666;
  min-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product .list li .text h6 {
  margin-top: 10px;
}

.product .list li .text h6 span {
  font-size: 16px;
  line-height: 32px;
  color: #333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.product .list li a:hover .text h6 span {
  color: #007ac3;
  text-decoration: underline;
}

/* product */

/* pro_detail */
.pro_detail {}

.pro_detail .con1 {
  padding: 170px 0 50px;
  background: #fff;
}

.pro_detail .con1 .l {
  width: 50%;
  border: solid 1px #e4e4e4;
  padding: 30px 0 50px;
}

.pro_detail .con1 .l .swiper-container {
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}

.pro_detail .con1 .l .swiper-slide img {
  display: block;
}

.pro_detail .con1 .l li {
  width: 100px;
  margin-left: 20px;
  border: solid 1px #e4e4e4;
  padding: 10px;
  cursor: pointer;
}

.pro_detail .con1 .l li:first-child {
  margin-left: 0px;
}

.pro_detail .con1 .r {
  width: 50%;
  padding-left: 80px;
}

.pro_detail .con1 .r h1 {
  font-size: 30px;
  color: #333;
}

.pro_detail .con1 .r p {
  font-size: 18px;
  line-height: 32px;
  color: #666;
  margin-top: 30px;
}

.pro_detail .con1 .r .table {
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 20px 0;
  margin-top: 50px;
}

.pro_detail .con1 .r table {
  font-size: 16px;
  line-height: 32px;
  color: #333;
}

.pro_detail .con1 .r td:nth-child(1) {
  width: 100px;
  color: #666;
  height: 60px;
}

.pro_detail .con1 .r .abtn {
  margin-top: 60px;
}

.pro_detail .con1 .r .abtn a {
  display: block;
  float: left;
  width: 45%;
  line-height: 55px;
  text-align: center;
  background: #3c85bb;
  color: #fff;
  font-size: 16px;
}

.pro_detail .con1 .r .abtn a:nth-child(2) {
  float: right;
  padding-left: 20px;
  background: #ff0036 url(../Images/sb_8.png) 30% center no-repeat;
  background-size: 35px;
}

.pro_detail .con1 .r .common_btn {
  float: left;
  margin-right: 20px;
}

.pro_detail .con2 {
  padding: 70px 0 40px;
}

.pro_detail .con2 ul {
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 24px 0;
}

.pro_detail .con2 ul li {
  border-left: 1px solid #bfbfbf;
  padding: 0 48px;
}

.pro_detail .con2 ul li:first-child {
  border-left: 0;
}

.pro_detail .con2 ul li a {
  font-size: 16px;
  line-height: 20px;
  color: #666;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.pro_detail .con2 ul li.active a {
  color: #3c85bb;
}

.pro_detail .con3 {
  text-align: center;
  line-height: 1.8;
  color: #663;
}

.pro_detail .con3 img {
  max-width: 100%;
}



.pro_detail .con3i {
  display: none;
}

.pro_detail .con3_2 .inner {
  padding: 40px 90px 60px;
  box-shadow: 0px 4px 5px rgba(149, 149, 149, 0.1);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.pro_detail .con3_2 .inner ol,
.pro_detail .con3_2 .inner ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 36px;
  color: #999;
}

.pro_detail .con3_3 td {
  height: 50px;
}

.pro_detail .con3_3 .table {
  padding: 40px 90px 60px;
  box-shadow: 0px 4px 5px rgba(149, 149, 149, 0.1);
  background: #fff;
}

.pro_detail .con3_3 table {
  width: 100%;
  text-align: center;
}

.pro_detail .con3_3 thead td {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: #3c85bb;
}

.pro_detail .con3_3 tbody tr {
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.pro_detail .con3_3 tbody tr:hover {
  background: #f0f0f0;
}

.pro_detail .con3_3 tbody td {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

.pro_detail .con3_4 td {
  height: 50px;
}

.pro_detail .con3_4 .table {
  padding: 40px 90px 60px;
  box-shadow: 0px 4px 5px rgba(149, 149, 149, 0.1);
  background: #fff;
}

.pro_detail .con3_4 .table h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  color: #3c85bb;
  padding: 0 24px;
}

.pro_detail .con3_4 table {
  width: 100%;
  margin-top: 32px;
}

.pro_detail .con3_4 thead {
  border-bottom: 1px solid #e2e2e2;
}

.pro_detail .con3_4 tbody tr {
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.pro_detail .con3_4 tbody tr:hover {
  background: #f0f0f0;
}

.pro_detail .con3_4 td {
  font-size: 16px;
  line-height: 24px;
  color: #666;
  padding: 0 24px;
}

.pro_detail .con4 .common_btn {
  margin: 60px auto;
}

/* pro_detail */

/* case */
.case .list li a {
  padding: 0;
  box-shadow: 0px 0px 5px rgba(117, 117, 117, 0.1);
}

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

.case .list li .text {
  text-align: left;
  margin-top: 0px;
  padding: 32px;
}

.case .list li .text h5 {
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  margin-top: 10px;
}

.case .list li .text h6 {
  margin-top: 20px;
}

.case .list li .text h6 span {
  font-size: 14px;
  color: #000;
}

.case .list li a:hover .text h6 span {
  color: #007ac3;
  text-decoration: underline;
}

/* case */

/* case_detail */
.case_detail .con1 {
  padding-bottom: 0;
}

.case_detail .con1 .container {
  background: #f5f5f5;
  padding: 100px 90px;
}

.case_detail .con1 .l {
  border: 0;
  padding: 0;
}

.case_detail .con1 .l .swiper-container {
  width: 100%;
  max-width: inherit;
}

.case_detail .con1 .l .swiper-slide {
  padding: 40px;
  background: #fff;
}

.case_detail .con1 .l ul {
  padding: 26px 0px;
}

.case_detail .con1 .l li {
  width: calc(25% - 19.5px);
  margin-left: 26px;
  padding: 0;
  border: 0;
}

.case_detail .con1 .r h1 {
  font-size: 36px;
}

.case_detail .con1 .r h1::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background-color: #111;
  margin: 20px 0;
}

.case_detail .con1 .r p {
  font-size: 14px;
  line-height: 28px;
  color: #333;
}

.case_detail .con1 .r .table {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin-top: 80px;
}

.case_detail .con1 .r table {
  width: auto;
  font-size: 14px;
  color: #555;
}

.case_detail .con1 .r td:nth-child(1) {
  width: auto;
  height: auto;
}

.case_detail .con5 {
  padding: 100px 75px;
  background: #ededed;
}

.case_detail .con6 {
  margin: 60px auto;
}

.case_detail .con6 span {
  margin: 0 50px;
  font-size: 18px;
  color: #999;
}

.case_detail .con6 .prev,
.case_detail .con6 .next {
  font-size: 16px;
  color: #999;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.case_detail .con6 .prev .img_h {
  margin-right: 15px;
}

.case_detail .con6 .next .img_h {
  margin-left: 15px;
}

.case_detail .con6 .prev:hover,
.case_detail .con6 .next:hover {
  color: #007ac3;
}

.case_detail .con6 .next img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* case_detail */

/* about */
.about {
  margin: 80px auto;
}

.about .con {
  background: #f5f5f5;
}

.about_tit {
  font-size: 42px;
  font-weight: bold;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

.about .ind3_div1 h4 {
  margin-bottom: 20px;
}

.about .ind3_div1 h4 span {
  font-size: 14px;
  line-height: 34px;
  color: #fff;
  height: 34px;
  background-color: #007ac3;
  padding: 0 25px;
}

.about .ind3_div2 {
  margin-bottom: 0;
}

/* about */

/* culture */
.culture {
  margin: 80px auto;
}

.culture li {
  float: left;
  width: calc(33.33% - 32px);
  margin-right: 48px;
  margin-top: 48px;
}

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

.culture li:nth-child(-n + 3) {
  margin-top: 0;
}

.culture li:nth-child(3n + 1) {
  clear: both;
}

.culture li a {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}

.culture li a .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.culture li a:hover .mask {
  background: rgba(24, 127, 196, 0.6);
}

.culture li a .mask .ico {
  width: 62px;
}

.culture li a .mask h4 {
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
  color: #fff;
  margin-top: 40px;
}

.culture li a .mask h5 {
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  opacity: 0.6;
}

.culture li a .mask h6 {
  font-size: 14px;
  margin-top: 10px;
  line-height: 24px;
  color: #fff;
  opacity: 0.6;
}

/* culture */

/* development */
.development {
  margin: 72px auto;
}

.devS {
  background: url(../Images/dev_bg.png) right center / 41% auto no-repeat;
  position: relative;
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.devS .sBtn {
  position: absolute;
  width: 60px;
  height: 60px;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 99;
  outline: none;
  border-radius: 50%;
}

.devS .sBtn {
  background: #ebebeb;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.devS .sBtn:hover {
  background: #007ac3;
}

.devS .prev {
  left: -140px;
}

.devS .next img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.devS .next {
  right: -140px;
}

.devS .swiper-slide {}

.devS .swiper-slide .img {
  width: 50%;
  padding-right: 40px;
}

.devS .swiper-slide .text {
  width: 50%;
  padding-left: 20px;
}

.devS .swiper-slide .text h4 {
  font-family: Arial;
  font-size: 136px;
  line-height: 0.8;
  font-weight: bold;
  letter-spacing: 5.4px;
  color: #007ac3;
}

.devS .swiper-slide .text ul {
  margin-top: 40px;
}

.devS .swiper-slide .text li {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}

.devS .swiper-slide .text li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #007ac3;
  position: absolute;
  top: 14px;
  border-radius: 50%;
  left: 0;
}

.dev_time_line {
  position: relative;
  padding: 50px 0;
}

.dev_time_line .outer {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.dev_time_line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 56px;
  width: 100%;
  height: 1px;
  background: #007ac3;
}

.dev_time_line span {
  position: relative;
  height: 13px;
}

.dev_time_line span em {
  position: absolute;
  width: 13px;
  height: 13px;
  background: transparent;
  border: solid 1px transparent;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.dev_time_line span em::before {
  content: '';
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #007ac3;
}

.dev_time_line span em:hover,
.dev_time_line span.active em {
  background: #fff;
  border-color: #007ac3;
}

.dev_time_line span i {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-style: normal;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #ccc;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.dev_time_line span:last-child i {
  bottom: -1px;
}

.dev_time_line span.active i {
  font-size: 24px;
  letter-spacing: 1px;
  color: #007ac3;
  opacity: 1;
}

/* development */

/* contact */
.contact {
  margin-top: 80px;
}

.contact .contact_nav {
  background: #f8f8f8;
}

.contact .contact_nav ul {}

.contact .contact_nav ul li {
  width: 200px;
  height: 70px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
  color: #333;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.contact .contact_nav ul li::before {
  content: '';
  border: 8px solid transparent;
  border-bottom: 0;
  border-top: 10px solid #007ac3;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  margin: 0 auto;
  bottom: -10px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.contact .contact_nav ul li.active {
  color: #fff;
  background: #007ac3;
}

.contact .contact_nav ul li.active::before {
  opacity: 1;
}

.contact .contact_nav ul li::after {
  content: '';
  width: 1px;
  height: 20px;
  background-color: #e0e0e0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.contact .contact_nav ul li.active::after {
  opacity: 0;
}

.contact .contact_nav ul li:last-child::after {
  display: none;
}

.contact .con {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.contact .con .top {
  border-bottom: 1px solid #f0f0f0;
}

.contact .con .top .inner {
  display: none;
}

.contact .con .top .l {
  width: 50%;
  padding: 60px 4% 40px;
}

.contact .con .top .l h3 {
  border-bottom: 1px solid #e0e0e0;
  font-size: 24px;
  line-height: 26px;
  color: #333;
  padding-bottom: 34px;
}

.contact .con .top .l table {
  margin-top: 20px;
}

.contact .con .top .l td {
  font-size: 14px;
  height: 40px;
  color: #333;
}

.contact .con .top .l p {
  font-size: 14px;
  line-height: 40px;
  color: #333;
}

.contact .con .top .l p img {
  margin-right: 8px;
}

.contact .con .top .l p span {
  font-size: 18px;
  font-weight: bold;
  color: #007ac3;
}

.contact .con .top .r {
  width: 50%;
  padding: 60px 4% 40px;
}

.contact .con .top .r h4 {
  border-bottom: 1px solid #e0e0e0;
  font-size: 18px;
  line-height: 26px;
  color: #333;
  padding-bottom: 34px;

}

.contact .con .top .r table {
  margin-top: 20px;
}

.contact .con .top .r td {
  font-size: 14px;
  color: #333;
  height: 40px;
}

.contact .con .top .r td[rowspan="4"] {
  width: 125px;
  vertical-align: top;
}

#wrap {
  width: 100%;
  height: 360px;
  position: relative;
  z-index: 1;
}

#mapContainer {
  height: 100%;
}

.my-map .icon {
  background: url(../Images/map_dot.png) no-repeat;
}

.my-map .icon-cir {
  height: 40px;
  width: 48px;
}

.amap-info-content h5 {
  font-size: 15px;
  font-weight: bold;
}

.amap-info-close {
  display: none !important;
}

.amap-info-content {
  padding: 10px 20px;
  box-shadow: 0px 0px 5px #999;
}

.amap-info-sharp {
  background: transparent;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
  position: relative;
  left: -9px;
}

/* contact */

/* video */
.video {

}

.video_list {
  width: 90%;
  max-width: 1420px;
  margin: 50px auto 0;
}

.video_list li {
  float: left;
  width: 47.9%;
  margin-right: 4.2%;
  margin-top: 4.2%;
}

.video_list li:nth-child(2n) {
  margin-right: 0;
}

.video_list li:nth-child(2n + 1) {
  clear: both;
}

.video_list li:nth-child(-n + 2) {
  margin-top: 0;
}

.video_list li .img {
  position: relative;
  display: block;
}

.video_list li a .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.video_list li a .mask img {
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.video_list li a:hover .mask img {
  -webkit-transform: scale(.9);
  -moz-transform: scale(.9);
  -ms-transform: scale(.9);
  -o-transform: scale(.9);
  transform: scale(.9);
}

.video_list li a .text {
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  color: #333;
  margin-top: 20px;
}

/* video */

/* honnor */
.honnor {
  margin: 80px auto;
}

.honnor li {
  background-color: #fff;
  border: solid 1px #dbdbdb;
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
  float: left;
  width: 18%;
  margin-right: 2.5%;
  margin-top: 2.5%;
}

.honnor li:nth-child(5n) {
  margin-right: 0;
}

.honnor li:nth-child(5n + 1) {
  clear: both;
}

.honnor li:nth-child(-n + 5) {
  margin-top: 0;
}

.honnor li img {}

.honnor li p {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  text-align: center;
  height: 60px;
  background: #f9f9f9;
  padding: 0 10px;
  position: relative;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.honnor li p span {
  position: relative;
  z-index: 9;
}

.honnor li p::after {
  content: '';
  width: 40px;
  height: 3px;
  background-color: #007ac3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  -webkit-transition: height .2s ease-in-out, width .2s ease-in-out .2s;
  -moz-transition: height .2s ease-in-out, width .2s ease-in-out .2s;
  -ms-transition: height .2s ease-in-out, width .2s ease-in-out .2s;
  -o-transition: height .2s ease-in-out, width .2s ease-in-out .2s;
  transition: height .2s ease-in-out, width .2s ease-in-out .2s;
}

.honnor li:hover p {
  color: #fff;
}

.honnor li:hover p::after {
  width: 100%;
  height: 100%;
  -webkit-transition: width .2s ease-in-out, height .2s ease-in-out .2s;
  -moz-transition: width .2s ease-in-out, height .2s ease-in-out .2s;
  -ms-transition: width .2s ease-in-out, height .2s ease-in-out .2s;
  -o-transition: width .2s ease-in-out, height .2s ease-in-out .2s;
  transition: width .2s ease-in-out, height .2s ease-in-out .2s;
}

/* honnor */

/* activity */
.activity {
  margin: 80px auto;
}

.activity .about_tit {
  margin-bottom: 0;
}

.activity li {
  padding: 64px 0;
}

.activity li:nth-child(2n) {
  background: #f2f2f2;
}

.activity li .outer {
  width: 90%;
  max-width: 1420px;
  margin: 0 auto;
}

.activity li .inner {
  position: relative;
  width: 100%;
}

.activity li .text {
  width: 100%;
}

.activity li .text .top {
  background-color: #007ac3;
  padding: 44px 10%;
  position: relative;
}

.activity li .text .top .at{display: block;position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 2;}

.activity li .text h4 {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

.activity li .text h5 {
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  height: 78px;
  margin-top: 12px;
}

.activity li .text h6 a {
  font-family: Arial;
  font-size: 14px;
  line-height: 48px;
  color: #fff;
}

.activity li .text h6 a img {
  margin-left: 8px;
}

.activity li .text .bot {
  padding: 36px 140px;
  position: relative;
}

.activity li .text .bot .swiper-slide {
  border: solid 2px transparent;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.activity li .text .bot .swiper-slide-active {
  border: solid 2px #007ac3;
}

.activity li .text .bot .sBtn {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  border: solid 1px #e0e0e0;
  border-radius: 50%;
  margin: auto;
  z-index: 9;
  cursor: pointer;
  outline: none;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.activity li .text .bot .sBtn:hover {}

.activity li .text .bot .sBtn.sNext {
  left: auto;
  right: 60px;
}

.activity li .text .bot .sBtn.sNext img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.activity li .img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 45%;
}

.activity li .img .swiper-container,
.activity li .imgi {
  height: 100%;
  width: 100%;
}

.activity li .img .swiper-container a{display: block;width: 100%;height: 100%;}

.activity li:nth-child(2n + 1) .inner {
  padding-right: 45%;
}

.activity li:nth-child(2n) .inner {
  padding-left: 45%;
}

.activity li:nth-child(2n + 1) .img {
  right: 0;
}

.activity li:nth-child(2n) .img {
  left: 0;
}

.activity .pagination {
  width: 90%;
  max-width: 1420px;
  margin: 0 auto;
  background: transparent;
}

/* activity */

/* news */
.news {
  margin: 80px auto;
}

.news ul li {
  width: 32%;
  float: left;
  padding-right: 4%;
  margin-right: 4%;
  margin-top: 4%;
  position: relative;
}

.news ul li:nth-child(3n) {
  width: 28%;
  padding-right: 0;
  margin-right: 0;
}

.news ul li:nth-child(-n + 3) {
  margin-top: 0;
}

.news ul li::after {
  content: '';
  background: #e7e7e7;
  position: absolute;
  right: 0;
  top: 5%;
  height: 85%;
  width: 1px;
}

.news ul li:nth-child(3n)::after {
  display: none;
}

.news ul li:hover {
  color: #0866a5;
}



.news_detail {
  margin: 72px auto;
}

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

.news_detail .t h1 {
  font-size: 30px;
  color: #666;
}

.news_detail .t h6 {
  margin-top: 18px;
}

.news_detail .t h6 span {
  font-size: 14px;
  color: #666;
  margin-right: 24px;
}

.news_detail .t h6 span:last-child {
  margin-right: 0px;
}

.news_detail .t h6 span img {
  margin-right: 6px;
}

.news_detail .m {
  width: 95%;
  /* margin: 24px 0; */
  /* margin: 24px 10px 24px 23px; */
  margin: 24px auto;
  padding: 24px 0;
  text-align: justify;
  border-top: 2px solid #e9e9e9;
  border-bottom: 2px solid #e9e9e9;
  font-size: 16px;
  line-height: 32px;
  color: #666;
}

.news_detail .b {
  position: relative;
  padding-right: 160px;
}

.news_detail .b a {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #666;
}

.news_detail .b a.back {
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #007ac3;
  font-size: 14px;
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

.news_detail .b a.back img {
  margin-left: 16px;
}

/* news */

/* result */
.result>div {
  display: none;
  margin: 80px auto;
  padding: 0;
}

/* result */


@media (max-width: 1800px) {
  .ind5_container {
    width: 80%;
  }
}

@media (max-width: 1778px) {
  .solve5_2 .l {
    padding-left: 5%;
  }

  .inner_banner_nav .r a {
    margin-left: 50px;
  }

  .ind3_div1 {
    padding-right: 10%;
  }

  .devS .prev {
    left: -72px;
  }

  .devS .next {
    right: -72px;
  }

  .product .top .l ul li a {
    font-size: 16px;
  }

  .header {
    padding: 0 5%;
  }
}


@media (max-width: 1600px) {

  .solve4_5 .common_tit h5 {
    font-size: 18px;
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .common_btn{
    top: -10;
  }
  .ind2_title{
    font-size: 27px;
  }
  .ind3 img {
    width: 100%;
    height: unset;
  }

  #swiper4 .bannerP {
    display: block;
    text-align: center;
    position: static;
    margin-top: 20px;
    width: 100%;
  }

  .devS .sBtn {
    width: 44px;
    height: 44px;
  }

  .devS .prev {
    left: -52px;
  }

  .devS .next {
    right: -52px;
  }

  .product .top .l ul li {
    padding: 0 12px;
  }

}

@media (max-width: 1680px) {

  .solve3_1 .l a {
    font-size: 22px;
    height: 110px;
  }

  .solve3_1 .r .swiper-container {
    height: 550px;
  }


}



@media (max-width: 1500px) {
  .header_nav2 .inner .r3 .dl1 dd a {
    font-size: 16px;
  }

  .solve1_4 li>img {
    display: block;
    max-width: 100%;
    height: 500;
  }

  .header_nav li {
    font-size: 16px;
  }

  .inner_banner_nav .l {
    width: 360px;
  }

  .inner_banner_nav .r {
    width: calc(100% - 360px);
  }

  .ind3_div1 h3 {
    font-size: 36px;
  }

  .ind3_div1 .ind3_p1 {
    margin-top: 32px;
  }

  .ind3_div2 {
    margin-top: 32px;
  }

  .culture li a .mask .ico {
    width: 50px;
  }

  .culture li a .mask h4 {
    margin-top: 24px;
  }

  .activity li .text .bot {
    padding: 36px 100px;
  }

  .activity li .text .bot .sBtn {
    left: 40px;
  }

  .activity li .text .bot .sBtn.sNext {
    right: 40px;
    left: auto;
  }

  .pro_detail .con1 .r {
    padding-left: 40px;
  }

  .solve2_2 .l {
    padding-top: 8%;
  }

  .solve2_2 .r .point-area .point-name {
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    padding: 0 18px;
    font-size: 16px;
  }

  .solve2_2 .r .point-area:nth-of-type(1) .point-name,
  .solve2_2 .r .point-area:nth-of-type(2) .point-name,
  .solve2_2 .r .point-area:nth-of-type(3) .point-name {
    left: -290%;
  }

  .solve2_2 .r .point-area:nth-of-type(1) .point-name::before,
  .solve2_2 .r .point-area:nth-of-type(2) .point-name::before,
  .solve2_2 .r .point-area:nth-of-type(3) .point-name::before {
    left: 99%;
  }

  .solve2_3 .point-area .line span {
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    border-radius: 18px;
  }

  .common_tit h3 {
    font-size: 42px;
  }

  .solve3_1 .l a {
    height: 100px;
    font-size: 20px;
  }

  .solve3_1 .r .swiper-container {
    height: 500px;
  }

  .solve3_1 .r .swiper-container .sBtn {
    left: 20px;
    width: 44px;
    height: 44px;
  }

  .solve3_1 .r .swiper-container .sBtn.sNext {
    right: 20px;
    left: auto;
  }

  .solve4_5 h4 {
    font-size: 36px;
  }

  .solve4_5 h6 {
    margin-top: 32px;
    font-size: 20px;
    line-height: 28px;
  }

  .solve4_5 .common_btn {
    margin-top: 28px;
  }

  .solve5_2 .l h4 span {
    font-size: 18px;
    padding: 0 23px;
    height: 44px;
    border-radius: 22px;
  }

  .solve1_1img .img p {
    font-size: 20px;
  }

  .solve1_6con .r .solve1_6P span {
    width: 36px;
    height: 36px;
    margin: 6px 0;
    font-size: 16px;
    line-height: 36px;
  }

  .solve5_2 .l ul li img {
    width: 60px;
  }

  .solve3_1 .r .swiper-container .mask .inner {
    padding: 30px;
  }

  .solve3_1 .r .swiper-container .mask h4 {
    font-size: 24px;
  }

  .solve3_1 .r .swiper-container .mask .text {
    width: 70%;
  }

  .solve3_1 .r .swiper-container .mask h6 {
    margin-top: 10px;
  }

  .footer_container {
    width: 90%;
  }

  .footer_4 {
    font-size: 12px;
  }


}

@media (max-width: 1280px) {
  .pro_detail .con1 .r .abtn a:nth-child(2) {
    background: #ff0036 url(../Images/sb_8.png) 19% center no-repeat;
  }

  .ind3 img {
    width: 100%;
    height: 100%;
    min-height: 100px;
  }
  .flex{
    align-items: auto;
  }


  .ind3_div1 .ind3_p1 {
    margin: 27px 0;
  }

  .ind3_div1 {
    padding-top: unset;
    padding-right: 30px;
  }

  .ind4_l ul li {
    width: 260px;
  }

  .ind4_r {
    width: 30%;
    height: unset;
  }

  .btn-pre,
  .btn-next {
    width: 48px;
  }

  .btn-pre {
    left: 42px;
  }

  .btn-next {
    right: 42px;
  }

  .ind3_div2 {
    margin: 20px 0;
  }
  .ind3_div1 p{
    font-size: 12px !important;
  }
  .ind3_div1 .ind3_p1  span{
    font-size: 14px !important;
  }
  .text_text p:nth-child(2) span{
    font-size: 14px !important;
  }
    .ind2_title{
      font-size: 23px !important;
    }
    .common_btn{
      top: 0;
    }
}



@media (max-width:1440px){
  .ind3>div{
    width: 49%;
  }
  .ind3 section{
    width: 49%;
  }
  .ind3_div1 .ind3_p1{
    margin-top: 0;
  }
  .ind3_div2{
    margin: 0;
  }
  .common_btn{
    top: 32px;
  }
 
   
}

@media (max-width: 1366px) {
  .pro_detail .con1 .r .abtn a:nth-child(2) {
    background: #ff0036 url(../Images/sb_8.png) 19% center no-repeat;
  }

  .solve2_4 li a .r h6 {
    height: 80px;
  }

  .ind3_div1 {
    padding-top: 0 ;
  }
  .ind3_div1 .ind3_p1{
    margin-top: 0 ;
    margin-bottom: 0;
  }
  .ind3 section{
    width: 50%;
  }
  .ind3_div2{
    margin: 0;
  }
 

  .ind2_title {
    font-size: 24px;
  }

  .header {
    padding: 0 5%;
  }

  .header_nav li {
    margin: 0 20px;
  }

  .header_tel {
    width: 150px;
  }

  .header_nav li {
    font-size: 16px;
  }

  .inner_banner_nav .r a {
    margin-left: 30px;
  }

  .product .top .r input {
    width: 200px;
  }

}

@media(max-width:1200px){
  .common_btn{
    top: 4px;
  }
  .inner_banner_nav .r a{font-size: 14px;}
}

@media (max-width: 1024px) {

  /*.header {
    display: none;
  }*/
  .pro_detail .con1 .r .abtn a:nth-child(2) {
    background: #ff0036 url(../Images/sb_8.png) 19% center no-repeat;
  }

  .headerSJ {
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 100%;
    background-color: #fff;
    padding: 0px 0px;
  }

  .headerSJ .headerSC {
    padding: 0px 5%;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .headerSJ .logo img {
    height: 28px;
  }

  .headerSJ .navbar {
    position: relative;
    padding: 7px 10px;
    margin-right: 0px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #333;
    border-radius: 4px;
    outline: none;
  }

  .headerSJ .navbar .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
  }

  .headerSJ .navbar .icon-bar+.icon-bar {
    margin-top: 4px;
  }

  .headerSJ .navwrap {
    position: fixed;
    top: 0px;
    left: -50%;
    width: 50%;
    height: 100%;
    z-index: 1100;
    background-color: #000;
    opacity: 0;
  }

  .headerSJ .navwrap .nav {
    padding: 10px 5% 0px 5%;
  }

  .headerSJ .navwrap .nav li {
    line-height: 42px;
    border-bottom: 1px solid #232530;
    padding: 0px 5%;
  }

  .headerSJ .navwrap .nav li a {
    display: block;
    color: #fff;
    font-size: 16px;
  }

  .headerSJ .navbg {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
  }

  .headerSJ .navbg .closeSJ {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .headerSJ .navwrap .nav .SJbod {
    display: none;
  }

  .headerSJ .navwrap .nav .SJbod dd a {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }

  .headerSJ .navwrap .nav .plus a {
    background: url(../Images/plus.png) right center no-repeat;
  }

  .headerSJ .navwrap .nav .minus a {
    background: url(../Images/minus.jpg) right center no-repeat;
  }

  .headerSJ .navwrap .nav .lan .SJtit a {
    display: inline-block;
  }

  .headerSJ .navwrap .nav .lan .SJtit span {
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding: 0px 5px;
  }

  .wrapper {
    padding-top: 60px;
  }

  .header_nav {
    display: none;
  }

  .header_info {
    display: none;
  }

  .menu_btn {
    display: block;
  }

  .ind2 {
    padding: 50px 0;
  }

  .ind3_div1 {
    width: 83.33%;
    margin: 0 auto;
    padding: 60px 0;
  }

  .ind4 .ind4_l {
    display: unset;
  }

  .ind4_c {
    float: left;
  }

  .ind4 .ind4_l ul {
    display: flex;
    /* flex-wrap: wrap; */
  }

  .ind4_swiper {
    float: left;
    width: 50%;
    height: 356px;
  }

  .btn-pre {
    left: 5%;
    margin-top: -24px;
  }

  .btn-next {
    right: 5%;
    margin-top: -24px;
  }

  .ind1_div h4 {
    font-size: 42px;
  }

  .ind1_div h6 {
    font-size: 28px;
    margin-top: 24px;
  }

  .ind5_container {
    display: unset;
  }

  .ind5_1 {
    margin: 0 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ind5_2 {
    margin-top: 0;
  }

  .ind5_1 a {
    margin-top: unset;
  }

  #swiper4 {
    margin: 20px auto;
    width: 90%;
  }

  #swiper6 .bannerP,
  #swiper2 .bannerP {
    display: block;
  }

  .banner_bot {
    bottom: 60px;
  }

  #swiper2 .bannerP {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .inner_banner_nav .l {
    width: 100%;
    padding-left: 5%;
    font-size: 20px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .header {
    display: none;
  }

  .inner_banner_nav .r {
    display: none;
  }

  .about_tit {
    font-size: 32px;
  }

  .inner_banner .text h5 {
    font-size: 32px;
  }

  .inner_banner .text h6 {
    font-size: 18px;
  }

  .footer_3 {
    background: transparent;
    line-height: 1.8;
  }

  .footer_container {
    width: 90%;
  }

  .video_list li a .mask img {
    width: 60px;
  }

  .solve2_1 li {
    height: 120px;
  }

  .solve2_2 .common_tit h5 {
    margin-top: 24px;
  }

  .solve2_2 .r .point-area .point-name {
    font-size: 15px;
    background: transparent;
    left: 20px;
    top: 6px;
  }

  .solve2_2 .r .point-area .point-name::before {
    display: none;
  }

  .solve2_3 .point-area .line {
    width: 20px !important;
  }

  .solve2_3 .point-area .line img {
    display: none;
  }

  .solve1_6con .r {
    padding-right: 80px;
  }

  .solve1_6con .r .text {
    padding: 20px 0;
  }

  .solve1_6con .r .text h4 {
    font-size: 28px;
  }

  .solve4_5 h4 {
    font-size: 28px;
  }

  .common_tit h3 {
    font-size: 36px;
  }

  .pro_detail .con1 {
    padding-top: 80px;
  }

  .culture li a .mask h5 {
    display: none;
  }
  .ind3>div{
    display: none;
  }
  .ind3 section{
    width: 72%;
    /* margin-left: -27%; */
  }
}

@media (max-width: 768px) {
  #video_model .video .close {
    right: 0px;
    top: -50px;
  }

  /* gmy */
  .footer .f_fixed {
    display: block;
    z-index: 999;
  }

  .ind2_title {
    font-size: 22px;
  }

  .ind2-item .ind2_content {
    margin: 0 15px;
  }

  .honnor {
    margin: 30px auto;
  }

  .news_detail {
    margin: 72px auto;
  }

  .news_detail {
    margin: 20px auto;
  }

  .news_detail .t h1 {
    font-size: 24px;
    color: #666;
  }

  /* gmy */


  .btn-pre,
  .btn-next {
    display: none;
  }

  .swiper-stop {
    display: none;
  }

  .banner_b_l .tianmao,
  .banner_b_l .jingdong {
    display: none;
  }

  #swiper1 {}

  .header {
    background-color: rgba(0, 0, 0, .3);
    height: 50px;
    line-height: 50px;
  }

  .logo {
    margin-right: 20px;
  }

  .logo img {
    height: 20px;
  }

  .header .logo::after {
    display: none;
  }

  .btn-pre,
  .btn-next {
    width: 30px;
    margin-top: 15px;
  }

  #swiper2 {
    padding-bottom: 40px;
  }

  .ind2 {
    padding-top: 30px;
    padding-bottom: unset;
  }

  .ind2_btn {
    margin-top: unset;
  }

  .ind2-item {
    padding: 30px 0px;
  }

  /* .ind3_div2 div {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
  } */
  .ind3_div2 {
    text-align: center;
    display: block;
    margin: 10px -10px 20px -10px;
  }

  .ind3_div2 .ind3_item {
    width: 30%;
    flex: unset;
    display: inline-block;
    padding: 10px 0;
  }

  .ind3_div2 .ind3_item div p:nth-child(2) {
    font-size: 12px;
  }



  .ind3_div1 p {
    font-size: 14px;
    width: 100%;
  }

  .ind3_item:hover p {
    color: #007ac3;
  }

  /* gmy */
  .ind4_r {
    width: 50%;
    height: unset;
  }

  .ind4 .swiper-container .swiper-slide .ind4_r img {
    display: block;
    position: relative;
    top: 50%;
    opacity: 0;
    margin-top: 0;
  }

  .ind2_content {
    min-height: 30px;
    height: 58px;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .pro_detail .con1 .r .abtn a:nth-child(2) {
    background: #ff0036 url(../Images/sb_8.png) 15% center no-repeat;
  }

  /* gmy */
  .ind3_item:hover p span {
    color: #007ac3;
  }

  .ind4_l ul li {
    line-height: unset;
  }

  .ind4_l ul li p {
    text-align: center;
    margin-left: unset;
    font-size: 12px;
  }

  .ind4_l ul li img {
    display: none;
  }

  .solve1_1icos a {
    background: url(../Images/solve1_1ico.png) center right / contain no-repeat;
    transition: all .5s;
    -webkit-transition: all .5s;
    /* Safari */
  }

  .solve1_1icos a:last-child {
    background: url(../Images/solve1_1ico.png) center right / contain no-repeat;
    transition: all .5s;
    -webkit-transition: all .5s;
  }

  .ind4_c {
    padding: 30px;
    padding-bottom: 0;
    /* gmy */
  }

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

  .ind4_swiper {
    height: 220px;
    /* gmy */
    width: 100%;
    position: relative;
    /* gmy */
  }

  .ind3_div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 30px 0;
  }

  .ind3_div1 .text_text {
    width: 100%;
    height: 80px;
    overflow: auto;
    padding-right: 15px;
  }

  .ind3_div1 .text_text * {
    text-align: justify !important;
    font-size: 14px !important;
  }

  .ind3_div1 .text_text::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  .ind3_div1 .text_text::-webkit-scrollbar-thumb {
    background: #007ac3;
  }

  .ind3_div1 .text_text::-webkit-scrollbar-track {
    background: #ddd;
  }

  .ind4 {

    padding: 30px 0;
  }

  .btn-pre,
  .btn-next {
    margin-top: unset;
  }

  .ind5_1 {
    margin: 10px 30px;
  }

  .ind5_2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }

  .ind5_2 span {
    background-color: unset;
    color: #333;
    font-size: 22px;
    font-weight: bold;
  }

  .ind5_3 {
    padding: 10px;
  }

  .ind5_3 a {
    width: 100%;
    height: 80px;
  }

  .ind5_3 a img {
    width: 80%;
  }

  .ind5_container .visible-xs {
    margin: 20px auto 0;
  }

  #swiper4 {
    width: 90%;
    margin: 0 auto;
  }

  #swiper4 .bannerP {
    bottom: -4px;
  }

  .footer_ul,
  .footer_weixin {
    display: none;
  }

  .footer_6 {
    float: left;
  }

  .footer_2 {
    width: 200px;
    margin-bottom: 20px;
  }

  .footer_1 {
    display: unset;
  }

  .ind5 {
    padding: 30px 0;
  }

  .ind5 a.btn,
  .ind6 a.btn {
    margin: 0 auto;
  }

  .ind6 {
    padding: 30px 5%;
  }

  .ind6_1 {
    margin-bottom: unset;
  }

  .ind6_3_p3 {
    margin: 30px 0;
  }

  .ind6 .common_btn {
    margin: 20px auto 0;
  }

  .common_btn {
    top: 0px;
    width: 100px;
    height: 35px;
    line-height: 35px;
    margin: 0px auto;
    margin-top: 10px;
  }

  .solve2_5 .common_tit {
    padding: 0;
  }

  .ind2 h2,
  .ind3_div1 h3,
  .ind4 h4,
  .ind6 h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }

  .ind6 h4 {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .ind4_c_p2 {
    padding: 20px 0;
  }

  .ind5_1 a {
    display: none;
  }

  .ind2-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #swiper2 .bannerP.swiper-pagination-bullets {
    bottom: 50px;
  }

  #swiper4.swiper-container,
  #swiper6 {
    padding-bottom: 10px;
  }

  .ind4_list li:nth-child(6) {
    display: none;
  }

  .common_tit {
    padding: 0 5%;
  }

  .solve4_4 .common_tit {
    padding: 0;
  }

  .ind4_swiper .bannerP.swiper-pagination-bullets {
    width: 100%;
    bottom: 0;
  }

  .footer {
    padding-top: 10px;
  }

  .footer_4 {
    display: unset;
  }

  .footer_3 img {
    display: none;
  }

  .ind4_swiper .bannerP {
    display: block;
  }

  .divselect span {
    width: 200px;
    height: 36px;
    line-height: 36px;
  }

  .divselect ul li {
    height: 20px;
    line-height: 20px;
  }

  .divselect {
    margin-left: 50px;
  }

  .ind5_2 span {
    padding: unset;
    margin-right: unset;
  }

  .contact .contact_nav ul li {
    width: auto;
    padding: 0 20px;
  }

  .contact .con .top .inner>.flex {
    display: block;
  }

  .contact .con .top .inner .l,
  .contact .con .top .inner .r {
    width: 100%;
  }

  .contact .con .top .inner .r {
    padding-top: 20px;
  }

  .video_list li {
    float: none;
    width: 100%;
    margin-right: 0%;
  }

  .video_list li:nth-child(-n + 2) {
    margin-top: 20px;
  }

  .news_detail .t h6 {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news ul li {
    width: 100%;
    float: none;
    padding-right: 0%;
    margin-right: 0%;
  }

  .news ul li:nth-child(3n) {
    width: 100%;
  }

  .news ul li:nth-child(-n + 3) {
    margin-top: 4%;
  }

  .news ul li::after {
    display: none;
  }

  .activity li {
    padding: 40px 0;
  }

  .activity li .text .bot {
    display: none;
  }

  .activity li:nth-child(2n + 1) .inner,
  .activity li:nth-child(2n) .inner {
    padding: 0
  }

  .activity li .img {
    position: static;
    width: 100%;
  }

  .activity li .imgi {
    padding-top: 68%;
  }

  .activity li .img .sP {
    text-align: center;
    margin-top: 20px;
  }

  .activity li .img .sP span {
    margin: 0 4px;
  }

  .honnor li {
    width: 48%;
    margin-right: 4%;
    margin-top: 4%;
  }

  .honnor li:nth-child(5n) {
    margin-right: 4%;
  }

  .honnor li:nth-child(2n) {
    margin-right: 0;
  }

  .honnor li:nth-child(5n + 1) {
    clear: none;
  }

  .honnor li:nth-child(2n + 1) {
    clear: both;
  }

  .honnor li:nth-child(-n + 5) {
    margin-top: 4%;
  }

  .honnor li:nth-child(-n + 2) {
    margin-top: 0;
  }

  .devS {
    width: 100%;
  }

  .devS .swiper-slide {
    display: block;
  }

  .devS .swiper-slide .img {
    width: 100%;
    padding: 0;
  }

  .devS .swiper-slide .text {
    width: 100%;
    padding: 5%;
  }

  .devS .swiper-slide .text h4 {
    font-size: 42px;
    letter-spacing: 0;
  }

  .dev_time_line {
    display: none;
  }

  .devP {
    text-align: center;
    position: static;
    width: 100%;
  }

  .devP span {
    margin: 0 2px;
  }

  .culture li {
    float: none;
    width: 100%;
    margin-right: 0px;
    margin-top: 20px;
  }

  .culture li:nth-child(-n + 3) {
    margin-top: 20px;
  }

  .ind3 {
    display: block;
  }

  .ind3>div,
  .ind3>section {
    width: 100%;
  }

  .product .list li {
    float: none;
    width: 100%;
    margin-right: 0px;
  }

  .product .list li:nth-child(-n + 4) {
    margin-top: 26px;
  }

  .case_detail .con1 .container {
    padding: 40px 5%;
    display: block;
  }

  .case_detail .con1 .l {
    width: 100%;
  }

  .case_detail .con1 .r {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .case_detail .con1 .l .swiper-slide {
    padding: 0;
  }

  .case_detail .con1 .l ul {
    padding: 10px 0;
  }

  .case_detail .con1 .l li {
    width: calc(25% - 3px);
    margin-left: 4px;
  }

  .case_detail .con1 .r h1 {
    font-size: 28px;
  }

  .case_detail .con6 {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .case_detail .con6 .l {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .case_detail .con6 .img_h {
    display: none;
  }

  .case_detail .con6 .l span {
    display: none;
  }

  .case_detail .con6 .common_btn {
    margin-top: 20px;
  }

  .solve1_6con .r .text .common_btn {
    margin-top: 10px;
  }

  .product .top {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .product .top .r {
    margin-top: 20px;
  }

  .pro_detail .con1 .container {
    display: block;
  }

  .pro_detail .con1 .l {
    width: 100%;
  }

  .pro_detail .con1 .r {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .pro_detail .con2 ul li {
    padding: 0 10px;
    text-align: center;
  }

  .pro_detail .con3_2 .inner {
    padding: 40px 5%;
  }

  .pro_detail .con3_3 .table,
  .pro_detail .con3_4 .table {
    padding: 40px 5%;
    overflow: auto;
  }

  .pro_detail .con3_3 .table table,
  .pro_detail .con3_4 .table table {
    width: 800px;
  }

  .common_tit h3 {
    font-size: 22px;
  }

  .common_tit h5 {
    font-size: 16px; 
    /* text-align: justify; */
  }

  .solve1_1 {
    padding: 30px 0;
  }

  /* gmy */
  .solve .s_pc {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    display: none;
  }

  .solve .s_phone {
    display: block;
  }

  .footer .f_fixed .tel_alert {
    display: none;
  }

  .solve .s_phone .p_title {
    width: 80px;
    height: 80px;
    border: 1px solid #999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .solve .s_phone {
    width: 100%;
    height: auto;
  }

  .solve .s_phone .f_img img {
    width: 100%;
    height: 100%;
  }

  .solve .s_phone .f_img {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    margin-bottom: 20px;
  }

  .solve .s_phone .f_img img:not(:first-child) {
    display: none;
  }

  .solve1_1img>div:nth-of-type(1) {
    left: 0;
  }

  .solve .s_phone .d_flex {
    width: 100% !important;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .solve .s_phone .d_flex .d_con {
    width: 100px;
    height: 36px;
    border-radius: 2px;
    display: flex;
    border: 1px solid #aeafb3;
    margin: 10px 0;
  }

  .solve .s_phone .d_flex .d_con .d_num {
    width: 20px;
    height: 100%;
    color: #fff;
    border-radius: 1px;
    background-color: #aeafb3;
    line-height: 36px;
    text-align: center;
  }

  .solve .s_phone .d_flex .d_con div:last-child {
    flex: 1;
    text-align: center;
    line-height: 36px;
    color: #aeafb3;
  }

  .solve .s_phone .d_flex .d_con.act {
    border: 1px solid #007ac3;
  }

  .solve .s_phone .d_flex .d_con .d_num.act {
    background-color: #007ac3;
  }

  .solve .s_phone .p_title span {
    width: 36px;
    display: block;
  }

  /* gmy */
  .solve1_1icos a {
    width: 23%;
    -webkit-box-flex: inherit;
    -webkit-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    margin: 10px 0;
  }

  .solve1_1icos a:nth-child(2n) {
    background: url(../Images/solve1_1ico.png) center right / contain no-repeat;
    transition: all .5s;
    -webkit-transition: all .5s;
  }

  .solve1_1icos a:nth-child(4n) {
    background: transparent;
  }

  .solve1_1icos a:last-child {
    background: transparent;
  }

  .solve1_1img::after {
    content: '';
    clear: both;
    height: 0;
    display: block;
  }

  .solve1_1img>div {
    position: static;
    float: left;
    width: 50% !important;
  }

  .solve1_1img .kuang>img {
    display: none;
  }

  .solve1_1img .kuang .point-area {
    display: none;
  }

  .solve1_1img>div .img {
    position: static;
    width: 100% !important;
  }

  .solve1_1img .img p {
    position: static;
    font-size: 16px;
    color: #333;
  }

  .solve1_2 {
    padding: 30px 0;
  }

  .solve1_2 ul li {
    width: 100%;
    float: none;
    border-top: 0;
    padding: 0;
    margin-top: 20px;
  }

  .solve1_2 ul li:nth-child(-n + 4) {
    padding: 0;
  }

  .solve1_2 ul h6 {
    font-size: 16px;
    margin-top: 0px;
    height: auto;
    max-height: 56px;
  }

  .solve1_3 {
    padding: 30px 0;
  }

  .solve1_3con {
    display: block;
    margin-top: 20px;
  }

  .solve1_3con .left {
    width: 100%;
    height: auto !important;
    padding-top: 90%;
  }

  .solve1_3con .right {
    width: 100%;
    margin-top: 20px;
  }

  .solve1_4 {
    padding: 30px 0;
  }

  .solve1_4 .container {
    margin-top: 20px;
  }

  .solve1_4 .container ul {
    display: block;
  }

  .solve1_4 .container ul li {
    width: 100%;
  }

  .solve1_4 li .img {
    width: 48px;
  }

  .solve1_4 li.active .img {
    left: 50%;
  }

  .solve1_4 li p {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .solve1_4 li.active p {
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    bottom: 50%;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
  }

  .solve1_4 li .mask {
    background: rgba(0, 0, 0, .4);
  }

  .solve1_5 {
    padding: 30px 0;
  }

  .solve1_5 ul {
    margin-top: 30px;
  }

  .solve1_5 ul li {
    width: 50%;
  }

  .solve1_5 ul:nth-of-type(2):before,
  .solve1_5 ul:nth-of-type(2) li:after,
  .solve1_5 ul:nth-of-type(1) li:after {
    display: none;
  }

  .solve1_5 ul:nth-of-type(2) {
    margin-top: 0;
  }

  .solve1_5 ul:nth-of-type(2) li {
    float: left;
  }

  .solve1_5 ul li h4 {
    font-size: 20px;
    margin-top: 20px;
  }

  .solve1_5 ul li h5 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .solve1_6 {
    padding: 30px 0;
  }

  .solve1_6con {
    margin-top: 20px;
  }

  .solve1_6con .flex {
    display: block;
  }

  .solve1_6con .l {
    width: 100%;
    padding-right: 0;
  }

  .solve1_6con .r {
    width: 100%;
    padding-right: 0;
  }

  .solve1_6con .r .solve1_6P {
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: auto;
    width: 100%;
    position: static;
    margin-top: 20px;
    text-align: center;
  }

  .solve1_6con .r .solve1_6P span {
    width: 10px;
    height: 10px;
    margin: 4px 0;
    font-size: 0px;
    line-height: 0px;
    background: #000;
    opacity: .2;
    margin: 0 4px;
  }

  .solve1_6con .r .solve1_6P span.swiper-pagination-bullet-active {
    opacity: 1;
  }

  .solve1_6con .r .text h4 {
    font-size: 24px;
    margin-top: 10px;
  }

  .solve1_6con .r .text h5 {
    font-size: 18px;
  }

  .solve2_1 {
    margin: 30px 0
  }

  .solve2_1 .common_btn {
    margin-top: 0px;
  }

  .solve2_1 .common_tit h5 {
    font-size: 20px;
  }

  .solve2_1 .m {
    display: none;
  }

  .solve2_1 .l {
    width: 48%;
  }

  .solve2_1 .l li {
    padding: 0;
  }

  .solve2_1 li:first-child .img {
    height: 80px;
  }

  .solve2_1 li:first-child {
    height: 80px;
  }

  .solve2_1 li {
    height: 180px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .solve2_2 {
    padding: 20px 0;
  }

  .solve2_2 .r .swiper-slide {

    padding: 0 5%;

  }

  .solve2_2 .container {
    display: block;
  }

  .solve2_2 .l {
    width: 100%;
  }

  .solve2_2 .r {
    width: 100%;
  }

  .solve2_2 .sBtn {
    left: 0;
  }

  .solve2_2 .sBtn.next {
    left: auto;
    right: 0;
  }

  .solve2_3 {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .solve2_3 .common_tit {
    top: 30px;
    width: 100%;
    text-align: center;
  }

  .solve2_3 .img {
    position: relative;
    width: 130%;
  }

  .solve2_3 .img>img {
    margin-left: -25%;
  }

  .solve2_3 .point-area {
    margin-left: -25%;
  }

  .solve2_3 .point-area .line {
    width: 0px !important;
  }

  .solve2_3 .point-area .line span {
    font-size: 13px;
    color: #007ac3;
    background: transparent;
  }

  .solve2_4 {
    padding: 0;
    margin: 30px 0;
  }

  .solve2_5 {
    padding: 0;
    margin: 30px 0;
  }

  .solve1_6con .r .text h6 {
    font-size: 15px;
    margin-top: 10px;
  }

  .solve1_6con .r .solve1_6P {
    border: 0;
    padding: 0 0 20px;
    margin: 0;
  }

  .solve3_1 {
    padding: 30px 0;
  }

  .solve3_1 .container {
    display: block;
    margin-top: 0px;
    padding: 0;
  }

  .solve3_2S .sP {
    margin-top: 20px;
  }

  .solve3_1 .l {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .solve3_1 .r {
    width: 100%;
  }

  .solve3_1 .l a,
  .solve3_1 .l a.active {
    width: 20%;
    font-size: 16px;
    padding: 0 10px;
    height: 60px;
  }

  .solve3_1 .r .swiper-container .mask .inner {
    padding: 40px 5%;
    display: block;
  }

  .solve3_1 .r .swiper-container .mask .text {
    width: 100%;
  }

  .solve3_1 .r .swiper-container .mask h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .solve3_1 .r .swiper-container .mask h6 {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
  }

  .solve3_1 .r .swiper-container .mask .inner .common_btn {
    margin-top: 20px;
  }

  .solve3_1 .r .sBtn {
    display: none;
  }

  .solve3_1 .r .sP {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 9;
    text-align: center;
  }

  .solve3_1 .r .swiper-container {
    height: 300px;
  }

  .solve3_1 .r .sP span {
    background: #fff;
  }

  .solve3_2 {
    margin: 30px 0;
  }

  .solve3_2S {
    margin-top: 30px;
  }

  .solve3_2 .common_tit {
    display: block;
    padding: 0;
  }

  .solve3_3 {
    padding: 30px 0;
  }

  .solve3_3 .common_tit {
    display: block;
    padding: 0;

  }

  .solve3_3con {
    margin-top: 30px;
  }

  .solve3_3con .bot {
    margin-top: 0;
  }

  .solve3_3con .boti .line {
    display: none;
  }

  .solve3_3con .boti .img p {
    font-size: 16px;
  }

  .solve3_3con .boti {
    width: 48%;
  }

  .solve3_4S .sBtns {
    margin-top: 20px;
  }

  .solve3_4 {
    margin: 30px 0;
  }

  .solve3_4 .common_tit {
    display: block;
    padding: 0;
  }

  .solve3_4S {
    margin-top: 30px;
  }

  .solve3_4S .swiper-slide {
    height: 80px;
  }

  .solve3_4S .sBtn {
    width: 44px;
    height: 44px;
  }

  .solve3_5 {
    margin: 30px 0 0;
  }

  .solve3_5 .common_tit .common_btn {
    display: none;
  }

  .solve4_2 {
    padding: 30px 0;
  }

  .solve4_2 .dot .line {
    display: none;
  }

  .solve4_2 .dot {
    position: static;
    width: 48% !important;
    float: left;
    margin-right: 4%;
    margin-top: 4%;
  }

  .solve4_2 .dot:nth-child(2n) {
    margin-right: 0;
  }

  .solve4_2 .common_tit {
    display: block;
    padding: 0;
  }

  .solve4_2 .dot .img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .solve4_2 .dot .img img {
    order: -1;
  }

  .solve4_3 {
    padding: 30px 0;
  }

  .solve4_3 .common_tit {
    display: block;
    padding: 0;
  }

  .solve4_2 .container::after {
    content: '';
    clear: both;
    display: block;
  }

  .solve4_3 .con {
    display: block;
    margin-top: 30px;
  }

  .solve4_3 .con a {
    width: 100%;
  }

  .solve4_3 .con a p {
    font-size: 20px;
    padding: 20px 5%;
    bottom: 0;
  }

  .solve4_4 {
    padding: 30px 0;
  }

  .solve4_4 .container {
    display: block;
  }

  .solve4_4 .l {
    width: 100%;
  }

  .solve4_4 .l h5 {
    height: auto;
    margin-top: 20px;
    padding: 0;
  }

  .solve4_4 .l .common_btn {
    margin-top: 20px;
  }

  .solve4_4 .r {
    width: 100%;
    margin-top: 20px;
  }

  .solve4_5 {
    padding: 20px 0
  }

  .solve4_5 .common_tit {
    display: block;
    padding: 0;
  }

  .solve4_5 .con {
    margin-top: 20px;
    display: block;
  }

  .solve4_5 .l {
    width: 100%;
  }

  .solve4_5 .r {
    width: 100%;
    padding: 20px 5% 0;
  }

  .solve4_5 h4 {
    font-size: 28px;
    line-height: 36px;
  }

  .solve4_5>h5 {
    font-size: 20px;
  }

  .solve4_5 h6 {
    font-size: 16px;
  }

  .solve4_6 .common_tit .common_btn {
    display: none;
  }

  .solve5_1 {
    padding: 20px 0;
  }

  .solve5_1 .con {
    margin-top: 20px;
  }

  .solve5_1 .sP span {
    width: 40px;
    margin: 0 4px;
  }

  .solve5_2 .con {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .solve5_2 .l {
    order: 2;
    width: 100%;
    padding: 20px 5%;
  }

  .solve5_2 .r {
    width: 100%;
  }

  .solve5_2 .l ul li p {
    font-size: 15px;
  }

  .solve5_3 {
    padding: 20px 0;
  }

  .solve5_3 .con {
    margin-top: 30px;
  }

  .solve5_3 .con li {
    padding: 20px 0;
    width: 50%;
  }

  .solve5_3 .con li:nth-child(-n + 4) {
    border-top: 0;
  }

  .solve5_3 .con li:nth-child(-n + 2) {
    border-top: 1px solid #e5e5e5;
  }

  .solve5_3 .con li:nth-child(4n) {
    border-right: 0;
  }

  .solve5_3 .con li:nth-child(2n) {
    border-right: 1px solid #e5e5e5;
  }

  .solve5_3 .con li p {
    font-size: 15px;
    line-height: 24px;
    height: 48px;
    padding: 0 5%;
  }

  .solve5_4 {
    padding: 20px 0;
  }

  .solve5_4 .con {
    margin-top: 20px;
  }

  .solve5_4 .con li {
    width: 100%;
    float: none;
    margin-top: 20px;
  }

  .inner_banner .text h4 {
    height: 36px;
    border-radius: 18px;
    font-size: 20px;
    line-height: 36px;
    padding: 0 16px;
  }

  /* gmy */
  .inner_banner_nav .l .disnone {
    display: none;
  }

  /* gmy */
  .inner_banner .text h5 {
    font-size: 24px;
  }

  .inner_banner .text h6 {
    font-size: 16px;
  }

  .pagination {
    background: transparent;
    padding: 0;
  }

  .product {
    padding: 30px 0;
  }

  .case_detail .con6 {
    margin: 30px auto;
  }

  .con4 {
    margin-bottom: 30px;
  }

  .product .list {
    margin-top: 20px;
  }

  .pro_detail .con1 {
    padding: 20px 0;
  }

  .pro_detail .con1 .r p {
    font-size: 16px;
  }

  .pro_detail .con1 .r .table {
    margin-top: 20px;
  }

  .pro_detail .con1 .r td:nth-child(1) {
    height: 40px;
  }

  .pro_detail .con1 .r .common_btn {
    margin-top: 20px;
  }

  .pro_detail .con2 ul {
    padding: 16px 0;
  }

  .pro_detail .con2 ul li {
    width: 25%;
  }

  .pro_detail .con2 ul li a {
    font-size: 14px;
  }

  .product.case .top .r {
    margin-top: 0;
  }

  .contact {
    margin-top: 30px;
  }

  .about,
  .culture,
  .development,
  .honor,
  .activity,
  .news,
  .video {
    margin: 30px 0;
  }

  .about {
    margin-bottom: 0;
  }

  .ind1_div h4 {
    font-size: 32px;
  }

  .ind1_div h6 {
    font-size: 18px;
    margin-top: 12px;
  }





  .ind4 .ind4_l .in4lt {
    height: 100px;
    width: 100%;
    padding-right: 80px;
  }

  .ind4 .ind4_l .in4lt .swiperl_int {
    height: 100px;
  }

  .ind4 .ind4_l .in4lt .swiperl_int .swiper-slide .sbox {
    line-height: 1;
    text-align: center;
  }

  .ind4 .ind4_l .in4lt .swiperl_int .swiper-slide .sbox img {
    margin: 20px auto 10px;
    float: none;
    height: 30px;
  }

  .ind4 .ind4_l .prev_inl {
    position: absolute;
    top: 40px;
    right: 40px;
    margin: 0;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
  }

  .ind4 .ind4_l .next_inl {
    position: absolute;
    top: 40px;
    right: 10px;
    margin: 0;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
  }

  .product .top .l {
    width: 100%;
  }

  .rightfiexd {
    display: none;
  }

  .solve1_4 li>img {
    height: auto;
  }

  .about_tit {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .ind3_div1 .ind3_p1 {
    margin-top: 0;
  }

  .ind1_div video {
    display: none;
    visibility: hidden;
    opacity: 0;
  }



  .product .top .r {
    display: none;
  }

  .product .top .r2 {
    display: block;
  }


  .ind6_3 .img img {
    height: 200px;
  }

  .product .list li .img img {
    height: 200px;
  }

  .solve1_3con li a .r h6 {
    height: auto;
    text-align: justify;
  }

  .solve1_3con li a .r h4 {
    line-height: 1.8;
  }

  .solve4_5n {
    padding: 70px 0 250px;
    background: #f0f0f0 url(../Images/zz_1m.png) bottom center no-repeat;
    background-size: 100%;
  }

  .solve4_5n .slt {
    width: 100%;
    float: none;
  }

  .solve4_5n .slt .tt {
    font-size: 20px;
    padding-left: 85px;
  }

  .solve4_5n .slt .tt img {
    width: 80px;
  }

  .solve4_5n .slt .tt2 {
    font-size: 20px;
    margin: 10px 0;
  }

  .solve4_5n .slt .tc,
  .solve4_5n .slt .tc2 {
    font-size: 14px;
  }

  .solve4_5n .slt .sbt {
    margin-top: 50px;
  }

  .solve4_5n .slt .sbt .tt3 {
    font-size: 20px;
    padding-right: 185px;
  }

  .solve4_5n .slt .sbt .tt3 img {
    width: 180px;
  }

  .solve4_5n .slt a {
    font-size: 14px;
    width: 180px;
    line-height: 40px;
  }

  .case_detail .con5 {
    padding: 30px 5%;
  }

  .case_detail .con5 img {
    width: 100%;
    height: auto;
  }

  .solve3_2 .common_tit span,
  .solve3_3 .common_tit span {
    margin-right: 5px;
  }

  .solve3_3 .common_tit h3,
  .solve3_2 .common_tit h3 {
    margin-bottom: 10px;
  }

  .solve3_3 .btm {
    margin-top: 10px;
  }

  .solve3_3 .wenzi {
    margin-top: 20px;
  }

  .solve3_3 .wenzi .slt {
    width: 100%;
    float: none;
  }

  .solve3_3 .wenzi .slt .stt {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
  }

  .solve3_3 .wenzi .slt .stc {
    font-size: 14px;
    text-align: center;
  }

  .solve3_3 .wenzi .srt {
    width: 100%;
    float: none;
    margin-top: 0;
    padding-top: 15px;
  }

  .solve4_3 .abtn .ab_a {
    width: 100%;
    display: block;
    margin: 0;
    padding: 10px 0;
  }

  .solve4_3 .common_tit h3 {
    margin-bottom: 10px;
  }

  .solve4_3 .abtn {
    margin: 10px 0;
  }

  .solve4_3 .snb {
    padding: 30px 0;
    min-height: 200px;
  }

  .pro_detail .con1 .r .abtn {
    margin-top: 0;
  }

}