/* 手机导航 */
.mobile-inner-header {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 60px;
  display: none;
  line-height: 60px;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 22px;
}

.mobile-inner-header-icon {
  color: #333;
  height: 60px;
  font-size: 25px;
  text-align: center;
  float: right;
  width: 60px;
  position: relative;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
  outline: none;
}

.mobile-inner-header-icon:hover {
  background-color: rgba(51, 51, 51, 0.2);
  cursor: pointer;
}

.mobile-inner-header-icon span {
  position: absolute;
  left: calc((100% - 25px) / 2);
  top: calc((100% - 1px) / 2);
  width: 25px;
  height: 1px;
  background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
  height: 65%;
}

.mobile-inner-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
}

@keyframes clickfirst {
  0% {
      transform: translateY(4px) rotate(0deg);
  }
  100% {
      transform: translateY(0) rotate(45deg);
  }
}

@keyframes clicksecond {
  0% {
      transform: translateY(-4px) rotate(0deg);
  }
  100% {
      transform: translateY(0) rotate(-45deg);
  }
}

.mobile-inner-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}

@keyframes outfirst {
  0% {
      transform: translateY(0) rotate(-45deg);
  }
  100% {
      transform: translateY(-4px) rotate(0deg);
  }
}

@keyframes outsecond {
  0% {
      transform: translateY(0) rotate(45deg);
  }
  100% {
      transform: translateY(4px) rotate(0deg);
  }
}

.mobile-inner-nav {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0px;
  padding-top: 30px;
  padding-bottom: 80px;
  display: none;
  z-index: 999;
}

.mobile-inner-nav a {
  display: inline-block;
  line-height: 50px;
  text-decoration: none;
  width: 80%;
  margin-left: 10%;
  color: #333;
  border-bottom: solid 1px rgba(51, 51, 51, 0.3);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 300;
}

.mobile-inner-nav a:hover {
  color: rgba(51, 51, 51, 0.4);
  border-bottom: solid 1px rgba(51, 51, 51, 0.2);
}



/* 网页顶部 */
.page_top_box {
  background-color: #000;
  position: relative;
  z-index: 999;
  overflow: hidden;

}

.page_top {
  max-width: 1600px;
  margin: auto;
  line-height: 30px;
}

.page_top_l {
  float: left;
  margin-left:-100px;
}

.page_top_r {
  float: right;
}

.page_top_r .f14 {
  float: right;
  list-style: none;
  padding-top: 5px;
  margin-right:-100px;
}


.page_top_r .f14 li {
  float: left;
  list-style: none;
  color: #fff;

}

.page_top_r .f14 li a {
  color: #fff;
}
.page_top_r .f14 li img,.page_top_r .f14 li p{
	display:inline-block;
}
.page_top_r .f14 li img{
	width:20px;
}


.page_top_r ul li::after {
  content: "|";
  margin: 0 10px;
}

.page_top_r ul li:last-child::after {
  content: " ";
}

/* 网页头部 */
.tou{
  width: 100%;
  height: 80px;
  position: relative;
}
.header {
  max-width: 1600px;
  margin: auto;
  height: 80px;
}

.header_logo {
  float: left;
  margin-top: 10px;
  margin-left:40px
}




/* 导航 */
.nav {
  max-width: 1000px;
  height: 80px;
  float: right;
  /* background-color: #006eb4; */
}

.nav_main {
  width: 100%;
  margin: auto;
  margin-right: 10px;
}

.nav ul {
  margin-bottom: 0;
}

.nav_main ul a {
  text-decoration: none;
  color: #000;
}

.nav ul li {
  position: relative;
  list-style: none;
  float: left;
  padding: 0 20px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 16px;
  
  margin: 0 20px;
}

.nav ul li:hover {
  background-color: #00b9a7;
}

.nav ul li:hover a {
  color: #000;
}

.nav_go {
  position: fixed;
  top: 125px;
  width: 100%;
  left: 0;
  z-index: 999;
  background-color: #eee;
  display: none;

}

.nav li:hover .nav_go {
  display: block;
}

