@font-face {
  font-family: "AVANTGA2";
  src: url("../font/AVANTGA2.woff2") format("woff2"), url("../font/AVANTGA2.woff") format("woff"), url("../font/AVANTGA2.ttf") format("truetype"), url("../font/AVANTGA2.eot") format("embedded-opentype"), url("../font/AVANTGA2.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BEBAS___";
  src: url("../font/BEBAS___.woff2") format("woff2"), url("../font/BEBAS___.woff") format("woff"), url("../font/BEBAS___.ttf") format("truetype"), url("../font/BEBAS___.eot") format("embedded-opentype"), url("../font/BEBAS___.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SourceHanSansCN-Light";
  src: url("../font/SourceHanSansCN-Light.woff2") format("woff2"), url("../font/SourceHanSansCN-Light.woff") format("woff"), url("../font/SourceHanSansCN-Light.ttf") format("truetype"), url("../font/SourceHanSansCN-Light.eot") format("embedded-opentype"), url("../font/SourceHanSansCN-Light.svg") format("svg");
}
/* ----- css 三角形 ----- */
/* ----- 显示行数 ----- */
/* ----- 文字溢出显示省略号 ----- */
.textover {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* ----- 元素居中 ----- */
.textcenter {
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -moz-display: flex;
  -moz-justify-content: center;
  -moz-align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.eltext {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.topAndBottom {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
/* ----- 过度时间 ----- */
.block {
  display: block;
}
.none {
  display: none;
}
/* ----- 怪异盒模型 ----- */
.border_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
/* ----- 弹性盒模型 ----- */
.dpflex {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
}
/* ----- 清除浮动 ----- */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}
.user-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.list {
  *zoom: 1;
}
.list:before,
.list:after {
  display: table;
  line-height: 0;
  content: "";
}
.list:after {
  clear: both;
}
.list li {
  float: left;
}
#wrapper {
  overflow: hidden;
}
/* ----- 图片移入动画 ----- */
.img {
  overflow: hidden;
}
.img img {
  width: 100%;
  max-width: none;
}
.img_hover .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.img_hover:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.imgCover {
  overflow: hidden;
}
.imgCover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: .3s;
}
.imgCover:hover img {
  transform: scale(1.05);
}
.marginRight:nth-last-child(1) {
  margin-right: 0;
}
.evenFr:nth-child(even) {
  float: right;
}
/* ----- 分页 ----- */
#page {
  text-align: center;
  padding: 40px 0;
  padding-bottom: 0;
}
#page .active {
  background-color: #0668cd;
  color: #fff;
}
#page .prev,
#page .next {
  width: 103px;
  margin: 0 40px;
}
#page a {
  display: inline-block;
  background-color: #e2e2e2;
  line-height: 36px;
  min-width: 37px;
  height: 36px;
  margin: 0 3px;
}
#page a:hover {
  color: #fff;
  background-color: #0668cd;
}
/* ----- 浮窗 ----- */
.side_callem {
  position: fixed;
  width: 78px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
}
.side_callem ul li {
  text-align: center;
  position: relative;
}
.side_callem ul li .show_con {
  background: #fff;
  border: solid 1px #ddd;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transform: translateX(100%);
  opacity: 0;
  white-space: nowrap;
}
.side_callem ul li .show_con img {
  max-width: none;
}
.side_callem ul li .show_con strong {
  color: #0668cd;
  font-size: 20px;
}
.side_callem ul li:hover a {
  background: #0668cd;
}
.side_callem ul li:hover a i {
  color: #fff;
}
.side_callem ul li:hover a span {
  color: #fff;
}
.side_callem ul li:hover .show_con {
  transform: translateX(-100%);
  opacity: 1;
}
.side_callem ul li a {
  display: block;
  width: 78px;
  height: 78px;
  background: #fff;
  position: relative;
  border: 1px solid #e0e0e0;
  margin-top: -1px;
  z-index: 99;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.side_callem ul li i {
  display: block;
  font-size: 30px;
  line-height: 30px;
  padding: 13px 0 5px;
  color: #333;
}
.side_callem ul li span {
  color: #666;
}
/*--------------------------分割------------------------------------------*/
/* ----- 标题 ----- */
.main_tit {
  text-align: center;
  padding: 0 0 50px 0;
}
.main_tit h2 {
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 2.4px;
  color: #0668cd;
  font-weight: bold;
}
.main_tit .tit_p {
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 1.5px;
  padding-top: 15px;
  color: #333333;
}
.main_tit .des {
  max-width: 1189px;
  margin: 0 auto;
  margin-top: 55px;
}
.main_tit .des p {
  color: #333333;
}
.btn {
  display: block;
  text-align: center;
  cursor: pointer;
  width: 130px;
  height: 35px;
  line-height: 35px;
  border-radius: 17.5px;
  border: solid 1px #939393;
  color: #333333;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.btn i {
  color: #333;
  font-size: 24px;
  vertical-align: middle;
  padding-left: 10px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.btn:hover {
  background-color: #2189f4;
  border: solid 1px #2189f4;
  color: #fff;
}
.btn:hover i {
  color: #fff;
  padding-left: 15px;
}
.btn_ {
  display: block;
  text-align: center;
  cursor: pointer;
  width: 130px;
  line-height: 32px;
  color: #fff;
  height: 32px;
  background-color: #0668cd;
}
.bgf8 {
  background: #f8f8f8;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.w1560 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  *zoom: 1;
}
.w1560:before,
.w1560:after {
  display: table;
  line-height: 0;
  content: "";
}
.w1560:after {
  clear: both;
}
.padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
header .head_top {
  height: 40px;
  background-color: #151515;
  line-height: 40px;
}
header .head_top .h_t_left span {
  color: #ffffff;
}
header .head_top .h_t_left li {
  padding: 0 5px;
}
header .head_top .h_t_left li a {
  color: #ffffff;
  opacity: 0.5;
}
header .head_top .h_t_left li a:hover {
  opacity: 1;
}
header .head_top .h_t_right .call {
  padding-right: 70px;
}
header .head_top .h_t_right .call span {
  color: #ffffff;
  opacity: 0.5;
}
header .head_top .h_t_right .call strong {
  font-size: 18px;
  font-style: italic;
  color: #ffffff;
  font-family: "Airal";
}
header .head_top .h_t_right .line {
  width: 1px;
  height: 10px;
  background-color: #ffffff;
  opacity: 0.5;
  margin: 15px 20px;
}
header .head_top .h_t_right li i {
  color: #fff;
  vertical-align: -1px;
  padding-right: 3px;
}
header .head_top .h_t_right li span {
  color: #ffffff;
  opacity: 0.5;
}
header .head_inner {
  padding: 35px 0;
  background: #fff;
  left: 0;
}
header .head_inner .head_logo img {
  height: 55px;
}
header .head_inner .head_txt {
  padding-left: 35px;
}
header .head_inner .head_txt h2 {
  font-size: 26px;
  line-height: 24px;
  letter-spacing: 1.3px;
  color: #0668cd;
  font-weight: bold;
  padding: 5px 0 3px;
}
header .head_inner .head_txt p {
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #333333;
}
header .head_inner nav {
  padding-top: 10px;
}
header .head_inner nav li:nth-last-child(1) a {
  margin-right: 0;
}
header .head_inner nav li:hover a {
  background-color: #0668cd;
  border-radius: 10px;
  color: #fff;
}
header .head_inner nav .active a {
  background-color: #0668cd;
  border-radius: 10px;
  color: #fff;
}
header .head_inner nav a {
  margin-right: 5px;
  font-size: 16px;
  display: block;
  padding: 5px 20px;
  color: #333333;
  line-height: 22px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .head_inner .search_box {
  width: 240px;
  height: 39px;
  border-radius: 19.5px;
  border: solid 1px #dddddd;
  margin-top: 8px;
  margin-left: 5px;
}
header .head_inner .search_box input {
  float: left;
  height: 100%;
  width: 80%;
  text-indent: 20px;
}
header .head_inner .search_box button {
  width: 20%;
  float: left;
  height: 100%;
  cursor: pointer;
}
header .head_inner .menu_box {
  height: 50px;
  display: none;
  float: right;
  cursor: pointer;
  align-items: center;
  position: relative;
  z-index: 99999;
}
header .head_inner .menu_box .menu_btn{
  position: relative;
}
header .head_inner .menu_box .menu_btn:after{
  content: "导航";
  position: absolute;
  right: calc(100% + 15px);
  top: 0;
  bottom: 0;
  margin: auto;
  color: #333;
  font-size: 16px;
  white-space: nowrap;
}
header .head_inner .menu_box .menu_btn span {
  display: block;
  width: 40px;
  border-radius: 10px;
  height: 3px;
  background: #000;
  margin: 10px 0 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
header .head_inner .menu_box .menu_show span {
  background: #fff;
}
header .head_inner .menu_box .menu_show span:nth-child(1) {
  transform: matrix(1, 0, 0, 1, 0, 15) rotate(45deg);
}
header .head_inner .menu_box .menu_show span:nth-child(2) {
  opacity: 0;
}
header .head_inner .menu_box .menu_show span:nth-child(3) {
  transform: matrix(1, 0, 0, 1, 0, -12) rotate(-45deg);
}
footer {
  background-color: #1e1c1c;
  padding-top: 100px;
}
footer .footLeft {
  float: left;
}
footer .footLeft .foot_logo img {
  height: 61px;
}
footer .footLeft .foot_logo h2 {
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #ffffff;
  padding: 10px 0 30px;
}
footer .footLeft .foot_wx {
  *zoom: 1;
}
footer .footLeft .foot_wx:before,
footer .footLeft .foot_wx:after {
  display: table;
  line-height: 0;
  content: "";
}
footer .footLeft .foot_wx:after {
  clear: both;
}
footer .footLeft .foot_wx > div {
  float: left;
  text-align: center;
  margin-right: 30px;
}
footer .footLeft .foot_wx > div:nth-child(2) {
  margin-right: 0;
}
footer .footLeft .foot_wx p {
  padding-top: 10px;
}
footer .footLeft .foot_wx .img {
  width: 100px;
  height: 100px;
}
footer .footLeft .foot_positi {
  padding-top: 30px;
}
footer .footLeft .foot_positi p {
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #ffffff;
  opacity: 0.6;
}
footer .footRight {
  float: right;
}
footer .footRight .box {
  float: left;
  margin-left: 130px;
}
footer .footRight .box h6 {
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 20px;
}
footer .footRight .box li a {
  color: #ffffff;
  opacity: 0.3;
  line-height: 30px;
}
footer .footRight .box li a:hover {
  opacity: .8;
}
footer .copyRight {
  padding: 10px;
  border-top: solid 1px #292828;
  margin-top: 70px;
}
#banner .banner_tab {
  height: 700px;
}
@media (max-width: 1600px) {
  #banner .banner_tab {
    height: 500px;
  }
}
#banner .banner_tab .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.banner_inner {
  display: block;
  height: 500px;
  background-size: cover;
  background-position: center;
}
.idx .idx_one {
  padding: 120px 0;
  padding-bottom: 240px;
}
.idx .idx_one .list {
  padding-top: 50px;
}
.idx .idx_one .list li {
  width: 23.9%;
  height: 122px;
  position: relative;
  border-radius: 100px;
  margin-left: -5%;
  text-align: center;
}
.idx .idx_one .list li:hover .bg_img {
  opacity: 1;
}
.idx .idx_one .list li:hover .box em {
  color: #0668cd;
}
.idx .idx_one .list li .bg_img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}
.idx .idx_one .list li .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx .idx_one .list li i {
  margin-top: 35px;
  display: block;
}
.idx .idx_one .list li::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  right: 0;
  border-radius: 100px;
  top: 0;
  background: url(../images/icon-after.png) no-repeat right;
  z-index: 9;
}
.idx .idx_one .list li .box {
  position: relative;
  z-index: 9;
  margin-left: 5%;
}
.idx .idx_one .list li .box .line {
  display: block;
  width: 1px;
  height: 30px;
  background-color: #000000;
  opacity: 0.3;
  margin: 55px auto 15px;
}
.idx .idx_one .list li .box em {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1.2px;
  color: #333333;
}
.idx .idx_one .list li .box p {
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #000000;
  padding-top: 3px;
}
.idx .idx_one .list .itme1 {
  margin-left: 0;
  z-index: 9;
  background-color: #1d1d1d;
}
.idx .idx_one .list .itme1 .box {
  margin-left: 0;
}
.idx .idx_one .list .itme2 {
  z-index: 8;
  background-color: #292929;
}
.idx .idx_one .list .itme3 {
  z-index: 7;
  background-color: #333333;
}
.idx .idx_one .list .itme4 {
  z-index: 6;
  background-color: #3d3d3d;
}
.idx .idx_one .list .itme5 {
  z-index: 5;
  background-color: #494949;
}
.idx .idx_one .list .itme5::after {
  background: none;
}
.idx .tit_and_nav {
  *zoom: 1;
}
.idx .tit_and_nav:before,
.idx .tit_and_nav:after {
  display: table;
  line-height: 0;
  content: "";
}
.idx .tit_and_nav:after {
  clear: both;
}
.idx .tit_and_nav .tit {
  position: relative;
  margin: 0 0 5px;
}
.idx .tit_and_nav .tit::after {
  content: "";
  width: 122px;
  height: 110px;
  position: absolute;
  left: -70px;
  top: -44px;
  background: url(../images/tit-bg.png) no-repeat;
}
.idx .tit_and_nav .tit h4 {
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 30px;
  color: #0668cd;
  font-weight: bold;
  padding: 0 0 0 52px;
}
.idx .tit_and_nav .tit h4::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: #0668cd;
  margin: 15px 0 19px;
}
.idx .tit_and_nav .tit h4 i {
  position: absolute;
  top: -8px;
  left: 0;
  color: #154a9a;
  font-family: Arial;
  width: 45px;
  height: 45px;
  text-align: center;
  text-indent: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: normal;
  background: url(../images/idx-title.png) left center no-repeat;
  background-size: auto 100%;
}
.idx .tit_and_nav .tit h4 span {
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1.2px;
  color: #333333;
}
.idx .tit_and_nav nav {
  margin-left: 55px;
}
.idx .tit_and_nav nav li {
  margin: 0 5px;
}
/* .idx .tit_and_nav nav .active {
  background-color: #0668cd;
}
.idx .tit_and_nav nav .active a {
  color: #ffff;
} */
.idx .tit_and_nav nav li:hover {
  background-color: #0668cd;
}
.idx .tit_and_nav nav li:hover a {
  color: #ffff;
}
.idx .tit_and_nav nav a {
  line-height: 34px;
  height: 34px;
  padding: 0 15px;
  font-size: 16px;
  color: #333333;
}
.idx .tit_and_nav .more {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.8px;
  color: #333333;
}
.idx .idx_two {
  background-color: #f5f5f5;
}
.idx .idx_two .prod_list {
  *zoom: 1;
}
.idx .idx_two .prod_list:before,
.idx .idx_two .prod_list:after {
  display: table;
  line-height: 0;
  content: "";
}
.idx .idx_two .prod_list:after {
  clear: both;
}
.idx .idx_two .prod_list li {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.idx .idx_two .prod_list li:hover {
  box-shadow: rgba(0, 0, 0, 0.267) 0 0 8px;
  background-size: 110%;
}
@media (max-width: 1599px){
  .idx .idx_two .prod_list li:hover {
    background-size: auto 110%;
  }
}
.idx .idx_two .prod_list li:hover .btn {
  background-color: #2189f4;
  border: solid 1px #2189f4;
  color: #fff;
}
.idx .idx_two .prod_list li:hover .btn i {
  color: #fff;
  padding-left: 15px;
}
.idx .idx_two .prod_list .item1 {
  float: left;
  width: 50%;
  height: 550px;
  background-position: center;
  /* background-size: cover; */
  background-size: 100%;
}
@media (max-width: 1599px){
  .idx .idx_two .prod_list .item1 {
    background-size: auto 100%;
    background-position: right;
  }
}
@media (max-width: 768px){
  .idx .idx_two .prod_list .item1 {
    background-size: cover;
  }
}
.idx .idx_two .prod_list .item1 .txt {
  padding: 70px 0 0 50px;
}
.idx .idx_two .prod_list .item1 .txt h5 {
  font-size: 45px;
  letter-spacing: 2.3px;
  color: #2189f4;
  padding-bottom: 20px;
}
.idx .idx_two .prod_list .item1 .txt h5 span {
  font-size: 30px;
  line-height: 48px;
  letter-spacing: 1.5px;
  color: #000000;
}
.idx .idx_two .prod_list .item1 .txt p {
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #000000;
}
.idx .idx_two .prod_list .item1 .txt p strong {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #ff2d2d;
}
.idx .idx_two .prod_list .item2 {
  width: 49.3%;
  float: right;
  height: 275px;
  background-color: #ffffff;
  margin-bottom: .7%;
  padding: 0 80px;
}
.idx .idx_two .prod_list .item2 .txt,
.idx .idx_two .prod_list .item2 .img {
  width: 50%;
  float: left;
  height: 100%;
}
.idx .idx_two .prod_list .item2 .txt h4 {
  font-size: 26px;
  padding: 90px 0 40px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.idx .idx_two .prod_list .item2 .img {
  position: relative;
}
.idx .idx_two .prod_list .item2 .img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}
.idx .idx_two .prod_list .item2:hover .img img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.idx .idx_two .prod_list .item3,
.idx .idx_two .prod_list .item4 {
  float: left;
  width: 24.3%;
  height: 263px;
  background-color: #ffffff;
  margin-left: .7%;
}
.idx .idx_two .prod_list .item3 .txt,
.idx .idx_two .prod_list .item4 .txt {
  padding: 40px 20px 20px;
}
.idx .idx_two .prod_list .item3 .txt h4,
.idx .idx_two .prod_list .item4 .txt h4 {
  font-size: 24px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}
.idx .idx_two .prod_list .item3 .img,
.idx .idx_two .prod_list .item4 .img {
  width: 100%;
  height: 175px;
  position: relative;
}
.idx .idx_two .prod_list .item3 .img img,
.idx .idx_two .prod_list .item4 .img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}
.idx .idx_two .prod_list .item3:hover .img img,
.idx .idx_two .prod_list .item4:hover .img img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
.idx .idx_three .chushou {
  *zoom: 1;
}
.idx .idx_three .chushou:before,
.idx .idx_three .chushou:after {
  display: table;
  line-height: 0;
  content: "";
}
.idx .idx_three .chushou:after {
  clear: both;
}
.idx .idx_three .chushou .itme1 {
  width: 33%;
  height: 550px;
  float: left;
  background-position: center;
  /* background-size: cover; */
  background-size: 100%;
  transition: .3s;
}
@media (max-width: 1599px){
  .idx .idx_three .chushou .itme1 {
    background-size: auto 100%;
    background-position: right;
  }
}
@media (max-width: 575px){
  .idx .idx_three .chushou .itme1 {
    background-size: 100%;
  }
}
.idx .idx_three .chushou .itme1:hover{
  background-size: 110%;
}
@media (max-width: 1599px){
  .idx .idx_three .chushou .itme1:hover{
    background-size: auto 110%;
  }
}
@media (max-width: 575px){
  .idx .idx_three .chushou .itme1:hover{
    background-size: 110%;
  }
}
.idx .idx_three .chushou .itme1 .txt {
  text-align: right;
  padding: 70px 35px;
}
.idx .idx_three .chushou .itme1 .txt h4 {
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 2.3px;
  color: #2189f4;
}
.idx .idx_three .chushou .itme1 .txt h4 span {
  font-weight: normal;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: 1.5px;
  color: #333;
}
.idx .idx_three .chushou .itme1 .txt p {
  font-size: 22px;
  line-height: 48px;
  letter-spacing: 1.1px;
  color: #333;
  opacity: 0.8;
}
.idx .idx_three .chushou .itme1 .txt .line {
  float: right;
  width: 57px;
  height: 4px;
  margin-top: 15px;
  background-color: #2189f4;
}
.idx .idx_three .chushou li {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  width: 33%;
  float: left;
  height: 270px;
  background-color: #f7f7f7;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.idx .idx_three .chushou li:hover {
  box-shadow: rgba(0, 0, 0, 0.267) 0 0 8px;
}
.idx .idx_three .chushou li:hover .btn {
  background-color: #2189f4;
  border: solid 1px #2189f4;
  color: #fff;
}
.idx .idx_three .chushou li:hover .btn i {
  color: #fff;
  padding-left: 15px;
}
.idx .idx_three .chushou li .img {
  width: 50%;
  float: left;
  height: 100%;
  position: relative;
}
.idx .idx_three .chushou li .img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: .3s;
}
.idx .idx_three .chushou li .text {
  width: 50%;
  text-align: right;
  float: right;
}
.idx .idx_three .chushou li .text h4 {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 26px;
  line-height: 45px;
  color: #333333;
  font-weight: bold;
  padding: 60px 0 0;
}
.idx .idx_three .chushou li .text p {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 20px;
  color: #333333;
}
.idx .idx_three .chushou li .text .btn {
  margin-top: 50px;
  float: right;
}
.idx .idx_three .chushou .itme2,
.idx .idx_three .chushou .itme3,
.idx .idx_three .chushou .itme4,
.idx .idx_three .chushou .itme5 {
  padding: 0 30px;
}
.idx .idx_three .chushou .itme2,
.idx .idx_three .chushou .itme3 {
  margin-left: .5%;
  margin-bottom: .5%;
}
.idx .idx_three .chushou .itme4,
.idx .idx_three .chushou .itme5 {
  margin-left: .5%;
}
.idx .idx_three .chushou .itme2:hover .img img{
  transform: translate(-50%, -50%) scale(1.1);
}
.idx .idx_four {
  background-color: #f5f5f5;
}
.idx .idx_four .cpt li {
  width: 49%;
  float: left;
  background-color: #ffffff;
}
.idx .idx_four .cpt li .img img{
  transition: .3s;
}
.idx .idx_four .cpt li:hover .img img{
  transform: scale(1.05);
}
.idx .idx_four .cpt li:nth-child(even) {
  float: right;
}
.idx .idx_five .shuangwu .itme1 {
  width: 34.8%;
  height: 550px;
  float: left;
  background-position: center;
  // background-size: cover;
  background-size: 100%;
  transition: .3s;
}

