﻿@charset "utf-8";
* {
	margin: 0;
	padding: 0;
}

html,
body {
	font-family: "微软雅黑";
	font-size: 18px;
	margin: auto;
	color: #333;
}

ul,
li {
	list-style: none;
}

img {
	border: 0;
}

input,
textarea {
	outline: none;
}

a {
	color: #565656;
	text-decoration: none;
}

a:hover {
	/* color: #006AA6; */
}

.clear {
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.mainb {
	width: 90%;
	margin: 0 auto;
}

.paddt30 {
	padding-top: 30px;
}

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

.mo_bott {
	display: none;
}
/* ******************51**************** */
/*标题*/

.ftitle51 {
	padding-top: 40px;
}

.ftitle51 h2 {
	font-size: 40px;
	text-align: center;
	position: relative;
	border-bottom: 2px solid #e2e2e2;
	padding-bottom: 10px;
	letter-spacing: 2px;
}

.ftitle51 h2:before,
.ftitle51 h2:after {
	content: '';
	position: absolute;
	bottom: -2px;
	width: 50px;
	height: 3px;
}

.ftitle51 h2:before {
	background: #006AA6;
	left: calc(50% - 50px);
}

.ftitle51 h2:after {
	background: #ffc107;
	right: calc(50% - 50px);
}

.ftitle51 p {
	text-align: center;
	margin-top: 15px;
	color: #656363;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/*头部开始*/

.head51-top {
	width: 100%;
	background: #006AA6;
}

.head51-icon {
	width: 10%;
}

.head51-icon li {
	width: 31%;
	display: inline-block;
	height: 48px;
	line-height: 48px;
	position: relative;
}

.head51-icon li a {
	display:block;
}

.head51-icon li a img {
	width: 28px;
	margin: 0 auto;
	vertical-align: middle;
	display: inline-block;
}

.top51-ma {
	position: absolute;
	top: 47px;
	left: -42px;
	width: 150px;
	height: 0px;
	background: rgba(0, 0, 0, .5);
	z-index: 11;
}

.head51-icon li:hover .top51-ma {
	height: 150px;
	transition: all 0.6s;
}

.top51-ma img {
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	padding: 15px;
}

.top51-cant {
	width: 30%;
	color: #fff;
	text-align: right;
}

.top51-cant p {
	height: 47px;
	line-height: 47px;
	display: inline-block;
	margin-left: 50px;
}

.top51-cant p:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
	margin-right: 10px;
}

.top51-cant p:first-child:before {
	background: url(../img/top52-icon5.png);
	background-size: 100% 100%;
}

.top51-cant p:nth-child(2):before {
	background: url(../img/top52-icon4.png);
	background-size: 100% 100%;
}

.head51 {
	width: 100%;
	background: #fff;
	box-shadow: 5px 5px 15px 2px #e2e1e1;
	position: relative;
}

.head51-logo {
	width: 20%;
}

.head51-logo .logo {
	display:block;
}

.head51-logo .logo img {
	padding-top: 5px;
	height: 100%;
	width: auto;
}

.head51-logo .mmenu {
	display: none;
}

.head51-logo .mmenu img {}

.head51-nav {
	width: 66%;
	margin: 0 1%;
}

.head51-nav li {
	width: 12.5%;
	float: left;
	position: relative;
}

.head51-nav li>a {
	display:block;
	height: 83px;
	line-height: 83px;
	color: #242e42;
	font-size: 22px;
	text-align: center;
	transition: all .5s ease;
}

.head51-nav li:hover>a {
	color: #fff;
}


/*导航悬停效果begin*/

.head51-nav .btn {
	position: relative;
	display: inline-block;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

.head51-nav .btn>a {
	display:block;
	position: relative;
	display: inline-block;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	transition: 0.3s;
}

.head51-nav .btn-2::before {
	position: absolute;
	content: "";
	background-color: #006AA6;
	transition: 0.3s ease-out;
}

.head51-nav .btn-2>a {
	display:block;
	color: rgb(28, 31, 30);
	transition: 0.2s;
}


/*.head51-nav li:hover .head51-nav .btn-2>a{
	color: rgb(255, 255, 255);
}*/

.head51-nav .btn-2>a:hover {
	color: rgb(255, 255, 255);
	transition: 0.2s 0.1s;
}

.head51-nav .btn.hover-slide-up::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	height: 0%;
	width: 100%;
}

.head51-nav .btn.hover-slide-up:hover::before {
	height: 100%;
}


/*导航悬停效果end*/

.head51-nav .dropdown51 {
	display: none;
	position: absolute;
	left: 0;
	top: 83px;
	background: rgba(243, 243, 243, .9);
	width: 150%;
	z-index: 11;
	box-sizing: border-box;
}

.head51-nav li:hover .dropdown51 {
	display: block;
}

.head51-nav .dropdown51 a {
	display:block;
	width: 100%;
	height: 55px;
	line-height: 55px;
	border-bottom: 1px dashed #ccc;
	text-align: center;
	font-size: 20px;
	color: #242E42;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	box-sizing: border-box;
}

.head51-nav .dropdown51 a:hover {
	background: #006AA6;
	color: #fff;
}
.head51-nav .prodown{
	width: 800%;
	 left: -151%;
}

.head51-nav .prodown a{
	width:16.66%;
	float:left;
	   
	border-right: 1px dashed #e0dede;
    box-sizing: border-box;
}
.head51-tel {
	width: 12%;
	margin-top: 10px;
	background: url(../img/head51-tel.png) no-repeat left 10px;
}

.head51-tel p {
	color: #5d5b5b;
	padding-left: 63px;
}

.head51-tel span {
	font-size: 30px;
	color: #242e42;
}


/*头部结束*/


/*banner开始*/

#banner_point {
	/*z-index: 800;*/
	position: absolute;
	margin: 0px 0px 0px -500px;
	width: 120px;
	bottom: 0px;
	height: 20px;
	left: 50%;
	bottom: 2%;
	margin-left: -50px;
}

#banner {
	z-index: 10;
	*z-index: -100;
	position: relative;
	height: 1047px;
	overflow: hidden;
}

#banner img {
	width: 100%;
	height: 100%;
}

#banner_list {
	width: 100%;
	margin: 0 auto;
	overflow: hidden
}

#banner_list img {
	margin: 0 auto;
	z-index: 1;
	width: 100%;
	height: auto;
}

#banner_text {
	z-index: 1002;
	position: absolute;
	width: 120px;
	bottom: 3px;
	right: 3px
}

#banner ul {
	z-index: 15;
	position: absolute;
	padding-bottom: 0px;
	list-style-type: none;
	margin: 0px;
	padding-left: 0px;
	bottom: 10px;
	padding-right: 0px;
	right: 15px;
	padding-top: 0px
}

#banner ul li {
	position: relative;
	text-align: center;
	line-height: 12px;
	width: 16px;
	display: inline;
	background: url(../img/ifpoff.png) no-repeat;
	float: left;
	height: 16px;
	color: #fff;
	cursor: pointer;
	margin-right: 5px;
}

#banner ul li.on {
	background: url(../img/ifpon.png) no-repeat;
	color: #fff;
	width: 26px;
}

#banner_list a {
	position: absolute;
	width: 100%;
	display: block;
	height: 100%
}

#banner_point ul li .pointlayer img {
	width: 61px;
	display: block;
	float: left;
	height: 61px
}


/*banner结束*/


/*产品开始*/