.nav .nav_go li {
  line-height: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.nav .nav_go li a {
  color: #000 !important;
}

.nav .nav_go li:hover a {
  color: #000 !important;
}

.nav .nav_go_01{
  display: inline-block;
  width:20%;
}
.nav .nav_go_01 img{
	width:50%;
}


.nav .go_02 {
  position: absolute;
  left: 0;
  top: 80px;
}
.nav .go_02 li{
	text-align:center;
	/*margin-right:10%;*/
}


.search {
  float: right;
  margin-top: 20px;
  margin-right: 185px;
}

.search_main {
  width: 18%;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 125px;
  right: 0;
  z-index: 999;
  margin-right: 80px;
  /* margin-top: 10px; */
}

.search_main form {
  float: left;
}

.search_main form input[type=text] {
  background: none;
  outline: none;
  width: 220px;
  height: 40px;
  margin-left: 20px;
}

.search_main form input[type=submit] {
  background: url(../images/search.png);
  border: none;
  width: 30px;
  height: 30px;
  position: relative;
  top: 10px;
  left: 5px;
}

.search_close {
  font-size: 40px;
  float: right;
  margin-right: 15px;
  cursor: pointer;

}

/* banner */
.swiper-slide img{
  width: 100%;
}


/* 产品推荐 */
.product {
  background-color: #eeeeee;
  overflow: hidden;
}

.product_title {
  font-size: 36px;
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
}

.product_nav {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.product_nav div {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  width: 20%;
}

.product_nav div::before {
  display: none;
}

.product_nav div:hover::before {
  display: block;
}

.product_nav a {
  display: inline-block;
  color: #fff;
  font-size: 27px;
  width: 100%;
  height: 62px;
  line-height: 62px;
  background: linear-gradient(to right, #00b55c, #00bab0);

}

.product_nav div::before {
  content: "";
  background: url(../images/product_04.png);
  top: 50px;
  left: 50%;
  position: absolute;
  width: 32px;
  height: 28px;
}

.product_nav a:last-child {
  margin-right: 0;
}

.product_main {
  position: relative;
  width: 90%;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 50px;
}

.product_01 {
  width: 90%;
  margin: auto;
}

.product_left {
  float: left;
  margin-top: 250px;
  width: 23%;
}

.product_left p:first-child {
  font-size: 38px;
  color: #000;
}

.product_left p:last-child {
  font-size: 25px;
  color: #000;
  margin-top: 25px;
}

.product_mid {
  float: left;
  margin:0 3%;
  width: 40%;
}

.product_mid img{
  width:100%;
}

.product_right {
  width: 26%;
  float: right;
  font-size: 25px;
  color: #000;
  line-height: 45px;
  overflow: hidden;
  margin-top: 230px;
}

.product .product_swiper_left {
  background-image: url(../images/product_02.png);
  position: absolute;

}

.product .product_swiper_right {
  background-image: url(../images/product_03.png);
  position: absolute;

}

/* 行业和应用 */
.application {
  width: 100%;
  overflow: hidden;
}

.application_title {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  line-height: 120px;
}

.application_main {
  width: 100%;
}

.application_pic {
  width: 20%;
  float: left;
  position: relative;
}

.application_main div img {
  width: 100%;
  display: inline-block;
}

.application_main_01 {
  background-color: rgba(39, 189, 191, 0.5);
  opacity: 0;
  position: absolute;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top:80%;
}

.application_main_01 p:first-child {
  color: #fff;
  font-size: 24px;
  text-align: center;
}

.application_main_01 p:last-child {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.application_main div:hover .application_main_01 {
  opacity: 1;

}


/* 新闻资讯 */
.news {
  max-width: 1600px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 40px;

}

.news_title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 3;
}

.news_main {
  width: 100%;
  overflow: hidden;

}

.news_main_01 {
  width: 32.5%;
  float: left;
  height:540px;
  
  margin-right: 1.25%;
  background-color: #f6f6f6;
  padding-bottom: 20px;
}

.news_main_01  img{
  width: 100%;
}

.news_main_01:last-child {
  margin-right: 0;
}

.news_main_01_content {
  margin-left: 5%;
  width: 90%;

}

.news_main_01_title {
  font-size: 18px;
  line-height: 50px;
}

.news_main_01_mian {
  font-size: 14px;
  color: #444;
  line-height: 30px;
}

.news_bottom {
  width: 100%;
  margin-top: 15px;
}

.news_date {
  float: left;
  font-size: 13px;
  color: #959595;
}

.news_button {
  float: right;
  color: #fff;
  width: 70px;
  height: 25px;
  font-size: 12PX;
  background: linear-gradient(to right, #00b55c, #00bab0);
  border-radius: 30px;
  text-align: center;
  line-height: 25px;
}

.news_button a {
  color: #fff;

}


/* 产品详情 */
.characteristic {
  width: 100%;
  background-color: #eee;
  overflow: hidden;
}

.details {
  max-width: 1230px;
  margin: auto;
  overflow: hidden;
}

.details_pic {
  float: left;
  width: 50%;
}
.details_pic img{
  width: 100%;
}

.details_main {
  float: right;
  width:50%;
  padding-left: 70px;
  padding-top:200px;
}

.details_main_title {
  font-size: 24px;
}

.details_main_01 p {
  /*padding-left: 20px;*/
  font-size: 16px;
  line-height: 3;
}

/* 应用场景 */
.scene {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}

.scene_title {
  text-align: center;
  font-size: 24px;
}

.scene_01 {
  max-width: 910px;
  margin: auto;
  margin-top: 60px;
}

.scene_main {
  float: left;
  text-align: center;
  margin-right: 26%;
}

.scene_main:last-child {
  margin-right: 0;
}

.scene_main a {
  color: #7c7c7c;
  font-size: 20px;
}

.scene_main a p {
  padding-top: 20px;
}


/* 产品推荐内页 */
.r_product {
  max-width: 1500px;
  background-color: #fff;
  overflow: hidden;
  margin: auto;
}

.r_product_title {
  font-size: 36px;
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
}

.r_product_nav {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.r_product_nav div {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  width:20%;

}
.r_product_nav div:last-child{
  margin-right: 0;
}

.r_product_nav div::before {
  display: none;
}

.r_product_nav div:hover::before {
  display: block;
}

.r_product_nav a {
  display: inline-block;
  color: #fff;
  font-size: 27px;
  width: 100%;
  height: 62px;
  line-height: 62px;
  background: linear-gradient(to right, #00b55c, #00bab0);

}

.r_product_nav div::before {
  content: "";
  background: url(../images/product_04.png);
  top: 50px;
  left: 100px;
  position: absolute;
  width: 32px;
  height: 28px;
}

.r_product_nav a:last-child {
  margin-right: 0;
}


.r_product_pic {
  overflow: hidden;
  margin: auto;
  margin-top: -600x;
  max-width: 1200px;

}

.r_product_pic {
  margin: auto;
  padding-top: 40px;

}


.r_product_pic_one {
  list-style: none;
  margin-bottom: 30px;
  width: 100%;
  overflow: hidden;
}

.r_product_pic_one li {
  list-style: none;
  float: left;
  width: 23.5%;
  overflow: hidden;
  margin-left: 2%;
  margin-top: 20px;

}

.r_product_pic_one li:nth-child(4n+1) {
  margin-left: 0;
}

.r_product_pic_one li img {
  width: 100%;
  padding-bottom: 10px;

}

.r_product_pic_one li a {
  text-align: center;
  font-size: 20px;

}

.r_product_pic_one p {
  margin: 0;
  line-height: 49px;
  border: 1px solid #e5e5e5;
}

.r_product_pic a {
  color: #000;
  width: 265px;
  background-color: #fff;

}


/* 新闻资讯内页 */
.info {
  width: 100%;
  overflow: hidden;
}

.info_title {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.info_main {
  max-width: 1600px;
  margin: auto;
  overflow: hidden;

}

.info_main_01 {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px #eee solid;
}

.info_left {
  float: left;
  width: 25.8%;
}

.info_left img {
  width: 100%;
}

.info_right {
  float: right;
  width: 74%;
  padding-left: 20px;
}

.info_right_top {
  font-size: 18px;
  line-height: 50px;
  width: 99%;
  border-bottom: 1px #eee solid;
}

.info_right_date {
  font-size: 15px;
  line-height: 40px;
  color: #7f7f7f;
}

.info_right_main {
  line-height: 30px;
  font-size: 16px;
  color: #7f7f7f;
}

.info_right_button {
  margin-top: 20px;
  background-color: #00b9a7;
  width: 93px;
  height: 33px;
  line-height: 33px;
  text-align: center;

}

.info_right_button a {
  color: #fff;
}


/* 行业与应用副页 */
.industry {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.industry_title {
  text-align: center;
  line-height: 70px;
  font-size: 36px;
}

.industry_main {
  max-width: 1500px;
  margin: auto;
  overflow: hidden;

}

.industry_main_01 {
  width: 24.3%;
  float: left;
  overflow: hidden;
  margin-right: 0.8%;
  margin-top: 20px;
  border: 1px solid #eee;
  box-shadow: 0px 5px 10px #eee;
}

.industry_main_01 img {
  width: 100%;
}

.industry_main_01:nth-child(4n) {
  margin-right: 0;
}

.industry_main_content {
  width: 100%;
  text-align: center;
  margin: 50px 0;

}

.industry_main_content span {
  font-size: 24.46px;
  text-align: center;
  color: #000;
  font-weight: 700;
  line-height: 50px;
}

.industry_main_content p {
  font-size: 19.57px;
  color: #5e5e5e;
  text-align: left;
  line-height: 40px;
  width: 90%;
  margin: auto;
}


/* 走进闻检 */
.enter {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.enter_title {
  text-align: center;
  font-size: 36px;
  line-height: 100px;
  font-weight: 700;
  
}

.enter_main{
	width:80%;
	overflow:hidden;
	margin:auto;
}

.enter_left{
	width:50%;
	float:left;
	
}

.enter_right {
  width: 50%;
  float:right;
}

.enter_right_main {
  padding-left: 6%;
  line-height:3;
  width: 95%;
  font-size: 15px;
}



/* 代理品牌 */
.agent {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.agent_title {
  text-align: center;
  font-size: 36px;
  line-height: 100px;
  font-weight: 700;
}

.agent_main {
  max-width: 1500px;
  margin: auto;
  overflow: hidden;
}

.agent_main li {
  list-style: none;
  float: left;
  width: 23.6%;
  overflow: hidden;
  margin-right: 1.86%;
  margin-top: 20px;
}

.agent_main li img{
  width: 100%;
}

.agent_main li:nth-child(4n) {
  margin-right: 0;
}

/* 服务与支持 */
.support {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.support_title {
  text-align: center;
  font-size: 36px;
  line-height: 100px;
  font-weight: 700;
}

.support_main {
  max-width: 1500px;
  overflow: hidden;
  margin: auto;

}

.support_main_01 {
  overflow: hidden;
  margin-bottom: 20px;
  padding: 20px 0;
}

.support_01_pic {
  width: 55%;
  float: left;
}

.support_01_pic img {
  width: 96%;
  padding-left: 40px;
}

.support_01_right {
  float: right;
  width: 45%;
  margin-top: 20px;
  padding-right: 40px;
}

.support_01_right_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 70px;
}

.support_01_right_main {
  font-size: 18px;
  line-height: 2.5;
}

.support_main_02 {
  overflow: hidden;
  margin-bottom: 3px;
  background-color: #f6f6f6;
  padding: 20px 0;
}

.support_02_left {
  float: left;
  width: 45%;
  padding-left: 40px;
  margin-top: 20px;
  padding-right: 80px;

}

.support_02_pic {
  width: 55%;
  float: right;

}

.support_02_pic img {
  width: 96%;
}


.support_02_left_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
}

.support_02_left_main {
  font-size: 18px;
  line-height: 2.5;
}


/* 新闻详情 */
.news_d_title {
  margin: 5px 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
}

.news_d_info {
  text-align: center;
  color: #999;
  border: 1px solid #e1e1e1;
  border-left: 0;
  border-right: 0;
  margin: 10px 0;
  padding: 5px 0;
}

#art_content {
  word-break: break-all;
  font-size: 13px;
  padding: 0 0 10px 0;
  line-height:2;
}

#art_content img {
  max-width: 920px;
}

.newshow {
  width: 100%;
  overflow: hidden;
}

.newshows {
  max-width: 1600px;
  margin: 20px auto 40px;
}

/* 页脚 */
.foot {
  background-color: #f6f6f6;
  overflow: hidden;
}

.foot_title {
  text-align: center;
  margin-top: 50px;

}

.foot_ch {
  font-size: 32px;
  font-weight: 700;
  color: #3e3e3e;
}

.foot_eng {
  font-size: 14px;
}

.foot_main {
  text-align: center;
  width: 1345px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 20px;
}

.foot_left {
  display: inline-block;
  font-size: 18px;
  color: #00b9a7;
}

.foot_mid {
  display: inline-block;
  font-size: 18px;
  color: #00b9a7;
  margin-left: 220px;
}

.foot_right {
  display: inline-block;
  font-size: 18px;
  color: #00b9a7;
  margin-left: 110px;
}

.copy {
  color: #fff;
  background-color: #666a6e;
  font-size: 14px;
  margin: auto;
  text-align: center;
  line-height: 30px;

}

.copy a {
  margin-right: 10px;

  color: #fff;
}
/******产品分页*******/
.ny_news_page{
	margin:10px auto 60px;
	clear:both;
	padding-top:10px;
	width:1200px;}
.ny_news_page a,.ny_news_page span{
	display:block;
	float:left;
	line-height:40px;
	text-align:center;
	font-size:12px;
	width:70px;
	height:40px;
	color:#333;
	background-color:#f8f8f8;
	margin-right:10px}
.ny_news_page a:hover,.ny_news_page span{
	background-color:#965b02;
	color:#fff;}
.ny_news_page a.page_aa{
	background-color:#00b366;
	color:#fff;}
/**************************/
.ny_news_pageaaa{
	margin-top:80px;
	margin-bottom:50px;}

/******************************/