.idx .idx_five .shuangwu .itme1:hover{
    background-size: 110%;
}
.idx .idx_five .shuangwu .itme1 .txt {
  text-align: right;
  padding: 70px 35px;
}
.idx .idx_five .shuangwu .itme1 .txt h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 1.8px;
  color: #ff2d2d;
}
.idx .idx_five .shuangwu .itme1 .txt p {
  width: 301px;
  float: right;
  clear: both;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 1.2px;
  color: #333333;
}
.idx .idx_five .shuangwu .itme1 .txt .line {
  float: right;
  width: 57px;
  height: 4px;
  margin: 15px 0;
  background-color: #2189f4;
}
.idx .idx_five .shuangwu li {
  position: relative;
}
.idx .idx_five .shuangwu li:hover .text {
  transform: scale(1);
}
.idx .idx_five .shuangwu li .img {
  width: 100%;
  height: 100%;
}
.idx .idx_five .shuangwu li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.idx .idx_five .shuangwu li .text {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(33, 138, 244, 0.808);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-align: center;
  transform: scale(0);
}
.idx .idx_five .shuangwu li .text .box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.idx .idx_five .shuangwu li .text i {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 2px #fff solid;
  line-height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
}
.idx .idx_five .shuangwu li .text p {
  font-size: 18px;
  color: #ffffff;
  padding: 0 10px;
  padding-top: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx .idx_five .shuangwu .itme2,
.idx .idx_five .shuangwu .itme4 {
  width: 21%;
  float: left;
  height: 270px;
  background-color: #2189f4;
  margin: 0 .6%;
}
.idx .idx_five .shuangwu .itme3,
.idx .idx_five .shuangwu .itme5 {
  margin-bottom: .6%;
  float: left;
  width: 43%;
  height: 270px;
  background-color: #b63c3c;
}
.idx .idx_abt {
  background: url(../images/idx-bg2.jpg) repeat-x center top;
}
.idx .idx_abt .main_tit h2 {
  color: #fff;
}
.idx .idx_abt .main_tit .tit_p {
  color: #fff;
}
.idx .idx_abt .main_tit .des {
  margin-top: 25px;
}
.idx .idx_abt .main_tit .des .line {
  display: block;
  margin: 15px auto;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  opacity: 0.5;
}
.idx .idx_abt .main_tit .des h4 {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 2px;
}
.idx .idx_abt .main_tit .des p {
  color: #ffffff;
}
.idx .idx_abt .idx_abt_tab .swiper-slide {
  width: 32.5%;
  margin-right: 1.2%;
  position: relative;
}
.idx .idx_abt .idx_abt_tab .swiper-slide:nth-last-child(1) {
  margin-right: 0;
}
.idx .idx_abt .idx_abt_tab .swiper-slide:hover .txt {
  height: 100%;
}
.idx .idx_abt .idx_abt_tab .swiper-slide:hover h4 {
  padding-top: 70px;
}
.idx .idx_abt .idx_abt_tab .swiper-slide .txt {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 64px;
  background: rgba(0, 0, 0, 0.712);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.idx .idx_abt .idx_abt_tab .swiper-slide .txt h4 {
  font-size: 24px;
  line-height: 64px;
  letter-spacing: 1.2px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  color: #ffffff;
}
.idx .idx_abt .idx_abt_tab .swiper-slide .txt p {
  color: #b6b6b6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx .idx_abt .idx_abt_tab .swiper-slide .txt span {
  font-size: 26px;
  color: #b6b6b6;
  margin-top: 40px;
  display: block;
}
.idx .idx_six {
  padding: 30px 0 120px;
}
.idx .idx_six .nav_left {
  float: left;
  width: 33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #dddddd;
}
.idx .idx_six .nav_left li {
  height: 225px;
  border-bottom: solid 1px #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 40px;
  cursor: pointer;
}
.idx .idx_six .nav_left li h6 {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 24px;
  padding: 55px 0 8px 0;
}
.idx .idx_six .nav_left li p {
  font-size: 16px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #333333;
}
.idx .idx_six .nav_left li .iconfont {
  font-size: 24px;
  display: block;
  margin-top: 45px;
}
.idx .idx_six .nav_left .active {
  position: relative;
  background: url(../images/active-bg.jpg) center;
}
.idx .idx_six .nav_left .active h6,
.idx .idx_six .nav_left .active p,
.idx .idx_six .nav_left .active i {
  color: #fff;
}
.idx .idx_six .nav_left .active::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 96px;
  display: block;
  border-width: 15px;
  border-color: transparent transparent transparent #0668cd;
  border-style: dashed dashed dashed solid;
  width: 0;
  height: 0;
  overflow: hidden;
}
.idx .idx_six .nav_left li:nth-last-child(1) {
  border-bottom: none;
}
.idx .idx_six .show_right {
  float: right;
  width: 67%;
}
.idx .idx_six .show_right .txt {
  padding: 0 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.idx .idx_six .show_right .txt h4 {
  font-size: 24px;
  padding-top: 40px;
  color: #0668cd;
}
.idx .idx_six .show_right .txt h4::after {
  content: "";
  display: block;
  margin: 20px 0;
  width: 41px;
  height: 2px;
  background-color: #0668cd;
}
.idx .idx_six .show_right .txt .act {
  word-spacing: 50px;
}
.idx .idx_six .show_right .txt .act span {
  font-size: 16px;
  word-spacing: 0;
}
.idx .idx_seven {
  background-color: #f5f5f5;
  padding-bottom: 50px;
}
.idx .idx_seven .list_ {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.idx .idx_seven .list_ li {
  height: 125px;
  background-color: #ffffff;
  box-shadow: 0px 3px 15px 0px rgba(213, 210, 210, 0.822);
  width: 18%;
  margin-bottom: 2.5%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
}
.idx .idx_seven .list_ li .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.idx .idx_seven .list_ li:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.idx .idx_seven .list_ li:hover {
  box-shadow: 0px 3px 0px 0px rgba(213, 210, 210, 0);
}
.idx .idx_seven .list_ li:nth-child(5n) {
  margin-right: 0;
}
.idx .idx_eight .news_left {
  width: 46%;
  float: left;
  position: relative;
}
.idx .idx_eight .news_left::after {
  content: "";
  position: absolute;
  width: 842px;
  height: 319px;
  background: url(../images/news_after.jpg) no-repeat center;
  left: -180px;
  top: 180px;
  z-index: -1;
}
.idx .idx_eight .news_left .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: solid 1px #2189f4;
  opacity: 1;
  background: transparent;
}
.idx .idx_eight .news_left .swiper-pagination-bullet-active {
  background: #0668cd;
}
.idx .idx_eight .news_left .swiper-pagination {
  text-align: right;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 25px;
}
.idx .idx_eight .news_right {
  float: right;
  width: 51%;
}
.idx .idx_eight .news_right li {
  background-color: #f2f2f2;
  border: solid 2px #f2f2f2;
  margin-bottom: 35px;
  padding: 0 35px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.idx .idx_eight .news_right li:hover {
  border: solid 2px #0668cd;
  background-color: #fff;
}
.idx .idx_eight .news_right li:hover .text h3 {
  color: #0668cd;
}
.idx .idx_eight .news_right li:hover .text .right_time em {
  color: #0668cd;
}
.idx .idx_eight .news_right .text {
  padding: 28.5px 0;
  *zoom: 1;
}
.idx .idx_eight .news_right .text:before,
.idx .idx_eight .news_right .text:after {
  display: table;
  line-height: 0;
  content: "";
}
.idx .idx_eight .news_right .text:after {
  clear: both;
}
.idx .idx_eight .news_right .text .right_time em {
  color: #333;
}
.idx .idx_eight .news_right .text .right_time time {
  color: #999999;
}
.idx .idx_eight .news_right .text .act {
  margin-left: 60px;
}
.idx .idx_eight .news_right .text .act h3 {
  font-size: 24px;
  color: #333;
}
.idx .idx_eight .news_right .text .act p {
  color: #333;
  opacity: 0.5;
}
.idx .idx_eight .text {
  padding: 40px 10px;
}
.idx .idx_eight .text .right_time {
  width: 60px;
  text-align: center;
}
.idx .idx_eight .text .right_time em {
  font-size: 48px;
  line-height: 48px;
  color: #ffffff;
  padding-bottom: 10px;
  display: block;
}
.idx .idx_eight .text .right_time time {
  color: #ffffff;
}
.idx .idx_eight .text .act {
  float: left;
  width: 70%;
  margin-left: 35px;
}
@media (max-width:767px){
  .idx .idx_eight .text .act{
    margin-left: 20px;
  }
  .idx .idx_eight .news_left::after{
    height: 380px;
  }
}
.idx .idx_eight .text .act h3 {
  font-size: 24px;
  color: #ffffff;
  padding-bottom: 10px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.idx .idx_eight .text .act p {
  color: #ffffff;
  opacity: 0.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.nav_det {
  padding: 18px 0;
  border-bottom: solid 1px #ccc;
}
.nav_det nav a {
  line-height: 32px;
}
.nav_det nav a:nth-last-child(1) {
  color: #0668cd;
}
.tab_box {
  position: relative;
  top: -200px;
}
.tab_box .swiper-button-next,
.tab_box .swiper-button-prev {
  background-image: none;
  text-align: center;
  line-height: 57px;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  color: #fff;
  background-color: #636363;
}
.tab_box .swiper-button-next:hover,
.tab_box .swiper-button-prev:hover {
  background-color: #0668cd;
}
.tab_box .swiper-button-prev {
  left: -80px;
}
.tab_box .swiper-button-next {
  right: -80px;
}
.case_det_two {
  background: #fff;
}
.case_det_two h6 {
  font-size: 30px;
  padding-bottom: 50px;
}
.case_det_two .case_foot .swiper-slide {
  text-align: center;
}
.case_det_two .case_foot .swiper-slide .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.case_det_two .case_foot .swiper-slide:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.case_det_two .case_foot .swiper-slide .img {
  border: solid 1px #e9e9e9;
  height: 300px;
}
.case_det_two .case_foot .swiper-slide p {
  padding-top: 20px;
}
.case_det {
  background: #f8f8f8;
}
.case_det .atc {
  padding-bottom: 70px;
}
.case_det .atc h2 {
  font-size: 30px;
}
.case_det .atc time {
  font-size: 14px;
  color: #999999;
  display: block;
  padding: 10px 0 30px 0;
}
.case_det .case_det_list li {
  *zoom: 1;
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 45px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.case_det .case_det_list li .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.case_det .case_det_list li:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.case_det .case_det_list li:before,
.case_det .case_det_list li:after {
  display: table;
  line-height: 0;
  content: "";
}
.case_det .case_det_list li:after {
  clear: both;
}
.case_det .case_det_list li .img {
  width: 45%;
  height: 365px;
  float: left;
}
.case_det .case_det_list li .txt {
  width: 50%;
  height: 365px;
  float: right;
}
.case_det .case_det_list li .txt h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 30px;
  color: #0668cd;
}
.prodcut_sel {
  background: #f8f8f8;
}
.prodcut_sel .prd_sel_nav{
  padding: 60px 0 0;
}
.prodcut_sel .prd_sel_nav .one_box{
  z-index: 1;
}
.prodcut_sel .prd_sel_nav .one_box .list {
  text-align: center;
  background: #f8f8f8;
}
.prodcut_sel .prd_sel_nav .one_box .list .active {
  height: 100px;
  background-color: #0668cd;
  margin-top: 0;
}
.prodcut_sel .prd_sel_nav .one_box .list .active a {
  color: #fff;
  line-height: 100px;
}
.prodcut_sel .prd_sel_nav .one_box .list li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border-left: solid 2px #f8f8f8;
  width: 16.66%;
  height: 80px;
  margin-top: 20px;
  background-color: #ffffff;
}
.prodcut_sel .prd_sel_nav .one_box .list li a {
  font-size: 18px;
  line-height: 80px;
  color: #333333;
}
.prodcut_sel .prd_sel_nav .one_box .list li:nth-child(1) {
  border: 0;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box {
  padding: 15px 30px;
  background-color: #666;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box span {
  font-size: 18px;
  color: #fff;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box .num {
  font-size: 16px;
  color: #0668cd;
  margin-left: 20px;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box .num i {
  color: #0668cd;
  display: inline-block;
  transition: .3s;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box .num.active i{
  transform: rotate(-180deg);
}
.prodcut_sel .prd_sel_nav .one_box .sel_box .act {
  font-size: 16px;
  color: #fff;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box .act i {
  vertical-align: 3px;
  padding-right: 5px;
}
.prodcut_sel .prd_sel_nav .one_box .sel_box .act i img {
  margin-top: -2px;
}
.prodcut_sel .prd_sel_nav .two_box {
  margin-top: 25px;
}
.prodcut_sel .prd_sel_nav .two_box .tr {
  *zoom: 1;
  padding: 5px 0;
}
.prodcut_sel .prd_sel_nav .two_box .tr:before,
.prodcut_sel .prd_sel_nav .two_box .tr:after {
  display: table;
  line-height: 0;
  content: "";
}
.prodcut_sel .prd_sel_nav .two_box .tr:after {
  clear: both;
}
.prodcut_sel .prd_sel_nav .two_box .tr span {
  width: 125px;
  height: 40px;
  background-color: #0668cd;
  text-align: center;
  line-height: 40px;
  float: left;
  color: #fff;
  font-size: 18px;
}
.prodcut_sel .prd_sel_nav .two_box .tr .list {
  float: left;
  width: 70%;
  margin-left: 20px;
}
.prodcut_sel .prd_sel_nav .two_box .tr .list li::after {
  content: "";
  display: block;
  width: 1px;
  float: right;
  margin: 13px 35px;
  height: 13px;
  background-color: #999999;
}
.prodcut_sel .prd_sel_nav .two_box .tr .list li.active a {
  color: #0668cd;
}
.prodcut_sel .prd_sel_nav .two_box .tr .list li a {
  font-size: 18px;
  line-height: 40px;
}
.prodcut_sel .prd_sel_nav .two_box .tr .list li:nth-last-child(1)::after {
  display: none;
}
.prodcut_sel .prodcut_cont {
  background-color: #ffffff;
}
.prodcut_sel .prodcut_cont .sel_list {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%; 
}
.prodcut_sel .prodcut_cont .sel_list li {
  width: 33.33%;
  margin-bottom: 60px;
  padding: 0 1%;
  box-sizing: border-box;
}
.prodcut_sel .prodcut_cont .sel_list li .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.prodcut_sel .prodcut_cont .sel_list li:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.prodcut_sel .prodcut_cont .sel_list li .imgCover {
  height: 350px;
  border: solid 1px #ebebeb;
}
.prodcut_sel .prodcut_cont .sel_list li .txt h4 {
  font-size: 24px;
  padding: 20px 0 10px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.prodcut_sel .prodcut_cont .sel_list li .txt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.prodcut_sel .prodcut_cont .sel_list li .txt .num {
  *zoom: 1;
  margin-top: 20px;
}
.prodcut_sel .prodcut_cont .sel_list li .txt .num:before,
.prodcut_sel .prodcut_cont .sel_list li .txt .num:after {
  display: table;
  line-height: 0;
  content: "";
}
.prodcut_sel .prodcut_cont .sel_list li .txt .num:after {
  clear: both;
}
.prodcut_sel .prodcut_cont .sel_list li .txt .num em {
  font-size: 20px;
  color: #0668cd;
  padding-right: 8px;
  vertical-align: -2px;
}
.prodcut_sel .prodcut_cont .sel_list li .txt .tit {
  padding: 3px 15px;
  background-color: #f3f3f3;
  color: #0668cd;
}
.prodcut_sel .prodcut_cont .btn_ {
  width: 240px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  font-size: 18px;
}
.prodcut_sel .prodcut_cont .btn_ i {
  padding-right: 15px;
}
.prodcut_sel .prodcut_cont .btn_ i img {
  width: 18px;
  vertical-align: -2px;
}
.nav_wrap {
  border-bottom: solid 1px #ccc;
}
.nav_wrap .nav_head {
  text-align: center;
  padding: 25px 0 !important;
}
.nav_wrap .nav_head .swiper-slide {
  display: inline-block;
  width: auto;
}
.nav_wrap .nav_head .swiper-slide a {
  font-size: 16px;
  color: #333333;
}
.nav_wrap .nav_head .active a {
  border-bottom: 2px #0668cd solid;
  color: #0668cd;
  padding-bottom: 26px;
}
.common_one {
  background: #f8f8f8;
  *zoom: 1;
}
.common_one:before,
.common_one:after {
  display: table;
  line-height: 0;
  content: "";
}
.common_one:after {
  clear: both;
}
.common_one .img {
  float: left;
  width: 27%;
}
.common_one .common_list {
  width: 70%;
  float: right;
}
.common_one .common_list li {
  margin-bottom: 15px;
}
.common_one .common_list li .w {
  background-color: #f5f5f5;
  border: solid 1px #dddddd;
  padding: 13px 35px;
  *zoom: 1;
}
.common_one .common_list li .w:before,
.common_one .common_list li .w:after {
  display: table;
  line-height: 0;
  content: "";
}
.common_one .common_list li .w:after {
  clear: both;
}
.common_one .common_list li .w span {
  width: 35px;
  height: 35px;
  background-color: #333333;
  border-radius: 2px;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
  color: #ffffff;
}
.common_one .common_list li .w p {
  float: left;
  font-size: 18px;
  line-height: 35px;
  color: #333333;
  padding-left: 20px;
}
.common_one .common_list li .w i {
  font-size: 22px;
  margin-top: 6px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transform: rotate(90deg);
}
.common_one .common_list li .d {
  display: none;
  *zoom: 1;
  background-color: #ffffff;
  border: solid 1px #f5f5f5;
  padding: 30px 35px;
}
.common_one .common_list li .d:before,
.common_one .common_list li .d:after {
  display: table;
  line-height: 0;
  content: "";
}
.common_one .common_list li .d:after {
  clear: both;
}
.common_one .common_list li .d .atc {
  float: left;
  padding-left: 20px;
  max-width: 90%;
}
.common_one .common_list li .d span {
  width: 35px;
  height: 35px;
  background-color: #0668cd;
  border-radius: 2px;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
  color: #ffffff;
}
.common_one .common_list .active .w i {
  transform: rotate(-90deg);
}
.common .btn_ {
  margin: 0 auto;
  margin-top: 30px;
  width: 238px;
  height: 51px;
  line-height: 51px;
  font-size: 18px;
}
.solution_det .solution_det_con {
  max-width: 1120px;
  margin: 0 auto;
}
.solution_det .solution_det_con .vodeo_box iframe{
  width: 100%;
  height: 500px;
}

@media (max-width: 575px) {
  .solution_det .solution_det_con .vodeo_box iframe{
    width: 100%;
    height: 300px;
  }
}
.solution_det .solution_det_con .vodeo_box video {
  width: 100%;
}
.solution_det .solution_det_con .atc .btn_ {
  font-size: 24px;
  width: 131px;
  height: 50px;
  margin: 60px 0 35px 0;
  line-height: 50px;
}
.case_det_two .voide_ {
  position: relative;
}
.case_det_two .voide_::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 12;
  background-color: rgba(0, 0, 0, 0.527);
  background-image: url(../images/video_.png);
  background-repeat: no-repeat;
  background-position: center;
}
.product_list .box {
  background: #f8f8f8;
}
.product_list .box:nth-child(even) {
  background-color: #ffffff;
}
.product_list ul li {
  width: 48%;
  float: left;
  position: relative;
}
.product_list ul li .img{
  overflow: hidden;
}
.product_list ul li .img img{
  transition: .3s;
}
.product_list ul li:hover .img img{
  transform: scale(1.05);
}
.product_list ul li .num_box {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.product_list ul li:nth-child(even) {
  float: right;
}
.product_list .num_box {
  width: 190px;
  height: 90px;
  background: #ff2d2d;
  border-radius: 50%;
  padding: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.product_list .num_box .cont {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: dashed 1px #ff7a7a;
  border-radius: 50%;
}
.product_list .num_box .cont strong {
  font-size: 25px;
  font-weight: normal;
  color: #ffffff;
}
.product_list .num_box .cont span {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 5px;
  margin-left: 5px;
  color: #ffffff;
}
.product_det .sel_shopping .show_img {
  width: 47%;
  height: 500px;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.product_det .sel_shopping .show_img .small_img {
  width: 20%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  height: 500px;
  padding-right: 20px;
}
.product_det .sel_shopping .show_img .small_img .swiper-slide {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  border: solid 1px #dddddd;
  height: 94px;
  overflow: hidden;
  overflow: visible;
}
.product_det .sel_shopping .show_img .small_img .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.product_det .sel_shopping .show_img .small_img .swiper-slide-thumb-active {
  position: relative;
  border: solid 1px #0668cd;
}
.product_det .sel_shopping .show_img .small_img .swiper-slide-thumb-active::after {
  border-width: 10px;
  border-color: transparent transparent transparent #0668cd;
  border-style: dashed dashed dashed solid;
  width: 0;
  height: 0;
  overflow: hidden;
  display: block;
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -10px;
}
.product_det .sel_shopping .show_img .show-img {
  width: 78%;
  border: solid 1px #999999;
  float: right;
}
.product_det .sel_shopping .show_img .show-img .gallery-top {
  height: 500px;
}
.product_det .sel_shopping .show_img .show-img .swiper-slide {
  overflow: hidden;
}
.product_det .sel_shopping .show_img .show-img .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.product_det .sel_shopping .sel_txt {
  width: 49%;
  float: right;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.product_det .sel_shopping .sel_txt h4 {
  font-size: 24px;
  line-height: 1;
}
.product_det .sel_shopping .sel_txt .det {
  line-height: 1.3;
  padding: 15px 0 25px;
}
.product_det .sel_shopping .sel_txt .box_money span {
  font-size: 16px;
}
.product_det .sel_shopping .sel_txt .box_money strong i {
  font-size: 23px;
  color: red;
}
.product_det .sel_shopping .sel_txt .box_money strong em {
  font-size: 37px;
  color: red;
}
.product_det .sel_shopping .sel_txt .sel_box {
  background: #eeeeee;
  padding: 20px;
  padding-top: 0;
  margin: 25px 0 20px 0;
}
.product_det .sel_shopping .sel_txt .sel_box .active span {
  color: #0066cc;
}
.product_det .sel_shopping .sel_txt .sel_box .active .tr i {
  padding: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  background-clip: content-box;
  background-color: #0066cc;
  border: solid 1px #0066cc;
}
.product_det .sel_shopping .sel_txt .sel_box .active .tr p {
  color: #0066cc;
}
.product_det .sel_shopping .sel_txt .sel_box li {
  cursor: pointer;
  padding-top: 15px;
}
.product_det .sel_shopping .sel_txt .sel_box li span {
  font-size: 16px;
  color: #333333;
  display: block;
  margin-bottom: 5px;
}
.product_det .sel_shopping .sel_txt .sel_box li .tr {
  *zoom: 1;
}
.product_det .sel_shopping .sel_txt .sel_box li .tr:before,
.product_det .sel_shopping .sel_txt .sel_box li .tr:after {
  display: table;
  line-height: 0;
  content: "";
}
.product_det .sel_shopping .sel_txt .sel_box li .tr:after {
  clear: both;
}
.product_det .sel_shopping .sel_txt .sel_box li .tr i {
  float: left;
  margin-right: 10px;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background-color: #ffffff;
  border: solid 1px #2e2e2e;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.product_det .sel_shopping .sel_txt .sel_box li .tr p {
  float: left;
  line-height: 1;
}
.product_det .sel_shopping .sel_txt .time_box span {
  font-size: 16px;
}
.product_det .sel_shopping .sel_txt .time_box em {
  font-size: 16px;
  color: #0668cd;
}
.product_det .sel_shopping .sel_txt .tit h6 {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
}
.product_det .sel_shopping .sel_txt .tit .list_tit {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}
.product_det .sel_shopping .sel_txt .tit .list_tit li {
  width: 155px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  border: solid 1px #999999;
  margin: 0 10px 10px 0;
}
.product_det .sel_shopping .sel_txt .tit .list_tit li:hover {
  border: solid 1px #0066cc;
  color: #0066cc;
}
.product_det .sel_shopping .sel_txt .call_box {
  padding-top: 30px;
}
.product_det .sel_shopping .sel_txt .call_box .btn_ {
  background-color: #333333;
  float: left;
  margin-right: 50px;
}
.product_det .sel_shopping .sel_txt .call_box .num {
  float: left;
}
.product_det .sel_shopping .sel_txt .call_box .num i {
  padding-right: 10px;
}
.product_det .sel_shopping .sel_txt .call_box .num strong a {
  font-size: 36px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  color: #0668cd;
}
.product_det .prd_content {
  padding-bottom: 80px;
}
.product_det .prd_content .cont_nav {
  background-color: #ffffff;
  position: relative;
  z-index: 99999;
}
.product_det .prd_content .cont_nav ul .active {
  background-color: #0668cd;
  color: #fff;
}
.product_det .prd_content .cont_nav ul li {
  cursor: pointer;
  width: 190px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  color: #333333;
  font-size: 24px;
  margin: 0 4px 0 0;
  background: #eee;
}
.product_det .prd_content .cont_nav ul li:last-child {
  margin: 0;
}
.product_det .prd_content .content {
  border: solid 1px #ebebeb;
  border-top: none;
  padding: 80px;
  text-align: center;
}
.product_det .prd_content .content img {
  width: 100%;
  max-width: 1260px;
}
.about .about_one .tit h3 {
  font-size: 50px;
  line-height: 55px;
  color: #0668cd;
  font-family: "AVANTGA2";
}
.about .about_one .tit h3 span {
  font-size: 60px;
  line-height: 55px;
  font-family: "AVANTGA2";
  color: #0668cd;
}
.about .about_one .tit h6 {
  font-size: 30px;
  padding: 20px 0 30px;
}
.about .about_one .tit .line {
  width: 25px;
  height: 2px;
  background-color: #0668cd;
}
.about .about_one .txt {
  width: 892px;
}
.about .about_one .txt h4 {
  font-size: 24px;
  padding-bottom: 40px;
}
.about .about_one .txt .atc p {
  line-height: 30px;
}
.about .img_list ul {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.about .img_list ul li {
  width: 32.5%;
  position: relative;
}
.about .img_list ul li:hover .text {
  opacity: 1;
}
.about .img_list ul li:hover .text p::after,
.about .img_list ul li:hover .text p::before {
  width: 60px;
}
.about .img_list ul li .text {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.582);
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.about .img_list ul li .text p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 16px;
  line-height: 50px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #ffffff;
}
.about .img_list ul li .text p::after,
.about .img_list ul li .text p::before {
  content: "";
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  opacity: 0.7;
}
.about .about_two .about_two_tab {
  background-color: #ffffff;
  padding: 60px;
}
.about .about_two .about_two_tab .swiper-slide .img {
  width: 55%;
  height: 460px;
  float: left;
}
.about .about_two .about_two_tab .swiper-slide .txt {
  float: right;
  height: 460px;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  width: 45%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 60px;
}
.about .about_two .about_two_tab .swiper-slide .txt h5 {
  font-size: 30px;
  color: #0668cd;
}
.about .about_two .about_two_tab .swiper-slide .txt .atc {
  padding: 40px 0 50px;
}
.about .about_two .about_two_tab .swiper-pagination {
  text-align: right;
  padding: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 30px;
  font-family: "BEBAS___";
  color: #666666;
}
.about .about_two .about_two_tab .swiper-pagination .swiper-pagination-current {
  font-size: 60px;
  color: #0668cd;
  font-family: "BEBAS___";
}
.about .about_two .about_two_tab .swiper-pagination .swiper-pagination-total {
  font-size: 30px;
  font-family: "BEBAS___";
  color: #666666;
}
.about .about_two .about_two_tab .swiper-button-next,
.about .about_two .about_two_tab .swiper-button-prev {
  width: 55px;
  height: 55px;
  background-color: #0668cd;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  line-height: 55px;
  font-size: 20px;
}
.coop .coop_one .tit_img {
  float: left;
  width: 280px;
  height: 330px;
  background: url(../images/coop-img1.jpg);
  background-size: cover;
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.coop .coop_one .tit_img * {
  color: #fff;
}
.coop .coop_one .tit_img h4 {
  font-size: 30px;
  padding-top: 35px;
  line-height: 36px;
}
.coop .coop_one .tit_img h3 {
  font-size: 36px;
  font-weight: bold;
  line-height: 48px;
  padding: 20px 0 50px;
}
.coop .coop_one .tit_img .line {
  width: 21px;
  height: 2px;
  background-color: #ffffff;
  opacity: 0.5;
}
.coop .coop_one .tit_txt {
  float: left;
  margin-left: 105px;
}
.coop .coop_one .tit_txt h6 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 1px;
  padding-top: 60px;
}
.coop .coop_one .tit_txt h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: 2px;
  color: #333333;
}
.coop .coop_one .tit_txt .index_bot {
  margin-left: 9px;
  margin-top: 80px;
}
.coop .coop_one .tit_txt .index_bot i {
  display: block;
  width: 20px;
  height: 12px;
  opacity: .4;
  font-size: 30px;
  transform: rotate(90deg);
}
.coop .coop_one .tit_txt .index_bot .one {
  animation: go 1.8s infinite;
}
.coop .coop_one .tit_txt .index_bot .two {
  animation: go 1.8s infinite .4s;
}
.coop .coop_one .tit_txt .index_bot .three {
  animation: go 1.8s infinite .6s;
}
.coop .coop_two .coop_two_tab {
  padding-top: 80px;
  padding-bottom: 80px;
}
.coop .coop_two .swiper-slide {
  position: relative;
  max-height: 241px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  overflow: hidden;
}
.coop .coop_two .swiper-slide:hover, .coop .coop_two .swiper-slide.active {
  box-shadow: 0px 7px 40px 0px rgba(11, 63, 116, 0.39);
}
.coop .coop_two .swiper-slide:hover .text, .coop .coop_two .swiper-slide.active .text {
  border: solid 10px #0668cd;
}
.coop .coop_two .swiper-slide:hover .text p, .coop .coop_two .swiper-slide.active .text p {
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  font-size: 24px;
}
.coop .coop_two .swiper-slide .text {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.502);
  width: 100%;
  height: 100%;
  border: solid 0px #0668cd;
  left: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  top: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.coop .coop_two .swiper-slide .text p {
  position: absolute;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  left: 25px;
  bottom: 25px;
  color: #fff;
  font-size: 18px;
}
.coop .coop_two .swiper-button-next,
.coop .coop_two .swiper-button-prev {
  width: 55px;
  opacity: .7;
  height: 55px;
  background-color: #0668cd;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  line-height: 55px;
  font-size: 20px;
}
.coop .coop_three li {
  background-color: #f8f8f8;
  border-right: solid 9px #cccccc;
  margin-bottom: 60px;
  position: relative;
}
.coop .coop_three li .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.coop .coop_three li:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.coop .coop_three li::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 0;
  width: 9px;
  background-color: #0668cd;
  height: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.coop .coop_three li:hover::after {
  height: 100%;
}
.coop .coop_three li:hover .txt .btn_ {
  background-color: #0668cd;
}
.coop .coop_three li:hover .txt h4 {
  color: #0668cd;
}
.coop .coop_three li a {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
}
.coop .coop_three li .img {
  flex: 0 0 600px;
}
.coop .coop_three li .txt {
  flex: 1;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  padding-left: 70px;
}
.coop .coop_three li .txt .btn_ {
  background-color: #666666;
}
.coop .coop_three li .txt h4 {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 24px;
}
.coop .coop_three li .txt .atc {
  max-width: 647px;
  padding: 20px 0 60px;
}
.coop .coop_three li .txt .atc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@keyframes go {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
.btn_more {
  width: 260px;
  height: 60px;
  margin: 0 auto;
  line-height: 60px;
  font-size: 18px;
}
.coop_abt .coop_list ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.coop_abt .coop_list ul li {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 16%;
  margin-bottom: 10px;
}
/* .coop_abt .coop_list ul li:hover {
  box-shadow: rgba(0, 0, 0, 0.062) 0 0 10px;
} */
.coop_abt .coop_list ul li .img{
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.coop_abt .coop_list ul li .img img {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.coop_abt .coop_list ul li .img:hover {
  box-shadow: rgba(0, 0, 0, 0.062) 0 0 10px;
}
.coop_abt .coop_list ul li:hover .img img {
  transform: scale(1.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.coop_abt .coop_list .btn_more {
  margin-top: 30px;
}
.contact .txt {
  width: 50%;
  float: left;
}
.contact .txt h4 {
  font-size: 48px;
  line-height: 48px;
  color: #0668cd;
  font-family: "SourceHanSansCN-Light";
}
.contact .txt h6 {
  font-size: 30px;
  line-height: 30px;
  padding: 10px 0 50px;
  font-weight: 500;
}
.contact .txt h1 {
  font-size: 30px;
  font-family: "SourceHanSansCN-Light";
  font-weight: 100;
  color: #444;
}
.contact .txt .wx_box {
  padding: 20px 0;
}
.contact .txt .wx_box ul li {
  margin-right: 20px;
  width: 100px;
  float: left;
  text-align: center;
}
.contact .txt .wx_box ul li p {
  padding-top: 3px;
}
.contact .txt .positi ul li {
  padding-bottom: 10px;
  height: 30px;
  float: left;
  margin-right: 100px;
}
.contact .txt .positi ul li .box {
  float: left;
}
.contact .txt .positi ul li .one {
  float: left;
}
.contact .txt .positi ul li i {
  color: #0668cd;
  vertical-align: middle;
  font-size: 20px;
}
.contact .txt .positi ul li span {
  color: #333333;
}
.contact .txt .positi ul li em {
  font-size: 18px;
  color: #0668cd;
  font-weight: bold;
}
.contact .txt .positi ul li p {
  display: inline-block;
}
.contact .map {
  width: 50%;
  float: right;
  height: 445px;
}
.contact .contact_two {
  background: #fff;
}
.contact .contact_two .ipt_box {
  width: 49%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
  line-height: 50px;
  border: solid 1px #e5e5e5;
  text-indent: 20px;
  margin-bottom: 25px;
  float: left;
}
.contact .contact_two .ipt_box input {
  height: 100%;
  width: 80%;
}
.contact .contact_two .ipt_box:nth-of-type(even) {
  float: right;
}
.contact .contact_two textarea {
  text-indent: 20px;
  height: 180px;
  border: solid 1px #e5e5e5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 15px;
  width: 100%;
}
.contact .contact_two .btn_ {
  margin-top: 30px;
}
.honor .honor_list ul {
  border-bottom: solid 1px #ccc;
  padding-bottom: 30px;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.honor .honor_list ul li {
  width: 24%;
  margin-bottom: 30px;
  text-align: center;
}
.honor .honor_list ul li .img {
  overflow: hidden;
  height: 400px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.honor .honor_list ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.honor .honor_list ul li .img:hover {
  box-shadow: rgba(0, 0, 0, 0.11) 0 0 15px;
}
.honor .honor_list ul li p {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 18px;
  padding-top: 10px;
}
.culture .culture_list ul li {
  background-color: #ffffff;
  padding: 65px;
  margin-bottom: 40px;
  *zoom: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.culture .culture_list ul li:before,
.culture .culture_list ul li:after {
  display: table;
  line-height: 0;
  content: "";
}
.culture .culture_list ul li:after {
  clear: both;
}
.culture .culture_list ul li .img {
  float: left;
  width: 50%;
}
.culture .culture_list ul li .txt {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  float: left;
  height: 320px;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
}
.culture .culture_list ul li .txt h4 {
  font-size: 30px;
  padding-bottom: 20px;
}
.culture .culture_list ul li .txt .atc {
  max-width: 510px;
}
.culture .culture_list ul li .txt p {
  font-size: 16px;
}
.culture .culture_list ul li:nth-child(even) .img {
  float: right;
}
.culture .culture_list ul li:nth-child(even) .txt {
  padding: 0;
}
.news .news_nav {
  padding-bottom: 25px;
}
.news .news_nav li {
  width: 166px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  text-align: center;
}
.news .news_nav li a {
  color: #333;
  font-size: 22px;
}
.news .news_nav .active {
  background-color: #0668cd;
}
.news .news_nav .active a {
  color: #fff;
}
.news .news_tips .img {
  overflow: hidden;
  width: 977px;
  height: 516px;
  float: left;
}
.news .news_tips .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.news .news_tips .txt {
  float: right;
  width: 1px;
  position: relative;
  height: 516px;
}
.news .news_tips .txt .box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 60px 70px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 668px;
  height: 370px;
  background-color: #0668cd;
}
.news .news_tips .txt .box * {
  color: #fff;
}
.news .news_tips .txt .box h3 {
  font-size: 24px;
}
.news .news_tips .txt .box .atc {
  margin: 40px 0 80px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news .news_tips .txt .box .atc p {
  opacity: 0.5;
}
.news .news_tips .txt .box .btn {
  border-radius: 0;
  background: #fff;
  border: none;
  color: #0668cd;
  float: left;
}
.news .news_tips .txt .box time {
  float: right;
}
.news .news_tips .txt .box time em {
  font-size: 40px;
  line-height: 30px;
}
.news .news_list .news_load {
  position: relative;
  padding-bottom: 40px;
}
.news .news_list .news_load .load_img {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  width: 32%;
  padding: 10px;
}
.news .news_list .news_load .load_img .txt {
  padding-bottom: 40px;
}
.news .news_list .news_load .load_img h4 {
  font-size: 18px;
  line-height: 1;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: bold;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.news .news_list .news_load .load_img .atc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #999999;
}
.solution .case_det_two {
  background: #f8f8f8;
}
.solution .solution_list {
  background: #fff;
}
.solution .solution_list .solution_list_nav ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  margin: 0 -1%;
}
.solution .solution_list .solution_list_nav ul .active {
  /* background: #0668cd; */
}
.solution .solution_list .solution_list_nav ul .active a {
  color: #fff;
  background: #0668cd;
}
.solution .solution_list .solution_list_nav ul li {
  /* width: 181px;
  height: 50px;
  background-color: #f4f4f4;
  text-align: center;
  line-height: 50px;
  margin-bottom: 10px; */
  width: 14.28%;
  height: 50px;
  line-height: 50px;
  padding: 0 1%;
  box-sizing: border-box;
}
.solution .solution_list .solution_list_nav ul li a {
  display: block;
  /* font-size: 16px;
  width: 181px; */
  /* height: 50px; */
  background-color: #f4f4f4;
  text-align: center;
}
.solution .solution_list .solution_list_con {
  padding-top: 50px;
}
.solution .solution_list .solution_list_con ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.solution .solution_list .solution_list_con ul li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 16px;
  text-align: center;
  margin-bottom: 35px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .solution .solution_list .solution_list_con ul{
    margin: 0 -8px;
  }
  .solution .solution_list .solution_list_con ul li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 8px;
  }
}
.solution .solution_list .solution_list_con ul li .imgCover {
  height: 322px;
}
.solution .solution_list .solution_list_con ul li p {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 18px;
  padding-top: 15px;
}
.join_tb .w1560 {
  overflow-x: scroll;
}
.join_tb .line {
  *zoom: 1;
  background: #ededed;
  height: 60px;
  line-height: 60px;
}
.join_tb .line:before,
.join_tb .line:after {
  display: table;
  line-height: 0;
  content: "";
}
.join_tb .line:after {
  clear: both;
}
.join_tb .line li {
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  float: left;
  width: 20%;
  text-indent: 35px;
  font-size: 16px;
}
.join_tb .join_tit {
  /* min-width: 1200px; */
}
.join_tb .join_con {
  /* min-width: 1200px; */
  border: solid 1px #ccc;
  border-top: none;
  border-bottom: none;
}
.join_tb .join_con .wrap .active .line {
  background-color: #0668cd;
}
@media (max-width:767px){
  .join_tit .line li:nth-child(1){
    width: 50%;
  }
  .join_tit .line li:nth-child(5){
    width: 40%;
    text-align: right;
    padding-right: 15px;
  }
  .join_tit .line li:nth-child(5){
    float: right;
  }
  .join_tit .line li:nth-child(2),
  .join_tit .line li:nth-child(3),
  .join_tit .line li:nth-child(4){
    display: none;
  }
  .join_tb .join_con .wrap .line li:nth-child(2),
  .join_tb .join_con .wrap .line li:nth-child(3),
  .join_tb .join_con .wrap .line li:nth-child(4),
  .join_tb .join_con .wrap .line li:nth-child(5){
    display: none;
  }
  .join_tb .join_con .wrap .line li:nth-child(1){
    width: 50%;
  }
}
.join_tb .join_con .wrap .active .line::after {
  content: "-";
  background: #fff;
  color: #333;
}
.join_tb .join_con .wrap .active li {
  color: #fff;
}
.join_tb .join_con .wrap > li {
  border-bottom: solid 1px #ccc;
}
.join_tb .join_con .wrap > li .con {
  padding: 35px;
  display: none;
}
.join_tb .join_con .wrap > li .line {
  background: #fff;
  position: relative;
}
.join_tb .join_con .wrap > li .line::after {
  content: "+";
  position: absolute;
  width: 30px;
  height: 20px;
  line-height: 20px;
  right: 35px;
  text-align: center;
  background: #d0d0d0;
  top: 50%;
  transform: translateY(-50%);
}
.service .service_one ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service .service_one ul li {
  text-align: center;
  width: 24%;
}
.service .service_one ul li .img {
  overflow: hidden;
}
.service .service_one ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.service .service_one ul li p {
  padding-top: 20px;
  font-size: 18px;
  color: #333333;
}
.service .service_two {
  padding-bottom: 0;
}
.service .service_two .sv_two_nav ul .active {
  background-color: #0668cd;
  color: #fff;
}

.sv_tab_con .sv_ps_tab.on{
  display: block;
}

.sv_tab_con .sv_ps_tab{
  display: none;
}



.service .service_two .sv_two_nav ul li {
  width: 50%;
  text-align: center;
  font-size: 24px;
  color: #333333;
  height: 52px;
  line-height: 52px;
  background-color: #e5e5e5;
}
.service .service_two .sv_tab_con {
  background: #fff;
  position: relative;
  z-index: 9;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide {
  text-align: center;
  position: relative;
}
/* .service .service_two .sv_tab_con .sv_ps_tab:nth-child(2) .swiper-slide {
  text-align: center;
  position: relative;
  width: 19% !important;
} */

.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide .right_tips {
  position: absolute;
  right: 0;
  top: 30%;
  z-index: 9;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide .right_tips i {
  width: 10px;
  float: left;
  font-size: 24px;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide .right_tips .one {
  animation: go 1.8s infinite;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide .right_tips .two {
  animation: go 1.8s infinite .4s;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide .right_tips .three {
  animation: go 1.8s infinite .6s;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide em {
  display: block;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 133px;
  height: 133px;
  border: solid 1px #666666;
  border-radius: 50%;
}
.service .service_two .sv_tab_con .sv_ps_tab .swiper-slide p {
  font-size: 16px;
  padding-top: 15px;
  color: #333333;
}
/* .service .service_two .sv_tab_con .sv_ps_tab .swiper-slide:nth-last-child(1) .right_tips {
  display: none;
} */
.service .left_txt {
  float: left;
  text-align: left;
}
.service .service_three {
  padding-top: 160px;
  margin-top: -80px;
}
.service .service_three .wrap_tit .btn_ {
  float: right;
  width: 234px;
  height: 75px;
  font-size: 18px;
  line-height: 75px;
}
.service .service_three .sv_team_tab {
  max-width: 1920px;
  margin: 0 auto;
}
.service .service_three .sv_team_tab .swiper-slide .img {
  float: left;
  width: 50%;
  height: 520px;
  position: relative;
  overflow: hidden;
}
.service .service_three .sv_team_tab .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.service .service_three .sv_team_tab .swiper-slide .img img {
  position: absolute;
  right: 0;
  top: 0;
}
.service .service_three .sv_team_tab .swiper-slide .txt {
  width: 50%;
  float: right;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  height: 520px;
}
.service .service_three .sv_team_tab .swiper-slide .txt h3 {
  font-size: 48px;
  display: inline-block;
  padding-bottom: 55px;
  line-height: 1;
}
.service .service_three .sv_team_tab .swiper-slide .txt h3::after {
  content: "";
  display: block;
  height: 8px;
  margin-top: -8px;
  background-color: #0668cd;
}
.service .service_three .sv_team_tab .swiper-slide .txt .atc {
  max-width: 628px;
}
.service .service_three .sv_team_tab .swiper-slide .txt .atc p {
  font-size: 16px;
  line-height: 30px;
}
.service .service_three .sv_team_nav {
  max-width: 900px;
  padding: 50px;
  margin: auto;
  text-align: center;
}
.service .service_three .sv_team_nav .swiper-slide {
  height: 150px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.service .service_three .sv_team_nav .swiper-slide .img {
  height: 100%;
  overflow: hidden;
}
.service .service_three .sv_team_nav .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.service .service_three .sv_team_nav .swiper-slide-thumb-active {
  box-shadow: 0px 7px 40px 0px rgba(11, 63, 116, 0.39);
  border: solid 5px #0668cd;
}
.service .service_four ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service .service_four ul li {
  width: 24%;
  margin-bottom: 15px;
}
.service .service_four ul li .txt {
  background-color: #ffffff;
  padding: 20px;
}
.service .service_four ul li .txt strong {
  font-size: 16px;
  color: #333;
}
.service .service_five ul li {
  *zoom: 1;
}
.service .service_five ul li:before,
.service .service_five ul li:after {
  display: table;
  line-height: 0;
  content: "";
}
.service .service_five ul li:after {
  clear: both;
}
.service .service_five ul li .img {
  float: left;
  width: 50%;
  position: relative;
  overflow: visible;
  height: 350px;
}
.service .service_five ul li .img img {
  position: absolute;
  width: auto;
  height: 100%;
  right: 0;
  top: 0;
}
.service .service_five ul li .txt {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 75px;
  height: 350px;
  width: 50%;
  float: left;
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.service .service_five ul li .txt em {
  font-size: 60px;
  line-height: 1;
  color: #000000;
  opacity: 0.1;
  font-family: "SourceHanSansCN-Light";
  font-weight: bold;
}
.service .service_five ul li .txt h6 {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  color: #0668cd;
}
.service .service_five ul li .txt .line {
  width: 33px;
  height: 2px;
  background-color: #0668cd;
  margin: 30px 0;
}
.service .service_five ul li .txt .atc p {
  line-height: 30px;
}
.service .service_five ul li:nth-child(even) .img {
  float: right;
}
.service .service_five ul li:nth-child(even) .img img {
  left: 0;
  right: auto;
}
.service .service_six {
  padding-top: 20px;
}
.service .service_six .one {
  padding: 0 40px;
  height: 450px;
  width: 49%;
  float: left;
  border: solid 1px #cccccc;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.service .service_six .jszc ul li {
  border-bottom: solid 1px #ccc;
  padding: 20px 0;
}
.service .service_six .jszc ul li:nth-last-child(1) {
  border: none;
}
.service .service_six .jszc ul .itme {
  cursor: pointer;
  *zoom: 1;
  padding: 20px 0;
  border-bottom: solid 1px #ccc;
}
.service .service_six .jszc ul .itme.on {
  padding: 35px 0;
  border-bottom: none;
}
.service .service_six .jszc ul .itme:before,
.service .service_six .jszc ul .itme:after {
  display: table;
  line-height: 0;
  content: "";
}
.service .service_six .jszc ul .itme:after {
  clear: both;
}
.service .service_six .jszc ul .itme a {
  display: -webkit-flex;
  display: -ms-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
}
.service .service_six .jszc ul .itme .img {
  float: left;
  flex: 0 0 193px;
  display: none;
}
.service .service_six .jszc ul .itme.on .img {
  display: block;
}
.service .service_six .jszc ul .itme .txt {
  flex: 1;
  /* padding-left: 25px; */
  float: left;
  width: 90%;
}
.service .service_six .jszc ul .itme.on .txt {
  padding-left: 25px;
}
.service .service_six .jszc ul .itme .txt h5 {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.service .service_six .jszc ul .itme.on .txt h5 {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
}
.service .service_six .jszc ul .itme .txt p {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.service .service_six .jszc ul .itme.on .txt p {
  display: -webkit-box;
}
.service .service_six .tit {
  border-bottom: solid 2px #0668cd;
}
.service .service_six .tit i {
  padding-right: 10px;
  vertical-align: 4px;
}
.service .service_six .tit i img {
  vertical-align: middle;
}
.service .service_six .tit span {
  font-size: 24px;
  line-height: 60px;
  color: #0668cd;
}
.service .service_six .fwfk {
  float: right;
}
.service .service_six .fwfk .ipt {
  height: 46px;
  border: solid 1px #cccccc;
  line-height: 46px;
  margin-bottom: 15px;
  text-indent: 20px;
}
.service .service_six .fwfk .ipt input {
  width: 70%;
}
.service .service_six .fwfk .down_ {
  padding: 10px 0 30px;
}
.service .service_six .fwfk .down_ span {
  font-size: 16px;
  font-weight: bold;
  color: #0668cd;
}
.service .service_six .fwfk .down_ i {
  font-size: 24px;
  color: #0668cd;
}
.service .service_six .fwfk form {
  padding-top: 40px;
}
.service .service_six .fwfk .btnUp,
.service .service_six .fwfk .btnUp2 {
  height: 46px;
  background-color: #0668cd;
  text-align: center;
  line-height: 46px;
  margin-bottom: 15px;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.service .service_six .fwfk .btnUp input,
.service .service_six .fwfk .btnUp2 input {
  position: absolute;
  font-size: 24px;
  right: 0;
  top: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
}
.service .service_six .fwfk .btnUp2 {
  background-color: #fff;
  border: solid 1px #cccccc;
  color: #0668cd;
}
.service .service_seven {
  position: relative;
}
.service .service_seven::after {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  height: 373px;
  background-color: #f3f3f3;
  content: "";
}
.service .service_seven .w1560 {
  position: relative;
}
.service .service_seven .w1560 .ctrl_left {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 190px;
}
.service .service_seven .honor_tab .swiper-button-next,
.service .service_seven .honor_tab .swiper-button-prev {
  width: 105px;
  height: 56px;
  background-color: #ffffff;
  text-align: center;
  line-height: 56px;
  left: 175px;
  top: 370px;
  font-size: 24px;
}
.service .service_seven .honor_tab .swiper-button-next:hover,
.service .service_seven .honor_tab .swiper-button-prev:hover {
  background: #0668cd;
  color: #fff;
}
.service .service_seven .honor_tab .swiper-button-next {
  left: 295px;
}
.service .service_seven .honor_tab .swiper-slide {
  padding-left: 175px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.service .service_seven .honor_tab .swiper-slide .img {
  width: 697px;
  height: 460px;
  border: solid 1px #e5e5e5;
  float: right;
}
.service .service_seven .honor_tab .swiper-slide .txt {
  float: left;
  padding-top: 240px;
}
.service .service_seven .honor_tab .swiper-slide .txt h6 {
  font-size: 24px;
  padding-bottom: 10px;
}
.service .service_seven .honor_tab .swiper-slide .txt p {
  font-size: 18px;
}
.service .service_seven .honor_tab_nav {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 110px;
}
.service .service_seven .honor_tab_nav .swiper-slide {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #e5e5e5;
  cursor: pointer;
}
.service .service_seven .honor_tab_nav .swiper-slide-thumb-active {
  border: solid 1px #0668cd;
}
.service .service_eight {
  background: url(../images/sv-bg.jpg) no-repeat;
  background-size: cover;
}
.service .service_eight .tit_bxo h2 {
  color: #fff;
  font-size: 36px;
}
.service .service_eight .tit_bxo p {
  color: #fff;
  font-size: 36px;
}
.service .service_eight .tit_bxo .eighttab_box {
  float: right;
  position: relative;
  width: 250px;
}
.service .service_eight .tit_bxo .eighttab_box .swiper-button-next,
.service .service_eight .tit_bxo .eighttab_box .swiper-button-prev {
  width: 105px;
  height: 56px;
  margin-top: 40px;
  background-color: #cccccc;
  background-image: none;
  text-align: center;
  line-height: 56px;
  font-size: 24px;
}
.service .service_eight .tit_bxo .eighttab_box .swiper-button-next:hover,
.service .service_eight .tit_bxo .eighttab_box .swiper-button-prev:hover {
  background-color: #f3f3f3;
  color: #0668cd;
}
.service .service_eight .service_eight_tab {
  padding-top: 80px;
  padding-bottom: 80px;
}
.service .service_eight .service_eight_tab .swiper-slide {
  width: auto;
  height: 390px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.service .service_eight .service_eight_tab .swiper-slide .img {
  width: 326px;
  float: left;
  position: relative;
  z-index: 9;
}
.service .service_eight .service_eight_tab .swiper-slide .txt {
  background: #fff;
  float: left;
  width: 709px;
  height: 520px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  margin-left: -60px;
  margin-right: -60px;
  margin-top: -65px;
  transform: scale(0);
  width: 0;
}
.service .service_eight .service_eight_tab .swiper-slide .txt .box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 412px;
}
.service .service_eight .service_eight_tab .swiper-slide .txt .box h6 {
  font-size: 36px;
  color: #0668cd;
}
.service .service_eight .service_eight_tab .swiper-slide .txt .box .atc {
  padding: 40px 0 60px;
}
.service .service_eight .service_eight_tab .swiper-slide .txt .box .atc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.service .service_eight .service_eight_tab .swiper-slide-active .txt {
  transform: scale(1);
  /* width: 1019px; */
  width: 709px;
}
@media all and (min-width: 576px) {
  .container,
  .w1560 {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .container,
  .w1560 {
    width: 750px;
  }
}
@media all and (min-width: 992px) {
  .container,
  .w1560 {
    width: 970px;
  }
}
@media all and (min-width: 1200px) {
  .container {
    width: 1170px;
  }
  .w1560 {
    width: 1170px;
  }
}
@media all and (min-width: 1600px) {
  .w1560 {
    width: 1580px;
  }
  .join_tb .w1560 {
    overflow-x: hidden;
  }
}
@media all and (max-width: 1599px) {
  .main_tit .tit_p {
    font-size: 28px;
    padding-top: 5px;
  }
  .main_tit h2 {
    font-size: 40px;
  }
  header .head_top .h_t_left .list {
    height: 40px;
    width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  header .head_inner nav a {
    padding: 5px 8px;
  }
  header .head_inner .search_box {
    width: 40px;
    height: 40px;
    border: none;
    margin-left: 20px;
  }
  header .head_inner .search_box input {
    display: none;
  }
  header .head_inner .search_box button {
    width: 100%;
    font-size: 24px;
  }
  header .head_inner .head_logo img {
    height: 50px;
  }
  header .head_inner .head_txt h2 {
    font-size: 21px;
    line-height: 20px;
    letter-spacing: 0;
    padding: 3px 0 3px;
  }
  header .head_inner .head_txt p {
    font-size: 16px;
    letter-spacing: 0;
  }
  header .head_inner {
    padding: 20px 0;
  }
  .idx .idx_one .list li {
    height: 100px;
  }
  .idx .idx_one .list li::after {
    background: url(../images/icon-after.png) no-repeat right;
    background-size: auto 100%;
  }
  .idx .idx_one .list li i img {
    width: 35px;
  }
  .idx .idx_one .list li i {
    margin-top: 32px;
  }
  .idx .idx_one .list li .box .line {
    margin: 45px auto 10px;
  }
  .idx .idx_one .list li .box em {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .idx .idx_one .list li .box p {
    font-size: 16px;
    letter-spacing: 0;
  }
  .idx .idx_one {
    padding: 80px 0;
    padding-bottom: 180px;
  }
  .idx .idx_one .list {
    padding-top: 0;
  }
  .case_det .case_det_list li .img {
    height: 265px;
  }
  .case_det .case_det_list li .txt {
    height: 265px;
  }
  .case_det_two .case_foot .swiper-slide .img {
    height: 210px;
  }
  .tab_box {
    top: -155px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list li {
    border-left: solid 1px #f8f8f8;
    height: 60px;
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
  }
  .prodcut_sel .prd_sel_nav .one_box .list li a {
    font-size: 18px;
    line-height: 60px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list .active {
    height: 70px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list .active a {
    font-size: 18px;
    line-height: 70px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
  }
  .prodcut_sel .prd_sel_nav .one_box .sel_box {
    padding: 15px 25px;
    background: #666;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr .list li a {
    font-size: 18px;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr span {
    font-size: 16px;
  }
  .prodcut_sel .prodcut_cont .sel_list li {
    width: 31.33%;
    margin-bottom: 60px;
    padding: 0 1%;
  }
  .prodcut_sel .prodcut_cont .sel_list li {

  }

  .prodcut_sel .prodcut_cont .sel_list li .imgCover {
    height: 300px;
  }
  .product_det .sel_shopping .show_img .show-img .gallery-top {
    height: 400px;
  }
  .product_det .sel_shopping .show_img .small_img {
    height: 400px;
  }
  .product_det .prd_content .cont_nav ul li {
    width: 180px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
  .product_det .prd_content .content {
    padding: 40px;
  }
  .common_one .common_list {
    width: 100%;
  }
  .common_one .img {
    display: none;
  }
  .about .about_two .about_two_tab {
    padding: 30px;
  }
  .about .about_one .txt {
    width: 65%;
  }
  .about .about_two .about_two_tab .swiper-slide .img {
    height: 327px;
  }
  .about .about_two .about_two_tab .swiper-slide .txt {
    height: 327px;
  }
  .about .about_two .about_two_tab .swiper-pagination {
    padding: 30px;
  }
  .coop .coop_three {
    padding-top: 0;
  }
  .coop .coop_three li {
    margin-bottom: 40px;
  }
  .coop .coop_three li .img {
    flex: 0 0 400px;
  }
  .coop .coop_three li .txt {
    padding-left: 50px;
  }
  .coop .coop_three li .txt .atc {
    width: 80%;
    padding: 20px 0 40px;
  }
  .btn_more {
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  .honor .honor_list ul li .img {
    height: 300px;
  }
  .culture .culture_list ul li {
    padding: 30px;
  }
  .culture .culture_list ul li .txt {
    height: 245px;
    padding-left: 50px;
  }
  .news .news_list .news_load .load_img h4 {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .news .news_list .news_load .load_img .txt {
    padding-bottom: 10px;
  }
  .news .news_tips .txt .box {
    padding: 40px;
    width: 520px;
    height: auto;
  }
  .news .news_tips .txt .box .atc {
    margin: 40px 0 50px;
  }
  footer .footLeft .foot_logo h2 {
    font-size: 20px;
    letter-spacing: 0px;
    padding: 10px 0 20px;
  }
  footer .footRight .box {
    margin-left: 70px;
  }
  .news .news_tips .img {
    width: 800px;
    height: 400px;
  }
  .news .news_tips .txt {
    height: 400px;
  }
  .solution .solution_list .solution_list_con ul li .imgCover {
    height: 235px;
  }
  /* .solution .solution_list .solution_list_nav ul li {
    width: 14%;
  } */
  .service .service_two .sv_tab_con .sv_ps_tab .swiper-slide em {
    width: 115px;
    height: 115px;
  }
  .service .service_three .wrap_tit .btn_ {
    width: 200px;
    height: 60px;
    font-size: 18px;
    margin-top: 25px;
    line-height: 60px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt h3 {
    font-size: 40px;
    padding-bottom: 30px;
    line-height: 1;
  }
  .service .service_seven .w1560 .ctrl_left {
    padding-left: 15px;
  }
  .service .service_seven .honor_tab .swiper-slide {
    padding-left: 0;
  }
  .service .service_seven .honor_tab .swiper-button-prev {
    left: 0;
  }
  .service .service_seven .honor_tab .swiper-button-next {
    left: 120px;
  }
  .idx .idx_two .prod_list .item3 .txt h4,
  .idx .idx_two .prod_list .item4 .txt h4 {
    font-size: 18px;
  }
  .idx .idx_two .prod_list .item2 {
    padding: 0 40px;
  }
  .idx .idx_two .prod_list .item2 .txt h4 {
    font-size: 18px;
    padding: 70px 0 30px;
  }
  .idx .idx_three .chushou li .text h4 {
    font-size: 18px;
    line-height: 30px;
    padding: 70px 0 0;
  }
  .idx .idx_three .chushou li .text p {
    font-size: 16px;
  }
  .idx .idx_three .chushou .itme1 .txt p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    padding-top: 15px;
  }
  .idx .idx_three .chushou .itme1 .txt h4 {
    font-size: 35px;
    letter-spacing: 0px;
  }
  .idx .tit_and_nav nav a {
    padding: 0 7px;
    font-size: 14px;
  }
  .idx .idx_abt .list li {
    height: 225px;
  }
  .idx .idx_abt .list li:hover h4 {
    padding-top: 20px;
  }
  .idx .idx_abt .list li .txt {
    height: 64px;
    padding: 0 20px;
  }
  .idx .idx_abt .list li .txt h4 {
    font-size: 18px;
  }
  .idx .idx_six .nav_left li {
    height: 190px;
    padding-left: 30px;
  }
  .idx .idx_six .nav_left li h6 {
    padding: 30px 0 8px 0;
  }
  .idx .idx_six .nav_left .active::after {
    top: 80px;
  }
  .idx .idx_seven .list_ li {
    height: 85px;
  }
  .idx .idx_two .prod_list .item3 .txt,
  .idx .idx_two .prod_list .item4 .txt {
    padding: 20px 10px 5px;
  }
  .idx .idx_two .prod_list .item2 {
    height: 220px;
  }
  .idx .idx_two .prod_list .item1 {
    height: 446px;
  }
  .idx .idx_two .prod_list .item3,
  .idx .idx_two .prod_list .item4 {
    height: 218px;
  }
  .idx .idx_five .shuangwu .itme1 {
    height: 397px;
  }
  .idx .idx_five .shuangwu .itme2,
  .idx .idx_five .shuangwu .itme4 {
    height: 195px;
  }
  .idx .idx_five .shuangwu .itme3,
  .idx .idx_five .shuangwu .itme5 {
    height: 195px;
  }
  .main_tit .des {
    margin-top: 25px;
  }
  .idx .idx_three .chushou li {
    height: 222px;
  }
  .idx .idx_three .chushou .itme1 {
    height: 450px;
  }
  .idx .idx_three .chushou li .text .btn {
    margin-top: 15px;
  }
  .idx .idx_three .chushou li .text h4 {
    padding: 55px 0 0;
  }
  .idx .idx_five .shuangwu .itme1 .txt {
    padding: 40px 20px;
  }
  .idx .idx_five .shuangwu .itme1 .txt h4 {
    font-size: 26px;
    line-height: 40px;
    letter-spacing: 0px;
  }
  .idx .idx_five .shuangwu .itme1 .txt p {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }
  .idx .idx_five .shuangwu li .text p {
    font-size: 14px;
    padding-top: 10px;
  }
  .idx .idx_abt .idx_abt_tab .swiper-slide .txt {
    height: 60px;
    padding: 0 20px;
  }
  .idx .idx_abt .idx_abt_tab .swiper-slide .txt h4 {
    font-size: 18px;
    line-height: 60px;
    letter-spacing: 0;
  }
  .idx .idx_abt .idx_abt_tab .swiper-slide:hover h4 {
    padding-top: 25px;
  }
  .idx .idx_eight .news_right .text {
    padding: 20px 0;
  }
  .idx .idx_eight .text .right_time em {
    font-size: 36px;
    padding-bottom: 5px;
  }
  .idx .idx_eight .news_right .text .act {
    margin-left: 40px;
  }
  .idx .idx_eight .news_right .text .act h3 {
    font-size: 18px;
    padding-bottom: 5px;
  }
  .idx .idx_eight .news_right li {
    margin-bottom: 10px;
  }
  .idx .idx_six {
    padding: 0 0 80px;
  }
  .product_list .num_box {
    width: 150px;
    height: 70px;
  }
}
@media all and (max-width: 1199px) {
  .padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  footer {
    padding-top: 70px;
  }
  .head_top {
    display: none;
  }
  .head_nav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.9);
    left: 0;
    top: 0;
  }
  .head_nav .list {
    padding: 70px 20px;
  }
  .head_nav .list li {
    width: 100%;
    margin-bottom: 15px;
  }
  .head_nav .list li a {
    color: #fff;
  }
  header .head_inner .menu_box {
    display: block;
  }
  header .head_inner .search_box {
    display: none;
  }
  .head_container {
    width: 100%;
  }
  header .head_inner .head_txt h2 {
    font-size: 18px;
    padding: 3px 0 0px;
  }
  header .head_inner .head_txt p {
    font-size: 14px;
  }
  header .head_inner .head_logo img {
    height: 45px;
  }
  #banner .banner_tab {
    height: 500px;
  }
  .case_det .case_det_list li .img {
    height: 215px;
  }
  .case_det .case_det_list li .txt {
    height: 215px;
  }
  .case_det_two .case_foot .swiper-slide .img {
    height: 180px;
  }
  .tab_box .swiper-button-next,
  .tab_box .swiper-button-prev {
    line-height: 45px;
    width: 45px;
    height: 45px;
  }
  .tab_box .swiper-button-next {
    right: 0px;
  }
  .tab_box .swiper-button-prev {
    left: 0px;
  }
  .case_det .case_det_list li .txt h3 {
    padding-bottom: 15px;
  }
  .tab_box {
    top: -135px;
  }
  .prodcut_sel .prodcut_cont .sel_list li .imgCover {
    height: 260px;
    border: solid 1px #ebebeb;
  }
  .product_det .sel_shopping .sel_txt {
    width: 100%;
  }
  .product_det .sel_shopping .show_img {
    max-width: 650px;
    margin: 0 auto;
    width: 100%;
    float: none;
    height: auto;
    padding-bottom: 30px;
    *zoom: 1;
  }
  .product_det .sel_shopping .show_img:before,
  .product_det .sel_shopping .show_img:after {
    display: table;
    line-height: 0;
    content: "";
  }
  .product_det .sel_shopping .show_img:after {
    clear: both;
  }
  .about .about_two .about_two_tab .swiper-slide .txt h5 {
    font-size: 26px;
  }
  .about .about_two .about_two_tab .swiper-slide .txt {
    height: 280px;
    padding-left: 45px;
  }
  .about .about_two .about_two_tab .swiper-slide .img {
    height: 280px;
  }
  .about .about_two .about_two_tab .swiper-slide .txt .atc {
    padding: 30px 0 40px;
  }
  .about .about_two .about_two_tab .swiper-button-next,
  .about .about_two .about_two_tab .swiper-button-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    opacity: .6 !important;
  }
  .about .about_two .about_two_tab .swiper-pagination .swiper-pagination-total {
    font-size: 24px;
  }
  .about .about_two .about_two_tab .swiper-pagination {
    padding: 30px;
    font-size: 24px;
  }
  .about .about_two .about_two_tab .swiper-pagination .swiper-pagination-current {
    font-size: 45px;
  }
  .honor .honor_list ul li .img {
    height: 250px;
  }
  .coop .coop_three li .img {
    flex: 0 0 350px;
  }
  .contact .txt {
    width: 100%;
  }
  .contact .map {
    width: 100%;
  }
  .culture .culture_list ul li .txt .atc {
    max-width: 90%;
  }
  .culture .culture_list ul li .txt {
    height: 200px;
    padding-left: 40px;
  }
  footer .footRight {
    width: 100%;
  }
  footer .footRight .box {
    margin-left: 0;
    width: 20%;
  }
  footer .footLeft {
    display: none;
  }
  .honor .honor_list ul li {
    margin-bottom: 20px;
  }
  .honor .honor_list ul li p {
    font-size: 16px;
  }
  .culture .culture_list ul li .txt p {
    font-size: 14px;
  }
  .culture .culture_list ul li .txt h4 {
    font-size: 26px;
    padding-bottom: 20px;
  }
  .news .news_list .news_load .load_img {
    padding: 5px;
  }
  .news .news_tips .txt .box .atc {
    margin: 30px 0 40px;
  }
  .news .news_tips .txt .box {
    padding: 30px;
    width: 425px;
  }
  .solution .solution_list .solution_list_con ul li .imgCover {
    height: 195px;
  }
  .service .service_three .sv_team_tab .swiper-slide .img {
    height: 300px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt {
    height: 300px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt h3 {
    font-size: 35px;
    padding-bottom: 30px;
  }
  .service .service_one ul li p {
    padding-top: 5px;
    font-size: 16px;
    color: #333333;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt {
    width: 570px;
    height: 460px;
    margin-left: -40px;
    margin-right: -40px;
    margin-top: -40px;
  }
  .service .service_seven .honor_tab .swiper-button-next,
  .service .service_seven .honor_tab .swiper-button-prev {
    width: 100px;
    height: 50px;
    line-height: 50px;
    top: 270px;
  }
  .service .service_seven .honor_tab .swiper-slide .img {
    width: 500px;
    height: 330px;
  }
  .service .service_seven .honor_tab .swiper-slide .txt {
    padding-top: 140px;
  }
  .service .service_seven::after {
    height: 260px;
  }
  .service .service_two .sv_two_nav ul li {
    font-size: 20px;
  }
  .service .service_seven .honor_tab_nav {
    padding-top: 45px;
  }
  .service .service_five ul li .txt em {
    font-size: 46px;
  }
  .service .service_five ul li .txt h6 {
    font-size: 26px;
  }
  .service .service_five ul li .txt .line {
    margin: 25px 0;
  }
  .service .service_five ul li .txt .atc p {
    line-height: 26px;
  }
  .service .service_five ul li .txt .atc {
    width: 90%;
  }
  .service .service_six .jszc ul .itme .img {
    float: left;
    flex: 0 0 145px;
  }
  .service .service_six .jszc ul .itme .txt h5 {
    padding-top: 5px;
  }
  .idx .idx_three .chushou li .text .btn {
    width: 100px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  .idx .idx_three .chushou li {
    height: 180px;
  }
  .idx .idx_three .chushou .itme1 {
    height: 365px;
  }
  .idx .idx_three .chushou .itme1 .txt h4 span {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0;
  }
  .idx .idx_three .chushou .itme1 .txt h4 {
    font-size: 20px;
  }
  .idx .idx_three .chushou .itme1 .txt {
    padding: 30px 20px;
  }
  .idx .idx_three .chushou .itme1 .txt p {
    font-size: 14px;
    padding-top: 0;
  }
  .idx .idx_seven .list_ li {
    height: 75px;
  }
  .idx .tit_and_nav nav {
    margin-left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .idx .tit_and_nav nav li {
    /* margin: 0; */
    background: #e5e5e5;
    margin: 0 4px 5px 0;
  }
  .idx .tit_and_nav .more {
    display: none;
  }
}
@media all and (max-width: 991px) {
  .banner_inner {
    height: 400px;
  }
  .case_det .case_det_list li .txt {
    height: auto;
    margin-top: 30px;
    width: 100%;
  }
  .case_det .case_det_list li .img {
    width: 100%;
    height: auto;
  }
  .case_det_two .case_foot .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .case_det_two .case_foot .swiper-slide p {
    padding-top: 5px;
  }
  .case_det_two h6 {
    font-size: 26px;
    padding-bottom: 30px;
  }
  .tab_box {
    top: -113px;
  }
  .tab_box .swiper-button-next,
  .tab_box .swiper-button-prev {
    line-height: 35px;
    width: 35px;
    height: 35px;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr span {
    width: 110px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
  .prodcut_sel .prd_sel_nav .two_box {
    margin-top: 20px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list li a {
    font-size: 16px;
    line-height: 60px;
  }
  .prodcut_sel .prodcut_cont .sel_list li {
    width: 49%;
    margin-bottom: 40px;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr .list li::after {
    margin: 8px 20px;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr .list li a {
    font-size: 14px;
    line-height: 30px;
  }
  .solution_det .solution_det_con .atc .btn_ {
    font-size: 16px;
    width: 131px;
    height: 35px;
    margin: 30px 0 20px 0;
    line-height: 35px;
  }
  .about .about_two .about_two_tab .swiper-slide .txt {
    height: auto;
    width: 100%;
    padding: 20px 0 0;
  }
  .about .about_two .about_two_tab .swiper-slide .img {
    height: auto;
    width: 100%;
  }
  .about .about_one .txt {
    width: 100%;
    margin-top: 30px;
  }
  .about .about_one .txt h4 {
    padding-bottom: 20px;
    line-height: 28px;
  }
  .coop .coop_three li .img {
    flex: 0 0 200px;
  }
  .coop .coop_three li .txt {
    padding-left: 20px;
  }
  .coop .coop_three li .txt h4 {
    font-size: 18px;
  }
  .coop .coop_three li .txt .atc {
    width: 80%;
    padding: 10px 0 0;
  }
  .coop .coop_three li .txt .btn_ {
    background-color: #666666;
    display: none;
  }
  .coop .coop_three li {
    margin-bottom: 20px;
  }
  .btn_more {
    width: 170px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .coop .coop_one .tit_txt .index_bot {
    margin-left: 10px;
    margin-top: 40px;
  }
  .coop .coop_one .tit_txt {
    float: left;
    margin-left: 0;
  }
  .coop .coop_one .tit_img {
    width: 100%;
    padding: 20px;
  }
  .coop_abt .coop_list ul li {
    width: 24%;
  }
  .honor .honor_list ul li .img {
    height: 190px;
  }
  .honor .honor_list ul li p {
    font-size: 14px;
    padding-top: 5px;
  }
  .culture .culture_list ul li .txt {
    height: auto;
    padding-left: 0;
    width: 100%;
    padding-top: 30px;
  }
  .culture .culture_list ul li .img {
    float: left;
    width: 100%;
  }
  .culture .culture_list ul li:nth-child(even) .txt {
    padding-top: 30px;
  }
  .news .news_list .news_load .load_img {
    padding: 0;
  }
  .news .news_tips .img {
    width: 100%;
    height: auto;
  }
  .news .news_tips .txt {
    width: 100%;
    height: auto;
  }
  .news .news_tips .txt .box {
    position: initial;
    transform: translateY(0%);
    width: 100%;
  }
  .news .news_nav li {
    width: 166px;
    height: 40px;
    line-height: 40px;
  }
  .news .news_nav li a {
    font-size: 18px;
  }
  .solution .solution_list .solution_list_con ul li {
    margin-bottom: 20px;
  }
  .solution .solution_list .solution_list_con ul li .imgCover {
    height: 150px;
  }
  .solution .solution_list .solution_list_con ul li p {
    font-size: 16px;
    padding-top: 5px;
  }
  .solution .solution_list .solution_list_con {
    padding-top: 20px;
  }
  .service .service_one ul li {
    width: 49%;
    margin-bottom: 20px;
  }
  .service .service_three .wrap_tit .btn_ {
    width: 170px;
    height: 50px;
    font-size: 16px;
    margin-top: 20px;
    line-height: 50px;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt .box {
    width: 355px;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt {
    width: 485px;
  }
  .service .service_seven .honor_tab .swiper-button-next,
  .service .service_seven .honor_tab .swiper-button-prev {
    background: #0668cd;
    margin-top: -261px;
    color: #fff;
  }
  .service .service_seven .honor_tab .swiper-button-next {
    left: auto;
  }
  .service .service_seven .honor_tab .swiper-button-prev {
    left: auto;
    right: 120px;
  }
  .service .service_seven .honor_tab .swiper-slide .img {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 40px;
  }
  .service .service_seven::after {
    display: none;
  }
  .service .service_four ul li {
    width: 49%;
    margin-bottom: 15px;
  }
  .service .service_five ul li .img img {
    position: inherit;
    height: auto;
    width: 100%;
    right: 0;
    top: 0;
  }
  .service .service_five ul li .img {
    width: 100%;
    height: auto;
  }
  .service .service_five ul li .txt {
    width: 100%;
    padding: 20px 0 60px;
    height: auto;
  }
  .service .service_six .one {
    padding: 20px 40px 40px 40px;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  .service .service_three .sv_team_nav .swiper-slide {
    height: 110px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt {
    padding-left: 30px;
    padding-right: 20px;
  }
  .idx .idx_two .prod_list .item1 {
    height: 300px;
  }
  .prod_list .item1 .txt h5 {
    font-size: 26px;
  }
  .idx .idx_two .prod_list .item1 .txt h5 span {
    font-size: 26px;
    letter-spacing: 0;
  }
  .idx .idx_two .prod_list .item1 .txt {
    padding: 30px 20px;
  }
  .idx .idx_two .prod_list .item2 {
    height: 150px;
    padding: 0 20px;
  }
  .idx .idx_two .prod_list .item2 .txt h4 {
    font-size: 18px;
    padding: 40px 0 20px;
  }
  .btn {
    width: 104px;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    border-radius: 15.5px;
  }
  .idx .idx_two .prod_list .item3 .txt,
  .idx .idx_two .prod_list .item4 .txt {
    padding: 10px 10px 5px;
  }
  .idx .idx_two .prod_list .item3,
  .idx .idx_two .prod_list .item4 {
    height: 145px;
  }
  .idx .idx_two .prod_list .item3 .txt h4,
  .idx .idx_two .prod_list .item4 .txt h4 {
    font-size: 14px;
  }
  .idx .idx_two .prod_list .item1 .txt {
    padding: 40px 20px;
  }
  .idx .idx_two .prod_list .item1 .txt h5 {
    font-size: 38px;
    letter-spacing: 0px;
  }
  .idx .idx_two .prod_list .item1 .txt p strong {
    font-size: 24px;
    letter-spacing: 0px;
  }
  .idx .idx_two .prod_list .item3 .img,
  .idx .idx_two .prod_list .item4 .img {
    height: 99px;
  }
  .idx .idx_two .prod_list .item3 .txt,
  .idx .idx_two .prod_list .item4 .txt {
    padding: 10px 10px 5px;
  }
  .idx .idx_one {
    padding: 50px 0;
    padding-bottom: 160px;
  }
  .idx .idx_two .prod_list .item1 .txt h5 span {
    font-size: 22px;
  }
  .idx .idx_two .prod_list .item1 .txt h5 {
    font-size: 22px;
    padding-bottom: 0;
  }
  .idx .idx_one .list li i {
    margin-top: 22px;
    height: 30px;
  }
  .idx .idx_one .list li i img {
    width: 28px;
  }
  .idx .idx_one .list li {
    height: 75px;
  }
  .idx .idx_one .list li .box em {
    font-size: 18px;
    line-height: 24px;
  }
  .idx .idx_one .list li .box p {
    font-size: 14px;
    padding-top: 0;
    line-height: 20px;
  }
  .idx .idx_one .list li .box .line {
    margin: 35px auto 10px;
  }
  .idx .idx_two .prod_list .item1 .txt p strong {
    font-size: 18px;
  }
  .idx .idx_three .chushou li {
    height: 143px;
    padding: 0 15px;
  }
  .idx .idx_three .chushou .itme1 {
    height: 290px;
  }
  .idx .idx_three .chushou .itme2,
  .idx .idx_three .chushou .itme3,
  .idx .idx_three .chushou .itme4,
  .idx .idx_three .chushou .itme5 {
    padding: 0 10px;
  }
  .idx .idx_three .chushou li .text h4 {
    padding: 30px 0 0;
    font-size: 16px;
    line-height: 24px;
  }
  .idx .idx_three .chushou li .text p {
    font-size: 12px;
  }
  .idx .idx_three .chushou li .text .btn {
    width: 90px;
    height: 25px;
    line-height: 25px;
  }
  .idx .idx_three .chushou li .text .btn i {
    font-size: 14px;
  }
  .idx .idx_three .chushou .itme1 .txt p {
    font-size: 12px;
    line-height: 18px;
  }
  .idx .idx_three .chushou .itme1 .txt {
    padding: 30px 0;
  }
  .idx .idx_five .shuangwu .itme3,
  .idx .idx_five .shuangwu .itme5 {
    height: 160px;
  }
  .idx .idx_five .shuangwu .itme2,
  .idx .idx_five .shuangwu .itme4 {
    height: 160px;
  }
  .idx .idx_five .shuangwu .itme1 {
    height: 325px;
  }
  .idx .idx_six .nav_left li {
    height: 155px;
    padding-left: 20px;
  }
  .idx .idx_six .nav_left li .iconfont {
    margin-top: 20px;
  }
  .idx .idx_six .show_right .txt {
    padding: 0 20px;
  }
  .idx .idx_six .nav_left .active::after {
    top: 65px;
  }
  .idx .idx_seven .list_ li {
    width: 32%;
    height: 95px;
  }
  .idx .idx_eight .news_right {
    width: 100%;
  }
  .idx .idx_eight .news_left {
    width: 100%;
    padding-bottom: 30px;
    overflow: hidden;
  }
  .idx .idx_six .show_right .txt .act span {
    display: block;
  }
  .product_list ul li {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 767px) {
  .idx .idx_six .nav_left{
    width: 100%;
    border: none;
  }
  .idx .idx_six .nav_left li p{
    display: none;
  }
  .idx .idx_six .show_right{ 
    width: 100%;
  }
  .idx .idx_six .nav_left li{
    float: left;
    width: 33.33%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .idx .idx_six .nav_left li .iconfont{
    display: none;
  }
  .idx .idx_six .nav_left .active::after{
    display: none;
  }
  .idx .idx_six .nav_left li h6{
    padding: 0;
    font-size: 20px;
  }
  .idx .idx_six .nav_left li{
    padding: 0;
    height: 100px;
  }
  
  .news .news_list .news_load .load_img {
    width: 47%;
  }
  .news .news_list .news_load {
    left: 6px;
  }
  .padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .main_tit h2 {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0;
  }
  .main_tit .tit_p {
    font-size: 18px;
    line-height: 1;
    padding-top: 5px;
  }
  .main_tit {
    text-align: center;
    padding: 0 0 30px 0;
  }
  .coop .coop_two .coop_two_tab {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .case_det .case_det_list li {
    padding: 25px;
  }
  .case_det .atc time {
    font-size: 12px;
    padding: 5px 0 20px 0;
  }
  .case_det .atc h2 {
    font-size: 24px;
  }
  .case_det .atc {
    padding-bottom: 40px;
  }
  .case_det_two h6 {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .prodcut_sel .prodcut_cont .sel_list li .txt h4 {
    font-size: 20px;
    padding: 15px 0 5px;
  }
  .prodcut_sel .prodcut_cont .sel_list li .imgCover {
    height: 300px;
  }
  .prodcut_sel .prodcut_cont .sel_list li {
    width: 100%;
  }
  .common_one .common_list li .w {
    padding: 8px 15px;
  }
  .common_one .common_list li .d {
    padding: 20px 15px;
  }
  .common_one .common_list li .w span {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
  }
  .common_one .common_list li .d span {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
  }
  .common_one .common_list li .w p {
    font-size: 14px;
    line-height: 25px;
  }
  .common_one .common_list li .w i {
    font-size: 16px;
    margin-top: 0;
  }
  .common_one .common_list li .d .atc {
    max-width: 80%;
  }
  .common .btn_ {
    margin-top: 15px;
    width: 145px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
  .nav_wrap .nav_head {
    padding: 15px 0 !important;
  }
  .about .about_one .txt .atc p {
    line-height: 24px;
  }
  .honor .honor_list ul {
    justify-content: space-evenly;
  }
  .honor .honor_list ul li {
    width: 31%;
  }
  footer {
    padding-top: 25px;
  }
  footer .footRight .box {
    width: auto;
    margin-right: 16px;
  }
  footer .footRight .box ul {
    display: none;
  }
  footer .footRight .box h6 {
    font-size: 14px;
    line-height: 15px;
    padding-bottom: 10px;
  }
  footer .copyRight {
    padding: 10px 0;
    margin-top: 15px;
  }
  footer .copyRight p,
  footer .copyRight a {
    font-size: 12px;
  }
  .coop .coop_two .swiper-button-next,
  .coop .coop_two .swiper-button-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .news .news_list .news_load .load_img .txt {
    padding-bottom: 0;
  }
  .news .news_list .news_load .load_img h4 {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .solution .solution_list .solution_list_con ul li {
    width: 49%;
  }
  .solution .solution_list .solution_list_con ul li .imgCover {
    height: 30vw;
  }
  .solution .solution_list .solution_list_con ul li p {
    font-size: 14px;
  }
  .solution .solution_list .solution_list_nav ul li {
    width: 33.3%;
    height: 40px;
    line-height: 40px;
    padding: 0 1%;
    margin: 0 0 1%;
  }
  .solution .solution_list .solution_list_nav ul li a {
    font-size: 14px;
  }
  .service .service_two .sv_tab_con .sv_ps_tab .swiper-slide em {
    width: 80px;
    height: 80px;
  }
  .service .service_two .sv_two_nav ul li {
    font-size: 16px;
    height: 45px;
    line-height: 45px;
  }
  .service .service_three .sv_team_tab .swiper-slide .img {
    height: auto;
    width: 100%;
  }
  .service .service_three .sv_team_tab .swiper-slide .img img {
    position: inherit;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt {
    height: auto;
    width: 100%;
    padding: 20px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt h3 {
    font-size: 26px;
    padding-bottom: 15px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt h3::after {
    height: 4px;
    margin-top: -4px;
  }
  .service .service_three .sv_team_tab .swiper-slide .txt .atc p {
    font-size: 14px;
    line-height: 24px;
  }
  .service .service_three .sv_team_nav {
    padding: 20px;
  }
  .service .service_three .wrap_tit .btn_ {
    width: 130px;
    height: 40px;
    font-size: 16px;
    margin-top: 10px;
    line-height: 40px;
  }
  .service .service_eight .tit_bxo p {
    font-size: 18px;
  }
  .service .service_eight .tit_bxo h2 {
    font-size: 26px;
  }
  .service .service_three .sv_team_nav .swiper-slide {
    height: 65px;
  }
  .service .service_eight .tit_bxo .eighttab_box {
    width: 100%;
  }
  .service .service_eight .tit_bxo .eighttab_box .swiper-button-next,
  .service .service_eight .tit_bxo .eighttab_box .swiper-button-prev {
    width: 50%;
    height: 40px;
    margin-top: 420px;
    line-height: 40px;
    font-size: 20px;
  }
  .service .service_eight .tit_bxo .eighttab_box .swiper-button-next {
    right: 0;
  }
  .service .service_eight .tit_bxo .eighttab_box .swiper-button-prev {
    left: 0;
  }
  .service .service_eight .service_eight_tab .swiper-slide .img {
    width: 100%;
    float: none;
    position: relative;
    z-index: 9;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt {
    width: 100%;
    margin: 0;
    height: auto;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
  .service .service_eight .service_eight_tab .swiper-slide {
    width: 100%;
    height: auto;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt .box {
    position: inherit;
    transform: translate(0);
    width: 100%;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt .box .atc {
    padding: 20px 0;
  }
  .service .service_eight .service_eight_tab .swiper-slide .txt .box h6 {
    font-size: 24px;
    color: #0668cd;
  }
  .service .service_eight .service_eight_tab .swiper-slide .img {
    height: 200px;
    overflow: hidden;
  }
  .service .service_eight .service_eight_tab .swiper-slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
  }
  .service .service_eight .service_eight_tab {
    padding-top: 0;
    padding-bottom: 75px;
  }
  .service .service_seven .honor_tab .swiper-button-next {
    right: 0;
  }
  .service .service_seven .honor_tab .swiper-button-prev {
    right: 75px;
  }
  .service .service_seven .honor_tab .swiper-button-next,
  .service .service_seven .honor_tab .swiper-button-prev {
    width: 65px;
    height: 35px;
    margin-top: -250px;
    line-height: 35px;
    font-size: 16px;
  }
  .service .service_seven .honor_tab .swiper-slide .txt {
    padding-top: 75px;
  }
  .service .service_seven .honor_tab .swiper-slide .txt p {
    font-size: 16px;
  }
  .service .service_seven .honor_tab_nav {
    padding-top: 15px;
  }
  .service .service_four ul li .txt strong {
    font-size: 14px;
    color: #333;
  }
  .service .service_four ul li .txt {
    padding: 15px;
  }
  .service .service_six .one {
    padding: 15px;
    height: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  .service .service_six .jszc ul .itme {
    padding: 20px 0;
  }
  .service .service_six .jszc ul li {
    padding: 10px 0;
  }
  .service .service_six .tit span {
    font-size: 20px;
    line-height: 50px;
  }
  .service .service_three {
    padding-top: 120px;
  }
  .idx .idx_seven .list_ li {
    height: 13vw;
  }
  .idx .idx_eight .news_right li {
    padding: 0 5px;
  }
  .idx .idx_eight .news_right .text .act {
    margin-left: 20px;
  }
  .idx .idx_eight .text .right_time em {
    line-height: 39px;
  }
  .idx .idx_eight .news_left::after {
    top: 115px;
  }
}
@media all and (max-width: 575px) {
  .idx .idx_two .prod_list .item3{
    border-right: 2px solid #f5f5f5;
  }
  .idx .idx_two .prod_list .item3:last-child{
    border: 0;
  }
  #banner .banner_tab {
    height: 250px;
  }
  .nav_det nav a {
    line-height: 25px;
  }
  .culture .culture_list ul li {
    padding: 15px;
  }
  .btn_ {
    width: 100px;
    line-height: 25px;
    height: 25px;
    font-size: 12px;
  }
  .banner_inner {
    height: 200px;
  }
  body,
  p {
    font-size: 12px;
    line-height: 20px;
  }
  .coop_abt .coop_list .btn_more {
    margin-top: 10px;
  }
  .case_det .case_det_list li .txt h3 {
    padding-bottom: 5px;
    font-size: 16px;
  }
  .case_det .case_det_list li .txt {
    margin-top: 20px;
  }
  header .head_inner .menu_box .menu_show span:nth-child(1) {
    transform: matrix(1, 0, 0, 1, 0, 9) rotate(45deg);
  }
  header .head_inner {
    padding: 15px 0;
  }
  header .head_inner .head_logo img {
    height: 35px;
  }
  header .head_inner .head_txt {
    padding-left: 20px;
    display: none;
  }
  header .head_inner .head_txt h2 {
    font-size: 14px;
    padding: 0;
  }
  header .head_inner .head_txt p {
    font-size: 12px;
    line-height: 14px;
  }
  header .head_inner .menu_box {
    height: 27px;
    margin-top: -1px;
  }
  header .head_inner .menu_box .menu_btn span {
    width: 35px;
    height: 2px;
    margin: 8px 0 0;
  }
  .prodcut_sel .prd_sel_nav .one_box .list .active {
    height: 50px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list .active a {
    font-size: 16px;
    line-height: 50px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list li {
    height: 40px;
    width: 50%;
  }
  .prodcut_sel .prd_sel_nav .one_box .sel_box {
    padding: 10px 15px;
  }
  .prodcut_sel .prd_sel_nav .one_box .sel_box span {
    font-size: 14px;
  }
  .prodcut_sel .prd_sel_nav .one_box .sel_box .num {
    font-size: 14px;
    margin-left: 10px;
  }
  .prodcut_sel .prd_sel_nav .one_box .sel_box .act {
    font-size: 14px;
    line-height: 20px;
  }
  .prodcut_sel .prd_sel_nav .one_box .list li a {
    font-size: 14px;
    line-height: 40px;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr .list {
    margin-top: 5px;
    width: 100%;
    margin-left: 0;
  }
  .prodcut_sel .prd_sel_nav .one_box .sel_box .act i img {
    margin-top: 4px;
    width: 20px;
  }
  .prodcut_sel .prodcut_cont .sel_list li .imgCover {
    height: 230px;
  }
  .product_det .sel_shopping .sel_txt .call_box .num strong a {
    font-size: 20px;
  }
  .product_det .sel_shopping .sel_txt .call_box .num i img {
    width: 16px;
  }
  .product_det .sel_shopping .sel_txt .call_box .num {
    float: right;
  }
  .product_det .sel_shopping .sel_txt .sel_box .tr p {
    width: 90%;
    line-height: 1.2;
  }
  .prodcut_sel .prodcut_cont .btn_ {
    width: 175px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
  .prodcut_sel .prodcut_cont .btn_ i img {
    width: 12px;
    vertical-align: 0px;
  }
  .prodcut_sel .prd_sel_nav .two_box .tr span {
    width: 100%;
  }
  .product_det .sel_shopping .show_img .small_img {
    height: auto;
    width: 100%;
    padding: 0;
    margin-top: 15px;
  }
  .product_det .sel_shopping .sel_txt .tit .list_tit {
    justify-content: space-around;
  }
  .product_det .sel_shopping .show_img .show-img {
    width: 100%;
  }
  .product_det .sel_shopping .show_img .small_img .swiper-slide-thumb-active::after {
    display: none;
  }
  .product_det .sel_shopping .show_img .show-img .gallery-top {
    height: 300px;
  }
  .product_det .prd_content .cont_nav ul li {
    width: 32%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
  .product_det .prd_content .content {
    padding: 15px;
  }
  .product_det .prd_content {
    padding-bottom: 40px;
  }
  .about .img_list ul {
    flex-wrap: wrap;
  }
  .about .img_list ul li {
    width: 100%;
  }
  .about .about_two .about_two_tab {
    padding: 15px;
  }
  .about .about_two .about_two_tab .swiper-pagination {
    padding: 15px;
  }
  .coop .coop_one .tit_img {
    height: 315px;
  }
  .coop .coop_one .tit_txt h2 {
    font-size: 28px;
    line-height: 30px;
    letter-spacing: 0;
  }
  .coop .coop_three li a {
    display: block;
  }
  .coop .coop_three li {
    border-right: none;
  }
  .coop .coop_three li .txt {
    padding: 10px;
  }
  .coop .coop_three li .txt .atc {
    width: 100%;
  }
  footer .copyRight .js {
    margin-top: -24px;
  }
  .coop .coop_one .tit_txt h6 {
    padding-top: 30px;
  }
  .coop_abt .coop_list ul li {
    width: 32%;
  }
  .contact .txt .positi ul li {
    width: 100%;
    height: auto;
  }
  .contact .txt .positi ul li .one {
    width: 70%;
  }
  .contact .txt h4 {
    font-size: 36px;
    line-height: 36px;
  }
  .contact .txt h6 {
    font-size: 26px;
    line-height: 26px;
    padding: 10px 0 30px;
  }
  .contact .txt h1 {
    font-size: 20px;
  }
  .contact .contact_two .ipt_box {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-indent: 10px;
    margin-bottom: 5px;
  }
  .contact .contact_two textarea {
    text-indent: 10px;
  }
  .contact .contact_two .btn_ {
    margin-top: 10px;
  }
  .contact .txt .positi ul li p {
    font-size: 14px;
  }
  .honor .honor_list ul li {
    width: 47%;
  }
  #page .prev,
  #page .next {
    width: 60px;
    margin: 0;
  }
  #page a {
    line-height: 30px;
    min-width: 30px;
    height: 30px;
  }
  #page {
    text-align: center;
    padding: 20px 0;
  }
  .honor .honor_list ul {
    padding-bottom: 10px;
  }
  .news .news_tips .txt .box {
    padding: 20px;
  }
  .news .news_tips .txt .box h3 {
    font-size: 22px;
  }
  .news .news_tips .txt .box .atc {
    margin: 10px 0 20px;
    -webkit-line-clamp: 2;
  }
  .news .news_tips .txt .box .btn {
    width: 120px;
    height: 30px;
    line-height: 30px;
  }
  .news .news_tips .txt .box time em {
    font-size: 30px;
  }
  .idx .idx_two .prod_list .item2 {
    width: 100%;
    margin-top: 1%;
  }
  .idx .idx_two .prod_list .item1 {
    width: 100%;
  }
  .idx .idx_two .prod_list .item3,
  .idx .idx_two .prod_list .item4 {
    width: 49.5%;
    margin-left: 0;
  }
  .idx .idx_two .prod_list .item4 {
    float: right;
  }
  .idx .idx_one .list li .box p {
    font-size: 12px;
    width: 55px;
    margin: 0 auto;
  }
  .idx .idx_one .list li i {
    margin-top: 19px;
  }
  .idx .idx_one .list li {
    height: 60px;
  }
  .idx .idx_one .list li i img {
    width: 20px;
  }
  .idx .idx_one .list li .box .line {
    margin: 20px auto 10px;
    height: 25px;
  }
  .idx .idx_three .chushou .itme1 {
    height: 345px;
    width: 100%;
    margin-bottom: 1%;
  }
  .idx .idx_three .chushou .itme2:nth-child(even){
    border-right: 2px solid #fff;
  }
  .idx .idx_three .chushou .itme2,
  .idx .idx_three .chushou .itme3 {
    margin-left: 0;
    margin-bottom: 1%;
  }
  .idx .idx_three .chushou li {
    width: 49.5%;
  }
  .idx .idx_three .chushou .itme3 {
    float: right;
  }
  .idx .idx_three .chushou .itme4 {
    margin-left: 0;
  }
  .idx .idx_three .chushou .itme5 {
    float: right;
  }
  .idx .idx_three .chushou li .text .btn {
    display: none;
  }
  .idx .idx_three .chushou li {
    height: 105px;
    padding: 0 10px;
  }
  .idx .idx_four .cpt li {
    width: 100%;
    margin-bottom: 10px;
  }
  .idx .idx_five .shuangwu .itme1 {
    height: 285px;
    width: 100%;
    margin-bottom: 1%;
  }
  .idx .idx_five .shuangwu .itme2,
  .idx .idx_five .shuangwu .itme4 {
    width: 49.5%;
    margin: 0 0 .6%;
  }
  .idx .idx_five .shuangwu .itme3,
  .idx .idx_five .shuangwu .itme5 {
    margin-bottom: .6%;
    float: right;
    width: 49.5%;
  }
  .idx .idx_abt .idx_abt_tab .swiper-slide .txt span {
    margin-top: 10px;
  }
  .idx .idx_abt .idx_abt_tab .swiper-slide .txt h4 {
    font-size: 16px;
    line-height: 45px;
  }
  .idx .idx_abt .idx_abt_tab .swiper-slide .txt {
    height: 45px;
    padding: 0 20px;
  }
  .idx .idx_six .nav_left li h6 {
    /* padding: 25px 0 8px 0; */
    font-size: 14px;
  }
  .idx .idx_six .nav_left li p {
    font-size: 12px;
  }
  .idx .idx_six .nav_left li .iconfont {
    margin-top: 10px;
  }
  .idx .idx_six .nav_left li {
    height: 75px;
    /* padding-left: 10px; */
  }
  .idx .idx_six .nav_left .active::after {
    right: -20px;
    top: 54px;
    border-width: 10px;
  }
  .idx .idx_six .show_right .txt h4 {
    font-size: 18px;
    padding-top: 20px;
  }
  .idx .idx_six .show_right .txt {
    padding: 0 10px;
  }
  .idx .idx_six .show_right .txt .act span {
    font-size: 12px;
    display: block;
  }
  .product_list .num_box .cont strong {
    font-size: 16px;
  }
  .solution .solution_list .solution_list_nav ul li {
    width: 50%;
    height: 40px;
    line-height: 40px;
    padding: 0 1%;
    margin: 0 0 1%;
  }
  .product_list .num_box .cont span {
    letter-spacing: 0;
    font-size: 12px;
    margin-top: 1px;
  }
  .product_list .num_box {
    width: 120px;
    height: 60px;
  }
}
@media all and (max-width: 320px) {
  header .head_inner .head_txt {
    display: none;
  }
}
ul.show-more-2.z-list{
  justify-content: inherit;
}
ul.show-more-2.z-list li{
  width: 16.66%;
  height: 130px;
  box-sizing: border-box;
  padding: 0 10px;
}
ul.show-more-2.z-list li a{
  display: flex;
  width: 100%;
  height: 100%;
}
ul.show-more-2.z-list li .img{
  width: 100%;
  height: auto;
  background: #fff;
}
ul.show-more-2.z-list li img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service .service_six .fwfk .btnUp input{
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.z-header-eweima{
  position: relative;
  cursor: pointer;
}
.z-eweima-box{
  display: none;
  position: absolute;
  width: 100px;
  left: 50%;
  margin: 0 0 0 -50px;
  top: 100%;
  box-shadow: 0 2px 5px -2px #757575;
}
.z-eweima-box img{
  width: 100%;
}
.z-header-eweima:hover .z-eweima-box{
  display: block;
}
.swiper-container.z-service_eight_tab .swiper-slide{
  padding: 60px 0;
  overflow: hidden;
}
.z-service_eight_tab .z-flexbox{
  display: flex;
  align-items: center;
}
.z-service_eight_tab .z-item{
  flex: 1;
  display: flex;
  align-items: center;
}
.z-service_eight_tab .z-item .img{
  flex: 0 0 100%;
  position: relative;
  z-index: 1;
}
.z-service_eight_tab .z-item .txt{
  position: relative;
  transition: .8s;
  display: flex;
  align-items: center;
  padding: 80px;
}
.z-service_eight_tab .z-item .txt .box{
  position: relative;
  z-index: 1;
  transform: translateY(100%);
  opacity: 0;
}
.z-service_eight_tab .z-item .txt:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(1.2);
  background: #fff;
  opacity: 0;
}
.z-service_eight_tab .z-item.active .txt:after{
  opacity: 1;
  transition: .8s;
}
.z-service_eight_tab .z-item.active{
  flex: 2.8;
}
.z-service_eight_tab .z-item.active .img{
  flex: 0 0 322px;
  max-width: 322px;
}
.z-service_eight_tab .z-item.active .txt .box{
  transform: translateY(0);
  opacity: 1;
  transition: .8s;
}
.z-service_eight_tab .z-item.active .txt h6{
  font-size: 36px;
  color: #0668cd;
}
.z-service_eight_tab .z-item.active .txt .atc{
  padding: 40px 0 60px;
}
.z-service_eight_tab .z-item.active .txt .atc p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .z-service_eight_tab .z-item.active .img{
    flex: 0 0 238px;
    max-width: 238px;
  }
  .z-service_eight_tab .z-item .txt{
    padding: 40px;
  }
}
@media (max-width: 1200px) {
  .z-service_eight_tab .z-item.active .img{
    flex: 0 0 196px;
    max-width: 196px;
  }
  .z-service_eight_tab .z-item.active .txt .atc{
    padding: 20px 0 30px;
  }
  .z-service_eight_tab .z-item.active .txt h6{
    font-size: 26px;
  }
  .z-service_eight_tab .z-item .txt{
    padding: 25px;
  }
}
@media (min-width: 992px) {
  .service_eight_tab{
    display: none;
  }
}
@media (max-width: 991px) {
  .z-service_eight_tab{
    display: none;
  }
}

.z-service-box{
  clear: both;
  display: flex;
  align-items: stretch;
}
.z-service-box .leftbox{
  flex: 0 0 33%;
  max-width: 33%;
  height: auto;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
  border-bottom: 0;
}
.z-service-box .gallery-left{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.z-service-box .gallery-left .swiper-slide{
  display: flex;
}
.z-service-box .gallery-left .item{
  width: 100%;
  height: auto;
  border-bottom: solid 1px #ddd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 40px;
  cursor: pointer;
}
.z-service-box .gallery-left .item h6{
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 24px;
  padding: 55px 0 8px 0;
}
.z-service-box .gallery-left .item p{
  font-size: 16px;
  -webkit-text-overflow: ellipsis;
  -webkit-white-space: nowrap;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #333333;
}
.z-service-box .gallery-left .item .iconfont{
  font-size: 24px;
  display: block;
  margin-top: 45px;
}
.z-service-box .gallery-left .swiper-slide-thumb-active{
  position: relative;
  background: url(../images/active-bg.jpg) center;
}
.z-service-box .gallery-left .swiper-slide-thumb-active .item h6,
.z-service-box .gallery-left .swiper-slide-thumb-active .item p,
.z-service-box .gallery-left .swiper-slide-thumb-active .item .iconfont{
  color: #fff;
}
.z-service-box .gallery-right{
  flex: 0 0 67%;
  max-width: 67%;
}
.z-service-box .gallery-right .item .txt{
  padding: 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.z-service-box .gallery-right .item .txt h4{
  font-size: 24px;
  color: #0668cd;
}
.z-service-box .gallery-right .item .txt h4:after{
  content: "";
  display: block;
  margin: 20px 0;
  width: 41px;
  height: 2px;
  background-color: #0668cd;
}
.z-service-box .gallery-right .item .txt .act{
  word-spacing: 50px;
}
.z-service-box .gallery-right .item .txt .act span{
  font-size: 16px;
  word-spacing: 0;
}
@media (max-width: 1599px){
  .z-service-box .gallery-left .item h6{
    padding: 30px 0 8px 0;
  }
}
@media (max-width: 991px){
  .z-service-box .gallery-left .item{
    padding-left: 20px;
  }
  .z-service-box .gallery-left .item .iconfont{
    margin-top: 20px;
  }
  .z-service-box .gallery-right .item .txt .act span{
    display: block;
  }
  .z-service-box .gallery-right .item .txt{
    padding: 20px;
  }
  .z-service-box .gallery-left .item h6{
    font-size: 20px;
    padding: 20px 0 8px 0;
  }
}
@media (max-width: 767px){
  .z-service-box{
    flex-wrap: wrap;
  }
  .z-service-box .leftbox,
  .z-service-box .gallery-right{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .z-service-box .leftbox{
    border: 0;
  }
  .z-service-box .gallery-left{
    position: static;
  }
  .z-service-box .gallery-left .item p,
  .z-service-box .gallery-left .item .iconfont{
    display: none;
  }
  .z-service-box .gallery-left .item,
  .z-service-box .gallery-left .item h6{
    padding: 0;
  }
  .z-service-box .gallery-left .item h6{
    line-height: 4;
    text-align: center;
  }
}
@media (max-width: 576px){
  .z-service-box .gallery-left .item h6{
    font-size: 14px;
  }
}

@media (max-width: 1440px) {
  .prodcut_sel .prd_sel_nav .two_box .tr .list li a,
  .prodcut_sel .prd_sel_nav .one_box .list li a,
  .prodcut_sel .prd_sel_nav .one_box .list .active a{
    font-size: 16px;
  }
  .prodcut_sel .prd_sel_nav .two_box{
    margin-top: 15px;
  }
  .prodcut_sel .prd_sel_nav{
    padding: 40px 0;
  }
}

.product-screen-group{
  display: inline-block;
}
.product-screen{
  display: inline-block;
  position: relative;
  padding: 0 20px;
  margin: 0 0 0 40px;
}
.screen-btn{
  text-align: center;
  font-size: 16px;
  color: #333;
  display: block;
}
.screen-btn .caret{
  position: relative;
  margin: 0 0 0 5px;
  flex: 1;
}
.screen-btn .caret:after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
}
@media (max-width: 767px) {
  .screen-btn .caret:after{
    left: inherit;
    border-top: 8px solid #0668cd;
  }
}
.screen-ul{
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: #e7e7e7;
  padding: 10px 0;
  min-width: 100%;
}
.screen-ul > li > a{
  display: block;
  font-size: 14px;
  line-height: 40px;
  padding: 0 20px;
  white-space: nowrap;
}
.screen-ul > li > a:hover{
  background: #ddd;
}
.screen-ul > li.active > a{
  color: #0668cd;
}
@media (min-width: 768px) {
  .product-screen:hover .screen-btn .caret:after{
    border-top: 8px solid #fff;
  }
}
.product-screen.open .screen-btn .caret:after{
  border-top: 0;
  border-bottom: 8px solid #fff;
}
@media (max-width: 992px) {
  .prodcut_sel .prd_sel_nav .two_box .tr .list li a,
  .prodcut_sel .prd_sel_nav .one_box .list li a,
  .prodcut_sel .prd_sel_nav .one_box .list .active a{
    font-size: 14px;
  }
  .product-screen{
    margin: 0;
  }
  .screen-btn{
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sm-hide{
    display: none;
  }
  .prodcut_sel .prd_sel_nav {
    padding: 20px 0 15px;
  }
}

.app-operate{
  width: 100%;
  display: flex;
}
.app-operate .operate-btn{
  flex: 1;
}
.app-operate .operate-btn.classify-popup-btn, .app-operate .operate-btn.screen-popup-btn{
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #0668cd;
  font-size: 14px;
  color: #fff;
}
.app-operate .operate-btn.screen-popup-btn{
  background: #949494;
  margin: 0 0 0 15px;
}
@media (min-width: 768px) {
  .app-operate{
    display: none;
  }
}

.classify-popup, .screen-popup{
  position: fixed;
  background: #E5E5E5;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  padding: 10% 20px;
  box-sizing: border-box;
  overflow: auto;
  display: none;
}
.classify-popup h4, .screen-popup h4{
  font-size: 22px;
  color: #000;
}
.classify-ul{
  margin: 20px 0 0;
}
.classify-ul > li{
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}
.classify-ul > li > a{
  display: block;
  font-size: 14px;
  line-height: 40px;
}
.classify-ul > li.active > a{
  color: #0668cd;
}
.popup-btn-group{
  margin: 30px 0 0;
  width: 100%;
  display: flex;
}
.popup-btn-group a{
  flex: 1;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #949494;
  font-size: 14px;
  color: #fff;
}
.popup-btn-group a.ok{
  background: #0668cd;
  margin: 0 0 0 15px;
}
.screen-popup .screen-ul{
  position: relative;
}
.screen-popup .product-screen{
  padding: 0;
  display: block;
  margin: 20px 0 0;
}
.screen-popup .screen-btn{
  display: flex;
  justify-content: space-between;
  line-height: 2;
}
@media (max-width: 767px) {
  .hidden-sm-xs{
    display: none;
  }
}

@media (max-width: 576px) {
  ul.show-more-2.z-list{
    margin: 0 -20px;
  }
  ul.show-more-2.z-list li{
    width: 50%;
  }
}

.home-section9 .callme {
  position: fixed;
  z-index: 999;
  right: 0;
  top: calc(50% - 200px);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.home-section9 .callme li {
  box-sizing: border-box;
  position: relative;
}
.home-section9 .callme li a {
  transition: 0.4s;
  width: 99px;
  display: block;
  color: #0089e1;
  text-align: center;
  padding-top: 43px;
  border: 1px solid #0089e1;
  border-top: none;
  border-radius: 5px 0 0 5px;
  padding-bottom: 10px;
}
.home-section9 .callme li .img_wx {
  left: 105px;
  border: none;
  top: 80px;
  background: #fff;
  padding: 5px;
  position: absolute;
}
.home-section9 .callme li .img_wxgz {
  left: 105px;
  border: none;
  top: 0;
  background: #fff;
  padding: 5px;
  position: absolute;
}
.home-section9 .callme li:hover .img_wx {
  left: -132px;
}
.home-section9 .callme li:hover .img_wxgz {
  left: -132px;
}
.home-section9 .callme li:nth-child(1) a {
  background: rgba(255, 255, 255, 1) url(../images/icon_r1.png) no-repeat center 15px / auto 25px;
  border-top: 1px solid #0089e1;
}
.home-section9 .callme li:nth-child(2) a {
  background: rgba(255, 255, 255, 1) url(../images/icon_r1.png) no-repeat center 15px / auto 25px;
}
.home-section9 .callme li:nth-child(3) a {
  background: rgba(255, 255, 255, 1) url(../images/icon_r2.png) no-repeat center 15px / auto 25px;
}
.home-section9 .callme li:nth-child(4) a {
  background: rgba(255, 255, 255, 1) url(../images/icon_r3.png) no-repeat center 15px / auto 25px;
}
.home-section9 .callme li:nth-child(5) a {
  background: rgba(255, 255, 255, 1) url(../images/icon_r4.png) no-repeat center 15px / auto 25px;
}
.home-section9 .callme.on {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1199px) {
  .home-section9{
    display: none;
  }
}




.home-bottom-operate-fixed {
  display: none;
  position: relative;
  z-index: 999;
  width: 100%;
  height: 40px;
}
.home-bottom-operate {
  background: #f5f5f5;
  position: fixed;
  width: 100%;
  height: 40px;
  left: 0;
  bottom: 0;
  z-index: 999;
}
.home-bottom-operate .flexbox {
  width: 100%;
  height: 100%;
  display: flex;
}
.home-bottom-operate .flexbox .col {
  position: relative;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  height: 100%;
}
.home-bottom-operate .flexbox .col a {
  height: 100%;
  background: #fff;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-bottom-operate .flexbox .col a.active {
  background: #ffac00;
  color: #fff;
}
.home-bottom-operate .flexbox .col a img {
  width: 20px;
  margin: 0 5px 0 0;
  filter: brightness(10);
}
.home-bottom-operate .flexbox .col1 a{background: #2189f4}
.home-bottom-operate .flexbox .col2 a{background: #252525}
.home-bottom-operate .flexbox .col3 a{background: #6d6d6d}

.home-bottom-operate .flexbox .col3:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  bottom: 100%;
  margin: auto;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #6d6d6d;
}
@media (max-width: 575px) {
  .home-bottom-operate-fixed{
    display: block;
  }
}
.app-banner{
  display: none;
  height: auto !important;
}
.pc-banner{
  display: block;
}
@media (max-width: 575px) {
  .app-banner{
    display: block;
  }
  .pc-banner{
    display: none;
  }
}