body {
  font-family: "Microsoft YaHei", sans-serif, Arial;
  font-size: 12px;
  color: #333;
  background: #fff;
}
html, body, h1, h2, h3, h4, h5, h6, p, ul, li {
  padding: 0;
  margin: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
          box-sizing: border-box;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover, a:active, a:link {
  color: #448fcd;
	text-decoration: none;
}
p {
  line-height: 23px;
}
ul, li {
  list-style: none;
}
em, i {
  font-style: normal;
}
input:focus {
  outline: none;
}
input:-moz-placeholder {color: #999;}
input::-webkit-input-placeholder {color: #999;}
input:-ms-input-placeholder {color: #999;}

/* common */
img {
  max-width: 100%;
}
.img {
  overflow: hidden;
}
.img img {
  width: 100%;
}
input[type="submit"], input[type="reset"], a, .gridlist img, .img img, .video_img img, .main_caseshow .swiper-slide img {
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  -ms-transition: .5s all;
  -o-transition: .5s all;
  transition: .5s all;
}
li:hover .img img, .inews_left a:hover img, .video_list li:hover .video_img a > img, .main_caseshow .swiper-slide:hover img {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear:after, .download_list li::after {
  content: '';
  clear: both;
  display: block;
}
@media screen and (min-width:1440px) {
  .container {
    width: 1400px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width:1200px) {
  .wp_con {
    width: 1100px;
    margin: 0 auto;
  }
}

/* index */
.pc-header {
  z-index: 100;
  width: 100%;
  padding: 10px 0 0;
}
.logo img {
  max-height: 68px;
}
.header_right, .hitext, .language {
  margin-top: 4px;
}
.hitext {
  font-size: 14px;
  float: left;
}
.hitext span {
  margin-right: 15px;
}
.hitext span img {
  margin-right: 5px;
}
.fa-search {
  display: none;
  height: 15px;
  width: 15px;
  float: right;
  background-image: url(../images/search.png);
  background-repeat: no-repeat;
  margin: 10px 0 0 20px;
}
.search_block_top {
  float: left;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  height: 36px;
  overflow: hidden;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  width: 194px;
  line-height: 34px;
  margin-top: -5px;
}
.search_block_top input#sub_bg {
	float: right;
	padding: 0;
	cursor: pointer;
	background: url("../images/search.png") no-repeat left center;
	height: 34px;
	width: 25px;
	border: none;
}
.search_block_top input#search_query {
  background: none;
  border: none;
  width: calc(100% - 35px);
  float: left;
  height: 34px;
  padding: 0 0 0 13px;
  color: #333;
  font-size: 12px;
  font-family: "Microsoft YaHei",sans-serif,Arial;
}
.language, .language a {
  margin-left: 6px;
  display: inline-block;
}
/* nav */
.nav {
  margin-top: 8px;
  text-align: center;
  position: relative;
  z-index: 9;
}
.nav a::before {
  color: #448fcd;
  content: attr(data-hover);
  position: absolute;
  opacity: 0;
  text-shadow: 0 0 1px rgba(255,255,255,0.3);
  -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.nav a:hover::before, .nav a:focus::before {
  -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  opacity: 1;
}
.nav .active > a, .nav_item:hover > a {
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-name: breathe;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-name: breathe;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  animation-timing-function: ease-in-out;
  animation-name: breathe;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@-webkit-keyframes breathe {
  0% {
      opacity: .7;
      text-shadow:0px 0px 1px #448fcd;
  }
  100% {
      opacity: 1;
      text-shadow:0px 0px 10px #448fcd;
  }
}
@-moz-keyframes breathe {
  0% {
      opacity: .7;
      text-shadow:0px 0px 1px #448fcd;
  }
  100% {
      opacity: 1;
      text-shadow:0px 0px 10px #448fcd;
  }
}
@keyframes breathe {
  0% {
      opacity: .7;
      text-shadow:0px 0px 1px #448fcd;
  }
  100% {
      opacity: 1;
      text-shadow:0px 0px 10px #448fcd;
  }
}
.nav_item {
  float: left;
  margin-left: 60px;
  position: relative;
}
.nav_item > a {
  height: 32px;
  display: block;
  padding: 0 10px 11px;
  font-size: 16px;
  color: #333;
  -webkit-transition: all .4s;
  transition: all .4s;
}
.nav_item2 {
  display: block;
  position: relative;
}
.nav_item2 > a {
  padding: 0 27px 5px;
  display: block;
  font-size: 18px;
  color: #0062ae;
  font-family: "Myfamily";
  -webkit-transition: all .4s;
  transition: all .4s;
}
.menu_open, .hcover, .subopen, .subopenopen {
  display: none;
}
@media screen and (min-width:1001px) {
  .nav_item.active > a,
  .nav_item:hover > a,
  .nav_item2.active > a,
  .nav_item2:hover > a {
    color: #448fcd;
    border-bottom: 3px solid #448fcd;
  }
  .nav_item2:hover > a, .nav_item3:hover > a {
    border: none;
  }
}
.nav_item_open, .nav_item2_open {
  width: 169px;
  height: auto;
  position: absolute;
  left: -50%;
  top: 100%;
  z-index: 10;
  opacity: 0;
  padding: 10px 0;
  visibility: hidden;
  -webkit-transform: translateY(34px);
  transform: translateY(34px);
  -webkit-transition: all .4s;
  transition: all .4s;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 12, 49, 0.5);
  -moz-box-shadow: 0 4px 15px 0 rgba(0, 12, 49, 0.5);
  box-shadow: 0 4px 15px 0 rgba(0, 12, 49, 0.5);
}
.nav_item2_open {
  top: 0;
  left: 169px;
}
.nav_item:hover .nav_item_open, .nav_item2:hover .nav_item2_open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.nav_item2 a, .nav_item3 a {
  color: #333;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  line-height: 28px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav_item3 a {
  padding: 0 20px;
}
.hcover {
  display: none;
}
@media screen and (max-width:1000px) {
  .menu_open {display: block; float: right; width: 24px; height: 20px; margin-top: 10px; margin-left: 15px; }
  .menu_open i { height: 2px; width: 100%; background: #333; display: block; margin-bottom: 7px; }
  .nav { margin-top: 0; width: 50%; height: 100%; position: fixed; top: 0; left: -100%; z-index: 100; overflow: hidden; background: #333; color: rgba(255, 255, 255, .6); }
  .hcover { display: block; width: 50%; height: 100%; background: rgba(0, 0, 0, .6); position: fixed; right: -100%; top: 0; z-index: 101; }
  .nav_ul { margin: 0; width: 100%; height: 100%; position: absolute; top: 0; left: 0; overflow-x: hidden; overflow-y: auto; padding-top: 20px; text-align: left; }
  .nav_item, .nav_item2 { float: none; margin: 0; }
  .nav_item:after, .nav_item2:after { content: ''; display: block; width: 100%; border-bottom: 1px solid rgba(0, 0, 0, .15); margin-left: 20px; }
  .nav_item > a, .nav_item2 > a { display: block; margin: 0; font-size: 14px; line-height: 1.8; color: inherit; padding: 10px 10px 10px 20px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; margin-right: 40px; }
  .nav_item i, .nav_item2 i { position: absolute; z-index: 2; top: 0; right: 0; width: 40px; height: 100%; }
  .nav_item i:before, .nav_item2 i:before { content: ''; display: block; height: 100%; border-left: 1px solid rgba(0, 0, 0, .15); position: absolute; top: 0; left: 0; }
  .nav_item i:after, .nav_item2 i:after { content: ''; display: block; width: 7px; height: 7px; margin-bottom: -5px; border: 2px solid rgba(255, 255, 255, .3); border-top: 0; border-left: 0; position: absolute; bottom: 50%; right: 18px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
  .nav_item_open, .nav_item2_open { width: 100%; height: 100%; margin: 0; box-shadow: none; background: #333; border-radius: 0; opacity: 1; visibility: visible; -webkit-transform: translateY(0px); transform: translateY(0px); position: fixed; left: -100%; top: 0; }
  .subopen, .subopenopen { display: block; }
  .subopen a, .subopenopen a { display: block; overflow: hidden; margin: 0; padding: 30px 10px 10px 20px; white-space: nowrap; text-overflow: ellipsis; font-size: 14px; color: rgba(255, 255, 255, .3); background: rgba(0, 0, 0, .1); text-indent: 20px; position: relative; }
  .subopen a:before, .subopenopen a:before { content: ''; display: block; width: 7px; height: 7px; position: absolute; bottom: 50%; left: 22px; margin-bottom: -15px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); border: 2px solid rgba(255, 255, 255, .3); border-right: 0; border-bottom: 0; }
  .nav_item2, .nav_item3 { position: relative;text-align: left;}
  .nav_item3 a { display: block; overflow: hidden; margin: 0; line-height: 1.8; padding: 10px 10px 10px 20px; white-space: nowrap; text-overflow: ellipsis; color: inherit; }
  .nav_item2:after, .nav_item3:after { content: ''; width: 100%; position: absolute; bottom: 0; left: 0; display: block; border-bottom-width: 1px; border-bottom-style: solid; border-bottom: 1px solid rgba(0, 0, 0, .15); margin-left: 20px; }
  .nav_item2_open {
    display: block;
  }
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-container img {
  width: 100%;
}
/* 解决方案 */
.solution_index {
  margin: 18px 0 0;
}
.solution_index li {
  float: left;
  width: 50%;
  margin-bottom: 18px;
  position: relative;
}
.solution_index li:nth-child(2n+1) {
  padding-right: 9px;
}
.solution_index li:nth-child(2n) {
  padding-left: 9px;
}
.solution_index .text {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -35px;
}
.solution_index .text h1 {
  font-size: 30px;
}
.solution_index .text p {
  font-size: 18px;
  margin-top: 15px;
}
/* video */
.video_index {
  float: left;
  width: 100%;
  margin-bottom: 220px;
}
.title-center {
  padding: 45px 0;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.title-center h1 {
  color: #000;
  font-size: 30px;
}
.title-center p {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
  font-family: "Arial";
  text-transform: uppercase;
}
.title-center::after {
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  border-width: 0 1px 1px 0;
  border-color: #666;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.title-center.font-white h1, .title-center.font-white p {
  color: #fff;
}
.title-center.font-white::after {
  border-color: #fff;
}
#certify {
  position: relative;
  max-width: 1800px;
  margin: 20px auto -170px;
}
#certify .swiper-slide {
  width: 640px;
  height: 390px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
#certify .swiper-slide img{
  display: block;
  width: 811px;
  /* height: 391px; */
}
#certify .swiper-pagination {
  display: none;
  width: 100%;
  bottom: 20px;
}
#certify .swiper-button-prev {
  left: 42%;
  top: auto;
  bottom: -40px;
  width: 68px;
  height: 21px;
  background: url(../images/arrow.png) no-repeat;
}
#certify .swiper-button-next {
  right: 42%;
  top: auto;
  bottom: -40px;
  width: 68px;
  height: 21px;
  background: url(../images/arrow.png) no-repeat;
  background-position: -130px 0;
}
#certify .swiper-slide span{
  display: none;
}
#certify div.swiper-slide-active span{
  display: block;
  position: absolute;
  width: 86px;
  top: 50%;
  left: 50%;
  margin-top: -43px;
  margin-left: -43px;
}
/* 新闻资讯 */
.more {
  color: #666;
  font-size: 14px;
  height: 37px;
  line-height: 37px;
  padding: 0 20px;
  display: inline-block;
  margin-top: 27px;
  text-align: center;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.more:hover {
  color: #fff;
  background-color: #448fcd;
}
.ph2 {
  height: 18px;
}
.inews_left {
  float: left;
  width: 35%;
  overflow: hidden;
  position: relative;
}
.inews_left h3 {
  color: #fff;
  font-size: 18px;
  padding: 0 10px;
  line-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
}
.inews_ul {
  float: right;
  width: 65%;
}
.inews_ul li {
  float: left;
  width: calc(50% - 15px);
  padding: 17px;
  margin: 0 0 15px 15px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}
.inews_ul li h3 {
  margin-bottom: 12px;
}
.inews_ul li h3 a {
  color: #000;
  font-size: 18px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inews_ul li p {
  color: #666;
  font-size: 14px;
  -ms-word-break: break-all;
  word-break: break-all;
  width: 100%;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.otherinfo {
  color: #999;
  font-family: "Arial";
  margin-top: 10px;
}
.otherinfo a {
  font-weight: bold;
  font-size: 22px;
  margin-top: -7px;
  font-family: "Microsoft YaHei";
}
.inews_ul li:hover .otherinfo a.fr {
  margin-right: -5px;
  color: #448fcd;
}
.otherinfo img {
  margin-right: 5px;
}
/* footer */
.footer {
  margin-top: 64px;
  padding: 35px 0;
  color: #fff;
  font-size: 14px;
  background-color: #333;
}
.footer_left {
  float: left;
}
.footer-nav {
  color: #636363;
  margin-bottom: 20px;
}
.footer-nav a {
  margin: 0 15px;
  font-size: 16px;
  color: #fff;
}
.footer-nav a:first-child {
  margin: 0 15px 0 0;
}
.hidden_text span {
  margin-right: 25px;
  color: #f2f2f2;
}
.footer .font-six, .footer .font-six a {
  color: #999;
}
.footer-code {
  text-align: center;
  display: block;
  font-size: 12px;
}
.footer-code img {
  margin-bottom: 10px;
}
/* 返回顶部 */
.actGotop {
  position: fixed;
  _position: absolute;
  bottom: 80px;
  right: 10px;
  width: 45px;
  height: 39px;
  display: none;
  z-index: 999;
}
.actGotop a, .actGotop a:link {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url(../images/totop.png) no-repeat;
  _background:url(../images/totop.png) no-repeat;
  outline:none;
}
/* pagination */
.paginations {
	clear: both;
	text-align: center;
	font-size: 12px;
	cursor: default;
	margin: 35px 0 10px;
}
.paginations a {
	padding: 7px 15px;
	background-color: #eaeaea;
	color: #323232; 
	display: inline-block;
	_zoom: 1;
  *display: inline;
  font-size: 12px;
}
.paginations span {
	padding: 7px 15px;
	display: inline-block;
	background-color: #448fcd;
	color: #fff;
}
/******** 搜索 *********/
.shousuo{clear:both;}
.shousuo ul{float:left;width:100%;}
.shousuo li{border-bottom:1px dotted #b8b8b8;margin:0;padding:0;line-height:42px;width:100%;float:left;}
.shousuo li a.nif{float:left;width:84%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;line-height:42px;font-size:14px;color:#4d4d4d;}
.shousuo li a.nif:hover{color:#448fcd;}
.shousuo li b a{font-size:14px;color:#448fcd;}
.shousuo li .riqi{float:right;color:#878787;font-size:12px;}
/******** 404 *********/
.si{text-align:center;background:#fff;width:100%;float:left;margin-top:12%;}
.psicx{margin:15px 0;}
.psicx h1{font-family:"Arial";font-size:30px;font-weight:bold;color:#393939;}
.psicx p{font-family:"Arial";font-size:14px;font-weight:bold;color:#393939;}
.psicl h3{font-family:"Arial";font-size:16px;color:#5f5f5f;}
.psicl p{font-family:"Arial";font-size:12px;color:#5f5f5f;}
.ruturnk{margin:15px auto 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;width:125px;height:50px;padding:4px 0 0;background:#ed0f0f;}
.ruturnk h1{font-family:"Arial";font-size:20px;font-weight:bold;color:#fff;margin: 0;padding: 0;}
.ruturnk p{line-height:16px;font-family:"Arial";font-size:14px;color:#fff;text-transform:uppercase;margin: 0;padding: 0;}
/* about */
.ullist_center {
  text-align: center;
  margin: 0 0 45px;
}
.ullist_center a {
  font-size: 14px;
  color:  #333;
  padding: 0 25px;
  line-height: 37px;
  margin: 0 10px 10px;
  display: inline-block;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.ullist_center a:hover, .ullist_center .action {
  color: #fff;
  border-color: #448fcd;
  background-color: #448fcd;
}
/* culture */
.culture_content li {
  float: left;
  width: 31.333%;
  margin-bottom: 40px;
  text-align: center;
}
.culture_content li.middle {
  margin: 0 3%;
}
.culture_content li h3 {
  color: #333;
  margin-top: 15px;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* news */
.news_content li {
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}
.news_content li::after {
  content: '';
  display: block;
  clear: both;
}
.news_content li .img {
  width: 178px;
  float: left;
}
.news_content li .news_text {
  width: calc(100% - 195px);
  float: right;
  margin-top: 10px;
}
.news_content li .news_text h3 {
  margin-bottom: 15px;
}
.news_content li .news_text h3 a {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_content li .news_text p {
  color: #666;
  font-size: 14px;
  -ms-word-break: break-all;
  word-break: break-all;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.otherinfo span {
  margin-left: 10px;
}
.news_content li .more {
  color: #333;
  font-size: 12px;
  margin-top: 10px;
}
.news_content li .x {
  position: absolute;
  background: #448fcd;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  transition: .5s all linear;
}
.news_content li:hover .x {
  width: 100%;
}
/* new */
.newcontent_titles {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.newcontent_titles h3 {
  font-size: 18px;
  margin-bottom: 5px;
  line-height: 28px;
  font-weight: bold;
}
.backclick {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.backclick a {
  font-size: 12px;
  color: #333;
  display: inline-block;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 20px;
  line-height: 33px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.backclick a i {
  font-size: 14px;
  color: #333;
  margin-right: 5px;
  font-family: "Microsoft YaHei";
  font-weight: bold;
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  -ms-transition: .3s all;
  -o-transition: .3s all;
  transition: .3s all;
}
.backclick a.pre:hover i {
  margin-left: -5px;
}
.backclick a.next:hover i {
  margin-right: -5px;
}
/* videolist */
.video_list li {
  float: left;
  width: 31.333%;
  margin-bottom: 50px;
}
.video_list li.middle {
  margin-left: 2%; 
  margin-right: 2%; 
}
.video_img {
  overflow: hidden;
  margin-bottom: 13px;
  position: relative;
}
.video_img span {
  display: block;
  position: absolute;
  width: 86px;
  top: 50%;
  left: 50%;
  margin-top: -43px;
  margin-left: -43px;
}
.video_list li h3 a {
  color: #333;
  font-size: 18px;
}
/* 视频详情 */
.video_name {
  color: #333;
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: normal;
}
.video_content .otherinfo {
  margin-bottom: 10px;
}
.video_content .otherinfo .more {
  cursor: pointer;
  font-size: 12px;
  float: right;
  margin-top: -25px;
  font-weight: normal;
}
/* contact */
.contact_content {
  width: 26%;
  word-break: break-all;
  overflow: hidden;
}
.map {
  width: 67%;
  overflow: hidden;
}
.company_name {
  font-size: 18px;
  line-height: 26px;
  margin-bottom:15px;
  font-weight: bold;
}
.contact-text p {
  color: #333;
  font-size: 14px;
}
.contact_content .form {
  margin-top: 25px;
}
.contact_content .form div {
  margin-bottom: 10px;
}
.contact_content .form input, .contact_content .form textarea {
  padding: 0 15px;
  width: 100%;
  height: 34px;
  line-height: 34px;
  display: block;
  color: #333;
  font-size: 12px;
  font-family: "Microsoft YaHei";
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.contact_content .form textarea {
  height: 95px;
  resize: none;
}
.contact_content .form input[type="submit"] {
  width: auto;
  border: none;
  color: #f0f0f0;
  padding: 0 30px;
  text-align: center;
  background-color: #448fcd;
}
/* talents_content */
.talents_content li {
  float: left;
  width: 46%;
  margin: 0 2% 40px;
}
.talents_content .post_name {
  color: #333;
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.talents_content .post_name em {
  font-size: 18px;
  float: right;
  margin-right: 15%;
}
.talents_text {
  margin-bottom: 30px;
}
.talents_text p {
  color: #666;
  font-size: 14px;
}
.job_require {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
/* 下载 */
.download_list li {
  padding: 30px 10px 30px 0;
  border-bottom: 1px solid #ccc;
}
.download_list li:last-child {
  border-width: 0;
}
.down_logo {
  margin-right: 15px;
}
.down_info h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: normal;
}
.download_list .otherinfo {
  color: #333;
}
.go_down {
  margin-top: 10px;
}
/* 解决方案 */
.main_caseshow {
  padding-bottom: 60px;
  position: relative;
}
.main_caseshow .swiper-slide {
  overflow: hidden;
}
.main_caseshow .swiper-slide h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 10px;
  margin-top: -13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main_caseshow .swiper-button-prev {
  left: 45%;
  opacity: 1 !important;
  top: auto !important;
  bottom: 10px;
  width: 68px;
  height: 21px;
  background: url(../images/arrow.png) no-repeat;
}
.main_caseshow .swiper-button-next {
  right: 45%;
  opacity: 1 !important;
  top: auto !important;
  bottom: 10px;
  width: 68px;
  height: 21px;
  background: url(../images/arrow.png) no-repeat;
  background-position: -130px 0;
}
.flying_platform {
  padding: 55px 0 60px;
  position: relative;
  background-color: #e5e5e5;
}
.platform_pic {
  float: left;
  width: 79%;
  padding-left: 30px;
}
.platform_text {
  color: #333;
  width: 450px;
  top: 55px;
  right: 18.5%;
  position: absolute;
}
.platform_titleh1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.platform_titleh3 {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 10px;
}
.platform_titleh3::after {
  content: '';
  display: block;
  width: 121px;
  height: 4px;
  margin-top: 6px;
  background-color: #333;
}
.platform_text p {
  font-size: 18px;
  line-height: 28px;
}
.task_load {
  padding: 140px 0;
}
.task_load_text {
  color: #fff;
  width: 47%;
  float: left;
}
.static_text {
  position: static;
}
.task_load_text .platform_titleh3::after {
  background-color: #fff;
}
.task_load_list {
  float: right;
  width: 53%;
}
.task_load_list li {
  float: left;
  width: calc(50% - 53px);
  margin-left: 53px;
  text-align: center;
  background-color: #fff;
}
.communication_link {
  padding: 105px 0;
}
.comlink_text {
  width: 45%;
  margin-top: 50px;
}
.comlink_pic {
  width: 50%;
}
.advantages_list li {
  float: left;
  width: 30%;
  overflow: hidden;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.advantages_list li.middle {
  margin-left: 5%;
  margin-right: 5%;
}
.advantages_list li .lst-icon {
  width: 115px;
  height: 115px;
  margin: 5px auto 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid #cdcdcd;
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  -ms-transition: .5s all;
  -o-transition: .5s all;
  transition: .5s all;
}
.advantages_list li .lst-icon img {
  margin: 0 auto;
}
.advantages_list li:hover .lst-icon {
  -webkit-box-shadow: 0 0 7px 1px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 0 7px 1px rgba(0, 0, 0, .15);
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, .15);
}
.advantages_list li h3 {
  color: #333;
  font-size: 24px;
  line-height: 30px;
}
.advantages_list li p {
  color: #333;
  font-size: 18px;
  margin-top: 10px;
}
/* 解决方案详情 */
.caseinfo_content, .caseinfo_content p {
  line-height: 31px;
}
.caseinfo_title {
  color: #000;
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 31px;
}
/* 产品中心 */
.products_list {
  /* height: 57px; */
  line-height: 57px;
  margin-bottom: 105px;
  position: relative;
  background-color: #f7f7f7;
}
.products_list ul li {
  display: inline-block;
}
.products_list ul li i {
  display: none;
  height: 10px;
  width: 10px;
  border-color: #333;
  border-style: solid;
  transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  float: right;
}
.products_list ul li i.down {
  border-width: 0 1px 1px 0;
  margin: 15px 15px 0 0;
}
.products_list ul li i.up {
  border-width: 1px 0 0 1px;
  margin: 20px 15px 0 0;
}
.products_list ul li a {
  color: #333;
  font-size: 18px;
  padding: 0 40px;
  display: inline-block;
}
.products_list ul li:hover a, .products_list ul li.active a {
  color: #fff;
  background-color: #448fcd;
}
.products_list ul li .list2ul {
  width: 100%;
  left: 0;
  top: 100%;
  display: none;
  /* height: 48px; */
  line-height: 48px;
  position: absolute;
  background-color: #448fcd;
  -webkit-box-shadow: 0 0 7px 1px rgba(0, 0, 0, .15);
  -moz-box-shadow: 0 0 7px 1px rgba(0, 0, 0, .15);
  box-shadow: 0 0 7px 1px rgba(0, 0, 0, .15);
}
.products_list ul li .list2ul li a {
  font-weight: bold;
}
.products_list ul li:hover .list2ul {
  display: block;
}
.mt5 {
  margin-bottom: 50px;
}
.about_thispro .platform_titleh1 {
  margin-bottom: 30px;
}
.about_thispro_text {
  float: left;
  width: 63%;
}
.about_thispro_text p {
  color: #333;
  font-size: 18px;
  text-indent: 2em;
  line-height: 33px;
}
.about_thispro_info {
  float: right;
  width: 37%;
}
.about_thispro_info li {
  float: left;
  width: 50%;
  padding-left: 42px;
  text-align: center;
  margin-bottom: 20px;
}
.about_thispro_info li h3 {
  font-size: 30px;
  font-family: "Arial";
}
.about_thispro_info li p {
  font-size: 16px;
}
.protitle {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.technical_thispro_feature li {
  width: 50%;
  float: left;
  padding-right: 20px;
  margin: 25px 0;
}
.technical_thispro_feature li .tech-icon {
  width: 98px;
  overflow: hidden;
  margin-right: 20px;
  display: inline-block;
}
.technical_thispro_feature li h3 {
  color: #333;
  font-size: 18px;
  display: inline-block;
  vertical-align: top;
  margin-top: 40px;
}
.technical_table li::after {
  content: '';
  display: block;
  clear: both;
}
.technical_table li:nth-child(even) {
  background-color: #f0f0f0;
}
.technical_table li {
  border-bottom: 1px dotted #666;
}
.technical_table li > div {
  width: 50%;
  float: left;
  padding: 10px;
  font-size: 14px;
}
.technical_table li > div span {
  color: #333;
  float: left;
  line-height: 19px;
}
.technical_table li .th {
  width: 185px;
}
.technical_table li .td {
  width: calc(100% - 185px);
}
.load_text {
  width: 64%;
}
.load_info {
  float: right;
  width: 28%;
}
.load_info li {
  color: #000;
  font-size: 20px;
  padding-left: 45px;
  line-height: 30px;
  margin-bottom: 20px;
  background-image: url(../images/checked.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.indu_applic_text p {
  color: #333;
  font-size: 18px;
  line-height: 33px;
}
.indu_applic_list {
  margin-top: 35px;
}
.indu_applic_list li {
  float: left;
  width: 22.75%;
  margin: 0 1.5%;
  text-align: center;
  position: relative;
}
.indu_applic_list li:first-child {
  margin-left: 0;
}
.indu_applic_list li:last-child {
  margin-right: 0;
}
.list-icon {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
}
.indu_applic_list li h3 {
  color: #fff;
  font-size: 18px;
  padding: 0 10px;
  line-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .56);
}
.nav_item2:hover > a,
.nav_item3:hover > a,
.inews_ul li h3 a:hover,
.footer-nav a:hover,
.culture_content li h3:hover,
.news_content li .news_text h3 a:hover,
.video_list li:hover h3 a {
  color: #448fcd;
}


@media screen and (min-width:1366px) {
  .container {
    width: 1200px;
  }
}
@media only screen and (max-width: 1366px) {
  #certify .swiper-slide {
    width: 520px;
    height: auto;
  }
  .main_caseshow .swiper-button-prev {
    left: 40%;
  }
  .main_caseshow .swiper-button-next {
    right: 40%;
  }
  .platform_text {
    right: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .video_index {
    margin-bottom: 180px;
  }
  #certify {
    margin: 20px auto -130px;
  }
  #certify .swiper-slide {
    width: 480px;
  }
  .hidden_text span {
    display: block;
    margin: 0;
  }
  .platform_pic {
    width: 65%;
  }
  .wp_con {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container {
    width: auto;
  }
  .contact_content {
    width: 28%;
  }
  .map {
    width: 65%;
  }
	.shousuo li a.nif {width: 75%;}
}
@media only screen and (max-width: 992px) {
  .pc-header {
    padding: 10px 0;
  }
  .hitext, .inews_left {
    display: none;
  }
  .header_right, .advantages_list li p {
    margin-top: 0;
  }
  .solution_index .text {
    margin-top: -29px;
  }
  .platform_titleh1 {
    font-size: 30px;
  }
  .solution_index .text h1, .title-center h1, .about_thispro_info li h3 {
    font-size: 24px;
  }
  .talents_content .post_name, .main_caseshow .swiper-slide h3 {
    font-size: 22px;
  }
  .platform_titleh3, .caseinfo_title {
    font-size: 20px;
  }
  .advantages_list li h3, .load_info li {
    font-size: 18px;
  }
  .solution_index .text p, .culture_content li h3 {
    font-size: 16px;
    margin-top: 10px;
  }
  .talents_content .post_name em {
    font-size: 16px;
    margin-right: 0;
  }
  .platform_text p, .about_thispro_text p, .indu_applic_text p {
    font-size: 16px;
    line-height: 26px;
  }
  .indu_applic_list li h3, .about_thispro_info li p {
    font-size: 14px;
  }
  .title-center p, .advantages_list li p {
    font-size: 12px;
  }
  .products_list ul li a {
    font-size: 16px;
    padding: 0 20px;
  }
  .load_info li {
    padding-left: 40px;
    margin-bottom: 15px;
    background-size: 30px;
  }
  #certify .swiper-slide {
    width: 430px;
  }
  .inews_ul, .contact_content, .map {
    width: auto;
    float: none;
    margin-bottom: 20px;
  }
  .inews_ul li {
    width: calc(50% - 16px);
    margin: 0 8px 15px;
  }
  .contact_content .form, .about_thispro_text, .about_thispro_info, .task_load_list {
    width: 50%;
  }
  .backclick a {
    width: 100%;
    float: none;
    margin-bottom: 10px;
    display: block;
    border: none;
    max-width: none;
    border-radius: 0;
    padding: 0 10px;
  }
  .platform_titleh3::after {
    width: 62px;
    height: 3px;
  }
  .load_info {
    width: 40%;
  }
  .task_load_list li {
    width: calc(50% - 25px);
    margin-left: 25px;
  }
  .advantages_list li.middle {
    margin-left: 2%;
    margin-right: 2%;
  }
  .advantages_list li {
    width: 32%;
  }
  .products_list {
    margin-bottom: 80px;
  }
  .list-icon img {
    max-width: 80px;
  }
  .indu_applic_list li h3 {
    line-height: 40px;
  }
  .advantages_list li p {
    line-height: normal;
  }
}
@media only screen and (max-width: 767px) {
  .logo {
    left: 50%;
    position: relative;
    margin-left: -35px;
  }
  .footer-code img {
    max-height: 85px;
  }
  .language {
    float: right;
  }
  .fa-search {
    display: block;
  }
  .search_block_top {
    display: none;
    width: 175px;
    line-height: 30px;
    height: 32px;
  }
  .search_block_top input#search_query {
    height: 30px;
    padding: 0 0 0 10px;
  }
  .search_block_top input#sub_bg {
    height: 30px;
  }
  .menu_open {
    margin-top: 23px;
  }
  .video_name, .platform_titleh1 {
    font-size: 22px;
  }
  .solution_index .text h1 {
    font-size: 18px;
  }
  .video_list li h3 a, .platform_titleh3, .advantages_list li h3, .load_info li, .down_info h3 {
    font-size: 16px;
  }
  .solution_index .text p, .footer-nav a, .platform_text p {
    font-size: 14px;
  }
  .platform_text p {
    line-height: 23px;
  }
  .footer {
    font-size: 12px;
  }
  .solution_index .text p {
    margin-top: 5px;
  }
  .solution_index .text {
    margin-top: -23px;
  }
  #certify .swiper-slide {
    width: 431px;
  }
  #certify .swiper-button-prev, .main_caseshow .swiper-button-prev {
    left: 35%;
  }
  #certify .swiper-button-next, .main_caseshow .swiper-button-next {
    right: 35%;
  }
  .footer-nav a {
    margin: 0 5px;
  }
  .footer-nav a:first-child {
    margin: 0 5px 0 0;
  }
  .talents_content li {
    float: none;
    width: auto;
    margin-bottom: 45px;
  }
  .video_img span {
    width: 65px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
  }
  .platform_pic {
    width: 55%;
    padding-left: 10px;
    margin-top: 45px;
  }
  .platform_text {
    width: 51%;
  }
  .task_load_list, .comlink_pic, .comlink_pic {
    width: 47%;
  }
  .task_load {
    padding: 100px 0;
  }
  .technical_table li {
    border-bottom: 0;
  }
  .technical_table li > div {
    width: 100%;
    border-bottom: 1px dotted #666;
  }
  .technical_table li:nth-child(even) {
    background-color: transparent;
  }
  .technical_table li > div:nth-child(even) {
    background-color: #f0f0f0;
  }
}
@media only screen and (max-width: 640px) {
  .video_index {
    margin-bottom: 110px;
  }
  #certify {
    margin: 20px auto -65px;
  }
  #certify .swiper-slide {
    width: 351px;
  }
  .inews_ul li, .footer_left, .footer-code {
    float: none;
    width: 100%;
    text-align: left;
    margin: 0 0 15px;
  }
  .footer {
    margin-top: 35px;
    padding: 25px 0 10px;
  }
  .culture_content li, .video_list li, .indu_applic_list li {
    width: 48%;
  }
  .culture_content li:nth-child(2n+1),
  .video_list li:nth-child(2n+1),
  .indu_applic_list li:nth-child(2n+1) {
    margin: 0 2% 5% 0;
  }
  .culture_content li:nth-child(2n),
  .video_list li:nth-child(2n),
  .indu_applic_list li:nth-child(2n) {
    margin: 0 0 5% 2%;
  }
  .contact_content .form {
    width: 100%;
  }
  .ullist_center a {
    padding: 0 20px;
    margin: 0 5px 10px;
  }
  .down_logo img {
    width: 35px;
    margin-top: 5px;
  }
  .go_down img {
    width: 25px;
  }
  .technical_thispro_feature li .tech-icon {
    width: 75px;
  }
  .products_list {
    line-height: normal;
  }
  .products_list .wp_con {
    padding-left: 0;
    padding-right: 0;
  }
  .products_list > ul > li {
    border-bottom: 5px solid #fff;
  }
  .products_list ul li {
    display: block;
    position: relative;
  }
  .products_list ul li i {
    display: block;
  }
  .products_list ul li a {
    max-width: 85%;
    padding: 13px 0 13px 15px;
    font-size: 14px;
  }
  .products_list ul li .list2ul {
    position: static;
    line-height: normal;
  }
  .products_list ul li:hover a, .products_list ul li.active a {
    color: #333;
    background-color: transparent;
  }
  .products_list ul li .list2ul li a {
    color: #fff;
    width: 100%;
    max-width: none;
  }
  .technical_thispro_feature li h3 {
    font-size: 16px;
    margin-top: 30px;
  }
  .list-icon {
    top: 26%;
  }
  /*404*/
	.si {margin-top: 30%;padding: 0 10px;}
}
@media only screen and (max-width: 480px) {
  .swiper-pagination {
    bottom: 5px !important
  }
  .solution_index {
    margin: 10px 0 0;
  }
  .products_list {
    margin-bottom: 30px;
  }
  .solution_index li, .news_content li .news_text h3 {
    margin-bottom: 10px;
  }
  .solution_index li:nth-child(2n+1) {
    padding-right: 5px;
  }
  .solution_index li:nth-child(2n) {
    padding-left: 5px;
  }
  .solution_index .text, .main_caseshow .swiper-slide h3, .comlink_text {
    margin-top: -10px;
  }
  .solution_index .text p, .platform_pic, .video_list .otherinfo, .down_logo {
    display: none;
  }
  .title-center h1 {
    font-size: 20px;
  }
  .talents_content .post_name, .video_name, .protitle {
    font-size: 18px;
  }
  .solution_index .text h1,
  .inews_ul li h3 a,
  .job_require,
  .news_content li .news_text h3 a,
  .main_caseshow .swiper-slide h3 {
    font-size: 16px;
  }
  #certify .swiper-slide {
    width: 300px;
  }
  #certify div.swiper-slide-active span{
    width: 55px;
    margin-top: -27px;
    margin-left: -27px;
  }
  #certify .swiper-button-prev, .main_caseshow .swiper-button-prev {
    left: 35%;
    width: 50px;
    height: 18px;
    background-size: 115px;
  }
  #certify .swiper-button-next, .main_caseshow .swiper-button-next {
    right: 35%;
    width: 50px;
    height: 18px;
    background-size: 115px;
    background-position: -68px 0;
  }
  .news_content li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .news_content li .img {
    width: 30%;
  }
  .news_content li .news_text {
    width: 67%;
    margin-top: 0;
  }
  .news_content li .news_text p {
    line-height: 18px;
    font-size: 12px;
  }
  .more {
    height: 33px;
    line-height: 31px;
    padding: 0 15px;
    font-size: 12px;
  }
  .platform_text,
  .about_thispro_text,
  .task_load_list,
  .comlink_pic,
  .about_thispro_info,
  .load_info {
    width: 100%;
  }
  .platform_text {
    padding: 0 15px;
    position: static;
  }
  .task_load_list, .comlink_pic, .about_thispro_info, .load_info {
    margin-top: 20px;
  }
  .task_load_list li, .advantages_list li, .about_thispro_info li, .technical_thispro_feature li {
    margin: 0 2% 20px;
    width: 46%;
    padding: 0;
  }
  .task_load, .communication_link {
    padding: 65px 0;
  }
  .technical_thispro_feature li {
    text-align: center;
  }
  .technical_thispro_feature li h3, .technical_thispro_feature li .tech-icon {
    display: block;
    margin: 10px auto 0;
  }
  .header_right {
    margin-top: -7px;
  }
  .logo img {
    max-height: 57px;
  }
  .menu_open {
    margin-top: 12px;
  }
  .language a {
    width: 22px;
    margin: 0;
  }
  .fa-search {
    margin: 10px 0 0 10px;
  }
  .download_list li {
    padding: 15px 10px 15px 0;
  }
  .shousuo li a.nif{width:auto;overflow:visible;text-overflow:clip;white-space:normal;word-break:break-all;line-height:23px;}	
  /*404*/
	.psicx h1 {font-size: 24px;}
	.psicx p {font-size: 12px;}
	.psicl h3 {font-size: 14px;}
	.psic {width: 80%;margin: 0 auto;}
}
@media only screen and (max-width: 414px) {
  
  /*404*/
	.si {margin-top: 25%;}
}
@media only screen and (max-width: 375px) {
    /*404*/
	.ruturnk h1{font-size:17px;}
	.ruturnk p{font-size:12px;}
	.psicx h1 {font-size: 20px;}
}