.pro51 {
	padding-bottom: 40px;
	background: url(../img/pro51-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
}

.pro51-nav {
	width: 100%;
	margin-top: 30px;
}

.pro51-nav li {
	width: 15.83%;
	height: 55px;
	line-height: 55px;
	float: left;
	margin-left: 1%;
	margin-bottom: 10px;
	background-color: #ffffff;
	border: solid 1px #dcdcdc;
	font-size: 20px;
	padding: 0 10px;
	text-align: center;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(left, #006AA6, #006AA6);
	background-image: linear-gradient(to right, #006AA6, #006AA6);
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
	background-size: 0% 100%;
	background-position: 0 center;
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pro51-nav li:first-child,
.pro51-nav li:nth-child(7),
.pro51-nav li:nth-child(13),
.pro51-nav li:nth-child(19) {
	margin-left: 0;
}

.pro51-nav li:hover {
	background-size: 100% 100%;
}

.pro51-nav li a {
	display:block;
	color: #242E42;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pro51-nav li:hover a {
	color: #fff;
}

.pro51-con {
	margin-top: 20px;
}

.pro51-con li {
	width: 24.25%;
	margin-left: 1%;
	margin-bottom: 1%;
	float: left;
	transition: 0.3s all ease-in-out;
	border: 1px solid #eee;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.pro51-con li:hover {
	border-color: #006AA6;
}

.pro51-con li:first-child,
.pro51-con li:nth-child(5) {
	margin-left: 0;
}

.pro51-con li>a {
	display: block;
	height: 384px;
}

.pro51-con li>a:before {
	content: '';
	width: 700px;
	height: 700px;
	position: absolute;
	top: -175px;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1) inset;
	-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1) inset;
	z-index: 0;
	left: -70px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pro51-con li:hover a:before {
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 50rem inset;
	transition: all 0.5s ease-in-out 0s;
}

.pro51-con li:hover a:after {
	background-size: 50px;
	transition: all 0.5s ease-in-out 0s;
}

.pro51-con li>a:after {
	content: '';
	background: url(../img/pro51-icon1.png) no-repeat center 40%;
	background-size: auto auto;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: 0px;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

.pro51-con li>a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pro51-con li span {
	position: absolute;
	bottom: 0px;
	width: 100% !important;
	overflow: hidden;
	left: 0;
	text-align: center;
}

.pro51-con li span:before {
	transition: all ease-in-out 0.3s;
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 55px;
	left: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(0, 106, 166, 0.85);
}

.pro51-con li:hover span:before {
	bottom: -55px;
}

.pro51-con li span a {
	display:block;
	display: block;
	height: 55px;
	line-height: 55px;
	color: #fff;
	font-size: 20px;
	position: relative;
	z-index: 3;
	transition: 0.5s all ease-in-out;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro51-con li:hover span a {
	height: 115px;
	line-height: 115px;
	font-size: 22px;
}


/*产品结束*/
/*四大优势开始*/

.advant51 {
	width: 100%;
	padding-bottom: 40px;
	background: url(../img/advant51_bj.jpg) no-repeat center top;
	background-size: cover;
}

.advant51 .ftitle51 h2 {
	color: #e2e2e2;
}

.advant51 .ftitle51 p {
	color: #cac9c9;
}

.advant51 ul {
	margin-top: 20px;
}

.advant51 ul li {
	width: 25%;
	float: left;
	background: #F2F2F2;
	padding: 40px;
	box-sizing: border-box;
	/*box-shadow: 5px 5px 15px 2px #e2e1e1;*/
}

.advant51 ul li:nth-child(2),
.advant51 ul li:nth-child(4) {
	background: #006AA6;
	color: #fff;
}

.advant51 ul li:nth-child(2) p,
.advant51 ul li:nth-child(4) p,
.advant51 ul li:nth-child(2) a,
.advant51 ul li:nth-child(4) a {
	color: #fff;
}

.advant51 li span {
	display: block;
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	transition: all 0.6s;
}
.advant51 ul li:hover span{
	margin-top: -20px;
}
.advant51 li span img {
	width: 100%;
	height: 100%;
	transition: all 0.6s;
}
.advant51 ul li:hover span img{
	transform: rotate(-360deg);
}

.advant51 li h3 {
	font-size: 20px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.advant51 li p {
	color: #666;
	height: 60px;
	line-height: 30px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.advant51 li a {
	display:block;
	color: #4a4a4a;
	margin-top: 20px;
}


/*四大优势结束*/

/*公司简介开始*/

.about51 {
	padding: 40px 0;
	width: 100%;
	background: url(../img/about51-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
}

.about51-l {
	width: 40%;
	height: 500px;
}

.about51-l img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about51-r {
	width: 58%;
}

.about51-title {
	margin-bottom: 40px;
}

.about51-title span {
	display: inline-block;
	width: 80px;
	height: 80px;
	background: #ffc107;
	float: left;
}

.about51-title span i {
	width: 80px;
	height: 80px;
	display: inline-block;
	background: #006AA6;
	border-bottom-right-radius: 55px;
}
.about51-title span i img {
    width: 30px;
    margin: 0 auto;
    padding-top: 20px;
	display: block;
}


.about51-title h3 {
	width: 85%;
	display: inline-block;
	padding-left: 30px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
}

.about51-title h3 b {
	font-size: 34px;
	letter-spacing: 2px;
	color: #342c2a;
}

.about51-title h3 p {
	font-size: 18px;
	color: #666;
	font-weight: normal;
}

.about51-con {
	width: 100%;
}

.about51-con>p {
	color: #7b7b7b;
	line-height: 30px;
	height: 60px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 20px;
}

.about51-con>p:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
	background: url(../img/about51-icon6.png);
	background-size: 100% 100%;
	margin-right: 20px;
}

.about51-honor {}

.about51-honor li {
	width: 25%;
	float: left;
	box-sizing: border-box;
	border-left: 1px dashed #ccc;
}

.about51-honor li:first-child {
	border: none;
}

.about51-honor li i {
	width: 50px;
	height: 50px;
	margin: 0 auto;
	display: block;
}

.about51-honor li i img {
	width: 100%;
	height: 100%;
	transition: all 0.6s;
}
.about51-honor li i img:hover{
transform: rotate(-360deg);	
}

.about51-honor li p {
	color: #666666;
	text-align: center;
	line-height: 55px;
}

.about51-btn {
	margin-top: 30px;
}

.about51-btn li {
	width: 200px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	float: left;
}

.about51-btn li:first-child {
	background: #006AA6;
	margin-right: 2%;
}

.about51-btn li:nth-child(2) {
	background: #FFC107;
}

.about51-btn li a {
	color: #fff;
}

.about51-btn li:first-child a:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
	background: url(../img/about51-icon8.png);
	background-size: 100% 100%;
}

.about51-btn li:nth-child(2) a:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
	background: url(../img/about51-icon7.png);
	background-size: 100% 100%;
}


/*公司简介结束*/





/*案例开始*/

.case51 {
	position: relative;
	padding-bottom: 40px;
}

.case51:after {
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 350px;
	background: #006AA6 url(../img/case51-bj.png) repeat;
	top: 0;
	left: 0;
}
.case51 .ftitle51 h2{
	color: #e2e2e2;
}
.case51 .ftitle51 p {
    color: #cac9c9;
}
.case51-nav {
	overflow: hidden;
}

.case51-tab {
	    margin-top: 35px;
    border-top: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    font-size: 0;
    margin-bottom: 20px;
}

.case51-tab li {
	display: inline-block;
	vertical-align: top;
	height: 55px;
	box-sizing: border-box;
	width: 12.4999%;
	border-right: 1px solid #b2b2b2;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
	/*transition: all .3s ease;*/
}

.case51-tab li:nth-child(1) {
	border-left: 1px solid #969798;
}

.case51-tab li a {
	display: block;
	font-size: 20px;
	color: #fff;
	line-height: 55px;
	text-align: center;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}

.case51-tab li.on {
	background: #ffc107;
	border-radius: 90px;
}

.case51-jt .mainb {
	position: relative;
}

.case51-jt i {
	cursor: pointer;
	position: absolute;
	top: 222px;
	left: 202px;
	z-index: 99;
}

.case51-jt i.next {
	right: 202px;
	left: auto;
}

.case51-con {
	margin-left: -455px;
	width: 860px;
	margin: 0 auto;
}

.case51-con .tempWrap {
	overflow: visible!important;
}

.case51-con ul .case51-list {
	/* width: 860px;
	height: 607px; */
	width: 853px;
	height: 713px;
	overflow: hidden;
	position: relative;
}

.case51-con .case51-list-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case51-con .case51-list-pic {
	position: absolute;
	/* width: 860px;
	height: 485px; */
	width: 853px;
	height: 591px;
	top: 0;
	left: 0;
	overflow: hidden;
}

.case51-con .case51-list-con {
	margin-top: 591px;
	transition: all .3s ease;
	box-sizing: border-box;
	height: 70px;
	overflow: hidden;
	background: #d5d5d5;
}

.case51-con .case51-list-txt {
	text-align: center;
	line-height: 70px;
	display: block;
	font-size: 20px;
	color: #484848;
	font-weight: lighter;
}

.case51-con .case51-list.cur .case51-list-con {
	background: #006AA6;
	height: 127px;
	padding: 25px;
}

.case51-con .case51-list.cur .case51-list-txt {
	color: #fff;
	text-align: left;
	/*line-height: 25px;*/
	margin-bottom: 15px;
}

.case51-con .case51-list .case51-list-body {
	font-size: 14px;
	color: #fff;
	font-weight: lighter;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.case51-btn {
	margin-top: 50px;
	text-align: center;
}

.case51-btn a {
	display: inline-block;
	width: 380px;
	line-height: 50px;
	background: #d5d5d5;
	transition: all .3s ease;
	font-size: 18px;
	color: #222222;
	font-weight: lighter;
}

.case51-btn a:hover {
	background: #006AA6;
	color: #fff;
}


/*案例结束*/


/*广告条开始*/


/*广告条结束*/

/*合作伙伴开始*/

.parter51 {
	width: 100%;
	padding-bottom: 40px;
	background: url(../img/parter51-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
}

.partner51-con {
	width: 100%;
	margin-top: 30px;
}

.partner51-list {
	width: 60%;
}

.partner51-list li {
	width: 25%;
	height: 180px;
	float: left;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.partner51-list li:nth-child(5),
.partner51-list li:nth-child(6),
.partner51-list li:nth-child(7),
.partner51-list li:nth-child(8),
.partner51-list li:nth-child(9),
.partner51-list li:nth-child(10),
.partner51-list li:nth-child(11),
.partner51-list li:nth-child(12){
	border-top: none;
}
.partner51-list li:nth-child(2),
.partner51-list li:nth-child(3),
.partner51-list li:nth-child(4),
.partner51-list li:nth-child(6),
.partner51-list li:nth-child(7),
.partner51-list li:nth-child(8),
.partner51-list li:nth-child(10),
.partner51-list li:nth-child(11),
.partner51-list li:nth-child(12){
	border-left: none;
}

.partner51-list li a {
	display:block;
	    width: 100%;
    height: 100%;
	}

.partner51-list li img {
	width: 100%;	
	height:100%;
	display: block;
	object-fit:cover;
	filter: grayscale(100%);
}

.partner51-list li:hover img {
	filter: grayscale(0);
}



.parter51-mes {
	width: 40%;
	/* height: 346px; */
	/*background: #f0f0f0;*/
	padding-left: 2%;
	padding-top: 20px;
	box-sizing: border-box;
}

.parter51-mes h3 {
	font-size: 25px;
	color: #777;
	letter-spacing: 2px;
	font-weight: normal;
}

.parter51-mes #onlyform {
	width: 100%;
}

.parter51-mes .forml_input {
	width: 98%;
	height: 42px;
	border: 1px solid #d2d4d6;
	padding-left: 20px;
	font-size: 16px;
	box-sizing: border-box;
}

.parter51-mes .forml_input:focus {
	border: 1px solid #d2d4d6;
}

.parter51-mes .forml_textra {
	width: 98%;
	height: 250px;
	border: 1px solid #dedede;
	padding-top: 10px;
	padding-left: 20px;
	font-size: 16px;
	box-sizing: border-box;
}

.parter51-mes .G_botton {
	width: 55px;
	height: 30px;
	line-height: 30px;
	border: 0;
	cursor: pointer;
}

.parter51-mes .formli {
	width: 100%;
	height: auto;
	padding-top: 10px;
	clear: both;
	position: relative;
}

.parter51-mes .formli:first-child,
.parter51-mes .formli:nth-child(2) {
	width: 49%;
	display: inline-block;
}

.parter51-mes .formli:nth-child(5) {}

.parter51-mes .formli img {
	position: absolute;
	right: 5%;
	top: 25px;
}

.parter51-mes .G_tips {
	width: 486px;
	margin: 10px auto 0 auto;
	border: 1px solid #dedede;
	padding: 7px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
}

.parter51-mes #checkCode {
	width: 96%;
	height: 42px;
	border: 1px solid #dedede;
	text-transform: uppercase;
	vertical-align: middle;
	padding-left: 20px;
	font-size: 16px;
}

.parter51-mes .forml_sub,
.parter51-mes .czhi {
	width: 250px;
	height: 50px;
	border: none;
	color: #000;
	font-family: 微软雅黑;
	border-radius: 25px;
	font-size: 18px;
	border: 2px solid #d8d2d2;
}

.parter51-mes .forml_sub:hover,
.parter51-mes .czhi:hover {
	cursor: pointer;
	color: #fff;
	background: #006AA6;
}


/*合作伙伴结束*/


/*新闻开始*/

.news51 {
	padding: 40px 0;
	background: url(../img/news51-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
}

.news51-title {
	width: 100%;
	border-left: 5px solid #006AA6;
	margin-bottom: 20px;
	padding-left: 20px;
	box-sizing: border-box;
}

.news51-title h2 {
	width: 80%;
	display: inline-block;
	float: left;
}

.news51-title h2 span {
	font-size: 34px;
	color:#bfbfbf;
	text-transform: uppercase;
}

.news51-title h2 span b {
	color: #1a1a1a;
	letter-spacing: 2px;
}

.news51-title h2 p {
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	color: #808080;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 80%;
	margin-left: 10px;
}

.news51-title a {
	display: inline-block;
	float: right;
	font-size: 20px;
	text-transform: uppercase;
	color: #666;
	margin-top: 30px;
}

.news51-title a:hover {
	color: #006AA6;
}

.news51-l {
	width: 68%;
	border: 1px solid #dcdcdc;
}

.news51-l-top {
	width: 100%;
	margin: 20px 0;
	padding: 0 40px;
	box-sizing: border-box;
}

.news51-l-top li {
	width: 32%;
	margin-left: 2%;
	float: left;
}

.news51-l-top li:first-child {
	margin-left: 0;
}

.news51-l-top li span {
	font-size: 20px;
	/* font-weight: bold; */
	margin-bottom: 10px;
	display: block;
	color: #242e42;
}

.news51-l-top li h3 {
	color: #242e42;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news51-l-top li:hover h3{
	color:#006AA6;
}
.news51-l-top li p {
	color: #808080;
	line-height: 35px;
	height: 70px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news51-l-img {
	width: 100%;
	height: 200px;
	margin-top: 10px;
	overflow: hidden;
}

.news51-l-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s;
}

.news51-l-img img:hover {
	transform: scale(1.2);
}

.news51-l-bottom {
	padding: 0 40px 20px 40px;
	box-sizing: border-box;
}

.news51-l-bottom li {
	width: 100%;
	height: 55px;
	line-height: 55px;
	border-bottom: 1px dashed #ccc;
}

.news51-l-bottom li span {
	float: left;
	width: 10%;
	display: inline-block;
	color: #242e42;
	font-weight: bold;
}

.news51-l-bottom li h3 {
	display: inline-block;
	color: #333;
	font-weight: normal;
	font-size: 20px;
	width: 88%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.news51-l-bottom li:hover h3{
	color:#006AA6;
}
.news51-r {
	width: 30%;
	border: 1px solid #dcdcdc;
	padding: 5px 40px;
	box-sizing: border-box;
}

.news51-r h3 {
	line-height: 55px;
	border-bottom: 1px solid #ccc;
	color: #333;
}

.news51-r h3:after {
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-left: 10px;
	margin-bottom: 5px;
	display: inline-block;
	content: "";
	background: url(../img/news51-icon1.png);
	background-size: 100% 100%;
}

.news51-r p {
	margin-top: 20px;
	color: #808080;
	height: 60px;
	line-height: 30px;
	margin-left: 10px;
	    padding-bottom: 5px;
    border-bottom: 1px dashed #ccc;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.news51-r p:hover a{
	color:#006AA6;
}
.news51-r p:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	display: inline-block;
	content: "";
	background: url(../img/news51-icon2.png);
	background-size: 100% 100%;
}

.news51-r-img {
	width: 100%;
	height: 250px;
	margin-top: 10px;
}

.news51-r-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*新闻结束*/



/*尾部开始*/

.links51 {
	width: 100%;
}

.links51 h3 {
	font-size: 36px;
	letter-spacing: 2px;
	color: #b7b5b5;
	border-bottom: 2px solid #ccc;
}

.links51 a {
	display: inline-block;
	color: #333;
	margin-right: 30px;
	line-height: 40px;
}

.links51 a:hover {
	color: #FFC107;
}

.links51 a:before {
	vertical-align: middle;
	width: 6px;
	height: 10px;
	margin-right: 10px;
	display: inline-block;
	content: "";
	background: url(../img/links51-icon1.gif);
	background-size: 100% 100%;
}

.links51 a:hover:before {
	background: url(../img/links51-icon2.gif);
	background-size: 100% 100%;
}

.footer51 {
	width: 100%;
	background:#2f4359;
	padding: 40px 0;
}

.footer51-l {
	width: 25%;
}

.footer51-logo {
	width: 78px;
}

.footer51-logo img {
	width: 100%;
}

.footer51-l h2 {
	width: calc(100% - 78px);
	float: right;
	padding-left: 20px;
	box-sizing: border-box;
}

.footer51-l h2 span {
	font-size: 27px;
	color: #e4e4e4;
	letter-spacing: 1px;
}

.footer51-l h2 p {
	font-size: 16px;
	font-weight: normal;
	color: #ccc;
}

.footer51-ma {
	width: 130px;
	height: 130px;
	margin-top: 20px;
}

.footer51-ma img {
	width: 100%;
	height: 100%;
}

.footer51-l ul {
	width: calc(100% - 130px);
	float: right;
	color: rgba(255, 255, 255, 0.6);
	padding-left: 20px;
	margin-top: 20px;
	box-sizing: border-box;
}

.footer51-l ul li {
	line-height: 32px;
}

.footer51-nav {
	width: 74%;
}

.footer51-nav li {
	width: 20%;
	float: left;
	box-sizing: border-box;
	text-align: center;
	border-left: 1px solid #243344;
}

.footer51-nav li p {
	color: rgba(255, 255, 255, 0.7);
	color: rgba(255, 255, 255, 0.7);
	line-height: 40px;
	font-size: 20px;
	/* font-weight: bold; */
	/*position: relative;*/
}

.footer51-nav li p:before {
	vertical-align: middle;
	width: 20px;
	height: 4px;
	margin-right: 5px;
	margin-left: -25px;
	display: inline-block;
	content: "";
	background: url(../img/footer51-icon1.png);
	background-size: 100% 100%;
}

.footer51-nav li a {
	display:block;
	color: rgba(255, 255, 255, 0.4);
	line-height: 35px;
}

.footer51-nav li a:hover {
	color: #ffc107;
}

.copyright51 {
	width: 100%;
	background: #243344;
}

.copyright51 p {
	line-height: 35px;
	text-align: center;
	color: #b1b1b1;
}

.copyright51 p a {
	display: inline-block;
	color: #b1b1b1;
}

.mfooter51{display:none;}
/*尾部结束*/
/* ******************51**************** */
/* ******************53**************** */

/*-------------------------------------*/

.ftitle53 {
	text-align: center;
	position: relative;
	padding: 40px 0 20px 0;
}

.ftitle53 span {
	display: inline-block;
	padding: 0 68px;
	background: url(../img/ftitle53-bj.png) center no-repeat;
	position: relative;
	z-index: 9;
	color: #353535;
	letter-spacing: 2px;
	font-size: 40px;
}

.ftitle53::before {
	content: '';
	width: 42%;
	height: 2px;
	position: absolute;
	top: 47%;
	margin-top: -0.5px;
	left: 0;
	background-image: linear-gradient(to right, transparent, #ccc);
}

.ftitle53::after {
	content: '';
	width: 41%;
	height: 2px;
	position: absolute;
	top: 47%;
	margin-top: -0.5px;
	right: 0;
	background-image: linear-gradient(to left, transparent, #ccc);
}

.ftitle53 p {
	color: #666;
	line-height: 30px;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}


/*头部开始*/

.header53 {
	position: absolute;
	/* top: 0; */
	/* left: 0; */
	width: 100%;
	background: rgba(255, 255, 255, 0.5);
	color: #242e42;
	z-index: 999;
	box-shadow: 5px 3px 15px 1px rgba(140,140,140,.6);
}
.nheader53{
	position: relative;
	background: #fff;
	box-shadow:none;
	background: url(../img/solve53-bj.jpg) no-repeat center top;
	background-size:100% 100%;
}

.header53 .head53-top {
	position: relative;
	z-index: 3;
}

.header53 .head53-top .logo {
	float: left;
	display: block;
}

.header53 .head53-top .logo img {
	float: left;
	height: 73px;
	width: auto;
	padding: 10px 0;
}

.header53 .head53-top .logo div {
	margin-top: 22px;
	float: left;
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px solid rgba(238, 238, 238, .2);
}

.header53 .head53-top .logo div span {
	color: #242e42;
}

.header53 .head53-top .logo div p {
	margin-top: 7px;
	font-size: 20px;
	color: #FFC107;
}

.header53 .head53-top-r {
	float: right;
	padding-top: 25px;
}

.header53 .tel53 {
	float: left;
	padding-right: 20px;
	line-height: 32px;
	position: relative;
}

.header53 .tel53:after {
	content: "";
	position: absolute;
	top: 22%;
	right: 0;
	width: 1px;
	height: 30px;
	margin-top: -8px;
	background: rgba(238, 238, 238, .3);
}

.header53 .tel53 span {
	margin-left: 5px;
	font-size: 30px;
	color: #FFC107;
	font-weight: bold;
}

.header53 .search-box {
	float: left;
	margin-left: 25px;
	width: 145px;
	border: 1px solid #FFC107;
	height: 32px;
	border-radius: 16px;
}

.header53 .search-box .in {
	float: left;
	width: 113px;
	line-height: 24px;
	padding: 3px 15px;
	height: 30px;
	background: none;
	border: none;
	color: #FFFFFF;
	font-size: 12px;
}

.header53 .search-box .bt {
	float: right;
	width: 30px;
	height: 30px;
	background: url(../images/search_bt.png);
}

.header53 .top53-ma {
	float: left;
	margin-left: 20px;
	position: relative;
	cursor: pointer;
}

.header53 .top53-ma div {
	display: none;
	position: absolute;
	left: 50%;
	margin-left: -60px;
	top: 42px;
	right: 0;
	width: 120px;
	background: #fff;
	padding: 10px;
}

.header53 .top53-ma div img {
	width: 100%;
	height: 100%;
}

.header53 .top53-ma:hover div {
	display: block;
}

.header53 .nav {
	border-top: 1px solid #313c46;
}

.header53 .nav ul {
	margin: 0 -32px;
}

.header53 .nav li {
	float: left;
	width: 12.5%;
	position: relative;
}

.header53 .nav li>a {
	display: block;
	font-size: 22px;
	line-height: 55px;
	height: 55px;
	color: #242e42;
	text-align: center;
	position: relative;
}
.nheader53 .nav li>a{
	color:#242e42;
}
.header53 .nav li>a:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 0%;
	height: 2px;
	background: #FFC107;
	-webkit-transition: all ease .4s;
	-moz-transition: all ease .4s;
	-ms-transition: all ease .4s;
	-o-transition: all ease .4s;
	transition: all ease .4s;
}

.header53 .nav li.current>a,
.header53 .nav li:hover>a {
	color: #FFC107;
	font-weight: bold;
}

.header53 .nav li.current>a:before,
.header53 .nav li:hover>a:before {
	width: 100%;
}

.header53 .nav li:hover div {
	display: block;
}

.header53 .nav li div {
	display: none;
	position: absolute;
	top: 55px;
	left: 22%;
	margin-left: -60px;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	text-align: center;
}

.header53 .nav li div a {
	display: block;
	line-height: 55px;
	height: 55px;
	color: #242e42;
    font-size: 20px;
    border-bottom: 1px dashed #848282;
	padding: 0 10px;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.header53 .nav li div a:hover {
	background: rgba(16, 18, 40, .8);
	color:#fff;
}

.header53 .mmenu53{
	display:none;
}

/*头部结束*/


/*banner开始*/

.banner {
	position: relative;
}

.banner .slick-slide {
	position: relative;
}

.banner img {
	width: 100%;
	display: block;
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
	margin-top: 50px;
	width: 123px;
	height: 47px;
	margin-top: -23px;
	background-color: rgba(255, 255, 255, 0);
	border-radius: 0;
}

.banner .swiper-button-prev {
	left: 4%;
	background-image: url(../img/banner_prev.png);
}

.banner .swiper-button-next {
	right: 4%;
	background-image: url(../img/banner_next.png);
}

.banner .swiper-pagination {
	/* bottom: 72px; */
}

.banner .swiper-pagination .swiper-pagination-bullet {
	border: 1px solid rgba(255, 255, 255, 0);
}

.banner .swiper-pagination .swiper-pagination-bullet:before {
	background: #FFFFFF;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
	border: 1px solid #ffffff;
}

.banner .swiper-pagination .swiper-pagination-bullet-active:before {
	background: #ffffff;
}

.banner .prev-num,
.banner .next-num {
	position: absolute;
	display: block;
	top: 50%;
	margin-top: 50px;
	margin-top: 50px;
	width: 123px;
	height: 47px;
	margin-top: -23px;
	color: #FFFFFF;
}

.banner .prev-num {
	left: 4%;
	padding-left: 27px;
}

.banner .next-num {
	right: 4%;
	text-align: right;
	padding-right: 27px;
}

.banner-text {
	position: absolute;
	top: 50%;
	margin-top: -70px;
	left: 0;
	width: 100%;
	text-align: center;
	color: #FFFFFF;
}

.banner-text h2 {
	font-size: 48px;
	letter-spacing: 10px;
}

.banner-text .cn {
	margin-top: 5px;
	font-size: 18px;
	letter-spacing: 5px;
}

.banner-text .en {
	margin-top: 5px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.banner-more {
	margin-top: 40px;
	display: inline-block;
	padding: 12px 50px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 12px;
	background: rgba(255, 255, 255, .2);
	border: 1px solid rgba(255, 255, 255, .6);
	color: #FFFFFF;
}

.banner-more:hover {
	background: rgba(255, 255, 255, .4);
}


/*banner结束*/


/*产品开始*/

.pro53 {
	padding-bottom: 40px;
	background: url(../img/pro53-bj.png);
}

.pro53 .hd {}

.pro53 .hd ul {}

.pro53 .hd ul li {
	width: 15.83%;
	margin-left: 1%;
	height: 55px;
	line-height: 55px;
	font-size: 20px;
	color: #545454;
	border-radius: 30px;
	background: #ddd;
	cursor: pointer;
	float: left;
	margin-bottom: 10px;
	box-sizing: border-box;
	padding: 0 10px 0 30px;
	-webkit-transition: all .5s;
	transition: all .5s;
	background: #ddd url(../img/pro51-icon.png) 307px center no-repeat;
}

.pro53 .hd ul li:first-child,
.pro53 .hd ul li:nth-child(7),.pro53 .hd ul li:nth-child(13),.pro53 .hd ul li:nth-child(19) {
	margin-left: 0;
}

.pro53 .hd ul li a {
	width: calc(100% - 35px);
	display: block;
	color: #545454;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.pro53 .hd ul li.on a {
	display: block;
	color: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.pro53 .hd ul li.on {
	color: #fff;
	background: #006AA6 url(../img/pro51-icon.png) 307px center no-repeat;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.pro53 .bd {
	height: auto;
	overflow: hidden;
	margin-top: 40px;
}

.pro53-list {
	overflow: hidden;
}

.pro53-list li {
	width: 24.25%;
	float: left;
	margin-left: 1%;
	margin-bottom: 10px;
	box-shadow: 5px 5px 15px 2px #e2e1e1;
}

.pro53-list li:first-child,
.pro53-list li:nth-child(5) {
	margin-left: 0;
}

.pro53-con {
	width: 100%;
}

.pro53-con h3 {
	height: 55px;
	line-height: 55px;
	background: ;
	color: #FFFFFF;
	font-weight: normal;
	padding: 0 10px;
	box-sizing: border-box;
	background: #006AA6 url(../img/pro53-icon2.png) no-repeat;
	background-position: right 10px top 17px;
	background-size: 26px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro53-list .pro53-img {
	width: 100%;
	height: 384px;
	position: relative;
	overflow: hidden;
}

.pro53-list .pro53-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s;
}

.pro53-list li:hover .pro53-img img {
	transform: scale(1.2);
}

.pro53-mask {
	background: rgba(0, 0, 0, .7);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	transform: perspective(600px) rotateX(90deg);
	-ms-transform: translateX(100%);
	-moz-transform: perspective(600px) rotateX(90deg);
	-webkit-transform: perspective(600px) rotateX(90deg);
	-o-transform: perspective(600px) rotateX(90deg);
	transition: transform 0.5s;
	-moz-transition: transform 0.5s;
	-webkit-transition: transform 0.5s;
	-o-transition: transform 0.5s;
}

.pro53-list li:hover .pro53-mask {
	transform: perspective(600px) rotateX(0deg);
	-ms-transform: translateX(0);
	-moz-transform: perspective(600px) rotateX(0deg);
	-webkit-transform: perspective(600px) rotateX(0deg);
	-o-transform: perspective(600px) rotateX(0deg);
}

.pro53-mask h3 {
	margin-top: 21%;
	margin-bottom: 10px;
	background: none;
}

.pro53-mask p {
	height: 60px;
	line-height: 30px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}


/*产品结束*/


/*公司简介开始*/

.about53 {}

.about53-con {}

.about53-l {
	width: 60%;
	padding: 100px 0;
	background: url(../img/about53-l-bj.png) no-repeat center top;
	background-size: 100% 100%;
}

.about53-l span {
	font-size: 20px;
	color: #999;
}

.about53-l h2 {
	font-size: 30px;
	line-height: 40px;
	color: #555;
	margin-bottom: 40px;
	margin-top: 40px;
	font-weight: normal;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.about53-l em {
	display: block;
	width: 70px;
	height: 3px;
	margin: 50px 0;
	background: #006AA6;
}

.about53-l p {
	color: #555;
	height: 140px;
	line-height: 35px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.about53-btn {
	width: 250px;
	height: 55px;
	background-color: #006AA6;
	display: block;
	font-size: 18px;
	margin-top: 70px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 55px;
	letter-spacing: 0px;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	position: relative;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.more2:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform, opacity;
	transition-property: transform, opacity;
}

.about53-btnimg {
	vertical-align: middle;
	margin-right: 10px;
}

.about53-btn:hover {
	animation: jello 1s ease;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	color: #fff;
}

.about53-btn:hover:before {
	opacity: 1;
	-webkit-transform: translateY(3px);
	transform: translateY(3px);
}


/*使用animation: jello 1s ease;需要进行定义*/

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

@keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

.about53-r {
	width: 38%;
	height: 714px;
	background: url(../img/about53-r-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
	padding: 100px;
	box-sizing: border-box;
}

.about53-r li {
	color: #fff;
	margin-bottom: 55px;
}

.about53-r li p {
	font-size: 36px;
}

.about53-r li p span {
	font-size: 18px;
}

.about53-r li b {
	font-size: 16px;
	font-weight: normal;
	line-height: 35px;
}


/*公司简介结束*/


/*案例开始*/

.case53 {
	background: url(../img/youshi1_bg.jpg) no-repeat center top;
	background-size: 100% 100%;
	padding-bottom: 40px;
}

.case53-con ul {
	width: 100%;
	padding-left: 10px;
	/*margin-left: -10px;*/
	overflow: hidden;
}

.case53-con ul li {
	width: 25%;
	height: auto;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0 10px 10px 0;
	float: left;
}

.case53-con ul li a {
	display: block;
	position: relative;
}

.case53-con ul li a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case53-con ul li h2 {
	position: relative;
	z-index: 10;
	height: 57px;
	overflow: hidden;
	background: #fff;
	line-height: 57px;
	text-align: center;
	font-size: 20px;
	color: #333;
	box-shadow: 5px 5px 15px 2px #e2e1e1;
}

.case53-mask {
	display: none;
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 106, 166, 0.75);
}

.case53-pic {
	position: relative;
	width: 100%;
	height: 433px;
}

.case53-mask-con {
	padding: 0 45px;
	border: 1px #87b8d4 solid;
	height: 100%;
}

.case53-mask-con h4 {
	height: 70px;
	line-height: 70px;
	overflow: hidden;
	position: relative;
	padding-top: 23px;
	font-size: 30px;
	color: #fff;
}

.case53-mask-con h4:after {
	content: "";
	width: 36px;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0
}

.case53-mask-con p {
	line-height: 35px;
	color: #fff;
	margin-top: 27px;
	height: 140px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.case53-con ul li:hover .case53-mask {
	display: block;
}

.case53-con ul li:hover h2 {
	background: #006AA6;
	color: #fff;
}

.case53-con {
	padding: 0 0 10px;
}

.case53-con .swiper-wrapper {
	height: auto;
}

.case53-btn {
	height: 30px;
	text-align: center
}

.case53-btn .swiper-button-next,
.case53-btn .swiper-button-prev,
.case53-btn a {
	position: static;
	left: auto;
	top: auto;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 2px;
	opacity: 1;
}

.case53-btn .swiper-button-next {
	background: #fff url(../img/case53-next.png) center no-repeat
}

.case53-btn .swiper-button-prev {
	background: #fff url(../img/case53-prev.png) center no-repeat
}

.case53-btn a {
	background: #fff url(../img/case53-more.png) center no-repeat;
	width: 93px;
}


/*案例结束*/


/*广告条开始*/

.adv53 {
	width: 100%;
	/* background: url(../img/banner.jpg) no-repeat center top;
	background-size: 100% 100%; */
	background: url(../img/banner.jpg) no-repeat center top fixed;
    background-size: cover;
}

.adv53-l {
	width: 55%;
	padding: 40px 0 40px 5%;
	background: url(../img/adv53-bj.png) no-repeat center top;
	background-size: 100% 100%;
	color: #fff;
}

.adv53-l h2 {
	letter-spacing: 2px;
}

.adv53-l p {
	margin-top: 30px;
	width: 80%;
	height: 70px;
	line-height: 35px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.adv53-l span {
	margin-top: 38px;
	display: inline-block;
}

.adv53-l span:before {
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	display: inline-block;
	content: "";
	background: url(../img/adv53-icon1.png);
	background-size: 100% 100%;
}

.adv53-btn {
	width: 80%;
	float: right;
	margin-top: 30px;
}

.adv53-btn a {
	width: 230px;
	height: 45px;
	line-height: 45px;
	color: #006AA6;
	font-weight: bold;
	text-align: center;
	border-radius: 30px;
	background: #fff;
	margin-right: 20px;
	display: inline-block;
}

.adv53-btn a:hover {
	background: #FFC107;
	color: #fff;
	transition: all 0.6s;
}


/*广告条结束*/


/*新闻开始*/


.faq {
	width: 50%;
}

.faq .news53_tit h3 .txt {
	height: 55px;
	line-height: 55px;
	margin-bottom: 20px;
	padding-left: 30px;
	font-size: 28px;
	color: #333;
	font-weight: normal;
	display: block;
	position: relative;
	background: #ccc;
}

.faq .news53_tit h3 a span {
	position: absolute;
	top: 0;
	right: 30px;
	font-size: 16px;
	color: #666;
	font-weight: 100;
}

.faq .news53_tit h3 .img {
	width: 100%;
	height: 200px;
}

.faq .news53_tit h3 .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.faq .faq_con dl {
	border-bottom: solid 1px #ccc;
	padding: 18px 0;
}

.faq .faq_con dl dt {
	line-height: 30px;
	font-size: 20px;
	color: #333;
	height: 35px;
	overflow: hidden;
}

.faq .faq_con dl dd {
	font-size: 18px;
	line-height: 35px;
	height: 70px;
	overflow: hidden;
	color: #666;
}

.faq .faq_con dl span {
	float: left;
	display: block;
	width: 94%;
}

.faq .faq_con dl i {
	display: block;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	margin-right: 10px;
	color: #fff;
	background: #006AA6;
	float: left;
	font-style: normal;
}

.faq .faq_con dl dt i {
	background: #252E37;
}

.news53 {
	padding: 40px 0;
	background: url(../img/news53-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
}

.new_bg_tit {
	background: url(../images/newbg_tit_bg.jpg) no-repeat 347px 39px;
	height: 52px;
}

.new_bg_tit a {
	float: right;
	display: block;
	margin-top: 36px;
	color: #FC8E01;
}

.news53_tit {
	padding-bottom: 5px;
}

.news53_tit .hon_tit {
	width: 99%;
	height: 55px;
	background: #ccc;
}

.news53_tit h3 {
	overflow: hidden;
}

.news53_tit h3 a {
	display: block;
}

.news53_tit h3 a.tit {
	font-size: 18px;
	color: #333;
	font-weight: bold;
}

.news53 #news53-l {
	width: 48%;
	margin-right: 2%;
	border-right: dashed 1px #ccc;
	box-sizing: border-box;
}

.news53 #news53-l .new_box {
	margin-top: 10px;
}

.news53 #news53-l .news53_tit {}

.news53 #news53-l .news53 #tab2 .news53_tit .hon_tit {
	border: none
}

.news53 #news53-l .news53_tit ul li {
	width: 200px;
	float: left;
	font-size: 28px;
	color: #333;
	cursor: pointer;
	height: 55px;
	line-height: 55px;
	text-align: center;
}

.news53 #news53-l .news53_tit ul li.selected {
	background: #006AA6;
	color: #fff;
}

.news53 #news53-l .news53_tit ul li.selected a {
	color: #fff;
}

.news53 #news53-l .news53_tit a {
	color: #333;
	display: block;
}

.news53 #news53-l .news_con .news_img {
	overflow: hidden;
	-webkit-transition: all .5s ease-out;
	padding: 10px;
	margin-right: 3px;
}

.news53 #news53-l .news_con .news_img:hover {
	box-sizing: border-box;
	transform: translate(-10px, -10px);
	border: solid 1px #258102;
	-webkit-transform: translate(-10px, -10px);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
}

.news53 #news53-l .news_con .news_img img {
	width: 268px;
	height: 160px;
	border: 1px #d9d9d9 solid;
}

.news53 #news53-l .news_con .news_img .right {
	width: 460px;
	margin-top: 13px;
	width: 268px;
}

.news53 #news53-l .news_con .news_img .right p {
	font-size: 12px;
	line-height: 20px;
	margin-top: 9px;
	height: 60px;
	overflow: hidden;
}

.news53 #news53-l .news_con .news_img .right a {
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	width: 268px;
}

.news53 #news53-l .news_con .news_img .right a.f14 {
	font-size: 14px;
	margin-top: 17px;
	display: block;
	color: #045DB8;
	border: 1px solid #24A749;
	width: 80px;
	height: 23px;
	line-height: 23px;
	text-align: center;
	border-radius: 3px;
	-webkit-transition: all .8s ease-out;
	transition: all .8s ease-out;
}

.news53 #news53-l .news_con .news_img .right a.f14:hover {
	background-color: #006AA6;
	border: 1px solid #006AA6;
	color: #fff;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.news53 #news53-l .news_con .news_list {
	margin-left: 0px;
}
.hide{
	display:none;
}
.news_list dl {
	height: 135px;
	width: 98%;
	margin-bottom: 20px;
	-webkit-transition: all .5s ease-out;
}

.news_list dl dt {
	float: left;
	width: 20%;
	height: 135px;
	text-align: center;
	position: relative;
}

.news_list dl dt p {
	padding-top: 10px;
	display: block;
	width: 60%;
	height: 80px;
	text-align: center;
	color: #fff;
	background: rgba(153, 153, 153, .5);
	position: absolute;
	top: 18%;
	left: 22%;
}

.news_list dl:hover dt p {
	background: rgba(0, 106, 166, .7);
}

.news_list dl dt img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news_list dl dt strong {
	font-size: 28px;
	display: block;
	line-height: 30px;
}

.news_list dl dt span {
	font-size: 14px;
	display: block;
}

.news_list dl dd {
	float: left;
	margin-left: 1%;
	margin-top: 5px;
	width: 79%;
	overflow: hidden;
	height: 100px;
}

.news_list dl a {
	font-size: 20px;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	line-height: 25px;
	position: relative;
	padding-bottom: 8px;
}

.news_list dl a span {
	display: block;
	width: 54px;
	height: 22px;
	background: url(../img/new_hot1.jpg);
	position: absolute;
	right: 0;
	top: 0;
}

.news_list dl:hover a span {
	background: url(../images/new_hot.png);
}

.news_list dl p {
	margin-top: 3px;
	color: #666;
	line-height: 35px;
	height: 70px;
}

.news_list dl:hover {
	border: 1px solid #006AA6;
	transform: translate(-10px, -10px);
	-webkit-transform: translate(-10px, -10px);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
}


/*新闻结束*/


/*解决方案开始*/

.solve53 {
	width: 100%;
	/*height: 698px;*/
	background: url(../img/solve53-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
	position: relative;
	padding-bottom: 40px;
}

.solve53 .mainb {
	position: relative;
}

.pic2 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.solve53-l{
	width: 25%;
	height: 690px;
	float: left;
	position: relative;
	z-index: 10;
	margin-top: 20px;
}
.solve53-l a {
	width: 100%;
	height: 100%;
	display: block;
	float: left;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
}

.solve53-l a .pic1 {
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.solve53-l a .pic1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.solve53-l a:hover .pic1 {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}

.solve53-l a .pic2 {
	-webkit-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-transform: rotateY(-180deg);
	-moz-transform-style: preserve-3d;
	-moz-backface-visibility: hidden;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	/*z-index:10;
    position:absolute;*/
}

.solve53-l a:hover .pic2 {
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotate(0deg);
	z-index: 10;
	position: absolute;
}

.solve53-l {
	
}

.solve53-l .pic1 {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.solve53-l .pic2 {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #0072d4;
}

.pic2_wenzi1 {
	position: relative;
    margin: 130px auto 0px auto;
    line-height: 40px;
    font-size: 22px;
    padding: 0 10px;
    box-sizing: border-box;
    color: #FFF;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pic2_wenzi2 {
	position: relative;
    height: 70px;
    line-height: 35px;
    padding: 0 10px;
    margin-top: 10px;
    color: #FFF;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pic2_wenzi3 {
	width: 250px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    line-height: 45px;
    text-align: center;
    transition: all 0.6s ease 0s;
    margin: 100px auto 0 auto;
    position: relative;
}

.pic2_wenzi3::after {
	content: "";
	width: 0%;
	height: 45px;
	background-color: rgb(9, 126, 224);
	position: absolute;
	left: 0px;
	z-index: -1;
	transition: all 0.4s ease 0s;
	opacity: 0;
}

.pic2_wenzi3:hover::after {
	width: 100%;
	opacity: 1;
	background: #2991EA;
}

.solve53-list {
	width: 74%;
	position: relative;
	float: right;
	margin: 20px 0px 0px 0px;
}

.xn_c_index_141_topbox {
	width: 500px;
	line-height: 30px;
}

.xn_c_index_141_main {
	position: relative;
}

.xn_c_index_141_left {
	display: none;
	height: 75px;
	width: 30px;
	background: #000;
	cursor: pointer;
	position: absolute;
	margin-top: 100px;
	left: 0px;
	z-index: 999;
}

.xn_c_index_141_right {
	display: none;
	height: 75px;
	width: 30px;
	background: #000;
	cursor: pointer;
	position: absolute;
	margin-top: 100px;
	right: 0px;
	z-index: 999;
}

.xn_c_index_141_inner {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	height: 470px;
}

.xn_c_index_141_ul {
	position: relative;
	float: left;
	width: 100%;
}

.solve53-list li {
	float: left;
	margin-left: 1%;
	margin-bottom: 10px;
	width: 24.25%;
	position: relative;
	overflow: hidden;
}

.solve53-list li:first-child,
.solve53-list li:nth-child(5) {
	margin-left: 0;
}
.solve-list-img{
width: 100%;
height: 284px;
}
.solve-list-img a {
width: 100%;
height: 100%;
}

.solve-list-txt {
	background: #FFF;
		line-height: 55px;
	height: 55px;
	position: relative;
	padding: 0 15px;
	font-size: 20px;
	font-weight: normal;
}
.solve-list-txt a{
	color: #006AA6;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}
.solve-list-img img {
	width: 100%;
	height: 100%;
	transition: all ease-out .3s;
}

.solve53-list li:hover img {
	transform: scale(1.1, 1.1);
}

.xn_c_index_141_coent {
	width: 330px;
	line-height: 25px;
	height: 50px;
	position: relative;
	margin: 0 auto;
	color: #666666;
	font-size: 14px;
	overflow: hidden;
	display: none;
}

.xn_c_index_141_name a {
	display: block;
	width: 100%;
	color: #666;
	font-size: 14px;
	line-height: 25px;
}

.solve53-list li:hover a {
	color: #0072d4;
}

.xn_c_index_141_nrbox1 .solve-list-img {
}

.xn_c_index_141_more {
	width: 44px;
	height: 39px;
	opacity: 0;
	transition: all ease-out .2s;
	position: absolute;
	right: 35px;
	background: url(https://0.rc.xiniu.com/g2/M00/21/E9/CgAGfFx6CySATJ1_AAAFuNDkSQI323.jpg) no-repeat center;
}

.xn_c_index_141_nrbox1 .xn_c_index_141_more {
	top: 0px;
}

.xn_c_index_141_nrbox2 .xn_c_index_141_more {
	bottom: 0px;
}

.solve53-list li:hover .xn_c_index_141_more {
	opacity: 1;
}


/*解决方案结束*/


/*尾部开始*/

.footer53 {
	width: 100%;
	padding-bottom: 40px;
	background: url(../img/footer53.jpg) no-repeat top center;
	background-size: 100% 100%;
}

.link53 {
	margin: 0 auto;
	padding: 40px 0 10px 0;
	border-bottom: 1px rgba(255, 255, 255, 0.7) solid;
}

.link53 ul {
	width: 100%;
}
.link53 ul li:first-child{
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	letter-spacing: 2px;
}
.link53 ul li:first-child span{
	font-size: 18px;
	font-weight: normal;
}
.link53 li {
	display: inline-block;
	margin: 0 15px;
}

.link53 li a {
	color: rgba(255, 255, 255, 0.7);
	height: 35px;
	line-height: 35px;
}

.link53 li a:hover {
	color: #ffc107;
	transition-duration: .2s;
}

.footer53 .footer53-con {
	margin: 40px auto 0 auto;
	display: flex;
	justify-content: space-between;
}

.footer53-pro {
	width: 70%;
	height: 160px;
	display: flex;
	justify-content: flex-start;
}

.footer53-pro h2 {
	font-size: 25px;
	font-weight: normal;
	color: #ffc107;
	writing-mode: vertical-lr;
	line-height: 30px;
	text-align: center;
	margin: 0 20px 0 0;
	letter-spacing: 6px;
}

.footer53-pro h2 span {
	font-size: 18px;
	font-family: Arial;
	color: rgba(255, 255, 255, 0.7);
	float: left;
	height: 160px;
	letter-spacing: normal;
}

.footer53-pro ul {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}

.footer53-pro li {
	width: calc(20% - 5px);
	margin: 0 5px 0 0;
}

.footer53-pro li a {
	width: 100%;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	display: block;
	height: 35px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.footer53-pro li a span {
	width: 12px;
	height: 12px;
	background: #ffc107;
	display: block;
	float: left;
	margin: 4px 10px 0 0;
}

.footer53-pro li:hover a {
	color: #ffc107;
	transition-duration: .2s;
}

.footer53-cont {
	width: 20%;
	height: 160px;
	display: flex;
	justify-content: flex-start;
}

.footer53-cont h2 {
	font-size: 25px;
	font-weight: normal;
	color: #ffc107;
	writing-mode: vertical-lr;
	line-height: 30px;
	text-align: center;
	margin: 0 20px 0 0;
	letter-spacing: 6px;
}

.footer53-cont h2 span {
	font-size: 18px;
	font-family: Arial;
	color: rgba(255, 255, 255, 0.7);
	float: left;
	height: 160px;
	letter-spacing: normal;
}

.footer53-cont-list p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 30px;
}

.footer53-ma {
	width: 10%;
}

.footer53-ma img {
	margin-bottom: 15px;
	width: 100%;
}

.footer53-ma a img {
	display: block;
	margin: 0 auto;
}

.footer_p {
	width: 100%;
	height: 70px;
	background: #005aab;
	font-size: 16px;
	text-align: center;
	line-height: 70px;
	color: #d3d3d3;
}

.f_an {
	width: 1280px;
	margin: 0 auto;
	position: absolute;
	z-index: 99999;
	right: 0;
	left: 0;
}

.p_float {
	width: 53px;
	height: 53px;
	position: absolute;
	bottom: -25px;
	right: 0;
	z-index: 9999;
}

.copyright {
	width: 100%;
	background: #006AA6;
	text-align: center;
}

.copyright p {
	display: inline-block;
	color: #d0d0d0;
	height: 35px;
	line-height: 35px;
}

.copyright a {
	display: inline-block;
	color: #d0d0d0;
	height: 35px;
	line-height: 35px;
}

.copyright a:hover {
	color: #D93630;
}

.m-footer53 {display:none;}
/*尾部结束*/
/* ******************53**************** */

/*******************公共部分结束************************/

.headtop {
	background: url(../img/topbg.png) no-repeat center top;
	border-top: 2px solid #006AA6;
	box-sizing: border-box;
	height: 90px;
	border-bottom: 1px solid #be0709;
}

.hlogo {
	width: 336px;
	height: 80px;
}

.mologo {
	display: none;
}

.logotxt {
	padding: 15px 0 0 100px;
}

.logotxt h2 {
	color: #666;
}

.logotxt p {
	color: #999;
	padding-top: 5px;
}

.logo_tel {
	padding-top: 15px;
	background: url(../img/toptel.png) no-repeat left 15px;
	padding-left: 60px;
}

.logo_tel p {
	font-size: 26px;
	font-weight: 400;
}

.headnavb {
	background: #006AA6;
	height: 60px;
	line-height: 60px;
}

.head_nav ul li {
	float: left;
	position: relative;
	width: 11%;
	text-align: center;
}

.head_nav ul li:after {
	content: "";
	position: absolute;
	top: 15px;
	right: 0;
	width: 1px;
	height: 30px;
	background: #f3abab;
}

.head_nav>ul>li>a {
	font-size: 16px;
	color: #fff;
	display: block;
}

.head_nav>ul>li:last-child a {
	padding-right: 0;
}

.head_nav>ul>li .d_erli {
	position: absolute;
	background: #fff;
	width: 150%;
	text-align: center;
	border-radius: 6px;
	top: 100px;
	left: -30%;
	margin: 0;
	z-index: 199;
	opacity: 0;
	visibility: hidden;
	transition: all .36s ease;
	border: 1px solid #f1f1f1;
	padding: 10px 0;
}

.head_nav>ul>li .d_erli a {
	display: block;
	text-align: center;
	line-height: 39px;
	font-size: 14px;
	color: #444;
}

.head_nav>ul>li .d_erli a:hover {
	color: #fff;
	background: #006AA6;
}

.head_nav>ul>li .d_erli:before {
	position: absolute;
	top: -5px;
	left: 48%;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 5px solid #f1f1f1;
}

.head_nav>ul>li .d_erli:after {
	position: absolute;
	top: -4px;
	left: 48%;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 5px solid #fff;
}

.head_nav>ul>li:hover .d_erli {
	opacity: 1;
	visibility: visible;
	top: 60px;
}


/*banner1*/


/*banner*/

.bbanner {
	width: 100%;
	height: 550px;
	overflow: hidden;
	position: relative;
}

.bban_pic {
	height: 550px;
	position: absolute;
	left: 0;
	top: 0;
}

.bban_pic a {
	display: block;
	height: 550px;
	float: left;
}

.bban_dot {
	height: 50px;
	position: relative;
	margin: 510px auto 0;
	z-index: 1;
	text-align: center;
}

.bban_dot span {
	display: inline-block;
	cursor: pointer;
	width: 18px;
	height: 2px;
	border-radius: 15%;
	margin: 0 10px;
	_margin: 0 3px;
	background: #fff;
	border: 1px solid #006AA6;
}

.bban_dot .spcss {
	width: 35px;
	background: #006AA6;
	transition: .6s;
}

.bban_btnl {
	position: absolute;
	z-index: 1;
	display: block;
	width: 100px;
	height: 100%;
	left: 0px;
	background: none;
	top: 0px;
}

.bban_btnr {
	position: absolute;
	z-index: 1;
	display: block;
	width: 100px;
	height: 100%;
	right: 0px;
	background: none;
	top: 0px;
}

.bban_btnl em {
	display: block;
	width: 50px;
	height: 100px;
	background: url(../img/arrow.png) 0px 0px no-repeat;
	margin: 0 auto;
	margin-top: 250px;
}

.bban_btnr em {
	display: block;
	width: 50px;
	height: 100px;
	background: url(../img/arrow.png) -50px 0px no-repeat;
	margin: 0 auto;
	margin-top: 250px;
}

.bban_btnl .emcss {
	background-position: 0px -100px;
}

.bban_btnr .emcss {
	background-position: -50px -100px;
}

.bban_btn {
	display: none;
}

.bbanner:hover .bban_btn {
	display: block;
	transition: .3s;
}


/*优势*/

.hysbox {
	background: #f9f9f9;
	padding: 15px 0;
}

.hysbox li {
	width: 24.2%;
	width: 24%\9;
	float: left;
	height: 236px;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 3px 6px 15px 1px #eee;
	border: 1px solid #eee;
	margin-right: 1%;
	box-sizing: border-box;
	cursor: pointer;
	overflow: hidden;
}

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

.hysbox li .hysimg {
	width: 64px;
	margin: 0 auto;
	height: 64px;
	background-size: 70% 70%;
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px solid #006AA6;
	border-radius: 50%;
	padding: 10px;
	box-sizing: border-box;
}

.hysbox li .ys0 {
	background-image: url(../img/hys_1.png);
}

.hysbox li .ys1 {
	background-image: url(../img/hys_2.png);
}

.hysbox li .ys2 {
	background-image: url(../img/hys_3.png);
}

.hysbox li .ys3 {
	background-image: url(../img/hys_4.png);
}

.hysbox li:hover .ys0 {
	background-image: url(../img/hys_11.png);
}

.hysbox li:hover .ys1 {
	background-image: url(../img/hys_22.png);
}

.hysbox li:hover .ys2 {
	background-image: url(../img/hys_33.png);
}

.hysbox li:hover .ys3 {
	background-image: url(../img/hys_44.png);
}

.hysbox li h3 {
	margin-top: 10px;
}

.hysbox li em {
	font-style: normal;
	margin-top: 10px;
	display: block;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hysbox li p {
	padding: 10px 0;
	color: #888;
	line-height: 1.8;
}

.hysbox li:hover {
	background: #006AA6;
	transition: .3s;
}

.hysbox li:hover h3,
.hysbox li:hover em,
.hysbox li:hover p {
	color: #fff;
}


/*首页产品*/

.hprocbox {
	background: url(../img/hprobg.jpg) no-repeat left center;
	padding-bottom: 20px;
	overflow: hidden;
}

.htitle1 .htit_l {
	width: 35%;
}

.htitle1 .htit_l h1 {
	font-size: 36px;
	color: #777;
	border-left: 13px solid #006AA6;
	padding-left: 10px;
	border-radius: 40px 0 0 15px;
}

.htitle1 .htit_l p {
	color: #999;
	padding-top: 10px;
}

.htitle1 .htit_c {
	width: 45%;
	padding: 10px 20px 0 60px;
}

.htitle1 .htit_c p {
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	height: 10px;
}

.htitle1 .htit_c em {
	display: block;
	font-style: normal;
	width: 10px;
	line-height: 10px;
	height: 10px;
	background: #006AA6;
}

.htitle1 .htit_r {
	width: 9%;
	padding-top: 10px;
}

.htitle1 .htit_r a {
	display: block;
	color: #fff;
	width: 120px;
	height: 39px;
	line-height: 39px;
	background: #006AA6;
	text-align: center;
}

.htitle1 .htit_r a:hover {
	border-radius: 6px;
	transition: .3s;
}

.hprocate {
	width: 20%;
}

.hprocate li {
	height: 70px;
	line-height: 70px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	font-size: 16px;
	padding-left: 15px;
	border-left: 2px solid #006AA6;
}

.hprocate li a {
	display: block;
	width: 70%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	float: left;
}

.hprocate li i {
	font-style: normal;
	float: right;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	background: #006AA6;
	display: block;
	text-align: center;
	margin-top: 20px;
	margin-right: 10px;
	border-radius: 50%;
}

.hprocate p span {
	display: block;
	margin-bottom: 10px;
	border-left: 3px solid #fff;
	padding-left: 10px;
}

.hprocate p {
	color: #fff;
	background: #006AA6 url(../img/protel.png) no-repeat 90% center;
	padding: 20px;
	font-size: 18px;
	letter-spacing: 2px;
}

.hprocate li:hover {
	background: #006AA6;
	transition: .3s;
}

.hprocate li:hover a,
.hprocate li.on a {
	color: #fff;
}

.hprocate li:hover i {
	color: #006AA6;
	background: #fff;
	transition: .3s;
}

.hprocate li.on {
	background: #006AA6;
}

.hprocon {
	overflow: hidden;
	width:80%;
}

.hprocon li {
	width: 24%;
	margin-left: 1%;
	margin-bottom: 1%;
	float: left;
}

.hprocon li .hpimg {
	width: 100%;
	position: relative;
	height: 201px;
	overflow: hidden;
}

.hprocon li .hpimg img {
	width: 100%;
	height: 100%;
	display: block;
}

.hprocon .hppanel {
	display: none\9;
	opacity: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.6);
	transform: translateY(-30px);
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 30%;
	box-sizing: border-box;
}

.hprocon li p {
	text-align: center;
	height: 39px;
	line-height: 39px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: #f8f8f8;
	font-size: 16px;
}

.hprocon li:hover p {
	color: #fff;
	background: #006AA6;
	transition: .3s;
}

.hprocon .hppanel p {
	background: none;
	color: #fff;
}

.hprocon li:hover .hppanel p {
	background: none;
	transition: 0;
}

.hprocon li:hover .hppanel {
	display: block\9;
	opacity: 1;
	transform: translateY(0);
	transition: .3s;
}


/*首页广告*/

.advbox {
	height: 260px;
	background: #006AA6 url(../img/advbg.png) no-repeat center top;
}

.advbox .advcon {
	position: relative;
	padding: 20px;
	box-sizing: border-box;
}

.advbox .advcon .advimg {
	position: absolute;
	 width: 390px;
    bottom: -30px;
	right: 10px;
}

.advbox .advcon .advtxt {
	color: #fff;
	float: left;
	width: 480px;
	max-height: 256px;
	overflow: hidden;
	border-right: 1px solid #fff;
}

.advbox .advcon .advtxt h2 {
	margin-bottom: 20px;
}

.advbox .advcon .advtxt li {
	list-style: circle;
	margin-top: 11px;
	margin-left: 30px;
	font-size: 16px;
}

.advbox .advcon dl {
	float: left;
	color: #fff;
	font-size: 18px;
	margin-left: 60px;
}

.advbox .advcon dl dt {
	margin-bottom: 20px;
}

.advbox .advcon dl dt p {
	border-left: 6px solid #eee;
	padding-left: 10px;
}

.advbox .advcon dl dd {
	background: url(../img/advtel.png) no-repeat left center;
	padding-left: 75px;
}

.advbox .advcon dl dd p {
	letter-spacing: 2px;
	font-size: 26px;
	font-weight: bold;
}

.advbox .advcon dl a {
	display: block;
	text-align: center;
	width: 200px;
	height: 35px;
	line-height: 35px;
	border: 1px solid #fff;
	color: #fff;
	margin-top: 15px;
	font-size: 16px;
}

.advbox .advcon dl a:hover {
	color: #006AA6;
	background: #fff;
	border-radius: 20px;
	transition: .3s;
	width: 260px;
}


/*公司简介*/

.habbox {
	padding-bottom: 20px;
	background: url(../img/habbg.jpg) no-repeat center top;
	overflow: hidden;
}

.htitle2 {
	text-align: center;
}

.htitle2 h1 {
	font-size: 36px;
	color: #777;
}

.htit_line span {
	display: inline-block;
	width: 60%;
	height: 3px;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}

.htit_line em {
	display: inline-block;
	width: 30px;
	height: 5px;
	background: #006AA6;
	border-radius: 2px;
}

.htitle2 p {
	margin-top: 10px;
	color: #888;
}

.habimg {
	width: 45%;
	position: relative;
	height: 390px;
}

.habimg img {
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
	position: inherit;
}

.kuai,
.kuai2 {
	position: absolute;
	left: -8px;
	bottom: -6px;
	width: 100px;
	height: 100px;
	background: #006AA6;
}

.kuai2 {
	left: auto;
	bottom: auto;
	right: -6px;
	top: -6px;
}

.habinfo {
	width: 52%;
}

.habinfo h2 {
	color: #006AA6;
}

.habinfo p {
	line-height: 1.8;
	padding-top: 15px;
	height: 187px;
	overflow: hidden;
}

.abqr {
	width: 120px;
	margin-top: 10px;
}

.abqr img {
	width: 100%;
}

.abtel {
	margin-top: 10px;
	padding-left: 20px;
	margin-left: 20px;
	border-left: 1px solid #ccc;
	overflow: hidden;
}

.abtel h3 {
	font-size: 18px;
}

.abtel p {
	font-size: 16px;
	letter-spacing: 2px;
	height: auto;
	line-height: 1.2;
}

.abtel p strong {
	font-size: 18px;
}

.abtel a {
	width: 10px 0;
	color: #006AA6;
	border: 1px solid #006AA6;
	display: inline-block;
	text-align: center;
	width: 150px;
	margin-right: 10px;
	margin-top: 15px;
	height: 36px;
	line-height: 36px;
}

.abtel a:hover {
	color: #fff;
	background: #006AA6;
	transition: .3s;
}


/*滚动见证*/

.jzbox {
	background: url(../img/jzbg.jpg) no-repeat center top;
	padding-bottom: 20px;
	overflow: hidden;
}

.jzbox .htitle2 h1,
.jzbox .htitle2 p {
	color: #fefefe;
}

.hcate {
	text-align: center;
}

.hcate li {
	display: inline-block;
	width: 10%;
}

.hcate li a {
	display: block;
	color: #fff;
	background: #006AA6;
	border: 1px solid #006AA6;
	height: 36px;
	line-height: 36px;
}

.jzcon {
	overflow: hidden;
	position: relative;
}

.jzcon .hd {
	overflow: hidden;
	height: 30px;
	padding: 0 10px;
	text-align: center;
}

.jzcon .hd ul {
	overflow: hidden;
	zoom: 1;
	margin-top: 10px;
	zoom: 1;
}

.jzcon .hd ul li {
	display: inline-block;
	width: 30px;
	height: 8px;
	overflow: hidden;
	margin-right: 15px;
	text-indent: -999px;
	cursor: pointer;
	background: #ccc;
}

.jzcon .hd ul li.on {
	background: #006AA6;
}

.jzcon .bd {
	box-sizing: border-box;
	overflow: hidden;
	padding: 10px 0;
}

.jzcon .bd ul {
	overflow: hidden;
	zoom: 1;
}

.jzcon .bd ul li {
	width: 555px;
	margin: 0 8px;
	float: left;
	_display: inline;
	overflow: hidden;
	text-align: center;
	box-sizing: border-box;
	background: #eee;
}

.jzcon .bd ul li .jzpic {
	width: 100%;
	text-align: center;
	height: 378px;
	overflow: hidden;
}

.jzcon .bd ul li .jzpic img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit:cover;
}

.jzcon .bd ul li .jzpic a:hover img {
	border-color: #999;
}

.jzcon .bd ul li .jztit {
	line-height: 55px;
	height: 55px;
	font-size: 20px;
	background: #eee;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jzcon .bd ul li:hover img {
	transform: scale(1.2);
	transition: 1s;
}

.jzcon .bd ul li:hover {
	background: #006AA6;
}

.jzcon .bd ul li:hover .jztit {
	background: #006AA6;
	transition: .3s;
}

.jzcon .bd ul li:hover .jztit a {
	color: #fff;
}


/*案例展示*/

.hcasebox {
	background: #f6f6f6 url(../img/hcabg.jpg) no-repeat center top;
	padding-bottom: 20px;
	overflow: hidden;
}

.casecon li {
	width: 32.6%;
	margin: 0 1% 1% 0;
	float: left;
	position: relative;
	overflow: hidden;
}

.casecon li:nth-child(3n) {
	margin-right: 0;
}

.casecon li .hcaseimg {
	width: 100%;
	height: 342px;
	overflow: hidden;
}

.casecon li .hcaseimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.casecon li p {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	height: 55px;
	line-height: 55px;
	color: #fff;
	background: rgba(0, 106, 166, 0.64);
	font-size: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.casecon li .hca_panel {
	color: #fff;
	position: absolute;
	opacity: 0;
	display: none\9;
	bottom: -100%;
	width: 100%;
	height: 260px;
	background: #006AA6;
	padding: 20px;
	box-sizing: border-box;
}

.casecon li .hca_panel h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.casecon li .hca_panel span {
	margin-bottom: 15px;
    height: 70px;
    line-height: 35px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.casecon li .hca_panel i {
	display: block;
	font-style: normal;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	width: 80px;
}

.casecon li:hover p {
	display: none;
	transition: .6s;
}

.casecon li:hover .hca_panel {
	opacity: 1;
	display: block\9;
	bottom: 0;
	transition: .6s;
}

.casecon li .hca_panel i:hover {
	width: 150px;
	transition: .6s;
}


/*新闻资讯*/

.hnewbox {
	padding-bottom: 20px;
	background: url(../img/hnewbg.jpg);
}

.hnew_top dl {
	width: 31.9%;
	width: 32%\9;
	margin: 0 2% 1% 0;
	float: left;
}

.hnew_top dl:nth-child(3n) {
	margin-right: 0;
}

.hnew_top dl dt {
	width: 100%;
	overflow: hidden;
	height: 276px;
}

.hnew_top dl dt img {
	width: 100%;
	height:100%;
}

.hnew_top dl dd {
	border-left: 2px solid #ccc;
	padding: 0 15px 10px;
	margin-top: 15px;
	box-sizing: border-box;
	position: relative;
}

.hnew_top dl dd:before {
	position: absolute;
	content: "";
	top: 0px;
	left: -12px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 3px solid #006AA6;
	background: #fff;
}

.hnew_top dl dd h2 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
	color: #666;
}

.hnew_top dl dd span {
	display: block;
	margin: 6px 0;
	color: #888;
}

.hnew_top dl dd p {
	line-height: 1.6;
	color: #777;
	height: 70px;
	overflow: hidden;
}

.hnew_top .hntmore {
	display: block;
	width: 180px;
	margin: 0 auto;
	color: #fff;
	background: #006AA6;
	height: 42px;
	line-height: 42px;
	text-align: center;
	border: 1px solid #006AA6;
}

.hnew_top dl:hover dd {
	border-left: 2px solid #006AA6;
	transition: .3s;
}

.hnew_top dl:hover img {
	transform: scale(1.2);
	transition: 1s;
}

.hnew_top .hntmore:hover {
	color: #006AA6;
	background: #fff;
	transition: .6s;
	border-radius: 30px;
	width: 260px;
}

.hnw_title {
	border-bottom: 1px solid #ccc;
}

.hnw_title span {
	color: #fff;
	display: inline-block;
	background: #006AA6;
	padding: 6px 10px;
}

.hnw_title a {
	float: right;
	font-weight: normal;
	font-size: 16px;
	margin-top: 8px;
}

.hnew_fl {
	width: 59%;
}

.hnew_fl dl {
	padding-top: 15px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}

.hnew_fl dl dt {
	width: 35%;
	overflow: hidden;
	height: 178px;
	position: relative;
	float: left;
}

.hnew_fl dl dt img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hnew_fl dl dt span {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 3px 6px;
	color: #fff;
	background: #006AA6;
}

.hnew_fl dl dd {
	width: 63%;
	float: right;
}

.hnew_fl dl dd h3 {
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hnew_fl dl dd p {
	margin-top: 15px;
	color: #777;
	line-height: 1.6;
	height: 68px;
	overflow: hidden;
}

.hnew_fl dl dd .hnl_more {
	margin-top: 25px;
	display: block;
	color: #006AA6;
	border: 1px solid #006AA6;
	text-align: center;
	width: 120px;
	height: 35px;
	line-height: 35px;
}

.hnew_fl dl:hover dt img {
	transform: scale(1.2);
	transition: 1s;
}

.hnew_fl dl dd .hnl_more:hover {
	color: #fff;
	background: #006AA6;
}

.hnew_fl dl:hover h3 {
	color: #006AA6;
}

.hnl_ul {
	margin-top: 10px;
}

.hnl_ul li {
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid #ccc;
}

.hnl_ul li a {
	display: block;
	width: 72%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	float: left;
}

.hnl_ul li span {
	display: block;
	float: right;
}

.hnew_fr {
	width: 40%;
}

.hnew_fr .hnw_title {
	margin-bottom: 20px;
}

.hnrfq_li {
	border-bottom: 1px dotted #ccc;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.hnrfq_li h2 i,
.hnrfq_li p i {
	display: inline-block;
	font-style: normal;
	color: #fff;
	background: #006AA6;
	font-size: 20px;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	margin-right: 10px;
	font-weight: normal;
}

.hnrfq_li p i {
	background: #666666;
}

.hnrfq_li h2 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
}

.hnrfq_li p {
	margin-top: 10px;
	line-height: 1.6;
	height: 51px;
	overflow: hidden;
	color: #888888;
}


/*友情链接*/

.yqlink {
	background: #006AA6;
	padding: 20px 0;
}

.yqlink h3 {
	color: #fff;
	background: url(../img/yqlink.png) no-repeat left center;
	padding-left: 30px;
}

.yqlink ul {
	margin-top: 10px;
}

.yqlink ul li {
	display: inline-block;
}

.yqlink ul li a {
	color: #ffe7e7;
	padding: 6px 10px;
	display: block;
}


/*底部*/

.hfootbox {
	background: url(../img/footbg.jpg) no-repeat center;
	background-size: contain;
	height: 290px;
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding-top: 30px;
	background-size: 100% 100%;
	border-top: 2px solid #006AA6;
}

.hfootbox .hfootc_1 {
	width: 350px;
	float: left;
	line-height: 2;
}

.hfootbox .hfootc_1 img {
	max-width: 100%;
}

.hfootbox .hfootc_1 p {
	display: block;
	font-size: 16px;
	color: #a5a2a2;
}

.hfootbox .hfootc_2 {
	float: left;
	position: relative;
	padding-left: 60px;
}

.hfootbox .hfootc_2 i {
	position: absolute;
	left: 0;
	top: 50%;
	width: 0px;
	height: 160px;
	margin-top: -80px;
	border-left: 1px dashed rgba(255, 255, 255, 0.7);
}

.hfootbox .hfootc_2 ul li {
	float: left;
	text-align: center;
	margin-right: 50px;
	width:98px;
}

.hfootbox .hfootc_2 ul li h3 {
	font-size: 18px;
	color: #fff;
	margin-bottom: 12px;
    border-bottom: 1px solid #545454;
    padding-bottom: 12px;
	position:relative;
}
.hfootbox .hfootc_2 ul li h3:after{content:"";position:absolute;left:0;right:0; bottom:-1px;width:30px;height:2px;background:#eee;margin:auto;}
.hfootbox .hfootc_2 ul li a {
	display: block;
	font-size: 14px;
	color:#a5a2a2;
	margin-bottom: 15px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

.hfootbox .hfootc_3 {
	width: 95px;
	float: right;
}

.hfootbox .hfootc_3 h3 {
	font-size: 18px;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
}

.hfootbox .hfootc_3 img {
	width: 100%;
}

.f_copy {
	background: #333;
	padding: 10px 0;
}

.f_copy p {
	color: #c0c1c3;
}
/* **************************56************************* */

.head56:after,
.pro56-nav:after,
.news56:after,
.news56-l-con ul:after,
.about56:after,
.pro56-con:after,
.case56:after,
.case56-title:after {
	content: "";
	display: block;
	clear: both;
}


/*---------------------------------*/

.ftitle56 {
	text-align: center;
	padding-top: 40px;
}

.ftitle56 div {
	font-weight: bold;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
	line-height: 100%;
	font-size: 40px;
	padding-bottom: 15px;
	color: #383838;
}

.ftitle56 em {
	width: 5%;
	height: 4px;
	background: #23A59B;
	display: block;
	margin: 0 auto;
	position: relative;
}

.ftitle56 em:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	left: 48%;
	top: 4px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 6px solid #23A59B;
}

.ftitle56 div i {
	color: #23A59B;
	font-style: normal;
	text-transform: uppercase;
}

.ftitle56 span {
	display: block;
	width: 100%;
	text-align: center;
	line-height: 30px;
	margin: 15px 0px;
	/* font-size: 18px; */
	color: #666666;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}


/*头部开始*/

.head56 {
	background: linear-gradient(55deg, #23a59b, #4bb052);
}

.logo56 {
	width: 15%;
}

.logo56 .logo {
	width: 100%;
	margin-top: 10px;
	display: block;
}

.logo56 .logo img {
	width: 100%;
}

.logo56 .mmenu56 {
	display: none;
}

.nav56 {
	height: 90px;
	width: 72%;
	margin-left: 1%;
}

.nav56>li {
	width: 12.5%;
	height: 90px;
	float: left;
	position: relative;
	background: url(../img/head56-line.png) no-repeat right center;
	background-size: 1px 30px;
}

.nav56>li>a {
	width: 100%;
	height: 90px;
	display: block;
	padding-top: 15px;
	font-size: 22px;
	line-height: 35px;
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: 0.5s;
	box-sizing: border-box;
	z-index: 6;
}

.nav56>li>a:after {
	content: '';
	width: 0;
	transition: 0.5s;
	height: 0;
	-webkit-transform: rotate(360deg);
	border-style: solid;
	border-width: 0 0 0 0;
	border-color: transparent #FFBA36 transparent transparent;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

.nav56>li>a:before {
	transition: 0.5s;
	content: '';
	width: 0;
	height: 0;
	-webkit-transform: rotate(360deg);
	border-style: solid;
	border-width: 0 0 0 0;
	border-color: transparent transparent transparent #FFBA36;
	position: absolute;
	bottom: 0;
	z-index: -1;
	left: 0;
}

.nav56>li>a:hover {
	color: #fff;
}

.nav56>li>a:hover span {
	color: #fff;
}

.nav56>li>a:hover:before,
.nav56>li>a:hover:after {
	border-width: 80px 262.5px;
}

.nav56>li>a:active {
	background: #333333;
}

.nav56>li>a span {
	display: block;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 24px;
	letter-spacing: 0px;
	color: #fff;
	transition: 0.5s;
	text-align: center;
}

.nav56 .another a {
	background: #FFBA36;
	color: white;
}

.nav56 .another a span {
	color: white;
}

.nav56>li:hover>.down56 {
	opacity: 1;
}

.nav56>li:hover>.down56>i {
	height: 55px;
	border-bottom: 1px solid white;
}

.nav56>li:hover>.down56>i>a {
	height: 55px;
	line-height: 55px;
	font-size: 20px;
}

.nav56>li>.down56 {
	position: absolute;
	min-width: 100%;
	top: 90px;
	opacity: 0;
	z-index: 66666;
}

.nav56>li>.down56>i {
	height: 0px;
	display: block;
	background: #dcdcdc;
	position: relative;
	transition: 0.5s;
	width: 100%;
	font-style: normal;
}

.nav56>li>.down56>i>a {
	height: 0px;
	line-height: 0px;
	font-size: 0px;
	display: block;
	color: black;
	text-align: center;
	background: linear-gradient(to right, #23a59b, #4bb052) no-repeat;
	background-size: 0% 100%;
	/* transition: 0.5s; */
	padding: 0px;
	border-radius: 0%;
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}

.nav56>li>.down56>i>a:hover {
	background: linear-gradient(to right, #23a59b, #4bb052) no-repeat;
	background-size: 100% 100%;
	color: white;
}

.tel56 {
	width: 12%;
	background: url(../img/tel56-1.png) no-repeat 5px center;
	background-size: 40px;
	padding-left: 50px;
	box-sizing: border-box;
	margin-top: 15px;
	color: #fff;
}

.tel56 p {}

.tel56 span {
	font-size: 30px;
	font-weight: bold;
}


/*头部结束*/


/*banner开始*/

.banner56 {
	position: relative;
	z-index: 3
}

.banner56 .slide-ioc {
	position: absolute;
	left: 14.85%;
	bottom: 150px;
	z-index: 201
}

.banner56 .slide-ioc:before {
	display: inline-block;
	content: '';
	width: 27px;
	height: 36px;
	margin-right: 10px;
	background-image: url(../img/banner-ioc.png);
	vertical-align: middle;
	animation: dropdown 4s linear infinite;
}

@keyframes dropdown {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(0);
	}
	75% {
		transform: translateY(5px);
	}
	100% {
		transform: translateY(0);
	}
}

.banner56 .slide-ioc span {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	vertical-align: middle;
}

.banner56 img {
	width: 100%;
}

.banner56 .bx-wrapper {
	position: relative;
}

.banner56 .bx-wrapper .bx-has-pager {
	position: absolute;
	right: 14.85%;
	bottom: 150px;
	z-index: 201
}

.banner56 .bx-wrapper .bx-has-pager .bx-pager-item {
	display: inline-block;
	margin-right: 30px;
}

.banner56 .bx-wrapper .bx-has-pager .bx-pager-item:last-child {
	margin-right: 0;
}

.banner56 .bx-wrapper .bx-has-pager .bx-pager-item a {
	padding-bottom: 10px;
	font-size: 24px;
	color: #fff;
	border-bottom: 2px solid transparent;
}

.banner56 .bx-wrapper .bx-has-pager .bx-pager-item a.active {
	color: #f08200;
	border-bottom: 2px solid #f08200;
}


/*banner结束*/


/*产品开始*/

.pro56 {
	padding-bottom: 40px;
	background: url(../img/pro56-bj.png) no-repeat center top;
	background-size: 100% 100%;
}
.pro56-nav{
	margin-bottom: 20px;
}
.pro56-nav > li {
	float: left;
    width: 15.83%;
    height: 55px;
    margin-left: 1%;
    margin-bottom:10px;
    background-color: #ededed;
        border: 1px solid #d0d0d0;
    box-sizing: border-box;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #2e2e2e;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
}
.pro56-nav > li:first-child,.pro56-nav > li:nth-child(7){
	margin-left: 0;
}
.pro56-nav > li:hover {
	border-radius: 30px;
}
.pro56-nav > li:hover a{
	color: #fff;
}
.pro56-nav > li > a {
	display: block;
	width: 100%;
	height: 100%;
	color: #2e2e2e;
	padding: 0 5px;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro56-nav > li:hover::after {
	width: 100%;
	height: 100%;
}

.pro56-nav > li::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	z-index: -1;
	transition: all 0.7s ease-in-out;
	-webkit-transition: all 0.7s ease-in-out;
	background: linear-gradient(55deg, #23a59b, #4bb052);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.pro56-con {}

.pro56-con li {
	width: 24.25%;
	float: left;
	margin-left: 1%;
	background: #ededed;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 5px 5px 15px 2px #e2e1e1;
	margin-bottom: 20px;
}

.pro56-con li:first-child,
.pro56-con li:nth-child(5) {
	margin-left: 0;
}

.pro56-con li h3 {
	border-left: 4px solid #23A59B;
	margin-left: -20px;
	padding-left: 20px;
	color: #23A59B;
}

.pro56-con li h3 a {
	color: #23A59B;
	font-size: 20px;
	line-height: 35px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro56-con li i {
	color: #ccc;
	font-style: normal;
	text-transform: uppercase;
	font-size: 16px;
}

.pro56-con li p {
	color: #5d5d5d;
	line-height: 45px;
	height: 45px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro56-con .img {
	width: 100%;
	height: 357px;
	overflow: hidden;
}

.pro56-con .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.pro56-con .img img:hover {
	transform: scale(1.1);
}


/*产品结束*/


/*公司简介开始*/

.about56 {
	background: url(../img/banner.jpg) fixed;
	background-size: 100% 100%;
}

.about56-con {
	width: 55%;
	float: right;
	background: linear-gradient(55deg, #23a59b, #4bb052);
	padding: 40px 5% 40px 40px;
	box-sizing: border-box;
	color: #fff;
}

.about56-con i {
	font-style: normal;
	text-transform: uppercase;
}

.about56-con h2 {
	font-size: 30px;
	margin: 10px 0;
}

.about56-con em {
	width: 100px;
	height: 2px;
	background: #fff;
	display: block;
	margin: 20px 0;
}

.about56-con p {
	line-height: 35px;
	height: 140px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.about56-con .more {
	float: left;
	width: 250px;
	height: 55px;
	line-height: 55px;
	background: linear-gradient(to left top, #FFBA36 50%, #FFCB68 50%);
	margin: 40px 0;
	border-style: none;
	color: #fff;
	font-size: 20px;
	text-align: center;
	letter-spacing: 3px;
	font-weight: bold;
	outline: none;
	cursor: pointer;
	position: relative;
	padding: 0px;
	overflow: hidden;
	transition: all .5s;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
}

.about56-con .more span {
	position: absolute;
	display: block;
}

.about56-con .more span:nth-child(1) {
	height: 3px;
	width: 200px;
	top: 0px;
	left: -200px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0), #fff);
	border-top-right-radius: 1px;
	border-bottom-right-radius: 1px;
	animation: span1 2s linear infinite;
	animation-delay: 1s;
}

@keyframes span1 {
	0% {
		left: -200px
	}
	100% {
		left: 200px;
	}
}

.about56-con .more span:nth-child(2) {
	height: 70px;
	width: 3px;
	top: -70px;
	right: 0px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #fff);
	border-bottom-left-radius: 1px;
	border-bottom-right-radius: 1px;
	animation: span2 2s linear infinite;
	animation-delay: 2s;
}

@keyframes span2 {
	0% {
		top: -70px;
	}
	100% {
		top: 70px;
	}
}

.about56-con .more span:nth-child(3) {
	height: 3px;
	width: 200px;
	right: -200px;
	bottom: 0px;
	background: linear-gradient(to left, rgba(0, 0, 0, 0), #fff);
	border-top-left-radius: 1px;
	border-bottom-left-radius: 1px;
	animation: span3 2s linear infinite;
	animation-delay: 3s;
}

@keyframes span3 {
	0% {
		right: -200px;
	}
	100% {
		right: 200px;
	}
}

.about56-con .more span:nth-child(4) {
	height: 70px;
	width: 3px;
	bottom: -70px;
	left: 0px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0), #fff);
	border-top-right-radius: 1px;
	border-top-left-radius: 1px;
	animation: span4 2s linear infinite;
	animation-delay: 4s;
}

@keyframes span4 {
	0% {
		bottom: -70px;
	}
	100% {
		bottom: 70px;
	}
}

.about56-con .more:hover {
	transition: all .5s;
	transform: rotate(-3deg) scale(1.1);
	box-shadow: 0px 3px 5px rgba(0, 0, 0, .4);
}

.about56-con .more:hover span {
	animation-play-state: paused;
}

.about56 ul {
	width: 55%;
	float: right;
	background: #F0F4F7;
	padding: 40px 5% 40px 40px;
	box-sizing: border-box;
	color: #fff;
}

.about56 ul li {
	width: 25%;
	box-sizing: border-box;
	float: left;
	text-align: center;
	position: relative;
}

.about56 li span {
	font-size: 34px;
	font-weight: bold;
	color: #23A59B;
	line-height: 35px;
}

.about56 li span sup {
	font-size: 18px;
	font-weight: normal;
	color: #999999;
	margin-left: 5px;
}

.about56 li p {
	margin-top: 20px;
	color: #666;
	letter-spacing: 2px;
}

.about56 li hr {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -16px;
	width: 1px;
	height: 32px;
	background-color: #dddddd;
}


/*公司简介结束*/


/*案例开始*/

.case56 {
	padding: 40px 0;
	background: url(../img/case56-bj.jpg) no-repeat center top;
	background-size:100% 100%;
}

.case56-title {
	margin-bottom: 20px;
}

.case56-title-l {}

.case56-title-l span {
	    float: left;
    font-size: 48px;
    color: #333;
    /* font-family: "Impact"; */
    text-transform: uppercase;
    line-height: 48px;
    font-weight: bold;
    /* transform: scale(0.9,1.1); */
    /* letter-spacing: 0px; */
}

.case56-title-l .title-r {
	float: left;
}

.case56-title-l .title-r h3 {
	font-size: 24px;
	color: #333;
	margin-left: 20px;
	margin-top: 3px;
	font-weight: normal;
}

.case56-title-l .title-r p {
	color: #666655;
	margin: 25px 0 0 -117px;
	width: 800px;
    height: 35px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.case56-nav {}

.case56-nav li {
	float: left;
	width: 150px;
	height: 65px;
	margin-left: 50px;
	background: url(../img/case56-t-bj.png) no-repeat left 10px;
	padding-left: 40px;
}

.case56-nav a {
	width: 150px;
	height: 45px;
	background: linear-gradient(55deg, #23a59b, #4bb052);
	color: #fff;
	text-align: center;
	line-height: 45px;
	overflow: hidden;
	font-size: 20px;
	display: block;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.case56-nav li:hover a {
	background: linear-gradient(55deg, #FFBA36, #FFCB68);
}

.case56-con {}

.case56-con li {
	width: 24.25%;
	float: left;
	margin-left: 1%;
	margin-bottom: 20px;
	box-shadow: 5px 5px 15px 2px #e2e1e1;
	position: relative;
	overflow: hidden;
}

.case56-con li:first-child,
.case56-con li:nth-child(5) {
	margin-left: 0;
}

.case56-con .img {
	width: 100%;
	height: 384px;
	overflow: hidden;
}

.case56-con .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.case56-con li:hover .img img {
	transform: scale(1.1);
}

.case56-con .con {
	position: absolute;
	left: 50%;
	top: 110%;
	width: calc( 100% - 70px);
	padding: 10px;
	height: 90px;
	border-top: 4px solid #23A59B;
	background: rgba(0, 0, 0, .35);
	transform: translate(-50%, -20%);
	display: flex;
	transition: all .5s ease;
}

.case56-con li:hover .con {
	top: 50%;
}

.case56-con .con .txt {
	width: 90%;
	padding-top: 10px;
	color: #fff;
}

.case56-con .con .txt h3 {}

.case56-con .con .txt h3 a {
	font-size: 20px;
	color: #fff;
	line-height: 35px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.case56-con .con .txt p {
	color: #fff;
	line-height: 35px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.case56-con .con i {
	width: 30px;
	height: 30px;
	background: url(../img/case56-more.png) no-repeat center center;
	display: inline-block;
	float: right;
	margin-top: 20px;
}


/*案例结束*/


/*广告条开始*/

.adv56 {
	padding: 62px 0;
	background: url(../img/adv56-bj.jpg) center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	overflow: hidden;
	position: relative;
}

.adv56-tel {
	width: 300px;
	padding: 20px;
	color: #FFFFFF;
	text-align: center;
	position: absolute;
	top: 0;
	left: 5%;
	background: linear-gradient(55deg, #23a59b, #4bb052);
}

.adv56-tel p {
	font-size: 20px;
}

.adv56-tel span {
	font-size: 30px;
	font-weight: bold;
	margin: 10px 0;
	display: block;
}

.adv56-tel a {
	width: 200px;
	height: 45px;
	line-height: 45px;
	color: #fff;
	background: #FFCB68;
	margin: 0 auto;
}

.adv56 ul {
	float: right
}

.adv56 ul li {
	float: left;
	height: 95px;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: -45px;
	text-align: center
}

.adv56 ul .items {
	display: inline-block;
	padding-left: 52px;
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 20px;
	color: #fff;
	text-align: left
}

.adv56 ul .items p {
	line-height: 30px
}

.adv56 ul .a1 {
	background-image: url(../img/adv56-bj3.png);
	width: 360px;
	background-size: 100%;
}

.adv56 ul .a2 {
	width: 320px;
	background-image: url(../img/adv56-bj2.png)
}

.adv56 ul .a3 {
	width: 315px;
	background-image: url(../img/adv56-bj1.png)
}

.adv56 ul .a1 .items {
	background-image: url(../img/adv56-icon1.png);
	margin-left: -60px;
}

.adv56 ul .a3 .items {
	background-image: url(../img/adv56-icon2.png)
}

.adv56 ul .a2 .items {
	color: #fff;
	background-image: url(../img/adv56-icon3.png)
}


/*广告条结束*/


/*新闻开始*/

.news56 {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url(../img/news56-bj.png);
}

.news56-l {
	background: #f5f5f5;
	padding: 10px 30px;
	width: 67%;
	box-sizing: border-box;
}

.news56-l-title {
	background: url(../img/news56-l-x.jpg) no-repeat 148px 20px;
	overflow: hidden;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

.news56-l-title li {
	float: left;
	margin-right: 65px;
}

.news56-l-title li a {
	color: #4c4c4c;
	font-size: 30px;
	height: 55px;
	line-height: 55px;
}

.news56-l-title li.on a {
	font-weight: bold;
	color: #23A59B;
}

.news56-l-title span {
	display: inline-block;
	float: right;
}

.news56-l-title span img {
	margin-left: 11px;
	display: inline-block;
}

.news56-l-top {
	overflow: hidden;
}

.news56-l-top .img {
	float: left;
	width: 25%;
	height: 180px;
	overflow: hidden;
}

.news56-l-top .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.news56-l-top .img img:hover {
	transform: scale(1.2);
}

.news56-l-top .con {
	float: right;
	width: 73%;
}

.news56-l-top .con h3 {}

.news56-l-top .con h3 a {
	font-weight: bold;
	color: #23A59B;
	font-size: 20px;
	height: 35px;
	line-height: 35px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news56-l-top .con p {
	color: #999;
	line-height: 35px;
	height: 105px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.news56-l-top .con em {
	display: block;
	text-align: right;
	color: #000;
	font-style: normal;
	color: #999;
	margin-top: 10px;
}

.news56-l-top .con em:before {
	vertical-align: middle;
	width: 16px;
	height: 16px;
	display: inline-block;
	content: "";
	margin-right: 10px;
	background: url(../img/news56-time.png);
	background-size: 100% 100%;
}

.news56-l-con ul {
	margin-bottom: 20px;
}

.news56-l-con ul li {
	float: left;
	padding: 15px 20px;
	width: 49%;
	margin-top: 10px;
	background: #fff;
	box-sizing: border-box;
}

.news56-l-con ul li:nth-child(2n) {
	float: right;
}

.news56-l-con ul li span {
	display: block;
	color: #808080;
	font-size: 12px;
}

.news56-l-con ul li a {
	color: #4c4c4c;
	font-size: 20px;
	line-height: 35px;
	padding-right: 30px;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	background: url(../img/news56-l-more.png) no-repeat right 0;
	background-size: 30px;
}

.news56-l-con ul li:hover a {
	color: #23a59b;
	background: url(../img/news56-l-morel.png) no-repeat right 0;
	background-size: 30px;
	transition: all 0.6s;
}

.news56-r {
	width: 30%;
}

.news56-r ul {
	border-left: 1px solid #ddd;
}

.news56-r li {
	border-bottom: 1px dashed #e6e6e6;
	height: 47px;
	line-height: 47px;
	position: relative;
}

.news56-r li a {
	color: #444;
	padding-left: 20px;
	/* position: relative; */
	font-size: 20px;
	width: calc(80% - 30px);
	display: inline-block;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}

.news56-r li a i {
	text-align: center;
	line-height: 8px;
	border: 1px solid #cccccc;
	display: inline-block;
	height: 14px;
	width: 14px;
	border-radius: 14px;
	position: absolute;
	left: -9px;
	background: #fff;
	top: 15px;
}

.news56-r li a i em {
	height: 6px;
	width: 6px;
	background: #aaa;
	display: inline-block;
	border-radius: 6px;
	margin-bottom: 2px;
}

.news56-r li span {
	color: #999;
	display: block;
	width: 20%;
	float: right;
	text-align: right;
}

.news56-r li a:hover {
	color: #23A59B;
}

.news56-r li a:hover i {
	border: 1px solid #23A59B;
}

.news56-r li a:hover i em {
	background: #23A59B;
}

.news56-r-title {
	font-size: 28px;
	color: #23a59b;
	font-weight: bold;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

.news56-r .more {
	display: inline-block;
	background: url(../img/news56-r-more.png);
	height: 17px;
	width: 17px;
	margin-left: 10px;
	float: right;
}


/*新闻结束*/


/*解决方案开始*/

.solve56 {
	width: 100%;
	background: url(../img/solve56-bj.jpg) no-repeat top center;
	background-size: 100% 100%;
	padding-bottom: 40px;
}

.solve56-con {
	width: calc(100% - 90px);
	overflow: hidden;
	margin: 0 auto;
	height: 380px;
}

.solve56-con {}

.solve56-con ul {
	display: flex;
	justify-content: flex-start;
}

.solve56-con li {
	cursor: pointer;
	position: relative;
	border: 1px solid #fff;
	box-sizing: border-box;
}

.solve56-con li .solve56-img {
	overflow: hidden;
	height:380px;
}

.solve56-con li .solve56-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.4s ease;
	-moz-transition: 0.4s ease;
	-webkit-transition: 0.4s ease;
}

.solve56-con li:hover .solve56-img img {
	transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
}

.solve56-con li .solve56-txt {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 200;
	top: 0;
	left: 0;
	right: 0;
}

.solve56-con li .solve56-txt h6 {
	font-size: 50px;
	font-family: Impact;
	color: #fff;
	margin: 45px 0 0 30px;
	font-weight: normal;
}

.solve56-con li .solve56-txt h6 i {
	font-size: 16px;
	font-family: "Microsoft YaHei", '微软雅黑';
	font-style: normal;
	color: #fff;
	display: block;
	font-weight: normal;
	text-transform: uppercase;
}

.solve56-con li .solve56-txt h2 {
	font-size: 20px;
	height: 35px;
	line-height: 35px;
	overflow: hidden;
	font-weight: normal;
	color: #fff;
	display: flex;
	margin: 110px 0 15px 30px;
}

.solve56-con li .solve56-txt h2 span {
	width: 15px;
	height: 15px;
	background: linear-gradient(55deg, #23a59b, #4bb052);
	display: block;
	margin: 7px 0 7px 5px;
}

.solve56-con li .solve56-txt p {
	text-align: center;
	line-height: 40px;
	width: 200px;
	height: 40px;
	background: linear-gradient(55deg, #23a59b, #4bb052);
	border-radius: 30px;
	margin: 0 0 0 30px;
}

.solve56-con li .solve56-txt p a {
	color: #fff;
}

.solve56-con li h5 {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	z-index: 199;
	top: 0;
	left: 0;
	right: 0;
}

.solve56-con li:hover h5 {
	top: -390px;
	transition-duration: .3s;
}

.solve56-arrow {
	width: 90%;
	height: 380px;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


/*解决方案结束*/


/*尾部开始*/

.link56 {
	background: url(../img/link56_bg.gif) no-repeat left center;
	background-size: 45% 100%;
	height: 90px;
	line-height: 90px;
}

.link56-tit {
	width: 8%;
	font-size: 22px;
	color: #fff;
	font-weight: bold;
}

.link56-con {
	width: 92%;
}

.link56-con a {
	color: #333;
	display: inline-block;
	padding: 0 19px;
}

.link56-con a:hover {
	color: #23A59B;
}

.foot56 {
	background: url(../img/foot56-bj.jpg) no-repeat center top;
	background-size: cover;
}

.foot56-nav {
	line-height: 45px;
	text-align: center;
	padding: 10px 0;
    border-bottom: 1px solid #3c3c3c;
}

.foot56-nav a {
	display: inline-block;
	color: #fff;
	padding-left: 30px;
}

.foot56-nav a:after {
	content: "/";
	margin-left: 30px;
	color: #848484;
}

.foot56-adv {
	width: 20%;
	color: #acacad;
	padding-top: 40px;
	padding-bottom: 40px;
}

.foot56-adv h2 {
	font-size: 30px;
	letter-spacing: 2px;
}

.foot56-adv em {
	text-transform: uppercase;
	font-style: normal;
	letter-spacing: 2px;
}

.foot56-adv h3 {
	margin-top: 20px;
	font-size: 22px;
	letter-spacing: 2px;
	color: #FFC107;
}

.foot56-adv p {
	line-height: 30px;
}

.foot56-info {
	padding: 40px 0 0;
	width: 50%;
}

.foot56-info p {
	color: #acacad;
	line-height: 28px;
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding: 0 0 0 40px;
	margin-bottom: 20px;
}

.foot56-info a {
	color: #acacad;
}

.foot56-info i {
	display: block;
	color: #fff;
	font-style: normal;
}

.foot56-info .p1 {
	background: url(../img/foot56-icon1.png) no-repeat 0 4px;
}

.foot56-info .p2 {
	font-style: normal;
	background: url(../img/foot56-icon2.png) no-repeat 0 4px;
}

.foot56-info .p3 {
	background: url(../img/foot56-icon3.png) no-repeat 0 4px;
}

.foot56-info .p4 {
	background: url(../img/foot56-icon4.png) no-repeat 0 4px;
}

.foot56-ma {
	width: 30%;
	padding-left: 5%;
	margin-top: 20px;
	box-sizing: border-box;
	border-left: 1px dashed #696767;
}

.foot56-ma img {
	width: 100%;
	height: 100%;
}

.foot56-ma em {
	display: block;
	/* float: left; */
	color: #acacad;
	font-style: normal;
	text-align: center;
	line-height: 35px;
}

.foot56-ma span {
	display: block;
	float: left;
	width: 150px;
	height: 150px;
	padding: 11px;
}

.coptright56 {
	height: 65px;
	line-height: 65px;
	overflow: hidden;
	color: #acacad;
	text-align: center;
	border-top: 1px solid #716f6f;
}

.coptright56 span {
	padding: 0 20px;
}

.coptright56 a {
	display: inline-block;
	color: #acacad;
}

.mfoot-56{display:none;}
/*尾部结束*/
/* **************************56************************* */
/* **************************57************************* */

.ftitle57 {
	width: 100%;
	text-align: center;
	padding-top: 40px;
}

.ftitle57 h3 {
	font-size: 34px;
	letter-spacing: 2px;
	position: relative;
}

.ftitle57 h3:before,
.ftitle57 h3:after {
	content: '';
	position: absolute;
	top: 52%;
	width: 39%;
	height: 1px;
}

.ftitle57 h3:before {
	left: 0;
	background: linear-gradient(to left, #c3c3c3, #fff);
}

.ftitle57 h3:after {
	right: 0;
	background: linear-gradient(to left, #fff, #c3c3c3);
}

.ftitle57 span {
	color: #0068dd;
}

.ftitle57 p {
	line-height: 35px;
	color: #666;
}

.nav57 {
	width: 100%;
	position: fixed;
	top: 0;
	background: rgba(0, 0, 0, .2);
	border-bottom: 3px solid #0068dd;
	box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
	z-index: 4;
}
.nav57 .on{background:#0068dd;}

.nav57.nnav .navbox .on>a,.nav57.nav57_pos .navbox .on>a{color:#fff;}
.nav57.nnav{
	position:relative;
}
.nav57_pos,.nav57.nnav {
	background: rgba(255, 255, 255, 1);
}

.nav57 .logo {
	width: 15%;
}

.nav57 .logo .l-img {
	width: 100%;
	display: block;
}

.nav57 .logo .l-img.l-img1 {
	display: block;
}

.nav57.nav57_pos .logo .l-img.l-img1 {
	display: none;
}

.nav57 .logo .l-img.l-img2 {
	display: none;
}

.nav57.nav57_pos .logo .l-img.l-img2 {
	display: block;
}
.nav57.nnav .logo .l-img.l-img1 {
	display: none;
}
.nav57.nnav .logo .l-img.l-img2 {
	display: block;
}
.nav57 .logo .l-img img {
	width: 100%;
	display: block;
	margin: 10px 0;
}

.navbtn {
	display: none;
}

.nav57 .navbox {
	width: 68%;
	margin-left: 2%;
}

.nav57 .navbox li {
	float: left;
	position: relative;
	width: 12.5%;
}

.nav57 .navbox li:before {
	content: "";
	position: absolute;
	z-index: -1;
	background: #0068dd;
	left: 0%;
	right: 0;
	width: 0%;
	top: 0;
	height: 100%;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.nav57 .navbox li:hover:before {
	width: 100%;
}

.nav57 .navbox li>a {
	display:block;
	font-size: 22px;
	color: #fff;
	text-align: center;
	height: 90px;
	line-height: 90px;
	background: url(../img/nav57-line.png) no-repeat right center;
	background-size: 1px 30px;
}

.nav57.nav57_pos .navbox li>a,.nav57.nnav .navbox li>a,
.nav57_pos .nav57_tel {
	color: #333;
}

.nav57 .navbox li:hover>a {
	color: #fff;
}

.nav57 .down {
	width: 130%;
	background: #fff;
	position: absolute;
	top: 93px;
	left: 0;
	height: auto;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: -webkit-transform .3s .2s;
	transition: transform .3s .2s;
}

.nav57 .navbox li .active {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition: -webkit-transform .3s;
	transition: transform .3s;
}

.nav57 .down a {
	height: 55px;
	line-height: 55px;
	color: #333;
	text-align: center;
	font-size: 20px;
	display:block;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}

.nav57 .down a:hover {
	background: #0068dd;
	color: #fff;
}

.nav57_tel {
	width: 10%;
	padding-right: 72px;
	margin-top: 17px;
	background: url(../img/nav57-tel.png) right no-repeat;
	height: 52px;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	text-align: right;
	font-weight: lighter;
}
.nnav .nav57_tel{
	color:#000;
}
.nav57_tel em {
	display: block;
	font-size: 30px;
	line-height: 32px;
	color: #0068dd;
	font-style: normal;
	font-family: Impact;
}


/*banner开始*/

.banner57 {
	position: relative;
	z-index: 3
}

.banner57 .slide-ioc {
	position: absolute;
	left: 14.85%;
	bottom: 150px;
	z-index: 201
}

.banner57 .slide-ioc:before {
	display: inline-block;
	content: '';
	width: 27px;
	height: 36px;
	margin-right: 10px;
	background-image: url(../img/banner-ioc.png);
	vertical-align: middle;
	animation: dropdown 4s linear infinite;
}

@keyframes dropdown {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-5px);
	}
	50% {
		transform: translateY(0);
	}
	75% {
		transform: translateY(5px);
	}
	100% {
		transform: translateY(0);
	}
}

.banner57 .slide-ioc span {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	vertical-align: middle;
}

.banner57 img {
	width: 100%;
}

.banner57 .bx-wrapper {
	position: relative;
}

.banner57 .bx-wrapper .bx-has-pager {
	position: absolute;
	right: 14.85%;
	bottom: 150px;
	z-index: 201
}

.banner57 .bx-wrapper .bx-has-pager .bx-pager-item {
	display: inline-block;
	margin-right: 30px;
}

.banner57 .bx-wrapper .bx-has-pager .bx-pager-item:last-child {
	margin-right: 0;
}

.banner57 .bx-wrapper .bx-has-pager .bx-pager-item a {
	padding-bottom: 10px;
	font-size: 24px;
	color: #fff;
	border-bottom: 2px solid transparent;
}

.banner57 .bx-wrapper .bx-has-pager .bx-pager-item a.active {
	color: #0068dd;
	border-bottom: 2px solid #0068dd;
}


/*banner结束*/

.pro47 {
	position: relative;
	padding-bottom: 40px;
}

.pro47 * {
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.pro47-box {
	margin-top: 20px;
}

.pro47-box .bd {
	height: 450px;
	overflow: hidden;
}

.pro47-box .bd li {
	height: 450px;
	position: relative;
}

.pro47-box .bd .pic {
	float: left;
	width: 30%;
	height: 450px;
	position: relative;
}

.pro47-box .bd .pic:before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
	background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
	background: -webkit-linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
	background: -moz-linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
	/*FireFox*/
	background: -o-linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
	/* Opear */
	background: -ms-linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6));
	opacity: 1;
}

.pro47-box .bd .pic:hover:before,
.pro47-box .bd .pic.img:hover:before {
	-webkit-transition: all 1s cubic-bezier(0, 0, 0.18, 0.96);
	transition: all 1s cubic-bezier(0, 0, 0.18, 0.96);
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: top;
	transform-origin: top;
	opacity: 0;
}

.pro47-box .bd .pic .img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.pro47-box .bd .pic img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pro47-box .bd .cont {
	float: right;
	width: 69%;
	height: 330px;
	background-color: #f5f5f5;
	margin-top: 120px;
	padding: 84px 40px 0 50px;
	position: relative;
}

.pro47-box .bd .tit {
	position: absolute;
	left: 50px;
	top: -120px;
	width: 250px;
	height: 160px;
	background: linear-gradient(135deg, #0068dd, #00aeee);
	text-align: center;
	padding-top: 54px;
	color: #fff;
}

.pro47-box .bd .tit h4 {
	font-weight: bold;
	font-size: 26px;
	line-height: 1;
	padding: 10px;
    box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro47-box .bd .tit p {
	color: #ffffff;
	text-transform: uppercase;
	margin-top: 18px;
	line-height: 1;
	font-size: 16px;
}

.pro47-box .bd .num {
	border-bottom: 1px solid #dbdbdb;
	width: 300px;
	height: 26px;
	line-height: 1;
	/*font-size: 16px;*/
	color: #b3b3b3;
	position: absolute;
	z-index: 1;
	left: 210px;
	font-weight: bold;
	text-align: right;
	top: -84px;
}

.pro47-box .bd .num i {
	font-weight: bold;
	color: #333;
	font-style: normal;
}

.pro47-box .bd .text {
	line-height: 30px;
	color: #666666;
	height: 90px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pro47-box .bd .tel {
	margin-top: 42px;
	font-size: 15px;
	color: #666666;
	line-height: 38px;
}

@keyframes msClock {
	0%,
	70%,
	100% {
		transform: rotate(0) scale(1);
	}
	10%,
	30% {
		transform: rotate(-15deg) scale(1.1);
	}
	20%,
	40% {
		transform: rotate(15deg) scale(1.1);
	}
}

.pro47-box .bd .tel:before {
	content: "";
	display: inline-block;
	width: 21px;
	height: 22px;
	vertical-align: middle;
	margin-right: 10px;
	animation: msClock2 1.5s linear infinite;
	background: url(../img/ystel.png) 0 center no-repeat;
}

@keyframes msClock2 {
	0%,
	70%,
	100% {
		transform: rotate(0) scale(1);
	}
	10%,
	30% {
		transform: rotate(-15deg) scale(1);
	}
	20%,
	40% {
		transform: rotate(15deg) scale(1);
	}
}

.pro47-box .bd li .tel > i {
	font-weight: bold;
	font-size: 22px;
	color: #2382de;
	vertical-align: middle;
	font-style: normal;
}

.pro47-box .bd .more {
	display: inline-block;
	width: 120px;
	height: 40px;
	background: linear-gradient(135deg, #0068dd, #00aeee);
	margin-left: 40px;
	text-align: center;
	color: #fff;
	line-height: 40px;
	font-size: 15px;
	position: relative;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	vertical-align: middle;
}

.pro47 .pro47-box .bd .more:after {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	/* W3C */
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform, opacity;
	transition-property: transform, opacity;
}

.pro47-box .bd .more:hover,
.pro47-box .bd .more:focus,
.pro47-box .bd .more:active {
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
}

.pro47-box .bd .more:hover:after,
.pro47-box .bd .more:focus:after,
.pro47-box .bd .more:active:after {
	opacity: 1;
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
}

.pro47-box .bd .more:hover {
	background: #2382de;
}

.pro47-box .hd {
	margin-top: 40px;
}

.pro47-box .hd ul {
	height: 70px;
}

.pro47-box .hd ul:after {
	content: "";
	display: block;
	clear: both;
	font-size: 0;
	line-height: 0;
}

.pro47-box .hd ul li {
	width: 25%;
	height: 70px;
	border: solid 1px #009ae9;
	float: left;
	position: relative;
	padding-left: 9%;
	cursor: pointer;
	background-repeat: no-repeat;
	background-image: -webkit-linear-gradient(left,#0068dd, #00aeee);
	background-image: linear-gradient(135deg, #0068dd, #00aeee);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	background-size: 0% 100%;
	background-position: left center;
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pro47-box .hd li.on {
	background-size: 100% 100%;
	color: #fff;
}

.pro47-box .hd li i {
	display: inline-block;
	width: 34px;
	height: 100%;
	overflow: hidden;
	vertical-align: top;
	margin-right: 30px;
}

.pro47-box .hd li i:before,
.pro47-box .hd li i:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.pro47-box .hd li i.ico1:before {
	background: url(../img/ysico1.png) center center no-repeat;
}

.pro47-box .hd li i.ico1:after {
	background: url(../img/ysico1h.png) center center no-repeat;
}

.pro47-box .hd li i.ico2:before {
	background: url(../img/ysico2.png) center center no-repeat;
}

.pro47-box .hd li i.ico2:after {
	background: url(../img/ysico2h.png) center center no-repeat;
}

.pro47-box .hd li i.ico3:before {
	background: url(../img/ysico3.png) center center no-repeat;
}

.pro47-box .hd li i.ico3:after {
	background: url(../img/ysico3h.png) center center no-repeat;
}

.pro47-box .hd li i.ico4:before {
	background: url(../img/ysico4.png) center center no-repeat;
}

.pro47-box .hd li i.ico4:after {
	background: url(../img/ysico4h.png) center center no-repeat;
}

.pro47-box .hd li.on i {
	border-color: #2382de;
}

.pro47-box .hd li.on i:before,
.pro47-box .hd li.on i:after {
	top: -100%;
}

.pro47-box .hd li span {
	display: inline-block;
	font-size: 22px;
	position: relative;
	vertical-align: top;
	line-height: 54px;
}

.pro47-box .hd li span:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50px;
	width: 40px;
	height: 1px;
	background-color: #bfbfbf;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.pro47-box .hd li.on span:before {
	background-color: #fff;
}

.pro47-box .prev {
	display: block;
	position: absolute;
	left: 0;
	width: 34px;
	height: 80px;
	line-height: 80px;
	background-color: #ffffff;
	border-radius: 5px;
	top: 90px;
	text-align: center;
	color: #333;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	cursor: pointer;
}

.pro47-box .prev:before {
	content: "<";
	font-family: SimSun;
	font-size: 20px;
	font-weight: bold;
}

.pro47-box .prev:hover {
	background-color: #008ad3;
	color: #fff;
}

.pro47-box .next {
	display: block;
	position: absolute;
	right: 0;
	width: 34px;
	height: 80px;
	line-height: 80px;
	background-color: #008ad3;
	border-radius: 5px;
	top: 90px;
	text-align: center;
	color: #fff;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	cursor: pointer;
}

.pro47-box .next:before {
	content: ">";
	font-family: SimSun;
	font-size: 20px;
	font-weight: bold;
}

.pro47-box .next:hover {
	background-color: #ffffff;
	color: #333;
}


/*优势开始*/

.advantage {
	width: 100%;
	background: url(../img/adv57-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
	height: 512px;
	margin-top: 45px;
	padding-bottom: 40px;
}

.advantage .ftitle57 h3 {
	color: #fff;
}
.advantage .ftitle57 span {
    color: #00a8ec;
}
.advantage ul {
	margin: 0 -20px;
}

.advantage ul li {
	width: 25%;
	float: left;
}

.advantage ul li .adv57-con {
	margin: 0 20px;
	background: #fff;
	border-radius: 5px;
	position: relative;
	padding: 40px;
	position: relative;
	transition-duration: .8s;
	-moz-transition-duration: .8s;
	-webkit-transition-duration: .8s;
	-o-transition-duration: .8s;
}

.advantage ul li:hover .adv57-con {
	background: #0db6f4;
}

.advantage ul li:hover .adv57-con::after {
	border-top: 70px solid #0db6f4;
}

.advantage ul li .adv57-con::after {
	content: "";
	position: absolute;
	width: 100%;
	bottom: -68px;
	left: 0;
	border-radius: 5px;
	border-top: 70px solid #fff;
	border-left: 267px solid transparent;
	border-right: 267px solid transparent;
	transition-duration: .8s;
	-moz-transition-duration: .8s;
	-webkit-transition-duration: .8s;
	box-sizing: border-box;
	-o-transition-duration: .8s;
}

.advantage ul li:hover .adv57-pic {
	top: 230px;
}

.adv57-pic {
	position: absolute;
	left: 50%;
	margin-left: -50px;
	top: 40px;
	width: 100px;
	background: #fff;
	height: 100px;
	z-index: 3;
	border-radius: 50%;
	-moz-box-shadow: 0 2px 10px #a5a5a5;
	-webkit-box-shadow: 0 2px 10px #a5a5a5;
	box-shadow: 0 2px 10px #a5a5a5;
	transition-duration: .8s;
	-moz-transition-duration: .8s;
	-webkit-transition-duration: .8s;
	-o-transition-duration: .8s;
}

.advantage ul li:hover .adv57-txt {
	margin-top: 10px;
	padding-bottom: 100px;
}

.adv57-txt {
	margin-top: 110px;
	transition-duration: .8s;
	-moz-transition-duration: .8s;
	-webkit-transition-duration: .8s;
	-o-transition-duration: .8s;
}

.adv57-txt h2 {
	color: #0db6f4;
	font-size: 20px;
	position: relative;
	font-weight: 700;
	text-align: center;
	line-height: 45px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.advantage ul li:hover .adv57-txt h2 {
	color: #fff;
}

.advantage ul li:hover .adv57-txt h2::after {
	background: #fff;
}

.adv57-txt h2::after {
	content: "";
	position: absolute;
	width: 52px;
	height: 3px;
	background: #0db6f4;
	left: 50%;
	margin-left: -26px;
	bottom: 0;
	display: block;
}

.adv57-txt p {
	color: #595959;
	line-height: 30px;
	padding-top: 15px;
	height: 60px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.advantage ul li:hover .adv57-txt p {
	color: #fff;
}


/*优势结束*/


/*案例开始*/

.case57 {
	padding-bottom: 40px;
	background: url(../img/case47-bg.jpg) no-repeat no-repeat center top;
	background-size: 100% 100%;
}
.case57-nav{
	margin-top: 20px;
}
.case57-nav li {
	float: left;
    width: 19.2%;
    margin-left: 1%;
    margin-bottom: 10px;
}

.case57-nav li:first-child,
.case57-nav li:nth-child(6) {
	margin-left: 0;
}

.case57-nav li:nth-child(5),
.case57-nav li:nth-child(10) {
	margin-right: 0;
}

.case57-nav li a {}

.case57-nav .effect01 {
	width: 100%;
	border-radius: 0;
	display: inline-block;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease-in-out;
	border-radius: 0;
	/*font-weight: bold;*/
	height: 45px;
	line-height: 45px;
	color: #333;
	background-color: #fff;
	border: 1px solid #ccc;
	font-size: 20px;
	text-align: center;
}

.case57-nav .effect01:hover {
	border: 1px solid #009ce9;
	background: linear-gradient(135deg, #0068dd, #00aeee);
	color: #fff;
}

.case57-nav .effect01:after {
	background: #FFF;
	border: 0px solid #0068dd;
	content: "";
	height: 155px;
	left: -75px;
	opacity: .8;
	position: absolute;
	top: -50px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
	width: 50px;
	transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
	z-index: 1;
}

.case57-nav .effect01:hover:after {
	background: #FFF;
	border: 20px solid #0068dd;
	opacity: 0;
	left: 120%;
	-webkit-transform: rotate(40deg);
	transform: rotate(40deg);
}
.case57-con {
	margin-top: 10px;
}

.case57-con li {
	width: 24.25%;
	margin-left: 1%;
	height: 510px;
	float: left;
	position: relative;
	cursor: pointer;
}

.case57-con li:first-child,
.case57-con li:nth-child(5) {
	margin-left: 0;
}

.case57-con .img {
	width: 100%;
	height: 385px;
	overflow: hidden;
}

.case57-con .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.case57-con li:hover .img img {
	transform: scale(1.1);
}

.case57-con .info {
	position: absolute;
	width: 92%;
	left: 4%;
	top: 68%;
	background: #fff;
	box-shadow: 5px 5px 15px 2px #d0d0d0;
	border-radius: 5px;
	padding: 20px;
	box-sizing: border-box;
}

.case57-con .info p {
	line-height: 30px;
	color: #666;
	font-size: 20px;

}

.case57-con .info h3 {
	font-size: 20px;
	line-height: 35px;
	/*font-weight: normal;*/
	color: #0068dd;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.case57-con .info .more {
	height: 36px;
	line-height: 35px;
	text-align: right;
	color: #a5a1a1;
	margin-top: 10px;
}

.case57-con .info .more:hover {
	color: #0068dd;
}

.case57-con .info:before {
	position: absolute;
	content: "";
	bottom: 0;
	height: 4px;
	width: 0%;
	transition: .3s;
	background: #0068dd;
	right: 50%;
}

.case57-con .info:after {
	position: absolute;
	content: "";
	bottom: 0;
	height: 4px;
	width: 0%;
	transition: .3s;
	background: #0068dd;
	left: 50%;
}

.case57-con li:hover .info:before,
.case57-con li:hover .info:after {
	width: 50%;
}


/*案例结束*/


/*公司简介开始*/

.about54 {
	background: url(../img/about57-bj.jpg) no-repeat center top;
	background-size: 100% 100%;
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 140px;
}

.about54 .ftitle57 h3 {
	color: #fff;
}
.about54 .ftitle57 span {
    color: #00a8ec;
}
.about54 .ftitle57 p {
	color: #dcdcdc;
}

.about54-con {
	color: #fff;
	line-height: 35px;
	height: 70px;
	text-align: center;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin: 40px auto 20px auto;
}

.about54-more {
	width: 200px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border: 1px solid #fff;
	font-size: 20px;
	margin: 70px auto 110px auto;
	color: #fff;
}

.about54-more:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #0068DD;
	transition: all 0.6s;
}

.about54 ul {
	position: absolute;
	bottom: -100px;
	left: 5%;
	width: 90%;
	background: #fff;
	box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.about54 ul li {
	width: 25%;
	box-sizing: border-box;
	float: left;
	text-align: center;
	padding: 50px;
	position: relative;
}

.about54 li span {
	font-size: 34px;
	font-weight: bold;
	color: #0068dd;
	line-height: 35px;
}

.about54 li span sup {
	font-size: 18px;
	font-weight: normal;
	color: #999999;
	margin-left: 5px;
}

.about54 li p {
	margin-top: 20px;
	color: #666;
	letter-spacing: 2px;
}

.about54 li hr {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -16px;
	width: 1px;
	height: 32px;
	background-color: #dddddd;
}


/*公司简介结束*/


/*解决方案开始*/

.solve57 {
	padding-bottom: 40px;
	/*background: url(../img/solve57-bj.jpg) no-repeat center top;
	background-size: 100% 100%;*/
	background: url(../img/solve57-bj.jpg);
}

.solve57-list {
	margin-top: 20px;
}

.solve57-list li {
	position: relative;
	float: left;
	width: 24.25%;
	height: 385px;
	margin-left: 1%;
	margin-bottom: 10px;
}

.solve57-list li:first-child,
.solve57-list li:nth-child(5) {
	margin-left: 0;
}

.solve57-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.solve57-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s;
}

.solve57-list li:hover .solve57-img img {
	transform: scale(1.1);
}

.solve57-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
	transition: all 0.6s;
}

.solve57-list li:hover .solve57-mask {
	background: rgba(0, 0, 0, .6);
	transform: scale(0.9);
}

.solve57-mask .img {
	padding-top: 50px;
	width: 30%;
	margin: 0 auto;
}

.solve57-mask .img img {
	width: 100%;
}

.solve57-mask h3 {
	color: #fff;
	font-size: 26px;
	text-align: center;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.solve57-mask .mask_more {
	color: #fff;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	line-height: 55px;
	letter-spacing: 2px;
	display: block;
}


/*解决方案结束*/


/*新闻开始*/

.news57 {
	background: url(../img/news47-bj.png) repeat;
	padding-top: 40px;
	padding-bottom: 40px;
}

.news57-l {
	width: 20%;
	float: left;
	position: relative
}

.news57-l-list {
	position: relative;
}

.news57-l-list li {
	padding: 0;
	margin-bottom: 23px;
	position: relative
}

.news57-l-list li a {
	color: #333;
	display: block;
	width: 200px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #525252;
	background: #fff
}

.news57-l-list li.news57-l-cur a {
	border: 1px solid #0094e8;
	background: linear-gradient(135deg, #0068dd, #00aeee);
	color: #fff
}

.news57-l-list li:first-child {
	margin-bottom: 43px
}

.news57-l-list li:first-child:before {
	content: "";
	position: absolute;
	bottom: -36px;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: 30px;
	background: #000;
}

.news57_r {
	width: 80%;
	float: right
}

.news57-tit {
	float: left;
	text-align: center;
	padding-top: 30%
}

.news57-tit em {
	display: block;
	line-height: 0.8;
	margin-bottom: 12px;
	font-size: 48px;
	font-style: normal;
}

.news57-tit h2 {
	font-size: 36px;
	font-weight: normal
}

.news57-nav {
	float: right;
	margin-right: -3px;
	position: relative;
}

.news57-nav:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #e6e6e6;
}

.news57-line {
	position: relative;
	height: 66px;
	overflow: hidden;
}

.news57-line .line_h {
	display: block;
	position: absolute;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #434343;
}

.news57-line img {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -6px;
}

.news57-line.line1 {
	margin-bottom: 22px
}

.news57-line.line2 {
	height: 145px;
}

.news57-line.line2 img {
	bottom: auto;
	top: 0;
}

.news57-line.line2 .line_h {
	top: auto;
	bottom: 0;
}

.news57_more {
	display: block;
	text-align: center;
	width: 46px;
	height: 46px;
	overflow: hidden;
	line-height: 46px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #535353;
	position: absolute;
	bottom: 37px;
	left: 50%;
	margin-left: -23px;
}

.news57_more:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: #0068dd;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.news57_more em {
	position: relative;
	font-style: normal;
	font-size: 16px;
	color: #666;
}

.news57_more:hover {
	border-color: #0068dd;
}

.news57_more:hover em {
	color: #fff;
}

.news57_more:hover:before {
	top: -1%;
	left: -1%;
	width: 102%;
	height: 102%;
}

.news57 ul li .news57-con:nth-child(3),
.news57 ul li .news57-con:nth-child(4) {
	/*border-bottom: 0*/
}

.news57-con {
	width: 38%;
	padding: 26px 0 26px 0;
	float: left;
	margin-left: 12%;
	border-bottom: 1px dotted #ccc
}

.news57-con h4 {
	font-size: 20px;
	font-weight: normal
}

.news57-con h4 a {
	color: #333;
	font-weight:bold;
	line-height: 35px;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news57-con p {
	margin: 10px 0 25px;
	color: #666;
	line-height: 30px;
	height: 60px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news57-con .more {
	display: inline-block;
	line-height: 24px;
	padding-left: 22px;
	position: relative;
	color: #8c8c8c;
}

.news57-con .more:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 100%;
	background: url(../img/news47-time.png) 0 center no-repeat;
}

.news57-con:hover h4 a {
	color: #0068dd;
}

.news57_r li .news57-con:nth-child(2).animated {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}

.news57_r li .news57-con:nth-child(3).animated {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

.news57_r li .news57-con:nth-child(4).animated {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

.news57_r li .news57-con:nth-child(5).animated {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}

.news57_r li .news57-con:nth-child(6).animated {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}

.link {
	background: #f5f5f5;
	color: #d5d5d5;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 20px
}

.link h4 {
	font-size: 18px;
	font-weight: normal;
	color: #333;
	display: inline-block
}

.link a {
	color: #666;
	padding: 0 5px;
}

.link a:hover {
	color: #e60012
}


/*新闻结束*/


/*新闻开始*/

.adv57_box {
	width: 100%;
	background: url(../img/adv-bj.jpg) fixed;
	background-size: 100% 100%;
}

.adv57_con {
	width: 50%;
	height: 100%;
	padding: 30px;
	background: rgba(0, 0, 0, .5);
}

.adv57_con h3 {
	font-size: 30px;
    letter-spacing: 2px;
	color: #fff;
}

.adv57_con p {
	display: inline-block;
	color: #eee;
	line-height: 55px;
	font-size: 18px;
	position: relative;
}

.adv57_con>p:after {
	content: '';
	position: absolute;
	bottom: -10%;
	left: 0;
	background: #fff;
	width: 20%;
	height: 2px;
}

.adv57_con ul {
	margin-top: 10px;
}

.adv57_con ul li {
	float: left;
	width: 15%;
}

.adv57_con ul li img {
	display: inline-block;
	vertical-align: middle;
}

.adv57_con span {
	padding-left: 50px;
	font-size: 28px;
	display: block;
	margin-top: 20px;
	color: #fff;
	position: relative;
}

.adv57_con span:before {
	position: absolute;
	left: 0;
	top: 3px;
	width: 40px;
	height: 40px;
	display: inline-block;
	content: "";
	background: url(../img/adv57-icon6.png);
	background-size: 100% 100%;
}


/*新闻开始*/


/*底部开始*/

.Links57 {
	padding: 40px 0;
}

.Links57 .tit {
	width: 100%;
	height: 40px;
	font-size: 24px;
	color: #545454;
	line-height: 40px;
	background: url(../img/link57-line.png) right 28px no-repeat;
	background-size: 90% 5px;
	text-transform: Uppercase;
	position: relative;
}

.Links57 .tit i {
	font-size: 48px;
	line-height: 40px;
	font-style: normal;
}

.Links57 .tit span {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	line-height: 18px;
	position: absolute;
	left: 100px;
	bottom: 2px;
}

.Links57 .link57 {
	width: 100%;
	height: 30px;
	margin: 10px auto 0 auto;
}

.Links57 .link57 a {
	display: inline-block;
	width: 120px;
	text-align: center;
	float: left;
	font-size: 18px;
	height: 30px;
	line-height: 30px;
	margin-bottom: 5px;
	color: #858585;
	border-right: solid 2px #ababab;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Links57 .link57 a:last-child {
	border-right: none;
}

.Links57 .link57 a:hover {
	text-decoration: underline;
	color: #1672d1;
}

.foot57 {
	border-top: 4px solid #0068DD;
	background: #1D2C43;
}

.foot57-ma {
	background: linear-gradient(160deg, #0068dd, #00aeee);
	width: 15%;
	    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.foot57-ma .logo {
	margin: 40px 0 20px 0;
}

.foot57-ma .logo img {
	height: 60px;
	margin: 0 auto;
	    display: block;
}

.foot57-ma .ma {
	margin: 20px 0 0px 0;
}

.foot57-ma .ma img {
	width: 150px;
	margin: 0 auto;
	    display: block;
}

.foot57-ma .txt {
	text-align: center;
	color: #fff;
	line-height: 35px;
}

.foot57-nav {
	width: 68%;
	border-right: 1px dashed #504f4f;
	box-sizing: border-box;
	padding-top: 40px;
	padding-bottom: 20px;
}

.foot57-nav li {
	width: 20%;
	float: left;
	box-sizing: border-box;
	text-align: center;
	border-left: 1px dashed #504f4f;
}

.foot57-nav li:first-child {
	border: none;
}

.foot57-nav li p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 20px;
	margin-left: 12%;
	line-height: 45px;
	margin-bottom: 5px;
	position: relative;
	transition: all .6s;
	cursor: pointer;
}

.foot57-nav li p:after {

	vertical-align: middle;
	width: 16px;
	height: 8px;
	margin-left: 10px;
	display: inline-block;
	content: "";
	background: url(../img/foot57-jt1.png);
	background-size: 100% 100%;
}

.foot57-nav li p:hover:after {
	background: url(../img/foot57-jt2.png);
	background-size: 100% 100%;
}

.foot57-nav li a {
	    display: block;
	color: rgba(255, 255, 255, 0.4);
	line-height: 35px;
	transition: all .3s;
	position: relative;
}

.foot57-nav li a:after {
	content: '';
	position: absolute;
	left: 31%;
	bottom: 0;
	width: 40%;
	border-bottom: 1px solid #fff;
	transform: scaleX(0);
	transform-origin: left;
	transition: all .3s;
}

.foot57-nav li a:hover {
	color: #fff;
	transform: translateX(4px);
}

.foot57-nav li a:hover:after {
	transform: scaleX(1);
}

.foot57-info {
	width: 15%;
	color: rgba(255, 255, 255, 0.4);
	padding-top: 40px;
}

.foot57-info h3 {
	font-size: 22px;
	color: #e8e8e8;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.foot57-info p {
	height: 35px;
	line-height: 35px;
}

.foot57-info p:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	display: inline-block;
	content: "";
	margin-right: 10px;
}

.foot57-info p:nth-child(2):before {
	background: url(../img/foot57_icon3.png);
	background-size: 100% 100%;
}

.foot57-info p:nth-child(3):before {
	background: url(../img/foot57_icon1.png);
	background-size: 100% 100%;
}

.foot57-info p:nth-child(4):before {
	background: url(../img/foot57_icon4.png);
	background-size: 100% 100%;
}

.foot57-info p:nth-child(5):before {
	background: url(../img/foot57_icon2.png);
	background-size: 100% 100%;
}

.foot57-info marquee {
	width: 225px;
	line-height: 20px;
}

.copyright57 {
	width: 100%;
	background: #101010;
	text-align: center;
}

.copyright57 p {
	display: inline-block;
	color: #c3c0c0;
	line-height: 35px;
}

.copyright57 a {
	display: inline-block;
	color: #c3c0c0;
	line-height: 35px;
}
.mfoot57{
	display:none;
}

/*底部结束*/
/* **************************57************************* */

/*内页开始*/

.ibanner {
	height: 397px;
	overflow: hidden;
	background-position: center top;
	background-repeat: no-repeat;
}

.ban1 {
	background-image: url(../img/ban1.jpg);
	background-size: 100% 100%;
}

.ibancon {
	color: #fff;
	padding-top: 100px;
	text-align: center;
}
.ibannerpro .ibancon {
	padding-top: 50px;
}
.ibancon em {
	display: block;
	margin: 10px auto 20px;
	width: 50px;
	height: 5px;
	background: #ffc107;
}

.ibancon p {
	color: #fff;
	font-size: 18px;
}

.iabout {
	background: #f9f9f9;
}

.iernav {
	text-align: center;
	font-size: 0;
	padding-top: 20px;
}

.iernav li {
	display: inline-block;
	width: 15.9%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(0, 0, 0, 0.52);
	box-sizing: border-box;
	height: 55px;
	line-height: 55px;
	font-size: 20px;
	margin: 0 10px 10px 0;
}

.iernav li a {
	display: block;
	color: #fff;
}

.iernav li:hover {
	background: #006AA6;
	transition: .3s;
}

.iernav li:hover a {
	color: #fff;
}

.ibread {
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	padding-top: 15px;
	background: #fbfbfb;;
}

.ibread p {
	line-height: 40px;
	color: #666;
	background: url(../img/bread2.png) no-repeat left center;
	padding-left: 20px;
}

.inertit {
	color: #666;
	font-size: 30px;
	background: url(../img/bread1.png) no-repeat left 8px;
	    background-size: 28px 28px;
	padding-left: 36px;
}

.inertit i {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	text-transform: uppercase;
}

.contxt {
	font-size: 18px;
	line-height: 1.8;
	color: #777777;
	padding-bottom: 20px;
}

.contxt img {
	max-width: 100%;
	height: auto;
}


/*实力放大镜*/

.ihon_box li {
	width: 24.2%;
	width: 24%\9;
	margin: 0 1% 1% 0;
	float: left;
	border: 1px solid #eee;
	box-sizing: border-box;
}

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

.ihon_box li p {
	text-align: center;
	line-height: 55px;
	height: 55px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #535353;
}

.ihon_img {
	width: 100%;
	height: 382px;
	overflow: hidden;
}

.ihon_img .iho_img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	cursor: pointer;
	opacity: .8;
}

.iho_img:hover {
	opacity: 1;
}

.ihon_box li:hover .iho_img {
	transform: scale(1.2);
	transition: 1s;
}

.ihon_box li:hover p {
	color: #fff;
	background: #006AA6;
	transition: .3s;
}

.lightBox-view img {
	display: block;
	display: none;
	border: 0px;
	margin: 0px !important;
}

.lightBox-popupMask {
	position: fixed;
	background: black;
	filter: alpha(opacity=80);
	/* IE */
	opacity: 0.8;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	background-image: url(../img/overlay.png);
}

.lightBox-popup {}

.lightBox-popup {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0%;
	left: 50%;
	height: 50%;
	background-color: white;
	/* margin-left:-500px; */
	border-radius: 10px;
	border: 5px solid white;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(../img/loading.gif);
	background-size: 8%;
}

.lightBox-description .lightBox-btn {
	/*  position: absolute;
  top:0; */
	display: inline-block;
	height: 100%;
	width: 50%;
	text-align: center;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	filter: alpha(opacity=20);
	/* IE */
	opacity: .4;
	background-image: url(../img/opacity.png);
}

.lightBox-description .lightBox-btn:hover {
	filter: alpha(opacity=100);
	/* IE */
	opacity: 1;
}

.lightBox-description .lightBox-prev-btn.active {
	background-image: url(../img/prev.png);
}

.lightBox-description .lightBox-next-btn.active {
	background-image: url(../img/next.png);
}

.lightBox-description .lightBox-prev-btn.disable {
	background-image: url(../img/prev.png);
	opacity: 0.1;
	cursor: default;
}

.lightBox-description .lightBox-next-btn.disable {
	background-image: url(../img/next.png);
	opacity: 0.1;
	cursor: default;
}

.lightBox-view .lightBox-description {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 15px;
	display: none;
	color: white;
	background-color: black;
	filter: alpha(opacity=80);
	/* IE */
	background: rgba(0, 0, 0, .8);
}

.lightBox-view .lightBox-description .lightBox-current-index {
	margin-top: 5px;
	display: block;
	font-style: italic;
}

.lightBox-view .lightBox-description .lightBox-close {
	float: right;
	display: block;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-image: url(../img/closed.png);
	background-position: center center;
}

.lightBox-description .btn-position {
	float: right;
	position: relative;
	width: 100px;
	height: 40px;
}


/*页码*/

.page {
	width: 100%;
	text-align: center;
	min-height: 30px;
	padding-top: 30px;
	padding-bottom: 20px;
}

.page .pagebox {
	text-align: center;
}

.pagebox span {
	border: 1px solid #ccc;
	margin-right: 10px;
	margin-bottom: 10px;
	width: 40px;
	line-height: 30px;
	display: inline-block;
	color: #7c7c7c;
	background: #f9f9f9;
	border-radius: ;
}

.pagebox span a {
	color: #7c7c7c;
	width: 100%;
	display: block;
}

.pagebox .pagebox_num_nonce {
	color: #fff;
	background: #006AA6;
	border: 1px solid #006AA6;
}

.pagebox .pagebox_pre,
.pagebox .pagebox_next_nolink,
.pagebox .pagebox_pre_nolink,
.pagebox .pagebox_next {
	width: 90px !important;
}


/*留言*/

.formbz {
	float: left;
}

.forml_input {
	width: 90%;
	height: 42px;
	border: 1px solid #d2d4d6;
}

.forml_textra {
	width: 90%;
	height: 100px;
	border: 1px solid #dedede;
	padding-top:10px;
}

.sply_box {
	margin: 0 auto;
	text-align: center;
	padding-bottom: 20px;
	background: url(../img/liuyan.png) no-repeat right center;
}

#onlyform {
	width: 60%;
}

.G_botton {
	width: 55px;
	height: 30px;
	line-height: 30px;
	border: 0;
	cursor: pointer;
}

.formli {
	width: 100%;
	height: auto;
	padding-top: 10px;
	clear: both;
	position: relative;
}

.formli img {
	position: absolute;
	right: 35%;
	top: 25px;
}

.G_tips {
	width: 486px;
	margin: 10px auto 0 auto;
	border: 1px solid #dedede;
	padding: 7px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
}

#checkCode {
	width: 90%;
	height: 42px;
	border: 1px solid #dedede;
	text-transform: uppercase;
	vertical-align: middle;
}

.forml_sub,
.czhi {
	width: 250px;
	height: 50px;
	border: none;
	color: #000;
	font-family: 微软雅黑;
	border-radius: 25px;
	font-size: 18px;
	margin: 25px 25px 0 0;
}

.forml_sub:hover,
.czhi:hover {
	cursor: pointer;
	color: #fff;
	background: #ca0000;
}

.inmain .casecon {}

.inmain .casecon li {
	width: 24.2%;
	width: 24%\9;
}

.inmain .casecon li .hcaseimg {
	height:376px;
}

.inmain .casecon li:nth-child(3n) {
	margin-right: 1%;
}

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


/*内页产品*/

.iprocon {}

.iprocon li {
	width: 24.2%;
	width: 24%\9;
	margin: 0 1% 1% 0;
	float: left;
}

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

.iprocon li .ipropic {
	width: 100%;
	height: 383px;
	overflow: hidden;
	position: relative;
}

.iprocon li .ipropic img {
	width: 100%;
	display: block;
	height:100%;
	object-fit:cover;
}

.iprocon li .ipropic .ipropan {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6) url(../img/eye.png) no-repeat center center;
}

.iprocon li .ipro_info {
	padding: 10px;
	box-sizing: border-box;
	color: #565656;
	background: #f9f9f9;
}

.iprocon li .ipro_info h3,
.iprocon li .ipro_info p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.iprocon li .ipro_info p {
	margin: 5px 0;
	color: #777;
}

.iprocon li .ipro_info span {
	color: #888;
}

.iprocon li:hover .ipro_info {
	color: #fff;
	background: #006AA6;
	transition: .3s;
}

.iprocon li:hover .ipro_info p,
.iprocon li:hover .ipro_info span {
	color: #fff;
}

.iprocon li:hover .ipropan {
	left: 0;
	transition: .6s;
}


/*图片新闻*/

.ipicnew_c {
	overflow: hidden;
}

.ipicnew_c-list {
	width: 100%;
	overflow: hidden;
}

.ipicnew_c-list li {
	width: 23%;
	float: left;
	overflow: hidden;
	margin-bottom: 25px;
	margin-right: 2.6%;
}

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

.ipicnew_c-list li:hover .products-pic .products-dw {
	height: 100%;
}

.ipicnew_c-list li:hover .products-kuai {
	background-color: #1b4595;
}

.ipicnew_c-list li:hover .products-kuai .kuai-bt h3 {
	color: #fff;
}

.ipicnew_c-list li:hover .products-kuai .kuai-p {
	color: #fff;
}

.ipicnew_c-list li:hover .products-kuai .kuai-more {
	color: #fff;
}

.ipicnew_c-pic {
	width: 100%;
	overflow: hidden;
	margin-bottom: 40px;
}

.ipicnew_c-pic img {
	width: 100%;
}

.ipicnew_ul {
	width: 100%;
	overflow: hidden;
}

.ipicnew_ul li {
	width: 24.25%;
	float: left;
	overflow: hidden;
	margin-bottom: 15px;
	background-color: #f7f7f7;
	margin-right: 1%;
}

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

.ipicnew_info {
	width: 100%;
	overflow: hidden;
	padding: 30px 20px 20px 20px;
	box-sizing: border-box;
}

.ipicnew_txtic {
	width: 100%;
	overflow: hidden;
	height:350px;
}

.ipicnew_txtic img {
	width: 100%;
	height:100%;
}

.ipicnew_time {
	width: 100%;
	overflow: hidden;
	text-align: center;
	font-size: 26px;
	color: #6c6c6c;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.ipicnew_time:after {
	content: '';
	width: 66px;
	height: 1px;
	background-color: #6c6c6c;
	position: absolute;
	left: 50%;
	margin-left: -33px;
	bottom: 0px;
}

.ipicnew_tit {
	width: 100%;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 22px;
	color: #6c6c6c;
	margin-bottom: 15px;
}

.ipicnew_txt {
	width: 100%;
	overflow: hidden;
	color: #888;
	line-height: 35px;
	height: 70px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ipw_moreb {
	width: 100%;
	overflow: hidden;
	padding: 20px;
	box-sizing: border-box;
}

.ipw_more {
	width: 100%;
	overflow: hidden;
	text-align: center;
	line-height: 40px;
	color: #666666;
	border: 1px solid #cdcdcd;
}

.ipicnew_ul li:hover {
	background-color: #006AA6;
	transition: .3s;
}

.ipicnew_ul li:hover .ipicnew_time {
	color: #fff;
}

.ipicnew_ul li:hover .ipicnew_time:after {
	background-color: #fff;
}

.ipicnew_ul li:hover .ipicnew_tit {
	color: #fff;
}

.ipicnew_ul li:hover .ipicnew_txt {
	color: #fff;
}

.ipicnew_ul li:hover .ipw_more {
	color: #fff;
}

.ipicnew_ul li:hover img {
	transform: scale(1.2);
	transition: 1s;
}


/*新闻列表*/

.inewli_con{margin-bottom: 20px;}
.inewlic_l{width: 68%;padding: 10px;box-sizing: border-box;background: #fefefe;}
.inewlic_l .inewli_ul li,.irelnew li{height: 50px;line-height: 50px;border-bottom: 1px dashed #ddd;background: url(../img/inew.png) no-repeat left center;padding-left: 25px;}
.inewlic_l .inewli_ul li a,.irelnew li a{display: block;width: 75%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;float: left;}
.inewlic_l .inewli_ul li span,.irelnew li span{display: block;width: 20%;text-align: right;float: right;color: #999;}

.inewlic_r{width: 30%;padding: 10px;box-sizing: border-box;background: #f9f9f9;}
.ireltit{border-bottom: 1px solid #ddd;padding-bottom: 10px;color: #666;background: url(../img/rel.png) no-repeat left top;padding-left: 40px;}
.ireltit a{color: #666;float: right;font-weight: normal;font-size: 18px;display: block;}

.irelpro{padding-bottom: 20px;}
.irelnew{width: 100%;}
.irelnew li{background: url(../img/relnew.png) no-repeat left center;padding-left: 20px;}
.irelnew li a{width: 68%;}
.irelnew li span{width: 30%;}

.irelcase{width: 100%;padding: 10px;box-sizing: border-box;background: #fefefe;}
.irelcase dl dt{height: 99px;}
.irelcase dl dd h3{font-size: 20px;}
.irelcase dl dd p{margin-top: 5px;height: 28px;}
.irelcase dl dd .hnl_more{margin-top: 8px;height: 30px;  line-height: 30px;}
.irelcase dl{margin-top: 10px;}

/*新闻详情*/
.inewde_tit h1{font-weight: 300;font-size: 28px;color: #006AA6;}
.inewde_tit p{margin-top: 10px;color: #777;border-bottom: 1px solid #ccc;padding-bottom: 10px;}
.inewde_tit p span{padding: 0 35px 0 0;}
.updow{}
.updow p{width: 49%;height: 42px;line-height: 42px;border-radius: 5px;padding: 0 10px;box-sizing: border-box;background: #f5f5f5 url(../img/relnew.png) no-repeat left center;padding-left: 20px;}
.updow p span{float: left;}
.updow p a{color:#888;display: block;float: left;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;width: 85%;}

.inewde_l .updow p{float: none;margin-bottom:5px;width:100%;}
.inewde_l .updow p a{width: 92%;}
.updow p:hover a{color: #006AA6;/* padding-left: 10px;transition: .3s; */}
.bqsm{font-size: 14px;color: #999;border-top: 1px dotted #ddd;margin-top: 10px;padding-top: 5px;}
.zhaiyao{margin-top: 20px;padding: 10px;box-sizing: border-box;background: #f6f6f6;}
.zhaiyao span{display: block;margin-bottom: 6px;font-weight: bold;}
.zhaiyao p{line-height: 1.6;color: #888;height: 72px;overflow: hidden;}

.ideta_con{padding-bottom: 20px;}
.ideta_con .inewde_tit{text-align: center;}

/*产品详情*/
.iprod_con{padding-bottom: 20px;}
.iprod_con .ireltit,.irel_ly .ireltit{position: relative;background-color: #f7f7f7;padding-top: 10px;background-position: left center;border-radius: 5px 5px 0 0;}
.ireltit i{display: block;width: 150px;height: 2px;position: absolute;left: 0;bottom: -1px;background: #006AA6;}

/*图片放大镜*/

div.zoomDiv {
	width: 200px;
	height: 200px;
	z-index: 999;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	border: 1px solid #ccc;
	display: none;
	text-align: center;
	overflow: hidden;
}

div.zoomDiv img {
	width: auto;
	max-width: none;
}

div.zoomMask {
	cursor: crosshair;
	background: #000;
	border: 1px solid #fff;
	filter: alpha(opacity=15);
	-webkit-opacity: .15;
	-moz-opacity: .15;
	-ms-opacity: .15;
	-o-opacity: .15;
	opacity: .15;
	position: absolute;
	z-index: 1;
}


/*图片放大镜样式*/

.iproimgc{
	width:30%;
}

#preview img {
	max-width: none;
	height: auto !important;
	display: block;
	width: 100%;
}

.jqzoom {
	float: left;
	border: none;
	position: relative;
	padding: 0px;
	cursor: pointer;
	margin: 0px;
	display: block;
	width: 100%;
}

.zoomdiv {
	z-index: 100;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 350px;
	height: 350px;
	background: #ffffff;
	border: 1px solid #CCCCCC;
	display: none;
	text-align: center;
	overflow: hidden;
}

.jqZoomPup {
	z-index: 10;
	visibility: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 200px;
	border: 1px solid #aaa;
	background: #ffffff/*url(zoom.png) 50% center no-repeat*/
	;
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	filter: alpha(Opacity=50);
}
.iproimg{margin-bottom: 20px;}
.iprod_r{width: 69%;color: #888;}
.iprod_r .iprod_title{font-size: 22px;padding-bottom: 10px;border-bottom: 1px solid #ccc;color: #666;}
.iprod_r .inlip{width: 100%;   overflow: hidden;white-space: nowrap;text-overflow: ellipsis; box-sizing: border-box;display: inline-block;height: 42px;background: #f6f6f6;margin-top: 10px;padding-left: 10px;line-height: 42px; margin-right: 10px;}
.iprod_r .iprod_info{line-height: 1.6;padding: 10px;box-sizing: border-box;margin: 20px 0 30px;height: 112px;overflow:hidden;background: #f6f6f6;}
.iprod_r .inlip strong{color: #777;}

.iprod_r .abtel{ margin-top: 15px;}
.iprod_r .abtel h3{margin-bottom: 10px;}
.irel_ly{padding-bottom: 30px;}
.irel_ly #onlyform{width: 100%; padding-top: 30px;}
.irel_ly .forml_input,.irel_ly .forml_textra,.irel_ly #checkCode{width: 94%;border: 0;background: #f6f6f6;padding-left: 3%;box-sizing: border-box;}
.irel_ly .forml_sub{color: #fff;background: #006AA6;}
.irel_ly .formli:nth-child(7){text-align: center;}
.irel_ly .formlitit{font-weight: bold;display: inline-block;color: #ffffff;  background: #006AA6;line-height: 42px;width: 5%; text-align: center;border-left: 2px solid #ccc;float: left;box-sizing: border-box;}

@media screen and (max-width: 1920px) {
	
	html,body {font-size: 16px;}
	/* --------------------------51------------------------ */
	
	.head51-tel span{font-size:28px;}
	
	.head51-nav li>a,.pro51-nav li,.pro51-con li span a,.pro51-con li:hover span a,.advant51 li h3,.case51-tab li a,.case51-con .case51-list-txt,.news51-l-top li span ,.news51-title a,.news51-l-bottom li h3,.footer51-nav li p{font-size:18px;}
	
	.head51-nav .dropdown51 a,.about51-title h3 p,.parter51-mes .forml_sub, .parter51-mes .czhi,.news51-title h2 p{font-size:16px;}
	
	.head51-nav .dropdown51 a,.pro51-nav li,.pro51-con li span a,.about51-btn li,.news51-l-bottom li{height: 45px;line-height: 45px;}
	
	.ftitle51 {padding-top: 30px;}
	
	.ftitle51 h2 {font-size: 34px;}
	
	.ftitle51 p {margin-top: 10px;}
	/* ------------------------------------------------------------------------- */
	.top51-cant {width: 31%;}
	
	.head51-logo .logo img {padding-top: 8px;height: auto;width: 100%;}
	
	.head51-tel {background: url(../img/head51-tel.png) no-repeat left 5px;}
	
	#banner{height:800px;}
	
	.pro51 {padding-bottom: 30px;}
	
	.pro51-nav {margin-top: 20px;}
	
	.pro51-con li>a{height:289px;}
	
	.advant51{padding-bottom:30px;}
	
	.about51 {padding: 30px 0;}
	
	.about51-title h3 b {font-size: 30px;}
	
	.about51-title span i,.about51-title span{width: 72px;height: 72px;}
	
	.about51-title span i img{padding-top:15px;}
	
	.about51-l {height: 455px;}
	
	.case51 {padding-bottom: 30px;}
	
	.case51-tab {margin-top: 20px;}
	
	.case51-tab li{height:45px;}
	
	.case51-tab li a{line-height:45px;}
	
	.case51-con{width:640px;}
	
	.case51-con ul .case51-list{width:640px;height:566px;}
	
	.case51-con .case51-list-pic{width:640px;height:444px;}
	
	.case51-con .case51-list-con {margin-top: 444px;height: 60px;}
	
	.case51-con .case51-list-txt{line-height:60px;}
	
	.case51-con .case51-list.cur .case51-list-con{height:100px;}
	
	.case51-btn {margin-top: 30px;}
	
	.parter51{padding-bottom:30px;}
	
	.partner51-list li{height:134px;}
	
	.parter51-mes{padding-top:0;}
	
	.parter51-mes .forml_textra{height:150px;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi{height:45px;}
	
	.news51{padding:30px 0;}
	
	.news51-title h2 span {font-size: 30px;}
	
	.news51-l-top li h3{font-size: 20px;}
	
	.news51-r-img{height:215px;}
	
	.links51 h3 {font-size: 32px;}
	
	.footer51{padding:30px 0;}
	
	.footer51-logo {width: 70px;}
	
	.footer51-l h2 {width: calc(100% - 70px);}
	
	.footer51-l h2 span {font-size: 22px;}
	
	.footer51-l h2 p {font-size: 14px;}
	
	.footer51-ma {width: 110px;height: 110px;}
	
	.footer51-l ul {width: calc(100% - 110px);}
	
	.footer51-l ul li {line-height: 30px;}

	/* --------------------------51------------------------ */
	/* --------------------------53------------------------ */
	.header53 .head53-top .logo div p,.header53 .nav li>a,.pro53 .hd ul li,.pro53-con h3,.about53-l span,.case53-con ul li h2,.news_list dl a,.faq .faq_con dl dt,.solve-list-txt{font-size:18px;}
	
	.header53 .nav li div a,.about53-btn,.about53-r li p span,.faq .faq_con dl dd,.link53 ul li:first-child span,.footer53-pro li a,.footer53-cont-list p{font-size:16px;}
	
	.header53 .tel53 span{font-size:26px;}
	
	.header53 .nav li>a,.header53 .nav li div a,.pro53 .hd ul li,.pro53-con h3,.about53-btn,.case53-con ul li h2,.news53 #news53-l .news53_tit ul li,.faq .news53_tit h3 .txt,.solve-list-txt{height:45px;line-height:45px;}
	/* ----------------------------------------- */
	.header53 .head53-top .logo img{height:65px;}
	
	.header53 .head53-top-r{padding-top:28px;}
	
	.header53 .nav li div{top:45px;}
	
	.pro53 .hd ul li{background: #ddd url(../img/pro51-icon.png) 226px center no-repeat;}
	
	.pro53 .hd ul li.on{background: #006AA6 url(../img/pro51-icon.png) 226px center no-repeat;}
	
	.pro53 .bd{margin-top:20px;}
	
	.pro53-list .pro53-img{height:290px;}
	
	.pro53-con h3{background-position: right 10px top 11px;}
	
	.pro53-mask h3 {margin-top: 17%;}
	
	.about53-l{padding:70px 0;}
	
	.about53-r{padding:70px;height: 552px;}
	
	.about53-l h2{margin-top:30px;font-size: 26px;margin-bottom: 30px;}
	
	.about53-l em{margin:30px 0;}
	
	.about53-r li p {font-size: 30px;}
	
	.about53-r li b{font-size:15px;}
	
	.about53-r li{margin-bottom:35px;}
	
	.case53-pic{height:325px;}
	
	.case53-mask-con h4{font-size: 26px;}
	
	.case53-mask-con p{line-height: 30px;height: 90px;-webkit-line-clamp: 3;}
	
	.news53 #news53-l .news53_tit ul li,.faq .news53_tit h3 .txt{font-size: 24px;}
	
	.news53_tit .hon_tit{height:45px;}
	
	.news_list dl dt{height:130px;}
	
	.news_list dl p {line-height: 30px;height: 60px;}
	
	.news_list dl dt p{height:70px;}
	
	.news_list dl dt strong {font-size: 24px;}
	
	.news_list dl {height: 130px;}
	
	.faq .faq_con dl dd{line-height: 30px;height: 60px;}
	
	.solve53-l {height:527px;}
	
	.solve-list-img{height: 214px;}
	
	.link53 ul li:first-child {font-size: 26px;}
	
	.footer53-pro {width: 60%;}
	
	.footer53-cont{width:25%;}
	
	.footer53-ma{width: 15%;}
	/* --------------------------53------------------------ */
	/* --------------------------56------------------------ */
	.nav56>li>a,.pro56-nav > li,.pro56-con li h3 a,.case56-nav a,.case56-con .con .txt h3 a,.adv56-tel p,.news56-l-top .con h3 a,.news56-l-con ul li a,.news56-r li a,.solve56-con li .solve56-txt h2{font-size:18px;}
	
	.nav56>li:hover>.down56>i>a,.about56 li span sup{font-size:16px;}
	
	.pro56-con li i{font-size:15px;}
	
	.nav56>li:hover>.down56>i{height:45px;}
	
	.nav56>li:hover>.down56>i>a,.pro56-nav > li,.about56-con .more,.news56-l-title li a{height:45px;line-height:45px;}
	
	.pro56-con li p,.case56-nav a,.adv56-tel a{height:40px;line-height:40px;}
	
	/* ------------------ */
	
	.nav56,.nav56>li,.nav56>li>a{height:80px;}
	
	.nav56>li>a{padding-top:20px;line-height:25px;}
	
	.nav56>li>.down56{top:80px;}
	
	.logo56 {width: 20%;}
	
	.nav56{width:64%;}
	
	.tel56{width:14%;}
	
	.logo56 .logo{margin-top:6px;}
	
	.tel56{margin-top:12px;}
	
	.tel56 span{font-size:26px;}
	
	.pro56-con .img{height:262px;}
	
	.about56-con h2{font-size:26px;}
	
	.about56 li span {font-size: 32px;}
	
	.about56 li p {margin-top: 10px;}
	
	.case56-title-l span{font-size: 42px;line-height: 42px;}
	
	.case56-title-l .title-r p{margin: 17px 0 0 -70px;width: 740px;}
	
	.case56-con .img{height:290px;}
	
	.adv56-tel span{font-size:26px;}
	
	.news56-l-title{background: url(../img/news56-l-x.jpg) no-repeat 140px 16px;}
	
	.news56-l-title li a,.news56-r-title{font-size:26px;}
	
	.news56-l-top .con p{line-height:30px;height:90px;}
	
	.solve56-con li .solve56-txt h6{font-size:46px;}
	
	.solve56-con li .solve56-txt h2{margin:40px 0 10px 30px;}
	
	.solve56-con li .solve56-txt h2 span{margin:10px 0 7px 5px;}
	
	.solve56-con li .solve56-txt p{line-height:35px;height:35px;width:180px;}
	
	.solve56-arrow,.solve56-con,.solve56-con li .solve56-img{height:285px;}
	
	.link56{line-height:80px;height:80px;}
	
	.link56-tit{font-size:20px;}
	
	.foot56-adv h2{font-size:26px;}
	
	.foot56-ma span{width:116px;height:116px;}
	
	.coptright56{line-height:55px;height:55px;}
	/* --------------------------56------------------------ */
	/* --------------------------57------------------------ */
	.nav57 .navbox li>a,.case57-nav .effect01,.case57-con .info p,.case57-con .info h3,.adv57-txt h2,.news57-con h4,.foot57-nav li p{font-size:18px;}
	
	.nav57 .down a,.adv57_con p,.solve57-mask .mask_more,.Links57 .link57 a{font-size:16px;}
	
	.nav57 .down a{line-height:45px;height:45px;}
	
	.ftitle57 h3:before, .ftitle57 h3:after{width:37%;}
	
	/* --------------------------- */

	.nav57 .logo {width: 20%;}
	
	.nav57 .logo .l-img { width: auto;height: 65px;margin: 5px 0;}
	
	.nav57 .logo .l-img img {width:auto;height: 100%;margin: 0;}
	
	.nav57 .navbox {width: 61%;margin-left: 1%;}
	
	.nav57 .navbox li>a{height:80px;line-height:80px;}
	
	.nav57 .down{top:83px;}
	
	.nav57_tel{width:12%;}
	
	.banner57 .slide-ioc,.banner57 .bx-wrapper .bx-has-pager{bottom:50px;}
	
	.pro47-box .bd .pic,.pro47-box .bd{height:400px;}
	
	.pro47-box .bd .tit h4{font-size:22px;}
	
	.pro47-box .bd .tit p{font-size:15px;}
	
	.pro47-box .bd .text{height:60px;-webkit-line-clamp:2;}
	
	.pro47-box .bd .cont{height:280px;}
	
	.pro47-box .hd li span{font-size:20px;line-height: 50px;}
	
	.pro47-box .hd ul li{height:60px;}
	
	.pro47-box .hd li span:before{top:45px;}
	
	.case57-con li{height:380px;}
	
	.case57-con .img{height:291px;}
	
	.case57-con .info{top:63%;}
	
	.case57-con .info .more{margin-top:0;}
	
	.advantage ul li .adv57-con::after{border-left: 195px solid transparent;border-right: 195px solid transparent;}
	
	.news57-tit em{font-size:42px;}
	
	.news57-l-list li a{width:160px;}
	
	.news57-con p { margin: 5px 0 15px;}
	
	.news57-con{padding:15px 0 15px 0;}
	
	.news57-line{height:53px;}
	
	.news57-line.line2 {height: 110px;}
	
	.news57_more{width: 40px;height: 40px;line-height: 40px}
	
	.adv57_con h3 {font-size: 28px;}
	
	.adv57_con span{font-size: 24px;}
	
	.adv57_con span:before{width: 32px;height: 32px;}
	
	.adv57_con span {padding-left: 40px;}
	
	.solve57-list li{height:281px;}
	
	.solve57-mask h3{font-size:22px;}
	
	.solve57-mask .img{width:25%;}
	
	.Links57{padding:30px 0;}
	
	.foot57-ma{width:18%;}
	
	.foot57-nav {width: 65%;}
	
	.foot57-ma .logo img {height: 50px;}
	
	.foot57-ma .ma img {width: 140px;}
	
	.foot57-nav li p{line-height:40px;}
	
	.foot57-nav li a{line-height:30px;}
	
	.foot57-info h3 {font-size: 20px;margin-bottom: 10px;}
	
	.foot57-info marquee {width: 165px;line-height: 16px;}
	/* --------------------------57------------------------ */
	
	/*内页开始*/
	.ipicnew_time{font-size:24px;}
	
	.iprocon li .ipro_info h3,.hysbox li h3,.jzcon .bd ul li .jztit,.casecon li p,.ipicnew_tit,.casecon li .hca_panel h3,.irelcase dl dd h3{font-size:18px;}
	
	.ibancon p,.iernav li,.contxt,.ireltit a,.forml_sub, .czhi{font-size:16px;}
	
	.iernav li,.ihon_box li p,.jzcon .bd ul li .jztit,.casecon li p,.inewlic_l .inewli_ul li, .irelnew li{height: 45px;line-height: 45px;}
	
	.ibanner{height:297px;}
	
	.ibancon{padding-top:55px;}
	
	.ibannerpro .ibancon {padding-top: 10px;}
	
	.ibannerpro .ibancon em{margin:10px auto 5px;}
	
	.iernav{padding-top:10px;}
	
	.iernav li{margin:0 10px 5px 0;}
	
	.ihon_img{height:286px;}
	
	.iprocon li .ipropic{height:280px;}
	
	.iproimgc {width: 40%;}

    .iprod_r {width: 59%;}
	
	.jzcon .bd ul li{width:412px;}
	
	.jzcon .bd ul li .jzpic{height:278px;}
	
	.inmain .casecon li .hcaseimg {height: 287px;}
	
	.casecon li .hca_panel {height: 220px;}
	
	.hnew_fl dl {padding-top: 10px;}
	
	.irelcase dl {margin-top: 0px;}
	
	.ipicnew_tit{margin-bottom:10px;}
	
	.ipicnew_txtic{height:267px;}
	
	.forml_sub, .czhi{height:45px;}
	
	.inertit {background: url(../img/bread1.png) no-repeat left 10px;background-size: 28px 28px;}
	/*内页结束*/
}
@media screen and (max-width: 1600px) {
	
	html,body {font-size: 15px;}
	/* --------------------------53------------------------ */
	.header53 .head53-top .logo div p,.header53 .nav li>a,.pro53 .hd ul li,.pro53-con h3,.about53-l span,.case53-con ul li h2,.news_list dl a,.faq .faq_con dl dt,.solve-list-txt{font-size:16px;}
	
	.header53 .nav li div a,.about53-btn,.about53-r li p span,.faq .faq_con dl dd,.link53 ul li:first-child span,.footer53-pro li a,.footer53-cont-list p{font-size:15px;}
	
	.header53 .tel53 span{font-size:22px;}
	
	.header53 .nav li>a,.header53 .nav li div a,.pro53 .hd ul li,.pro53-con h3,.about53-btn,.case53-con ul li h2,.news53 #news53-l .news53_tit ul li,.faq .news53_tit h3 .txt,.solve-list-txt{height:40px;line-height:40px;}
	
	.ftitle53 {padding: 30px 0 20px 0;}
	
	.ftitle53 span{font-size:34px;}
	
	.ftitle53::before,.ftitle53::after{top:42%;width:39%;}
	
	.pro53 {padding-bottom: 30px;}
	
	/* ----------------------------------------- */
	.header53 .head53-top .logo img{height:55px;}
	 
	.header53 .head53-top .logo div {margin-top: 13px;}
	 
	.header53 .nav li div{top:40px;}
	 
	.pro53 .hd ul li{background: #ddd url(../img/pro51-icon.png) 180px center no-repeat;}
	
	.pro53 .hd ul li.on{background: #006AA6 url(../img/pro51-icon.png) 180px center no-repeat;} 
	 
	.pro53-list .pro53-img{height:242px;} 
	 
	.pro53-con h3{background-size: 22px;}
	
	.pro53-mask h3 {margin-top: 15%;}
	
	.about53-l h2{margin-top:20px;font-size: 24px;margin-bottom: 20px;}
	
	.about53-l em{margin:20px 0;}
	
	.about53-l p {height: 120px;line-height: 30px;-webkit-line-clamp: 4;}
	
	.about53-btn{margin-top:50px;}
	
	.about53-l{padding:50px 0;}
	
	.about53-r{padding:50px;height: 474px;}
	
	.about53-r li{margin-bottom:25px;}
	
	.about53-r li p {font-size: 30px;}
	
	.case53-pic{height:270px;}
	
	.case53-mask-con h4{font-size: 22px;height: 60px;line-height: 60px;}
	
	.case53-mask-con p {line-height: 30px;height: 60px;-webkit-line-clamp: 3;margin-top: 20px;}
	
	.adv53-btn {width: 75%;}
	
	.news53_tit .hon_tit{height:40px;}
	
	.news53 #news53-l .news53_tit ul li,.faq .news53_tit h3 .txt{font-size: 24px;}
	
	.news_list dl dt{height:110px;}
	
	.news_list dl {height: 110px;}
	
	.faq .faq_con dl{padding:7px 0;}
	
	.solve-list-img{height: 179px;}
	
	.solve53-l {height:447px;}
	
	.link53 ul li:first-child {font-size: 24px;}
	
	.link53{padding:30px 0 10px 0;}
	
	.footer53{padding-bottom:30px;}
	
	/* --------------------------53------------------------ */
	/* --------------------------51------------------------ */
	
	.head51-tel span{font-size:22px;}
	
	.head51-nav li>a,.pro51-nav li,.pro51-con li span a,.pro51-con li:hover span a,.advant51 li h3,.case51-tab li a,.case51-con .case51-list-txt,.news51-title a,.news51-l-top li span ,.news51-l-bottom li h3,.footer51-nav li p{font-size:16px;}
	
	.head51-nav .dropdown51 a,.about51-title h3 p,.parter51-mes .forml_sub, .parter51-mes .czhi,.news51-title h2 p{font-size:15px;}
	
	.head51-nav .dropdown51 a,.pro51-nav li,.pro51-con li span a,.about51-btn li,.news51-l-bottom li{height: 40px;line-height: 40px;}
	
	/* ------------------------------------------------------------------------- */
	
	.top51-ma{width:130px;}
	
	.head51-icon li:hover .top51-ma {height: 130px;}
	
	.top51-cant {width: 36%;}
	
	.head51-nav {width: 65%;}
	 
	.head51-nav li>a{height:75px;line-height:75px;}
	
	.head51-tel {width: 13%;}
	
	.head51-tel {background: url(../img/head51-tel.png) no-repeat left 0px;}
	
	.head51-nav .dropdown51{top:75px;}
	
	#banner{height:667px;}
	
	.pro51-con li>a{height:242px;}
	
	.about51-title {margin-bottom: 25px;}
	
	.about51-title h3 b {font-size: 28px;}
	
	.about51-title span i,.about51-title span{width: 68px;height: 68px;}
	
	.about51-con>p{margin-bottom:10px;}
	
	.about51-l {height: 410px;}
	
	.case51-tab li{height:40px;}
	
	.case51-tab li a{line-height:40px;}

	.case51-con{width:533px;}
	
	.case51-con ul .case51-list{width:533px;height:460px;}
	
	.case51-con .case51-list-pic{width:533px;height:370px;}
	
	.case51-con .case51-list-con {margin-top: 370px;height: 50px;}
	
	.case51-con .case51-list-txt{line-height:50px;}
	
	.case51-con .case51-list.cur .case51-list-con{height:90px;}
	
	.case51-jt i{top:150px;}
	
	.partner51-list li{height:112px;}
	
	.parter51-mes h3 {font-size: 20px;}
	
	.parter51-mes .forml_textra{height:105px;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi{height:40px; width: 230px;}
	
	.advant51 li h3{margin-bottom:10px;}
	
	.advant51 li p {height: 50px;line-height: 25px;}
	
	.advant51 li span {width: 50px;height: 50px;}
	
	.news51-title h2 span {font-size: 28px;}
	
	.news51-l-top li h3{font-size: 18px;}
	
	.news51-l-top li p{height: 50px;line-height: 25px;}
	
	.news51-l-img {width: 100%;height: 183px;}
	
	.news51-r-img{height:217px;}
	
	.news51-l-bottom li span{width:11%;}
	
	.news51-l-bottom li h3{margin-left:1%;}
	
	.news51-r p{height: 50px;line-height: 25px; margin-top: 10px;}
	
	.links51 h3 {font-size: 28px;}
	
	.footer51-l {width: 30%;}
	
	.footer51-l h2{margin-top:7px;}
	
	.footer51-ma,.footer51-l ul{margin-top:15px;}
	
	.footer51-nav {width: 69%;}
	
	.footer51-l ul li {line-height: 25px;} 
	
	.footer51-nav li a{line-height:30px;}
	
	.footer51-nav li p:before{height:3px;}


	/* --------------------------51------------------------ */
	/* --------------------------56------------------------ */
	.nav56>li>a,.pro56-nav > li,.pro56-con li h3 a,.about56-con .more,.case56-nav a,.case56-con .con .txt h3 a,.adv56-tel p,.news56-l-top .con h3 a,.news56-l-con ul li a,.news56-r li a,.solve56-con li .solve56-txt h2{font-size:16px;}
	
	.nav56>li:hover>.down56>i>a,.about56 li span sup{font-size:15px;}
	
	.pro56-con li i{font-size:14px;}
	
	.nav56>li:hover>.down56>i{height:40px;}
	
	.nav56>li:hover>.down56>i>a,.pro56-nav > li,.about56-con .more,.news56-l-title li a{height:40px;line-height:40px;}
	
	.pro56-con li p,.case56-nav a,.adv56-tel a{height:35px;line-height:35px;}
	
	.ftitle56{padding-top:30px;}
	
	.ftitle56 div{font-size:34px;}
	
	.ftitle56 em:after{left:40%;}
	
	.ftitle56 span{margin:10px 0;}
	
	.pro56,.solve56{padding-bottom:30px;}
	
	.about56-con{padding:30px 5% 30px 30px}
	
	/* ------------------ */
	
	.logo56 .logo{margin-top:11px;}
	
	.nav56{width:61%;}
	
	.tel56{width:17%;}
	
	.pro56-con .img{height:214px;}
	
	.about56-con h2{font-size:24px;}
	
	.about56-con p {line-height: 30px;height: 120px;}
	
	.about56-con .more{width:200px;}
	
	.about56 li span {font-size: 28px;}
	
	.case56{padding:30px 0;}
	
	.case56-nav a {width: 125px;}
	
	.case56-title-l .title-r p{}
	
	.case56-title-l span{font-size: 38px;line-height: 38px;}
	
	.case56-title-l .title-r p{margin: 15px 0 0 -106px;width:580px;}
	
	.case56-nav li{width:130px;}
	
	.case56-con .img{height:242px;}
	
	.case56-con .con .txt{padding-top:0;}
	
	.case56-con .con .txt h3 a{line-height:25px;}
	
	.case56-con .con i{margin-top:10px;}
	
	.case56-con .con{height:auto;}
	
	.case56-con li:hover .con {top: 58%;}
	
	.adv56-tel span {font-size: 24px;}
	
	.news56{padding-bottom:30px;padding-top:30px;}
	
	.news56-l-title li a, .news56-r-title {font-size: 24px;}
	
	.news56-l-title{background: url(../img/news56-l-x.jpg) no-repeat 130px 12px;}
	
	.news56-l-con ul li{padding:10px 15px;}
	
	.news56-l-con ul li a{background: url(../img/news56-l-more.png) no-repeat right 6px;background-size: 25px;}
	
	.news56-l-con ul li:hover a{background: url(../img/news56-l-morel.png) no-repeat right 6px;background-size: 25px;}
	
	.news56-r li{height:44px;line-height:44px;}
	
	.news56-r li a i em{margin-bottom:0;}
	
	.news56-r li a{width:calc(79% - 30px);}
	
	.news56-r li span{width:21%;}
	
	.solve56-con li .solve56-txt h6{font-size:40px;}
	
	.solve56-con li .solve56-txt h2{margin:20px 0 10px 30px;}
	
	.solve56-arrow,.solve56-con,.solve56-con li .solve56-img{height:236px;}
	
	.link56{line-height:70px;height:70px;}
	
	.link56-tit {font-size: 18px;}
	
	.foot56-adv h2{font-size:24px;}
	
	.foot56-ma{padding-left:3%;}
	
	.foot56-ma span{width:102px;height:102px;}
	
	.coptright56{line-height:45px;height:45px;}

	/* --------------------------56------------------------ */
	/* --------------------------57------------------------ */
	.nav57 .navbox li>a,.case57-nav .effect01,.case57-con .info p,.case57-con .info h3,.adv57-txt h2,.news57-con h4,.foot57-nav li p,.about54-more{font-size:16px;}
	
	.nav57 .down a,.adv57_con p,.solve57-mask .mask_more,.Links57 .link57 a{font-size:15px;}
	
	.nav57 .down a,.about54-more{line-height:40px;height:40px;}
	
	.ftitle57 h3:before, .ftitle57 h3:after{width:35%;}
	
	.ftitle57{padding-top:30px;}
	
	.ftitle57 h3 {font-size: 30px;}
	
	.pro47,.case57,.about54,.advantage,.news57,.solve57{padding-bottom:30px;}
	
	
	/* --------------------------- */
	
	.nav57_tel em{font-size:24px;}
	
	.nav57_tel{padding-right:65px;}

	.nav57 .logo .l-img { height: 56px;margin: 12px 0;}
	
	.pro47-box .bd .cont{height:230px;padding:60px 40px 0 50px;}
	
	.pro47-box .bd .tel {margin-top: 30px;}
	
	.pro47-box .bd .pic,.pro47-box .bd{height:350px;}
	
	.pro47-box .hd ul li{height:55px;}
	
	.pro47-box .hd li.on i:before, .pro47-box .hd li.on i:after,.pro47-box .hd li i.ico1:before,.pro47-box .hd li i.ico2:before,.pro47-box .hd li i.ico3:before,.pro47-box .hd li i.ico4:before{background-size:28px;}
	
	.case57-nav {margin-top: 10px;}
	
	.case57-con .img{height:242px;}
	
	.case57-con li{height:326px;}
	
	.case57-con .info{padding:10px;}
	
	.case57-con .info p {line-height: 25px;}
	
	.about54-con {line-height: 30px;height: 60px;}
	
	.about54-more{margin:40px auto 80px auto;}
	
	.about54 ul li{padding:40px;}
	
	.advantage{height:430px}
	
	.advantage ul li .adv57-con{padding:20px;}
	
	.advantage ul li .adv57-con::after{border-left: 158px solid transparent;border-right: 158px solid transparent;}
	
	.adv57-pic{width:90px;height:90px;}
	
	.adv57-pic img{width:100%;}
	
	.adv57-txt p{line-height: 25px;height: 50px;}
	
	.advantage ul li:hover .adv57-pic{top:180px;left:53%;}
	
	.news57{padding-top:30px;}
	
	.news57-tit em{font-size:34px;}
	
	.news57-l-list li a{width:150px;}
	
	.news57-con h4 a{line-height:30px;}
	
	.news57-con p { margin: 5px 0 10px;line-height: 25px;height: 50px;}
	
	.news57-line{height:36px;}
	
	.news57_more {left: 51%;}
	
	.news57-line.line2 {height: 99px;}
	
	.news57-l-list li{margin-bottom:15px;}
	
	.news57-l-list li:first-child {margin-bottom: 30px;}
	
	.news57-l-list li:first-child:before{bottom:-26px;height:20px;}
	
	.adv57_con h3 {font-size: 24px;}
	
	.adv57_con p{line-height:40px;}
	
	.adv57_con span {font-size: 22px;}
	
	.adv57_con ul li{width:20%;}
	
	.solve57-list li{height:234px;}
	
	.solve57-mask .img{padding-top: 40px;}
	
	.solve57-mask h3 {font-size: 20px;}
	
	.solve57-list {margin-top: 10px;}
	
	.Links57 .tit i {font-size: 40px;}
	
	.Links57 .tit{font-size:22px;}
	
	.Links57 {padding: 15px 0;}
	
	.foot57-ma .logo {margin: 25px 0 20px 0;}
	
	.foot57-ma .logo img {height: 40px;}
	
	.foot57-ma .ma img {width: 120px;}
	
	.foot57-nav{padding-top:25px;width: 62%;}
	
	.foot57-info {width: 18%;padding-top: 25px;}
	
	.copyright57 p,.copyright57 a{line-height:30px;}
	
	/*
	
	
	
	
	
	.news57-con{padding:15px 0 15px 0;}
	
	
	
	.news57_more{width: 40px;height: 40px;line-height: 40px}
	
	.adv57_con h3 {font-size: 28px;}
	
	.adv57_con span{font-size: 24px;}
	
	.adv57_con span:before{width: 32px;height: 32px;}
	
	.adv57_con span {padding-left: 40px;}
	
	
	.solve57-mask h3{font-size:22px;}
	
	
	.Links57{padding:30px 0;}
	
	.foot57-ma{width:18%;}
	
	.foot57-nav {width: 65%;}
	
	.foot57-ma .logo img {height: 50px;}
	
	.foot57-ma .ma img {width: 140px;}
	
	.foot57-nav li p{line-height:40px;}
	
	.foot57-nav li a{line-height:30px;}
	
	.foot57-info h3 {font-size: 20px;margin-bottom: 10px;}
	
	.foot57-info marquee {width: 165px;line-height: 16px;} */
	/* --------------------------57------------------------ */
	
	/*内页开始*/
	
	.ibannerpro .ibancon {padding-top: 10px;}
	
	.ipicnew_time{font-size:22px;}
	
	.iprocon li .ipro_info h3,.hysbox li h3,.jzcon .bd ul li .jztit,.casecon li p,.ipicnew_tit,.casecon li .hca_panel h3,.irelcase dl dd h3{font-size:16px;}
	
	.ibancon p,.iernav li,.contxt,.ireltit a,.forml_sub, .czhi{font-size:15px;}
	
	.iernav li,.ihon_box li p,.jzcon .bd ul li .jztit,.casecon li p,.inewlic_l .inewli_ul li, .irelnew li{height: 40px;line-height: 40px;}
	
	.ibanner{height:247px;}
	
	.ibancon{padding-top:35px;}
	
	.iernav li{width: 15.5%;}
	
	
	
	.ihon_img{height:237px;}
	
	.iprocon li .ipropic{height:239px;}
	
	.iprod_r .iprod_info{margin: 10px 0 10px;height: 62px;display: -webkit-box;text-overflow: ellipsis;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
	
	.jzcon .bd ul li{width:341px;}
	
	.jzcon .bd ul li .jzpic{height:236px;}
	
	.inmain .casecon li .hcaseimg {height: 239px;}
	
	.casecon li .hca_panel {height: 175px;}
	
	.casecon li .hca_panel span,.ipicnew_txt{ height: 50px;line-height: 25px;}
	
	.ipicnew_txtic {height: 225px;}
	
	/*内页结束*/
}

@media screen and (max-width: 1440px) {
	
	html,body {font-size: 15px;}
	/* ---------------------53----------------------------------- */
	.pro53 .hd ul li{background: #ddd url(../img/pro51-icon.png) 163px center no-repeat;}
	
	.pro53 .hd ul li.on{background: #006AA6 url(../img/pro51-icon.png) 163px center no-repeat;} 
	
	.pro53-list .pro53-img{height:217px;} 
	
	.pro53-mask h3 {margin-top: 10%;}
	
	.case53-pic{height:242px;}
	
	.faq .faq_con dl span{width:93%;}
	
	.solve-list-img{height: 161px;}
	
	.solve53-l {height:412px;}
	
	.footer53-pro {width: 55%;}
	
	.footer53-cont {width: 30%;}
	
	/* --------------------------53------------------------ */
	/* ---------------------------------------51---------------------------------- */
	.head51-icon {width: 12%;}
	
	.top51-cant {width: 40%;}
	
	.head51-nav {width: 64%;}
	
	.head51-tel {width: 14%;}
	
	#banner{height:600px;}
	
	.pro51-con li>a{height:216px;}
	
	.case51-con{width:480px;}
	
	.case51-con ul .case51-list{width:480px;height:423px;}
	
	.case51-con .case51-list-pic{width:480px;height:333px;}
	
	.case51-con .case51-list-con {margin-top: 333px;}
	
	.partner51-list li{height:100px;}
	
	.parter51-mes h3 {font-size: 18px;}
	
	.parter51-mes .forml_input{height:35px;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi {width: 205px;}
	
	.forml_sub, .czhi{margin: 15px 25px 0 0;}
	
	.parter51-mes .forml_textra {height: 95px;}
	
	.news51-l-bottom li span {width: 12%;}
	
    .news51-l-bottom li h3{width: 86%;}
	
	.footer51-l h2 span {font-size: 18px;}
	
	.footer51-l h2 p {font-size: 12px;}
	
	.footer51-ma {width: 100px;height: 100px;}
	
	.footer51-l ul {width: calc(100% - 100px);}

	/* --------------------------51------------------------ */
	
	/* --------------------------56------------------------ */
	
	.nav56{width:59%;}
	
	.logo56 .logo {margin-top: 14px;}
	
	.tel56{width:19%;}
	
	.pro56-con .img{height:190px;}
	
	.case56-title-l .title-r p {width: 440px;}
	
	.case56-con .img {height: 217px;}
	
	.adv56-tel{display:none;}
	
	.news56-r li a {width: calc(77% - 30px);}
	
	.news56-r li span {width: 23%;}
	
	.solve56-con li .solve56-txt h6 {font-size: 36px;}
	
	.solve56-con li .solve56-txt h6{margin:25px 0 0 30px;}
	
	.solve56-con li .solve56-txt h2 {margin: 5px 0 10px 30px;}
	
	.foot56-ma span {width: 89px;height: 89px;}
	/* --------------------------56------------------------ */
	/* --------------------------57------------------------ */
	.nav57 .navbox {width: 60%;}
	
	.nav57_tel{width:13%;}
	
	.pro47-box .hd ul li{padding-left:4%;}
	
	.advantage ul li .adv57-con::after {border-left: 140px solid transparent;border-right: 140px solid transparent;}
	
	.solve57-list li {height: 211px;}
	
	.foot57-nav{width:60%;}
	
	.foot57-info {width: 20%;}
	/* --------------------------57------------------------ */
	
	/*内页开始*/

	.ibanner{height:225px;}
	
	.ibancon{padding-top:25px;}
	
	.iernav li {height: 35px;line-height: 35px;}
	
	.ihon_img{height:216px;}
	
	.iprocon li .ipropic{height:217px;}
	
	.abtel h3 {font-size: 16px;}
	
	.iprod_r .abtel h3 {margin-bottom: 5px;}
	
	.iprod_r .inlip{height:35px;line-height:35px;}
	
	.abqr{width:100px;}
	
	.abtel {margin-top:10px;}
	
	.jzcon .bd ul li{width:305px;}
	
	.jzcon .bd ul li .jzpic{height:203px;}
	
	.inmain .casecon li .hcaseimg {height: 217px;}
	
	.casecon li .hca_panel {height: 165px;}
	
	.ipicnew_txtic {height: 202px;}
	
	/*内页结束*/
}

@media screen and (max-width: 1360px) {
	
	/* ---------------------53----------------------------------- */
	.pro53 .hd ul li{background: #ddd url(../img/pro51-icon.png) 150px center no-repeat;}
	
	.pro53 .hd ul li.on{background: #006AA6 url(../img/pro51-icon.png) 150px center no-repeat;} 
	
	.pro53-list .pro53-img{height:205px;} 
	
	.case53-pic{height:228px;}
	
	.case53-mask-con h4 {font-size: 18px;}
	
	.solve-list-img{height: 152px;}
	
	.solve53-l {height:395px;}
	

	
	/* --------------------------53------------------------ */
	/* ---------------------------------------51---------------------------------- */
	
	.top51-cant {width: 42%;}
	
	 .head51-nav {width: 63%;}
	
	.head51-tel {width: 15%;}
	
	#banner{height:567px;}
	
	.pro51-con li>a{height:194px;}
	
	.case51-con{width:453px;}
	
	.case51-con ul .case51-list{width:453px;height:404px;}
	
	.case51-con .case51-list-pic{width:453px;height:314px;}
	
	.case51-con .case51-list-con {margin-top: 314px;}
	
	.partner51-list li{height:70px;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi {width: 190px;}
	
	.parter51-mes h3 {font-size: 15px;}
	
	.parter51-mes .forml_textra {height: 40px;}
	
	.forml_sub, .czhi{margin: 0px 25px 0 0;}
	
	.news51-l-bottom li span {width: 14%;}
	
    .news51-l-bottom li h3{width: 84%;}
	
	.footer51-nav {width: 66%;}

    .footer51-l {width: 34%;}
	

	/* --------------------------51------------------------ */
	
	/* --------------------------56------------------------ */
	.nav56{width:58%;}
	
	.logo56 .logo {margin-top: 16px;}
	
	.tel56{width:20%;}
	
	.pro56-con .img{height:178px;}
	
	.case56-title-l .title-r p {width: 370px;}
	
	.case56-con .img {height: 205px;}
	
	.adv56-tel{display:none;}
	
	.news56-r li a {width: calc(75% - 30px);}
	
	.news56-r li span {width: 24%;}
	
	.foot56-ma span {width: 82px;height: 82px;}

	/* --------------------------56------------------------ */
	/* --------------------------57------------------------ */
	
	.advantage ul li .adv57-con::after {border-left: 130px solid transparent;border-right: 130px solid transparent;}
	
	.solve57-list li {height: 199px;}
	
	.news57-l {width: 23%;}
	
	.news57_r {width: 77%;}
	
	.foot57-nav{width:59%;}
	
	.foot57-info {width: 21%;}
	/* --------------------------57------------------------ */
	/* 内页开始 */
	.ibanner{height:213px;}
	
	.ibancon em {margin: 10px auto 10px;}
	
	.iernav li{margin:0 10px 2px 0;}
	
	.iernav {padding-top: 10px;}
	
	.ihon_img{height:204px;}
	
	.iprocon li .ipropic{height:205px;}
	
	.abtel a {margin-top: 10px;height: 30px;line-height: 30px;}
	
	.abqr{width:93px;}
	
	.iprod_r .iprod_title {font-size: 16px;}
	
	.iprod_r .iprod_info{height:38px;-webkit-line-clamp:1;}
	
	.jzcon .bd ul li{width:287px;}
	
	.jzcon .bd ul li .jzpic{height:191px;}
	
	.inmain .casecon li .hcaseimg {height: 207px;}
	
	.ipicnew_txtic {height: 191px;}
}
@media screen and (max-width: 1280px) {
	
	
	/* --------------------------53------------------------ */
		.pro53 .hd ul li{background: #ddd url(../img/pro51-icon.png) 140px center no-repeat;}
	
	.pro53 .hd ul li.on{background: #006AA6 url(../img/pro51-icon.png) 140px center no-repeat;} 
	
	.adv53-btn {width: 72%;}
	
	.adv53-btn a {width: 200px;}
	
	.faq .faq_con dl span{width:90%;}
	
	.footer51-nav {width: 62%;}

    .footer53-cont {width: 33%;}
	/* --------------------------53------------------------ */
	/* --------------------------51------------------------ */
	.top51-cant {width: 45%;}
	
	 .head51-nav {width: 62%;}
	
	.head51-tel {width: 16%;}
	
	#banner {height: 533px;}
	
	.about51-title h3 {width: 83%;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi {width: 175px;}
/* --------------------------51------------------------ */
/* --------------------------56------------------------ */
	.nav56{width:57%;}
	
	.logo56 .logo {margin-top: 18px;}
	
	.tel56{width:21%;}
	
	.case56-title-l .title-r p {width: 295px;}
	
	.news56-r li a {width: calc(73% - 30px);}
	
	.news56-r li span {width: 26%;}
	
	.link56-tit {font-size: 16px;}
	
	.foot56-ma {padding-left: 1%;}
	/* .case56-con .img {height: 205px;}
	
	.adv56-tel{display:none;}
	
	
	.foot56-ma span {width: 87px;height: 87px;} */
	
	.case56-title-l span {font-size: 32px;}

    .case56-title-l .title-r p {margin: 17px 0 0 -95px;}
	/* --------------------------56------------------------ */
	/* --------------------------57------------------------ */
	.nav57 .navbox {width: 59%;}
	
	.nav57_tel{width:14%;}
	
	.advantage ul li .adv57-con::after {border-left: 120px solid transparent;border-right: 120px solid transparent;}
	
	.news57-l {width: 25%;}
	
	.news57_r {width: 75%;}
	
	.foot57-ma .logo img {height: 35px;}
	
	.foot57-nav{width:57%;}
	
	.foot57-info {width: 23%;} 
	/* --------------------------57------------------------ */
	/* 内页开始 */
	.ibannerpro .ibancon {padding-top: 5px;}
	
	.ibanner{height:200px;}
	
	.ibannerpro .ibancon em {margin: 5px auto 5px;}
	
	.jzcon .bd ul li{width:269px;}
	
	.jzcon .bd ul li .jzpic {height: 178px;}
}
@media screen and (max-width: 959px) {
	html,
	body {
		min-width: 768px;
		max-width: 768px;
		overflow-x: hidden;
	}
	.mainb {
		width: 98%;
	}
	
	/* --------------------------53------------------------ */
	.ftitle53 {padding: 15px 0 15px 0;}
	
	.ftitle53 span {font-size: 24px;background:none;}
	
	.ftitle53::before, .ftitle53::after {top: 36%;width: 41%;}
	
	.pro53,.case53,.solve53 {padding-bottom:15px;}
	
	/* **************************************** */
	.header53{position:relative;box-shadow:none;}
	
	.header53 .head53-top .logo div,.header53 .head53-top-r{display:none;}
	
	.header53 .nav{display:none;width:100%;background: rgba(16, 18, 40, .75);position:absolute;top:75px;left:0;}
	
	.header53 .mmenu53{display:block;width:50px;float:right;margin-top: 10px;}
	
	.header53 .nav li {width: 100%;border-bottom: 1px dashed #ccc;position: relative;}
	
	.header53 .nav li>a{height:45px;line-height:45px;color: #fff;}
	
	.nheader53 .nav li>a {color: #fff;}
	
	.header53 .nav li div{display:none!important;}
	
	.banner-text h2 {font-size: 24px;}
	
	.banner .swiper-button-prev, .banner .swiper-button-next{width:70px;background-size: 100%;}
	
	.pro53 .hd ul li {background: #ddd;padding: 0 5px;}
	
	.pro53 .hd ul li.on {background: #006AA6;}
	
	.pro53 .hd ul li a{width: calc(100% - 5px);text-align: center;}
	
	.pro53-list .pro53-img {height: 126px;}
	
	.pro53 .bd {margin-top: 15px;}
	
	.pro53-mask h3{height:35px;line-height:35px;}
	
	.pro53-mask p{height: 30px;-webkit-line-clamp: 1;}
	
	.about53-l {width: 100%;padding: 15px 0;}
	
	.about53-r{display:none;}
	
	.about53-l h2,.about53-l em{margin:15px 0;}
	
	.about53-btn {margin-top: 30px;}
	
	.case53-pic {height: 126px;}
	
	.case53-con ul li h2{height:35px;line-height:35px;}
	
	.case53-mask{padding:10px;}
	
	.case53-mask-con {padding: 0 10px;}
	
	.case53-mask-con h4 {font-size: 16px;height: 35px;line-height: 35px; padding-top: 15px;padding-bottom: 5px;}
	
	.case53-mask-con p {line-height: 30px;height: 30px;-webkit-line-clamp: 1;margin-top: 5px;}
	
	.adv53{display:none;}
	
	.news53{padding:15px 0;}
	
	.news53 #news53-l{width:100%;margin-right:0;border-right:none;}
	
	.news53 #news53-l .news53_tit ul li, .faq .news53_tit h3 .txt {font-size: 20px;}
	
	.news_list dl dt strong {font-size: 20px;}
	
	.faq {width: 100%;}
	
	.solve53-l{display:none;}
	
	.solve53-list{width:100%;margin:0px;}
	
	.solve-list-img {height: 126px;}
	
	.footer53{padding-bottom:15px;}
	
	.link53 {padding: 15px 0 10px 0;}
	
	.footer53-pro{display:none;}
	
	.footer53-cont {width: 60%;}

    .footer53-ma {width: 35%;}
	
	.footer53-ma a {display:none;}
	
	/* --------------------------53------------------------ */
	/* --------------------------51------------------------ */
	.ftitle51 {padding-top: 15px;}
	
	.ftitle51 h2 {font-size: 24px;}
	
	.pro51-nav,.pro51-con,.partner51-con,.advant51 ul{margin-top: 10px;}
	
	.pro51,.case51,.parter51,.advant51{padding-bottom:15px;}
	
	.about51,.news51 {padding: 15px 0;}
	
	 .pro51-con li span a{height: 30px;line-height: 30px;}
	/* ------------------------------------------- */
	.head51-top,.head51-nav,.head51-tel{display:none;}
	
	.head51-logo{width:100%;}
	
	.head51-logo .logo {width: 40%;display: inline-block;}
	
	.head51-logo .mmenu {display: inline-block;float: right;margin-top: 10px;}
	
	.head51-nav {width: 100%;position: absolute;top: 70px;left: 0;z-index: 11;background: rgba(215,50,64,.7);margin: 0;}
	
	.head51-nav li {width: 100%;}
	
	.head51-nav .btn{border-bottom:1px dashed #fff;}
	
	.head51-nav li>a {height: 45px;line-height: 45px;}
	
	.head51-nav .btn-2>a{color:#fff;}
	
	.head51-nav .dropdown51{display:none!important;}
	
	#banner {height: 400px;}
	
	.pro51-nav li{width:32.66%;margin-bottom: 2px;padding: 0 5px;}
	
	.pro51-nav li:nth-child(4),.pro51-nav li:nth-child(7),.pro51-nav li:nth-child(10),.pro51-nav li:nth-child(16),.pro51-nav li:nth-child(19){margin-left:0;}
	
	.pro51-con li>a {height: 125px;}
	
	.pro51-con li:hover span a {height: 55px;line-height: 55px;}
	
	.about51-l{display:none;}
	
	.about51-r{width:100%;}
	
	.about51-title h3 b {font-size: 24px;}
	
	.about51-title span i, .about51-title span {width: 62px;height: 62px;}
	
	.case51-con{width:256px;}
	
	.case51-con ul .case51-list{width:256px;height:247px;}
	
	.case51-con .case51-list-pic{width:256px;height:177px;}
	
	.case51-con .case51-list-con {margin-top: 177px;}
	
	.case51-con .case51-list.cur .case51-list-con {height: 70px;padding: 15px;}
	
	.case51-con .case51-list-txt {line-height: 45px;}
	
	.case51-jt i {top: 55px;width: 50px;height: 50px;left:20px;}
	
	.case51-jt i img{width:100%;}
	
	.case51-jt i.next{right:20px;}
	
	.partner51-list{width:100%;}
	
	.partner51-list li {height: 93px;}
	
	.parter51-mes{width:100%;padding-left:0;margin-top: 10px;}
	
	.advant51 li p{display:none;}
	
	.advant51 ul li{padding:10px;}
	
	.advant51 li span{margin:0 auto;}
	
	.advant51 li h3{text-align:center;margin-top:10px;}
	
	.advant51 li a{text-align:center;}
	
	.news51-title h2 span {font-size: 18px;}
	
	.news51-l-top li h3 {font-size: 18px;}
	
	.news51-title{box-sizing:border-box;}
	
	.news51-l{width:100%;}
	
	.news51-l-top li span{margin-bottom:10px;}
	
	.news51-l-img{height:140px;}
	
	.news51-l-top{padding:0 5px;}
	
	.news51-l-bottom{padding:0 5px 10px 5px;}
	
	.news51-r{width:100%;margin-top:10px;    padding: 5px;}
	
	.footer51{padding: 15px 0;}
	
	.footer51-l{display:none;}
	
	.footer51-nav{width:100%;}
	/* --------------------------51------------------------ */
	/* --------------------------56------------------------ */
	.nav56,.tel56,.nav56 .another a span,.nav56>li>a span{display:none;}
	
	.logo56{width:100%;}
	
	.logo56 .logo{display:inline-block;width:50%;margin-top: 5px;}
	
	.logo56 .mmenu56{display:inline-block;float:right;    margin-top: 15px;}
	
	.nav56 {width: 100%;height:auto;margin-left: 0;position: absolute;top: 82px;left: 0;background: linear-gradient(55deg, #23a59b, #4bb052);z-index: 4;border-top: 1px solid #dad6d6;}
	
	.nav56>li, .nav56>li>a{height: 55px;}
	
	.nav56>li{width:100%;border-bottom: 1px dashed #ccc;}
	
	.nav56>li>.down56{display:none!important;}
	
	.nav56>li>a {padding-top: 0px;line-height: 55px;}
	
	.nav56>li>a:before,.nav56>li>a:after{display:none;}
	
	.banner56 .slide-ioc,.banner56 .bx-wrapper .bx-has-pager{bottom:50px;}
	
	.ftitle56 {padding-top: 15px;}

    .ftitle56 div {font-size: 24px;}
	
	.ftitle56 em {width: 15%;}
	
	.ftitle56 span{line-height:20px;}
	
	.pro56-nav {margin-bottom: 10px;}
	
	.pro56-con .img{height:99px;}
	
	.pro56-con li h3 a{line-height:30px;}
	
	.pro56-con li p, .case56-nav a, .adv56-tel a {height: 30px;line-height: 30px;}
	
	.about56-con,.about56 ul{width:100%;}
	
	.case56 {padding: 15px 0;}
	
	.case56-title-l .title-r p {width: 640px;}
	
	.case56-nav {width: 100%;}
	
	.case56-nav li {width: 160px;}
	
	.case56-nav li:first-child{margin-left:10px;}
	
	.case56-con li {width: 49.5%;margin-bottom: 10px;}
	
	.case56-con .img {height: 258px;}
	
	.case56-con li:nth-child(2n-1) {margin-left: 0;}
	
	.case56-con .con{top:120%;}
	
	.adv56{display:none;}
	
	.news56 {padding-bottom: 15px;padding-top: 15px;}
	
	.news56-l,.news56-r{width:100%;}
	
	.link56,.foot56-nav,.foot56-ma,.foot56-adv{display:none;}
	
	.foot56-info{width:100%;}
	
	
	/* --------------------------56------------------------ */
	/* --------------------------57------------------------ */
	.nav57{position:relative;background:linear-gradient(135deg, #0068dd, #00aeee);border-bottom:none;}
	
	.nav57 .navbox,.nav57_tel{display:none;}
	
	.nav57 .logo{width:100%;}
	
	.nav57 .logo .l-img {width: 50%;}
	
	.navbtn {position: absolute;right: 25px;display: block;background: transparent;outline: none;top: 25px;border: none;}
	
	.navbtn span {display: block;width: 40px;height: 5px;background-color: #333333;margin-left: calc(50% - 15px);margin-bottom: 7px;transition: all .5s ease-out;transform-origin: 0 0;background: #fff;}
				
	.navbtn.active {padding: 2px;}
	
	.navbtn.active span:first-child {transform: rotate(45deg) translate(5px, -4px);}
	
	.navbtn.active span:nth-child(2) {opacity: 0;}
	
	.navbtn.active span:last-child {transform: rotate(-45deg) translate(-1px, 6px);}
	
	.nav57 .navbox {display: none;position: fixed;width: 50%;height: 100%;top: 80px;margin-left: 0;float: none;background: rgba(0, 0, 0, 0.9);padding: 20px 0;z-index: 3;right: -50%;transition: all .5s;}
				
	.nav57 .navbox.lef {right: 0;}
	
	.nav57 .navbox li{width:100%;border-bottom:1px dashed #ccc;}
	
	.nav57 .navbox li>a {height: 65px;line-height: 65px;background:none;}
	
	.nav57.nav57_pos .navbox li>a, .nav57_pos .nav57_tel {color: #fff;}
	
	.nav57.nav57_pos .navbox{right:-50%;}
	
	.nav57 .down{display:none!important;}
	
	.banner57 .slide-ioc, .banner57 .bx-wrapper .bx-has-pager {bottom: 15px;}
	
	.ftitle57 {padding-top: 15px;}
	
	.ftitle57 h3 {font-size: 24px;}

    .ftitle57 h3:before, .ftitle57 h3:after {width: 28%;}
	
	.pro47, .case57, .about54, .advantage, .news57, .solve57 {padding-bottom: 15px;}
	
	.pro47-box .bd .pic{display:none;}
	
	.pro47-box .bd .cont{width:100%;}
	
	.pro47-box .hd li i{display:none;}
	
	.pro47-box .hd ul li {padding-left: 0;text-align:center;}
	
	.pro47-box .hd li span{font-size:16px;}
	
	.pro47-box .bd li,.pro47-box .bd .pic, .pro47-box .bd{height:auto;}
	
	.case57-nav .effect0,.case57-nav .effect01{height:40px;line-height:40px;}
	
	.case57-nav {margin-top: 5px;}
	
	.case57-nav li{margin-bottom:5px;}
	
	.case57-con {margin-top: 0px;}
	
	.case57-con li {width:49.5%;margin-bottom: 10px;}
	
	.case57-con li:nth-child(2n-1){margin-left:0;}
	
	.about54{margin-bottom:0;}
	
	.about54 ul{display:none;}
	
	.about54-more {margin: 20px auto 20px auto;}
	
	.advantage,.adv57_box{display:none;}
	
	.news57-l {width: 100%;}

    .news57-tit {padding-top: 0px;}
	
    .news57-tit em,.news57-tit h2 {display: inline-block;}

    .news57-nav { margin-right: 0; }
	
    .news57-line,.news57-line.line1,.news57-line.line2,.news57_more,.news57-l-list li:first-child:before {display: none;}		

    .news57-l-list li{display:inline-block;margin-left: 20px;}

    .news57-l-list li:first-child,.news57-l-list li {margin-bottom: 0px;}

    .news57_r{width:100%;}

    .news57-con {width: 50%;padding: 10px;margin-left: 0;box-sizing: border-box;}
	
	.solve57-list li{width:49.5%;height:258px;}
	
	.solve57-list li:nth-child(2n-1){margin-left:0;}
	
	.Links57 .tit{background-size:76% 5px;}
	
	.foot57-ma,.foot57-info{display:none;}
	
	.foot57-nav{width:100%;}
	/* --------------------------57------------------------ */
	/* 内页开始 */
	
	.ibannerpro .ibancon {
    padding-top: 37px;
}
	
	.logotxt {
		display: none;
	}
	.head_nav>ul>li .d_erli {
		display: none !important;
	}
	.head_nav ul li {
		width: 25%;
		border-top: 1px solid #f3abab;
	}
	.head_nav ul li:nth-child(9) {
		display: none;
	}
	.headnavb {
		height: auto;
	}
	.pclogo {
		display: none;
	}
	.mologo {
		display: block;
	}
	.headtop {
		background: none;
	}
	.headnavb {
		line-height: 36px;
	}
	.head_nav ul li:after {
		top: 3px;
	}
	.headnavb .mainb {
		width: 100%;
	}
	.bban_btn {
		display: none !important;
	}
	.bbanner,
	.bban_pic,
	.bban_pic a {
		height: 300px;
	}
	.bban_dot {
		margin-top: 260px;
	}
	.bban_pic a {
		background-size: 100% 100% !important;
	}
	.hysbox {
		display: none;
	}
	.htitle1 .htit_l h1 {
		border-left: 0;
		font-size: 24px;
		padding-left: 0;
	}
	.htitle1 .htit_l {
		width: 60%;
	}
	.htitle1 .htit_c {
		display: none;
	}
	.htitle1 .htit_r {
		width: 17%;
	}
	.hprocate {
		width: 100%;
		float: none;
		margin-bottom: 10px;
		display:none;
	}
	.hprocate p {
		display: none;
	}
	.hprocate li {
		width: 31.3%;
		margin: 1%;
		float: left;
		box-sizing: border-box;
		height: 45px;
		line-height: 45px;
	}
	.hprocate li i {
		margin-top: 7px;
	}
	.hprocon li {
		width: 48%;
		margin: 1%;
	}
	.hprocon li .hpimg {
		height: 271px;
	}
	.htitle2 h1 {
		font-size: 24px;
	}
	.habinfo p {
		height: 87px;
	}
	.abtel h3 {
		display: none;
	}
	.abtel p {
		height: auto;
	}
	.abtel a {
		width: 120px;
	}
	.abqr {
		width: 90px;
	}
	.abtel {
		border: 0;
		padding: 0;
	}
	.habimg {
		height: 250px;
	}
	.casecon li .hcaseimg {
		height: 184px;
	}
	.casecon li p {
		height: 36px;
		line-height: 36px;
	}
	.casecon li .hca_panel {
		height: 160px;
	}
	.casecon li .hca_panel h3 {
		font-size: 16px;
		font-weight: normal;
	}
	.casecon li .hca_panel span {
		/* height: 40px; */
		margin-bottom: 15px;
	}
	.hnew_top dl dt {
		height: 148px;
	}
	.hnew_top dl dd {
		padding: 0 0 10px 15px;
	}
	.hnew_fl,
	.hnew_fr {
		width: 100%;
	}
	.hnew_fr {
		margin-top: 20px;
		display: none;
	}
	
	.ipicnew_txtic {
    height: 250px;
}
	.hfootbox {
		display: none;
	}
	.yqlink {
		background: #4d4d4d;
	}
	.yqlink ul li a {
		color: #fff;
	}
	.ibanner {
		background-size: 100%;
    height: auto;
	}
	.ibancon p {
		display: none;
	}
	.iernav{padding: 30px 0 8px;}
	.ibancon{padding-top:30px;}
	.iernav li {
		display: inline;
		float: left;
		width: 31.33%;
		margin: 1%;
	}
	.inertit {
		font-size: 26px;
	}
	.ihon_box li {
		width: 48%;
		margin: 1%;
	}
	.ihon_box li:nth-child(4n) {
		margin-right: 0;
	}
	.ihon_img {
		height: 249px;
	}
	.sply_box {
		background: none;
	}
	#onlyform {
		width: 100%;
	}
	.inmain .casecon li {
		width: 48%;
		margin: 1%;
	}
	.inmain .casecon li:nth-child(4n) {
		margin-right: 1%;
	}
	.inmain .casecon li .hcaseimg {
		height: 250px;
	}
	.iprocon li {
		width: 48%;
		margin: 1%;
	}
	
	.iprocon li .ipropic {
    height: 250px;
}
	.iprocon li:nth-child(4n) {
		margin-right: 1%;
	}
	
	.ipicnew_ul li{width: 48%;margin: 1%;}
	.ipicnew_ul li:nth-child(4n){margin-right: 1%;}
	.inewli_con{padding-top: 10px;}
	.inewlic_l{width: 100%;}
	.irelcase dl dt{height: 178px;}
	.inewlic_r{width: 100%;}
	.irelcase dl dd p{height: 68px;}
	.irelcase dl dd p,.irelcase dl dd .hnl_more{margin-top: 25px;}
	.inewlic_r{display: none;}
	.inewlic_l{padding: 0;background: 0;}
	.inewde_tit h1{font-size: 24px;}
	.inewde_l .updow p a{width: 90%;}
	.iprod_big,
	#preview img {
		width: 100% !important;
	}
	.jqzoom {
		float: none;
	}
	div.zoomMask,div.zoomDiv {
		display: none !important;
	}
	.iproimgc {width: 100%;}
	
	.iprod_r{width: 100%;margin-top: 15px;}
	.iprod_r .iprod_info{margin-bottom: 10px;}
	.updow p{width: 100%;margin-bottom: 10px;}
	.irel_ly .formlitit{width: 15%;}
	.irel_ly .forml_input, .irel_ly .forml_textra, #checkCode{width: 85%;}
	.advbox{display:none;}
	.hcate li{width: 15%;}
	.hnewcon{padding-top:0px;}
	.hprocon{width:100%;}
	
	.jzcon .bd ul li {width: 172px;}
	
	.jzcon .bd ul li .jzpic{height:119px;}
	
	.inertit {background: url(../img/bread1.png) no-repeat left 6px;background-size: 28px 28px;}
}
@media screen and (max-width: 768px) {
	#banner {height: 320px;}
}
@media screen and (max-width: 640px) {
	html,
	body {
		min-width: 100%;
		max-width: 100%;
	}
	/* -----------------------53----------------------------- */

	.header53 .head53-top .logo img {height: 40px;}
	
	.header53 .mmenu53 {width: 40px;}
	
	.header53 .mmenu53 img{width: 100%;}
	
	.header53 .nav{top:60px;}
	
	.header53 .nav li>a {height: 40px;line-height: 40px;}
	
	.banner-text{top:66%;padding: 0 20px;box-sizing: border-box;}
	
	.banner-text h2{font-size:15px;}
	
	.banner-text .en{font-size:12px;}
	
	.banner .swiper-button-prev, .banner .swiper-button-next{display:none;}
	
		
	.ftitle53 {padding: 15px 0 10px 0;}
	
	.ftitle53::before, .ftitle53::after {width: 33%;}
	
	.pro53 .hd ul li {width: 49.5%;}
	
	.pro53 .hd ul li:nth-child(2n-1){margin-left:0;}
	
	.pro53 .hd ul li:nth-child(2n){margin-left:1%;}
	
	.pro53 .bd {margin-top: 10px;}
	
	.pro53-list li {width: 49.5%;}
	
	.pro53-list li:nth-child(2n-1){margin-left:0;}
	
	.pro53-list li:nth-child(2n){margin-left:1%;}
	
	.pro53-list .pro53-img {height: 125px;}
	
	.case53-con ul {padding-left: 2.5px;}
	
	.case53-con ul li {width: 50%;padding: 0 5px 5px 0;}
	
	.news53 #news53-l .news53_tit ul li {width: 150px;}
	
	.news_list dl p {line-height: 25px;height: 50px;}

    .news_list dl,.news_list dl dt {height: 90px;}

    .news_list dl dt p{display:none;}

    .news_list dl dd{height:auto;}

    .news_list dl a span{background:none;}
	
	.faq .news53_tit h3 .img {height: 100px;}
	
	.faq .faq_con dl span {width: 87%;}
	
	.solve53-list li{width:49.5%;}
	
	.solve53-list li:nth-child(2n-1){margin-left:0;}
	
	.solve53-list li:nth-child(2n){margin-left:1%;}
	
	.footer53{display:none;}
	
	.copyright {margin-bottom: 60px;padding: 10px;}
	
	.copyright p,.copyright a{height:25px;line-height:25px;}
	
	.m-footer53 {display:block;position: fixed;bottom: 0;right: 0;width: 100%;height: 60px;z-index: 999;background-image: url(../img/mb_footer.jpg);background-size: cover;}
	
    .m-footer53 ul {width: 100%;height: 100%;}
	
				.m-footer53 li {
					float: left;
					display: block;
					height: 60px;
					width: 33.3333%;
					border-left: 1px solid rgba(255, 255, 255, .2);
					position: relative;
					box-sizing: border-box;
				}
				.m-footer53 li:first-child {
					border-left: none;
				}
				.m-footer53 li a {
					display: block;
					cursor: pointer;
					width: 100%;
					height: 100%;
					padding-top: 5px;
					color: #FFFFFF;
					text-align: center;
				}
				.m-footer53 li img {
					width: 25px;
					display: inline-block;
				}
				.m-footer53 li p {
					font-size: 15px;
				}
				.m-footer53 .m-tel {
					position: absolute;
					top: -30px;
					left: 34%;
					margin-left: -20px;
					padding-top: 15px;
					width: 85px;
					height: 85px;
					background-image: url(../img/mb_tel_bg.png);
					background-size: 100% 100%;
					box-sizing: border-box;
				}
				.m-footer53 .m-tel p {
					margin-top: 5px;
				}
	/* -----------------------53----------------------------- */
	/* -----------------------51----------------------------- */
	.head51-logo .logo {width: 70%;}
	
	.head51-nav{top:64px;}
	
	.head51-nav li>a {height: 40px;line-height: 40px;}
	
	.head51-logo .mmenu img {width: 40px;}
	
	#banner {height: 267px;}
	
	.pro51-con li {width:49.5%;}
	
	.pro51-con li:nth-child(2n){margin-left:1%;}
	
	.pro51-con li:nth-child(2n-1){margin-left:0;}
	
	.pro51-con li>a {height: 124px;}
	
	.about51-title span i, .about51-title span {width: 53px;height: 53px;}
	
	.about51-title h3 {width: 72%;padding-left: 15px;}
	
	.about51-title h3 b {font-size: 20px;}

.about51-title h3 p {font-size: 12px;}

.about51-con>p {line-height: 25px;height: 50px;}

.about51-honor li i {width: 30px;height: 30px;}

.about51-btn li {width: 175px;}

.about51-btn {margin-top: 10px;}

.case51 .ftitle51 h2 {color: #333333;}

.case51 .ftitle51 p {color: #656363;}

.case51-tab{display:none;}

.case51-nav{margin-top:10px;}

.case51-con{width:213px;}
	
	.case51-con ul .case51-list{width:213px;height:188px;}
	
	.case51-con .case51-list-pic{width:213px;height:148px;}
	
	.case51-con .case51-list-con {margin-top: 148px;}
	
	.case51-con .case51-list.cur .case51-list-con {height: 40px;padding: 5px;}
	
	.case51-con .case51-list-txt {line-height: 30px;}
	
	.case51:after{background:none;}
	
	.partner51-list li {height: 49px;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi {width: 155px;}
	
	.advant51 ul li {width: 50%;margin-bottom:5px;}
	
	.advant51 ul li:hover span {margin-top: 0;}
	
	.news51-title h2 p{width: 60%;margin-bottom: -5px;margin-left: 0 ;}
	
	.news51-l-top li{width:100%;margin-left:0;margin-bottom: 1%;padding-bottom: 10px;border-bottom: 1px dashed #ccc;}
	
	/* .news51-l-img {height: 80px;} */
	
	.news51-r-img{display:none;}
	
	.news51-l-bottom li span {width: 30%;}
	
.news51-l-bottom li h3 {width: 65%;}

.footer51{display:none;}

.copyright51{margin-bottom:44px;}

.copyright51 p {line-height: 25px;}

.mfooter51{display:block;}

.mfooter51 {
					display: block;
					position: fixed;
					left: 0;
					bottom: 0;
					z-index: 6666;
					width: 100%;
					background: #fff;
					box-shadow: 0 0 10px #eee
				}
				.mfooter51 li {
					width: 50%;
					float: left
				}
				.mfooter51 li a {
					display: -webkit-box;
					display: -moz-box;
					display: -webkit-flex;
					display: -ms-flexbox;
					display: flex;
					-webkit-align-items: center;
					align-items: center;
					-webkit-justify-content: center;
					justify-content: center;
					height: 44px;
					line-height: 1
				}
				.mfooter51 li a img {
					height: 18px;
					width: auto;
					margin-right: 5px
				}
				.mfooter51 li:nth-child(2) {
					background: #212257;
					background: -webkit-linear-gradient(130deg, #006AA6 40%,  #a01320 60%);
					background: -o-linear-gradient(130deg, #006AA6 40%,  #a01320 60%);
					background: -moz-linear-gradient(130deg, #006AA6 40%,  #a01320 60%);
					background: linear-gradient(130deg, #006AA6 40%,  #a01320 60%);
					border-top-left-radius: 100px
				}
				.mfooter51 li:nth-child(2) a {
					color: #fff
				}
				
				.mfooter51 li em{font-style:normal;}
	/* -----------------------51----------------------------- */
	/* -----------------------56----------------------------- */
	.nav56{top:59px;}
	
	.nav56>li, .nav56>li>a {height: 45px;}
	
	.nav56>li>a{line-height:45px;}
	
	.logo56 .logo{width:70%;}
	
	.logo56 .mmenu56{margin-top:10px;}
	
	.logo56 .mmenu56 img{width:35px;}
	
	.banner56 .slide-ioc, .banner56 .bx-wrapper .bx-has-pager {bottom: 15px;}
	
	.ftitle56 div {padding-bottom: 10px;font-size: 22px;}
	
	.pro56-nav > li,.pro56-con li{width:49.5%;margin-bottom: 5px;}
	
	.pro56-nav > li:nth-child(2n-1),.pro56-con li:nth-child(2n-1){margin-left:0;}
	
	.pro56-con li h3{margin-left:-10px;}
	
	.pro56-con li{padding:10px;}
	
	.pro56, .solve56 {padding-bottom: 15px;}
	
	.about56-con {padding: 15px;}
	
	.about56-con h2 {font-size: 22px;}
	
	.about56-con .more{margin:30px 0;}
	
	.about56 ul{display:none;}
	
	.case56-title-l{float:none;}
	
	.case56-title-l span { display: none;}
	
	.case56-title-l .title-r{text-align: center;width: 100%;}
	
	.case56-title-l .title-r h3 {font-size: 22px;margin-top: 0px;}
	
	.case56-title-l .title-r p {margin: 0;width: auto;}
	
	.case56-nav{display:flex;}
	
	.case56-nav li {width: 110px;height: auto;margin-left:0;padding-left:0;background:none;flex: 1;}
	
	.case56-nav li:first-child {margin-left: 0px; }
	
	.case56-nav a {width: 98%;margin: 0 auto; height: 35px;line-height: 35px;}
	
	.case56-con .img { height: 125px;}
	
	.case56-con .con{width:100%;}
	
	.case56-con li{margin-bottom:3px;}
	
	.news56-l{padding:0;}
	
	.news56-l-title li a, .news56-r-title {font-size: 22px;}
	
	.news56-l-top .img{display:none;}
	
	.news56-l-top .con{width:100%;}
	
	.news56-l-top .con p {line-height: 25px;height: 75px;}
	
	.news56-l-con ul {margin-bottom: 15px;}
	
	.news56-l-con ul li{width:100%;}
	
	.news56-l-con ul li { padding: 5px 10px;margin-top: 5px;}
	
	.solve56-con{width:100%;}
	
	.solve56-arrow{z-index:201;}
	
	.foot56{margin-bottom:52px;}
	
	.foot56-info{display:none;}
	
	.coptright56 {line-height: 25px;height: auto;}
	
	.mfoot-56 {
		display:block;
					position: fixed;
					bottom: 0;
					padding: 10px 20px;
					width: 100%;
					box-sizing: border-box;
					background: #dfecff;
					background-image: linear-gradient(55deg, #23a59b, #4bb052);
					border: 1px solid #eee;
					border-top-left-radius: 30px;
					border-top-right-radius: 30px;
					z-index:205;
				}
				.mfoot-56 a {
					color: #fff;
					display: inline-block;
				}
				.mfoot-56 .mess {
					float: left;
					line-height: 1.6;
				}
				.mfoot-56 .mess:before {
					content: "";
					width: 25px;
					height: 24px;
					background: url(../img/mfooticon1.png) no-repeat;
					background-size: cover;
					display: inline-block;
					margin-right: 10px;
					position: relative;
					top: 7px;
				}
				.mfoot-56 .kefu {
					float: right;
				}
				.mfoot-56 .kefu:before {
					content: "";
					width: 24px;
					height: 24px;
					background: url(../img/mfooticon3.png) no-repeat;
					background-size: cover;
					display: inline-block;
					margin-right: 10px;
					position: relative;
					top: 5px;
				}
				.mfoot-56 .tel {
					position: absolute;
					left: 0;
					right: 0;
					top: -20px;
					width: 40px;
					height: 40px;
					margin: 0 auto;
					background: #FFC107;
					border-radius: 50%;
					padding: 10px;
					-webkit-box-shadow: 1px 0px 10px 0 rgba(30, 37, 79, 0.4);
					-moz-box-shadow: 1px 0px 10px 0 rgba(30, 37, 79, 0.4);
					box-shadow: 1px 0px 10px 0 rgba(30, 37, 79, 0.4);
				}
				.mfoot-56 .tel img{
					width: 100%;
					height: 100%;
				}
	/* -----------------------56----------------------------- */
	/* -----------------------57----------------------------- */
	.navbtn{right:10px;top: 17px;}
	
	.nav57 .navbox{top:66px;}
	
	.nav57 .navbox li>a {height: 55px;line-height: 55px;}
	
	.nav57 .logo .l-img{margin:5px 0;}
	
	.nav57.nnav{background:linear-gradient(135deg, #0068dd, #00aeee);}
	
	.nav57.nnav .navbox li>a{color:#fff;}
	
	.ftitle57 h3:before, .ftitle57 h3:after,.pro47-box .bd .tit,.pro47-box .bd .num{display:none;}
	
	.pro47-box .bd .cont{margin-top:0;padding: 10px;height: auto;}
	
	.pro47-box{margin-top:0;}
	
	.pro47-box .bd .tel {margin-top: 15px;}

    .pro47-box .bd .more{margin-left:0;margin-top:10px;}

    .pro47-box .hd {margin-top: 15px;}
	
	.pro47-box .hd ul li {width: 50%;height: 40px;}
	
	.pro47-box .hd ul li:first-child,.pro47-box .hd ul li:nth-child(2){border-bottom:none;}
	
	.pro47-box .hd ul li:nth-child(2),.pro47-box .hd ul li:nth-child(4){border-left:none;}
	
	.pro47-box .hd li span{line-height:40px;}
	
	.pro47-box .hd li.on span:before,.pro47-box .hd li span:before{display:none;}
	
	.case57-nav li {width: 49%;margin-bottom: 0px;}
	
	.case57-nav li:nth-child(2n-1){margin-left:0;}
	
	.case57-nav li:nth-child(2n){margin-left:1.5%;}
	
	.case57-con li {height: auto;}
	
	.case57-con .img {height: 125px;}
	
	.case57-con .info {position: relative;width: 100%;left: 0;top: 0;border-radius: 0;padding:5px;}
	
	.case57-con .info p,.case57-con .info .more{display:none;}
	
	.about54-con{margin:10px auto 20px auto;}
	
	.news57-tit em,.news57-tit h2 {font-size: 28px;}
	
	.news57-tit {width: 100%;margin-top: -15px;}
	
	.news57-nav {width: 100%;}
	
	.news57-con{width: 100%;}
	
	.solve57-list li{height:125px;}
	
	.solve57-mask .img {padding-top: 10px;}
	
	.Links57,.foot57{display:none;}
	
	.copyright57{margin-bottom:52px;padding: 5px 0;}
	
	.copyright57 p, .copyright57 a {line-height: 25px;}
	
	.mfoot57 {display:block;position: fixed;bottom: 0;left: 0;width: 100%;z-index: 999999;}
	
	.mfoot57 .flexbox {background: url(../img/footbar-bg.png) no-repeat;background-size: 100% auto;display: flex;align-items: center;justify-content: space-between;}
	
	.mfoot57 a {display: block;line-height: 55px;padding: 0 25px;color: #fff;}
				
	.mfoot57 a span {display: inline-block;padding-left: 30px;line-height: 50px;background: url(../img/footbar-gbook.png) left center no-repeat;background-size: 25px auto;}
				
	.mfoot57 a .icon-msg {background-image: url(../img/footbar-msg.png);}
				
	.mfoot57 .btn {position: absolute;top: -1px;left: 43%;display: block;content: '';width: 50px;height: 50px;padding: 0;}
				
	.mfoot57 a .icon-tel {display: block;width: 100%;height: 100%;background-image: url(../img/footbar-tel.gif);background-size: contain;}
	
	/* -----------------------57----------------------------- */
	.headtop {
		height: 50px;
		border-bottom: 0;
	}
	.hlogo {
		width: 52%;
		height: auto;
	}
	.hlogo .mologo {
		width: 100%;
	}
	.logo_tel span {
		display: none;
	}
	.logo_tel {
		background: none;
		padding-left: 0;
		padding-top: 8px;
	}
	.logo_tel p {
		font-size: 24px;
		color: #7e7e7e;
	}
	.head_nav>ul>li>a {
		font-size: 15px;
	}
	.bbanner,
	.bban_pic,
	.bban_pic a {
		height: 110px;
	}
	.bban_dot {
		margin-top: 200px;
	}
	.htitle1 .htit_l {
		width: 100%;
		text-align: center;
	}
	.htitle1 .htit_r {
		width: 33%;
	}
	.hprocen {
		padding-top: 10px;
	}
	.htitle1 .htit_r a {
		display: none;
	}
	.hprocate li {
		width: 48%;
	}
	.hprocate li i {
		width: 20px;
		height: 20px;
		line-height: 20px;
		margin-top: 12px;
	}
	.hprocon li .hpimg {
		height: 132px;
	}
	.habbox {
		background-size: 100% 100%;
	}
	.hprocbox {
		background-position: left top;
	}
	.habimg {
		width: 100%;
		height: auto;
	}
	.habinfo {
		width: 100%;
		padding-top: 25px;
	}
	.abtel {
		margin-left: 10px;
	}
	.casecon li {
		width: 48%;
		margin: 1%;
	}
	.casecon li:nth-child(3n) {
		margin-right: 1%;
	}
	.casecon li .hcaseimg {
		height: 132px;
	}
	.inmain .casecon li .hcaseimg {
		height: 122px;
	}
	.casecon li .hca_panel h3 {
		font-size: 15px;
		display: none;
	}
	.casecon li .hca_panel {
		height: 100%;
	}
	.casecon li p {
		font-size: 15px;
	}
	.inewlic_l img{width:100%;}
	.hnew_top dl {
		width: 100%;
	}
	.hnew_top dl dd:before {
		display: none;
	}
	.htitle1 .htit_l h1,
	.htitle2 h1 {
		font-size: 20px;
	}
	.paddt30 {
		padding-top: 15px;
	}
	.hnew_top dl dt {
		height: 228px;
	}
	.hnew_top .hntmore {
		margin-top: 15px;
	}
	.hnew_top dl {
		margin: 0 2% 2% 0;
	}
	.hnew_fl dl dt {
		width: 100%;
		height: 228px;
	}
	.hnew_fl dl dd {
		width: 100%;
		margin-top: 10px;
	}
	.hnw_title {
		font-size: 20px;
	}
	.mo_bott {
		position: fixed;
		width: 100%;
		left: 0;
		right: 0;
		bottom: 0;
		height: 55px;
		background: #006AA6;
		border-top: 1px solid #006AA6;
		z-index: 9999;
		display: block;
	}
	.mo_bott li {
		float: left;
		width: 18.5%;
		padding: 0 3%;
		border-left: 1px solid #fff;
	}
	.mo_bott li:first-child {
		border-left: 0;
	}
	.mo_bott li a {
		display: block;
		height: 45px;
		color: #fff;
		padding-top: 9px;
		text-align: center;
	}
	.mo_bott li a img {
		margin: 0 auto;
		width: 20px;
		height: 19px;
	}
	.mo_bott li a span {
		display: block;
		height: 20px;
		line-height: 20px;
	}
	.f_copy {
		margin-bottom: 54px;
	}
	.ibanner {
		height: auto;
	}
	.ibancon {
		padding-top: 8px;
	}
	.ibancon h1 {
		font-size: 20px;
	}
	.iernav {
    padding: 0px 0 0px;
}
	.inertit {
		font-size: 17px;
		background: none;
    padding-left: 0;

	}
	.ibread p {
		float: right;
		margin-top: 0;
		line-height:1.5;
	}
	.ibread {
		padding-bottom: 5px;
		padding-top:5px;
	}
	.ihon_img {
		height: 121px;
	}
	.sply_box {
		text-align: left;
	}
	.forml_input,
	.forml_textra,
	#checkCode {
		width: 81.2%;
	}
	.formli img {
		right: 0;
	}
	.forml_sub,
	.czhi {
		width: 120px;
		border-radius: 0;
	}
	.iprocon li .ipropic {
		height: 123px;
	}
	.iprocon li .ipro_info h3 {
		font-size: 16px;
	}
	
	.ibannerpro .ibancon {
    padding-top: 17px;
}

	.iernav li {
		display: inline;
		float: left;
		width: 32.6%;
		margin: 1% 0 1% 1%;
		height: 36px;
    line-height: 34px;
	border: 1px solid #ccc;
    background: none;
	}
	.iernav li a {color: #777;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
	.iernav li:first-child,.iernav li:nth-child(4),.iernav li:nth-child(7),.iernav li:nth-child(10),.iernav li:nth-child(13),.iernav li:nth-child(16){margin-left:0}
	.ipicnew_ul li{width: 100%;}
	
	.inewlic_l .inewli_ul li a, .irelnew li a{width: 65%;}
	.inewlic_l .inewli_ul li span, .irelnew li span{width: 30%;}
	.inewde_tit h1{font-size: 18px;}
	.inewde_tit p span {padding: 0 10px 0 0;font-size: 14px;}
	.inewde_l .updow p a { width:75%;}
.ireltit{font-size: 20px;}
.updow p a{width: 78%;}
.irel_ly .formlitit{width: 35%;}
.irel_ly .forml_input, .irel_ly .forml_textra,.irel_ly #checkCode{width: 65%;}
.hcate li { width: 30%; margin-bottom: 5px;}
.f_copy p a{float:none;margin-left:15px;}
.casecon li .hca_panel span{line-height:1.5;}
.casecon li .hca_panel i:hover{width:100%;}
.iprocon li .ipropic img{height:100%;}
.iprod_r .iprod_info{height:110px;-webkit-line-clamp:4;}
.inertit i{display:none;}

.iprod_r .inlip{padding-left:0;}

/* .htitle1 .htit_l p,.htitle1 .htit_r,.htitle1 .htit_c{display:none;} */
}

@media screen and (max-width: 400px) {
	#banner {height: 167px;}
}

@media screen and (max-width: 375px){
	
	.head51-nav {top: 60px;}
	
	#banner {height: 156px;}
	
	.about51-title h3 b {font-size: 18px;}
	
	.about51-title span i, .about51-title span {width: 50px;height: 50px;}
	
	.about51-title span i img {padding-top: 8px;}
	
	.about51-btn li {width: 165px;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi {width: 145px;}
	
	/* .case51-con{width:125px;}
	
	.case51-con ul .case51-list{width:125px;height:127px;}
	
	.case51-con .case51-list-pic{width:125px;height:87px;}
	
	.case51-con .case51-list-con {margin-top: 87px;} */
	
}

@media screen and (max-width: 370px) {
	.abqr {width: 75px;}
	.habinfo p{padding-top:10px;}
	.abtel{margin-top:0;}
}
@media screen and (max-width: 330px) {
	.abqr {
		display: none;
	}
}
@media screen and (max-width: 320px){
	
	.head51-nav {top: 60px;}
	
	#banner {height: 133px;}
	
	.about51-title h3 b {font-size: 16px;}
	
	.about51-btn li { width: 150px;}
	
	.case51-btn a{width:90%;}
	
	.parter51-mes .forml_sub, .parter51-mes .czhi {width: 120px;}
	
	.links51 a{margin-right:20px;}
	
	/* -------------------56-------------------- */
	.case56-nav li {width: 85px;}
	
	.case56-nav a {width: 85px;}
	
	.news56-r li a {width: calc(72% - 30px);}
	
	.news56-r li span {width: 27%;}
}






