475*{
	margin: 0;
	padding: 0;
}
a:hover{
	text-decoration: none;
}
li{
	list-style: none;
}
/*导航*/
header{
	position: fixed;
	width: 100%;
	z-index: 99;
	background: #fff;
	display: flex;
 	flex-direction:row;
 	-moz-box-shadow:0px 2px 11px #BEBEBF; -webkit-box-shadow:0px 2px 11px #BEBEBF; box-shadow:0px 2px 11px #BEBEBF;
 	
}
.logo{
	margin: 2.8vh 0 2.8vh 60px;
}
.nav{
	/*position: fixed;*/
	width: 100%;
	text-align: right;
	display: flex;
 	flex-direction:row;
 	justify-content: flex-end;
 	text-align: center;
 	box-sizing: border-box;
 	padding: 0 60px 0 0;
}
.nav .nav-link{
	
	display: inline-block;
	align-items:center; 
	position: relative;
	z-index: 1;
}
.nav .nav-link a{
	display: block;
	color: #333;
	font-size: 18px;
	padding: 3.4vh 2.8vh 2.1vh 2.8vh;
}
.nav .nav-link:hover a{
	color: #fff;
}
.nav .nav-link:hover p{
	color: #fff;
}
.nav .nav-link:after{
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(#18499b, #0e72cf); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#18499b, #0e72cf); /* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(#18499b, #0e72cf); /* Firefox 3.6 - 15 */
	background: linear-gradient(#18499b, #0e72cf); /* 标准的语法 */ 
	transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);


}
.nav .nav-link:hover:after{
	transform: translateY(0);
	-o-transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);

	
}
.nav .sub-nav{
	position: absolute;
    top:95px;
	left: 0;
	width: 100%;
	display: block;
	background: #fff;
	border-bottom: 2px solid #0c337d;
	opacity: 0;
	visibility:hidden;
}

.nav .show{
	
	visibility:visible;
	opacity: 1;
	
}
.nav .sub-nav a{
	display: block;
	padding: 0;
	font-size: 14px;
	line-height: 3.2;
	color: #333 !important;
	position: relative;
	z-index: 1;
}
.ani{
	transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
}
.nav .sub-nav a:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0c337d;
	transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transform: scale3d(0,0,0);
    -o-transform: scale3d(0,0,0);
    -webkit-transform: scale3d(0,0,0);
    -moz-transform: scale3d(0,0,0);
	z-index: -1;

}
.nav .sub-nav a:hover{
	color:#fff !important;
}
.nav .sub-nav a:hover:before{
	transform: scale3d(1,1,1);
    -o-transform: scale3d(1,1,1);
    -webkit-transform: scale3d(1,1,1);
    -moz-transform: scale3d(1,1,1);
}
.nav a p{
	font-size: 12px;
	margin: 0;
	color: #666;
}
.nav-tel{
	display: inline-block;
}
.tel{
	width: 34px;
	height: 34px;
	margin: 3.4vh 18px 0 18px;
	background:url("../images/sprite.png");
	background-position: 0px -49px;
}
.nav-tel:hover .tel{
	background-position: 0px 0px;
}
.nav-tel:hover .sub-nav{
	bottom: -75px;
}
.nav-tel .sub-nav{
	width: 172px;
	right: 0;
	left: auto;
	bottom: -101px;
}
.nav-tel .sub-nav p{
	padding: 5px 10px 0 10px;
	font-size:22px;
	text-align: right;
	font-weight: bold;
	font-family: "Britannic Bold";
	color:#333 !important;
}
.nav-tel .sub-nav p i{
	font-size:14px;
	font-style: normal;
	font-weight: normal;
	color:#333 !important;
}
/*banner*/

.mouse-item p{
	color: #fff;
	text-align: center;
	margin-top:10px; 
}
.mouse{
	width: 16px;
    height: 26px;
    border: 2px solid #fff;
    padding: 4px 0;
    border-radius: 8px;
    margin: 0 auto;
    position: relative;
}
.mouse:after{
	position: absolute;
	content: "";
	width: 2px;
	height: 5px;
	top:3px;
	left: 50%;
	margin-left:-1px;
	background: #fff;
	border-radius: 2px; 
	-webkit-animation: animation1 1.5s ease-in-out infinite;
	-o-animation: animation1 1.5s ease-in-out infinite; 
	-moz-animation: animation1 1.5s ease-in-out infinite; 
	animation: animation1 1.5s ease-in-out infinite; 

}
@-webkit-keyframes animation1{
    0%{top:3px;}
    50%{top:15px;}
    100%{top:3px;}
}
@-o-keyframes animation1{
    0%{top:3px;}
    50%{top:15px;}
    100%{top:3px;}
}
@-moz-keyframes animation1{
    0%{top:3px;}
    50%{top:15px;}
    100%{top:3px;}
}
@keyframes animation1{
    0%{top:3px;}
    50%{top:15px;}
    100%{top:3px;}
}
#body-page{
	height: 100vh;
}
#banner{
	height: 100%;
}
.banner{
	height: 100%;
}
.banner-1{
	background: url("../images/banner_01.jpg") no-repeat;
	background-position: center center;
	background-size: contain;
}
.banner-2{
	background: url("../images/banner_02.jpg") no-repeat;
	background-position: center center;
	background-size: contain;
}
.banner-3{
	background: url("../images/banner_03.jpg") no-repeat;
	background-position: center center;
	background-size: contain;
}
/*二屏*/
.one-item{
	height: 100%;
	width: 100%;
	background: url("../images/hill-bg.jpg") no-repeat;
	background-position: center bottom;
}
#gongsi .float-text{
	position: absolute;
	width: 100%;
	right: 0;
	top: 15%;
	font-size: 130px;
	color: #f5f4f4;
	line-height: 1;
	text-align: right;
}
#gongsi .one-area{
	position: absolute;
	width: 100%;
	top:50%;
	margin-top:-269px;
}
#gongsi .one-item-content{
	width: 1370px;
	margin: auto;
	display: flex;
	position: relative;
}
.one-item-content .one-item-l{
	width: 50%;
	box-sizing: border-box;
	padding: 0 8% 0 0;
}
.one-item-content .one-item-l .title{
	border-bottom: 2px solid #0d337e;
	position: relative;
	padding: 0 0 30px 0;
}
.one-item-content .one-item-l .title h3{
	color: #333;
	font-size: 46px;
	font-weight: 700;
	line-height: 1.2;

}
.one-item-content .one-item-l .title h4{
	color: #b0b0b0;
	font-size: 24px;
	line-height: 1.2;

}
.one-item-content .one-item-l p{
	color: #999999;
	font-size: 14px;
	text-align: justify;
	line-height: 1.8;
	margin: 30px 0 30px 0;
}
.one-item-content .one-item-l a{
	padding: 12px 40px;
	color: #fff;
	background:#0d337e;
	display: inline-block;
}
.one-item-content .one-item-l a:hover{
	-webkit-transform:translateY(-8px);
	-o-transform:translateY(-8px);
	-moz-transform:translateY(-8px);
	transform:translateY(-8px);
	-moz-box-shadow:0px 2px 11px #707070; -webkit-box-shadow:0px 2px 11px #707070; box-shadow:0px 2px 11px #707070;
}
.one-item-content .one-item-l .title:after{
	content: "";
	width: 70px;
	height: 2px;
	background: #2196f3;
	position: absolute;
	left: 0;
	bottom: -2px;
}
.one-item-content .gongsi-shuzi{
	width: 90%;
	position:absolute;
	left: 0;
	bottom: -160px;
	background: #fff;
	-moz-box-shadow:0px 0px 20px #ededef; -webkit-box-shadow:0px 0px 20px #ededef; box-shadow:0px 0px 20px #ededef;
	padding:20px 0;
	box-sizing: border-box;
	display: flex;
}
.one-item-content .gongsi-shuzi li{
	width: 20%;
	text-align: center;
	list-style:none;
	box-sizing: border-box;
	border-right:1px solid #e8e8e8;
}
.one-item-content .gongsi-shuzi li:last-child{
	border-right:none;
}
.one-item-content .gongsi-shuzi li b{
	color: #333;
	font-size: 84px;
	font-family: "Swis721 BlkCn BT";
	line-height: 1;

}
.one-item-content .gongsi-shuzi li p{
	color: #999999;
	font-size: 16px;
}
/*第三屏*/
#honor-item .item-title{
	width: 100%;
}
#item-title h3{
	text-align: center;
	font-weight: 700;
	color: #333;
	font-size:36px;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#item-title h3:after{
	position: absolute;
	content: "";
	width: 126px;
	height: 2px;
	background: #0d337e;
	bottom: 0;
	left: 50%;
	margin-left: -63px;
	z-index: 1;
}
#item-title h3:before{
	position: absolute;
	content: "";
	width: 38px;
	height: 2px;
	background: #2196f3;
	bottom: 0;
	left: 50%;
	margin-left: -63px;
	z-index: 2;
}

#item-title p{
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	text-align: center;

}
.gray-bg{
	background: #f5f5f5;
}
#honor-item .float-text{
	position: absolute;
	width: 100%;
	right: 0;
	top: 15%;
	font-size: 276px;
	color: #edebeb;
	line-height: 1;
	text-align: center;
	letter-spacing: 40px;
}
#honor-item .one-area{
	position: absolute;
	width: 100%;
	top:114px;

}
#honor-item .honor-nav{
	display: flex;
	margin: 0;
	margin-top: 30px;
	padding: 0;
}
#honor-item .honor-nav li{
	background: #dfdfdf;
	color:#333;
	width: 20%;
	text-align: center;
	font-size: 16px;
	padding: 12px 0;
	cursor: pointer;
}
#honor-item .honor-nav .active{
	background: #0d337e;
	color: #fff;
}
#honor-item .one-item-content{
	width: 1370px;
	margin: auto;
	position: relative;
	
}
#honor-item .table{
	display: flex;
	background: #fff;
	box-sizing: border-box;
	padding: 0 16px;
	height: 48vh;
}
#honor-item .honor-btn-area{
	display: flex;
	align-items:center;
}
#honor-item .table-l{
	width: 23%;
	border-left: 2px #707070 solid;
	margin-right: 30px;
}

#honor-item .tiphonor{
	font-size: 14px;
	color: #6a6a6a;
	position: relative;
	padding-left: 40px;
	margin-top:30px; 
	cursor: pointer;


}
#honor-item #tiphonor1 .swiper-wrapper,#honor-item #tiphonor2 .swiper-wrapper,#honor-item #tiphonor3 .swiper-wrapper,#honor-item #tiphonor4 .swiper-wrapper,#honor-item #tiphonor5 .swiper-wrapper{
	display: block !important;
}
#honor-item .tiphonor:after{
	position: absolute;
	content: "";
	width: 32px;
	height: 2px;
	background:#707070; 
	left: 0;
    top: 50%;
}
#honor-item #tiphonor1 .swiper-slide-thumb-active .tiphonor,#honor-item #tiphonor2 .swiper-slide-thumb-active .tiphonor,#honor-item #tiphonor3 .swiper-slide-thumb-active .tiphonor,#honor-item #tiphonor4 .swiper-slide-thumb-active .tiphonor,#honor-item #tiphonor5 .swiper-slide-thumb-active .tiphonor{
    padding-left: 90px;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}
#honor-item #tiphonor1 .swiper-slide-thumb-active .tiphonor:after,#honor-item #tiphonor2 .swiper-slide-thumb-active .tiphonor:after,#honor-item #tiphonor3 .swiper-slide-thumb-active .tiphonor:after,#honor-item #tiphonor4 .swiper-slide-thumb-active .tiphonor:after,#honor-item #tiphonor5 .swiper-slide-thumb-active .tiphonor:after{
	width: 78px;
	background: #0d337e;
}
#honor-item #tiphonor1 .swiper-slide-thumb-active .tiphonor:before,#honor-item #tiphonor2 .swiper-slide-thumb-active .tiphonor:before,#honor-item #tiphonor3 .swiper-slide-thumb-active .tiphonor:before,#honor-item #tiphonor4 .swiper-slide-thumb-active .tiphonor:before,#honor-item #tiphonor5 .swiper-slide-thumb-active .tiphonor:before{
	position: absolute;
	top: 50%;
	margin-top:-24px;
	left:10px;
	content: "";
	width: 50px;
	height: 16px;
	background:url("../images/sprite.png");
	background-position: 100% 0;
}
#honor-item .table-r{
	width: 822px;
	box-sizing: border-box;
	padding: 0 80px;
	margin: 40px 0;
}
#honor-item .honor-prev{
	width: 74px;
	height: 74px;
	background:url("../images/sprite.png");
	background-position: 0 -102px;
}
#honor-item .honor-next{
	width: 74px;
	height: 74px;
	background:url("../images/sprite.png");
	background-position: 0 -176px;
}
#honorpic2 .swiper-slide-shadow-left,#honorpic2 .swiper-slide-shadow-right{
	display:none;
}
#honor-item .honor-area-item{
	position: relative;
}
#honor-item .honor-prev:hover{
	background-position: -74px -102px;
}
#honor-item .honor-next:hover{
	background-position: -74px -176px;
}
#honor-item #ff1,#honor-item #ff2,#honor-item #ff3,#honor-item #ff4,#honor-item #ff5{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
#honor-item #ff2,#honor-item #ff3,#honor-item #ff4,#honor-item #ff5{
	visibility: hidden;
}
/*产品*/
#ywjs-item{
	height: 100%;
	width: 100%;
	background: none;
}
#ywjs-item .float-text{
	position: absolute;
	width: 100%;
	left: 10%;
	top: 94px;
	font-size: 373px;
	color: #f5f4f4;
	line-height: 1;
	text-align: left;
}
#ywjs-item .one-area{
	position: absolute;
	width: 100%;
	top:114px;
}
#ywjs-item .one-item-content{
	width: 1680px;
	margin: auto;
	position: relative;
}
#ywjs-item .item-title{
	width: 100%;
}
#ywjs-item .project-area{
	display: flex;
	margin-top: 30px;
}
#ywjs-item .project-item{

	background: #f8f8f8;
	width: calc(( 50% - 30px ) / 2);
	margin-right: 10px;
	height: 62.9vh;
}

#ywjs-item .project-first{
	padding: 30px 0 0 0;
	box-sizing: border-box;
	display: block;
}
#ywjs-item .project-first .project-icon{
	width: 130px;
	height: 118px;
	margin: 0 auto;
}
#ywjs-item .fq-icon{
	background:url("../images/sprite.png");
	background-position: 0 -485px;
}
#ywjs-item .ws-icon{
	background:url("../images/sprite.png");
	background-position: 0 -250px;
}
#ywjs-item .hp-icon{
	background:url("../images/sprite.png");
	background-position: -128px -252px;
}
#ywjs-item .project-first .sico-img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto 40px;
}
#ywjs-item .project-first p{
	color: #bababb;
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	margin-top: 20px;
}
#ywjs-item .project-first b{
	display: block;
	font-size: 95px;
	color: #eaeaeb;
	text-align: center;
	position: relative;
	padding-top:230px; 
}
#ywjs-item .project-first b:after{
	width: 2px;
	height: 140px;
	background: #eaeaeb;
	content: "";
	position: absolute;
	top: 60px;
	left: 50%;
	margin-left: -1px;
}
#ywjs-item .on{
	width: 50%;
	position: relative;
}
#ywjs-item .project-on{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	height: 62.9vh;
	visibility: hidden;
}
#ywjs-item .pro-img {
	display: none;
	width: 50%;
	height:100%;
	overflow: hidden;
	position: relative;
}
#ywjs-item .anli1-bg{
	background: url(../images/anli1-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .anli2-bg{
	background: url(../images/anli2-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .anli3-bg{
	background: url(../images/anli3-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .anli4-bg{
	background: url(../images/anli4-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .anli5-bg{
	background: url(../images/anli5-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .anli6-bg{
	background: url(../images/anli6-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .anli7-bg{
	background: url(../images/anli7-bg.jpg);
	background-position: center center;
	background-size: 100% 100%;
}
#ywjs-item .pro-img:hover{
	background-size: 120% 120%;
}
#ywjs-item .pro-img h3{
	color: #fff;
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	font-size: 28px;
	font-weight: bold;
	margin-top: -18px;
}
#ywjs-item .pro-img:after{
	content: "";
	width:30px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: 38px;

}
#ywjs-item .pro-img .fl-enter{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content:space-between;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	bottom: 40px;
	left: 0;
}
#ywjs-item .pro-img .fl-enter b{
	color: #fff;
	display: inline-block;
	text-align: center;
	font-size: 28px;
}
#ywjs-item .pro-img .fl-enter span{
	color: #fff;
	display: inline-block;
	text-align: right;

}
#ywjs-item .text-area{
	width: 50%;
	box-sizing: border-box;
	padding: 40px 30px;
	background: #0d337e;
	height: 100%;
}
#ywjs-item .text-area li{
	border-bottom: 2px solid #fff;
	padding: 20px 0;
	height: 20%;
	display: inline-flex;
	align-items: center;
	width: 100%;
}
#ywjs-item .project-item:nth-child(2) .text-area li{
	height: 33.33%;
}
#ywjs-item .text-area li a{
	display: none;
	color: #fff;
	font-size: 16px;
	text-align: center;
	width: 100%;
}
#ywjs-item .text-area li a:hover{
	transform: translateY(10px);
}
#ywjs-item .project-area .on .project-first{
	display: none;
}
#ywjs-item .project-area .on .project-on{
	visibility: visible;
}
#ywjs-item .project-area .on .project-on .pro-img{
	display: block;
}
#ywjs-item .project-area .on .text-area li a{
	display: block;
}
/*整体解决方案*/
#ztjjfa-item{
	height: 100%;
	width: 100%;
	position: relative;
}
#ztjjfa-item .one-area{
	position: absolute;
	width: 100%;
	top:114px;
}
#ztjjfa-item .one-item-content{
	width: 1370px;
	margin: auto;
	position: relative;
}
#ztjjfa-item .item-title{
	width: 100%;
}
#ztjjfa-item .item-title h3{
	color: #fff;
}
.fanganbg1{
	background: url("../images/jjfa-bg_22.jpg") no-repeat;
	background-position: center bottom;
	-webkit-animation: pgbg2 1s ease-in-out ;
	-o-animation: pgbg2 1s ease-in-out ; 
	-moz-animation: pgbg2 1s ease-in-out ; 
	animation: pgbg2 1s ease-in-out ;
}
.fanganbg2{
	background: url("../images/jjfa2-bg.jpg") no-repeat;
	background-position: center bottom;
	-webkit-animation: pgbg3 1s ease-in-out ;
	-o-animation: pgbg3 1s ease-in-out ; 
	-moz-animation: pgbg3 1s ease-in-out ; 
	animation: pgbg3 1s ease-in-out ;

}
.fanganbg3{
	background: url("../images/jjfa3-bg.jpg") no-repeat;
	background-position: center bottom;
	-webkit-animation: pgbg4 1s ease-in-out ;
	-o-animation: pgbg4 1s ease-in-out ; 
	-moz-animation: pgbg4 1s ease-in-out ; 
	animation: pgbg4 1s ease-in-out ;
}
.fanganbg4{
	background: url("../images/jjfa4-bg.jpg") no-repeat;
	background-position: center bottom;
	-webkit-animation: pgbg5 1s ease-in-out ;
	-o-animation: pgbg5 1s ease-in-out ; 
	-moz-animation: pgbg5 1s ease-in-out ; 
	animation: pgbg5 1s ease-in-out ;
}
@-webkit-keyframes pgbg2{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-o-keyframes pgbg2{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-moz-keyframes pgbg2{
   0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@keyframes pgbg2{
   0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-webkit-keyframes pgbg3{
   0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-o-keyframes pgbg3{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-moz-keyframes pgbg3{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@keyframes pgbg3{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-webkit-keyframes pgbg4{
     0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-o-keyframes pgbg4{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-moz-keyframes pgbg4{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@keyframes pgbg4{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-webkit-keyframes pgbg5{
     0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-o-keyframes pgbg5{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@-moz-keyframes pgbg5{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
@keyframes pgbg5{
    0%{background-size: 102% 102%;}
    100%{background-size: 100% 100%;}
}
#ztjjfa-item .jjfa-info{
	position: absolute;
	left: 0;
	top:30%;
	width: 100%;
	margin-top: -56px;
}
#ztjjfa-item .jjfa-info li{
	width: 60%;
	color: #fff;
	margin: 0 auto;
}
#ztjjfa-item .jjfa-info li h3{
	text-align: center;
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 700;
}
#ztjjfa-item .jjfa-info li p{
	font-size: 16px;
	line-height: 1.9;
	text-indent: 2em;
}
.jjfa2,.jjfa3,.jjfa4{
	display: none;
}
#ztjjfa-item .jjfa-info-area{
	position: absolute;
	width: 100%;
	bottom: 60px;
	left: 0;
}
#ztjjfa-item .jjfa-info-item{
	width: 1370px;
	margin: 0 auto;
	border-bottom: 1px solid #0d337e;
	background-color: rgba(255,255,255,.34);
	display: flex;
	padding: 0;
}
#ztjjfa-item .jjfa-info-item li{
	box-sizing: border-box;
	width: 33.33%;
	padding: 40px 0 40px 56px;
	cursor: pointer;
}
#ztjjfa-item .jjfa-info-item li:last-child .jjfa-info-item-cont{
	border-right: 0;
}
#ztjjfa-item .jjfa-info-item-cont{
	display: flex;
	align-items: center;
	width: 100%;
	border-right: 1px solid #fff;
}
#ztjjfa-item .jjfa-info-item-cont .jjfa-info-item-l{
	width: 53px;
	height: 48px;
}
#ztjjfa-item .jjfa-info-item-cont .shuju-icon{
	background:url("../images/sprite.png");
	background-position: -48px 0;
}
#ztjjfa-item .jjfa-info-item-cont .fangan-icon{
	background:url("../images/sprite.png");
	background-position: -101px 0;
}
#ztjjfa-item .jjfa-info-item-cont .shishi-icon{
	background:url("../images/sprite.png");
	background-position: -156px 0;
}
#ztjjfa-item .jjfa-info-item-cont .xiaoguo-icon{
	background:url("../images/sprite.png");
	background-position: -213px 0;
}
#ztjjfa-item .jjfa-info-item-cont .jjfa-info-item-r{
	color: #fff;
	margin-left: 20px;
}
#ztjjfa-item .jjfa-info-item-cont .jjfa-info-item-r p{
	font-size: 16px;
	margin: 0;
	line-height: 1.6;
}
#ztjjfa-item .jjfa-info-item-cont .jjfa-info-item-r span{
	font-size: 14px;
}
#ztjjfa-item .jjfa-info-item .on{
	background: #0d337e;
	-webkit-animation: anibg .5s ease-in-out ;
	-o-animation: anibg .5s ease-in-out ; 
	-moz-animation: anibg .5s ease-in-out ; 
	animation: anibg .5s ease-in-out ;


}
@-webkit-keyframes anibg{
    0%{background: #3465c5;}
    100%{background: #0d337e;}
}
@-o-keyframes anibg{
    0%{background: #3465c5;}
    100%{background: #0d337e;}
}
@-moz-keyframes anibg{
   0%{background: #3465c5;}
    100%{background: #0d337e;}
}
@keyframes anibg{
   0%{background: #3465c5;}
    100%{background: #0d337e;}
}
/*服务案例*/
#fwal-item{
	height: 100%;
	width: 100%;
	background: none;
}
#fwal-item .one-area{
	position: absolute;
	width: 100%;
	top:16vh;
}
#fwal-item .one-item-content{
	width: 100%;
	margin: auto;
	position: relative;
}
#fwal-item .item-title h3{
	text-align: left;
}
#fwal-item .fwal-item-title{
	display: flex;
	justify-content:space-between;
	align-items: center;
}
#fwal-item .fwal-item-title-r{
	width: 165px;
	display: flex;
	justify-content:space-between;
}
#fwal-item .fwal-item-title-r .fwal-prev{
	width: 74px;
	height: 74px;
	background:url("../images/sprite.png");
	background-position: 0 -102px;
}
#fwal-item .fwal-item-title-r .fwal-next{
	width: 74px;
	height: 74px;
	background:url("../images/sprite.png");
	background-position: 0 -176px;
}
#fwal-item .fwal-prev:hover{
	background-position: -74px -102px;
}
#fwal-item .fwal-next:hover{
	background-position: -74px -176px;
}

#fwal-item .item-title h3:before{
	left: 0;
    margin-left: 0;
}
#fwal-item .item-title h3:after{
	left: 0;
    margin-left: 0;
}
#fwal-item .fwal-al img{
    max-width: 100%;
    height: 336px;
    overflow: hidden;
}
#fwal-item .fwal-al{
	position: relative;
	display: block;
}
#fwal-item .fwal-al .blbg{
	box-sizing: border-box;
	padding: 50px 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#fwal-item .fwal-al .heise{
	background: rgba(0,0,0,.4);
}
#fwal-item .fwal-al .heise:hover{
	background: url(../images/al-bg_25.jpg) no-repeat;
	background-position: center center;
	background-color: rgba(0,0,0,0);
}
#fwal-item .fwal-al .blbg h3{
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	margin-top: 0px;
    margin-bottom: 0px;
}
#fwal-item .fwal-al .blbg h4{
    position: absolute;
    bottom: 30px;
    left: 20px;
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
#fwal-item #fwal-area{
	margin-top: 9vh;
	overflow: initial;
}
#fwal-item .anl-more-btn{
	background:#d9d9d9;
	color: #fff;
	width: 164px;
	margin: 0 auto;
	line-height: 46px;
	text-align: center; 
	display: block;
	margin-top: 5vh; 
}
#fwal-item .anl-more-btn:hover{
	background: #0d337e;
}
/*第七屏*/
#news-area{
	display: flex;
	margin-top:3vh; 
}
#news-area .news-area-l{
	width:68%;
	min-height: 55vh; 
}
#news-area .news-area-l-title{
	display: flex;
	justify-content: space-between;
	margin-bottom: 1vh;
}
#news-area .news-area-l-title div{
	display: flex;
	align-items: center;
}
#news-area .news-area-l-title div .on{
	color: #fff;
	background: #1a4191
}
#news-area .news-area-l-title p{
	width: 170px;
	text-align: center;
	color: #333;
	line-height: 2.2;
	font-size: 14px;
	cursor: pointer;
}
#news-area .news-area-l-title a{
	display: block;
	font-size: 14px;
	color: #666;
}
#news-area .news-area-l-title a:hover{
	color: #1a4191;
}
#news-area .news-area-l-item{
	background: #fff;
}
#news-area .news-area-l-item .top-news{
	display: flex;
}
#news-area .top-news .news-imgs{
	width: 54%;
	height: 300px;
	display: block;
	overflow: hidden;
}
#news-area .top-news .news-imgs:hover img{
	transform: scale(.9,.9);
}
#news-area .top-news .news-imgs img{
	max-width: 100%;
}
#news-area .top-news .news-text-info{
	box-sizing: border-box;
	padding: 35px;
	position: relative;
	width: 46%;
}
#news-area .top-news .news-text-info h4{
	font-size: 16px;
	color: #808080;
}
#news-area .top-news .news-text-info h3{
	font-size: 24px;
	color: #333;
	line-height: 32px;
}
#news-area .top-news .news-text-info p{
	color: #666666;
	font-size: 14px;
	line-height: 25px;
}
#news-area .top-news .news-text-info a{
	display: block;
	position: absolute;
	bottom: 5px;
	left: 35px;
	background:#808080;
	color: #fff;
	font-size:14px;
	padding: 4px 16px;  
}
#news-area .top-news .news-text-info a:hover{
	background: #1a4191;
}
#news-area .other-new{
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 14px 20px;
	border-bottom: 1px dotted #ededed;
}
#news-area .other-new a{
	display: block;
	color: #333;
	font-size: 16px;
}
#news-area .other-new a:hover{
	color: #1a4191;
}
#news-area .other-new span{
	display: block;
	text-align: right;
	color: #808080;
	font-size: 14px;
}
#news-area .news-area-r-item{
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	background: #fff;
	padding: 40px 30px;
	height: 55vh;
}
#news-area .news-area-r-item:after{
	position: absolute;
	content: "Q&A";
	font-size: 97px;
	color: #eff0f5;
	right: -15px;
	top: -40px;
	font-weight: bolder;
}
#news-area .news-area-r-item #question{
	overflow: initial;
	height: 55vh;
}
#news-area .news-area-r-item .qa-area{
	display: flex;
	align-items: flex-start;

}
#news-area .news-area-r-item .qa-area .qa-area-l{
	color: #fff;
	width: 24px;
	min-width: 24px;
	height: 24px;
	text-align: center;
}
#news-area .news-area-r-item .qa-area .qa-area-l p{
	line-height: 1.4;
	margin:0;
}
#news-area .news-area-r-item .qa-area .qa-area-l p:nth-child(1){
	background: #1a4191;
	min-width: 24px;
}
#news-area .news-area-r-item .qa-area .qa-area-l p:nth-child(2){
	background: #808080;
	min-width: 24px;
}
#news-area .news-area-r-item .qa-area .qa-area-r{
	margin-left: 12px;
	display: block;
}
#news-area .news-area-r-item .qa-area .qa-area-r:hover h3{
	color:#1a4191 
}
#news-area .news-area-r-item .swiper-slide{
	border-bottom: 1px dotted #808080;
}
#news-area .news-area-r-item .qa-area .qa-area-r h3{
	margin:0;
	font-size: 16px;
	color: #333;
}
#news-area .news-area-r-item .qa-area .qa-area-r p{
	margin:0;
	color: #666;
	 overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 5px;
}
#news-area .news-area-r{
	width: 30%;
	margin-left: 2%;
}
#news-area #new2{
	display: none;
}
/*合作企业*/
#hezuo-item{
	height: 100%;
	width: 100%;
	background: none;
}
#hezuo-item .one-area{
	position: absolute;
	width: 100%;
	top:16.4vh;
}
#hezuo-item .one-item-content{
	width: 1370px;
	margin: auto;
	position: relative;
}
#hezuo-item .item-title{
	width: 100%;
}
.hezuo-area ul{
	width: 100%;
	overflow: hidden;
	padding: 30px 0;
}
.hezuo-area{
	
}
.hezuo-area li{
	min-width: 20%;
	width: 20%;
	box-sizing: border-box;
	float: left;
	padding: 10px;
	height: 14.2vh;
	position: relative;
	margin-top: 15px;
}
.hezuo-area li img{
	width: 100%;
	display: block;
	-o-filter: grayscale(100%); 
	-moz-filter: grayscale(100%); 
	-webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
    filter: grayscale(100%);
    position: absolute;
    top: 0;
    left: 0;
}
#hezuo-item .hezuo-area li:hover{
	
}
.hezuo-area li:hover img{
	-o-filter: grayscale(0%); 
	-moz-filter: grayscale(0%); 
	-webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
    filter: grayscale(0%);
	transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
 	-moz-box-shadow: 0px 0px 20px #ededef;
    -webkit-box-shadow: 0px 0px 20px #ededef;
    box-shadow: 0px 0px 20px #ededef;

}
/*底部*/
footer{
	background: #303030;
}
footer .one-item-content{
	width: 1370px;
	margin: 0 auto;
	padding: 70px 0 25px 0;
}
footer .foot-top{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
}
footer .foot-t-l{
	width: 68%;
	display: flex;
}
footer .foot-t-l li{
	width: 25%;
}
footer .foot-t-l li b{
	display: block;
	font-size: 16px;
	color: #bfbfbf;
	margin-bottom: 30px;
}
footer .foot-t-l li a{
	display: block;
	font-size: 14px;
	color: #a2a2a2;
	margin-bottom: 20px;
}
footer .foot-t-l li a:hover{
	color: #fff;
}
footer .foot-t-r{
	width: 375px;
	display: flex;
	align-items: center;
}
footer .foot-t-r-l{
	text-align: right;
	margin-right:25px; 
}
footer .foot-t-r-l h3{
	color:#bfbfbf;
	margin: 0;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 30px;
}
footer .foot-t-r-l p{
	color:#bfbfbf;
	margin: 0;
	margin-bottom: 10px;
}
footer .foot-t-r-r{
	padding: 0 0 0 25px;
	border-left: 2px solid #7f7f7f;
	width: 30%;
}
footer .foot-t-r-r img{
	width: 100%;
}
footer .foot-bottom{
	padding: 20px 0;
	text-align: center;
	color:#bfbfbf;
	border-top: 2px solid #484848; 
}
/*内页*/
.page-banner{
	height: 580px;
	-webkit-animation: pgbg 1s ease-in-out ;
	-o-animation: pgbg 1s ease-in-out ; 
	-moz-animation: pgbg 1s ease-in-out ; 
	animation: pgbg 1s ease-in-out ;
}
.page-banner p{
    text-align: center;
    font-weight: bold;
    color: #fff;
    letter-spacing: 10px;
    font-size: 60px;
    line-height: 580px;
}
@-webkit-keyframes pgbg{
    0%{transform: translateY(-60px);opacity:.8;}
    100%{transform: translateY(0px);opacity:1;}
}
@-o-keyframes pgbg{
    0%{transform: translateY(-60px);opacity:.8;}
    100%{transform: translateY(0px);opacity:1;}
}
@-moz-keyframes pgbg{
   0%{transform: translateY(-60px);opacity:.8;}
    100%{transform: translateY(0px);opacity:1;}
}
@keyframes pgbg{
   0%{transform: translateY(-60px);opacity:.8;}
    100%{transform: translateY(0px);opacity:1;}
}

.gsbanner{
	background:url(../images/pagejian_02.jpg) center center;
}
#jianjie .gs-page-area{
	display: flex;
	margin-top: 25px;
}
.page-nav{
	border-bottom: 2px solid #f0f0f0;
	background: #fff;
}
.page-nav ul{
	display: flex;
	margin: 0 auto;
}
.page-nav li{
	padding: 20px 0;
	width: 140px;
}
.page-nav li a{
	font-size: 16px;
	display: block;
	color: #333;
	text-align: center;
}
.page-nav ul .on{
	position: relative;
}
.page-nav ul .on a{
	color: #0d337e;
}
.page-nav ul a:hover{
	color: #0d337e;
}
.page-nav ul .on:after{
	position: absolute;
	width: 100%;
	height: 2px;
	background:#0d337e;
	bottom: -2px;
	left: 0; 
	content: "";
}
#jianjie .gs-page-area-r img {
    width: 450px;
    margin-top: 60px;
}
#jianjie .gs-page-area{
	display: flex;
	justify-content: space-between;
}
#jianjie .gs-page-area-l{
	width: 650px;
}
#jianjie .gs-page-area-l h3{
	font-size:26px;
	color: #333;
	font-weight: bold; 
	padding-left: 28px;
	margin:0;
	position: relative;
	z-index: 1;
	margin-top: 80px;
}
#jianjie .gs-page-area-l h3:after{
	z-index: -1;
	content: "SUANDA";
	font-weight:bold;
	font-size:68px;
	color:#d1ddf7;
	position: absolute;
	font-family: "Agency FB";
	top: -40px;
	left: 0; 
}
#jianjie .gs-page-area-l h4{
	font-size:18px;
	color: #333;
	padding-left: 28px;
	margin:0;
	margin-bottom:40px;
}
#jianjie .gs-page-area-l p{
	text-indent: 2em;
	color: #676767;
	line-height: 1.8;
	text-align: justify;
	font-size: 16px;
}
#jianjie .gs-info{
	text-indent: 2em;
	color: #676767;
	line-height: 1.8;
	text-align: justify;
	margin-top:10px; 
	margin-bottom: 50px;
}
#jianjie .num-area{
	display: flex;
	justify-content: space-between;
	margin: 75px 0 65px 0;
}
#jianjie .num-area li p{
	font-size: 16px;
	color:#676767; 
}
#jianjie .num-area li div{
	display: flex;
	align-items:flex-end;
	margin: 20px 0 0 0;
}
#jianjie .num-area li div b{
	font-size: 78px;
	font-family: "Bahnschrift";
	color: #333;
	line-height: 0.7;
}
#jianjie .num-area li div span{
	font-size: 16px;
	color: #676767;
}
.gsbg{
	text-align: center;
	font-weight: bold;
	color: #fff;
	letter-spacing: 10px;
	font-size: 60px;
	line-height: 260px;
	background: url(/static/images/gsbg.jpg) center center no-repeat;
	background-attachment:fixed; 
}
#pgfwanl{
	margin: 70px auto 50px auto;
}
#pgfwanl .fwal-al img{
	max-width: 100%;
    height: 336px;
    overflow: hidden;
}
#pgfwanl .fwal-al{
	position: relative;
	display: block;
	width: 31%;
	margin-right: 2%;
	margin-bottom: 2%;
	float: left;
}
#pgfwanl .fwal-al:nth-child(3){
	margin-right: 0;
}
#pgfwanl .fwal-al:nth-child(6){
	margin-right: 0;
}
.pgfwanl-area{
	overflow: hidden;
	margin-top: 45px;
}
#pgfwanl .fwal-al .blbg{
	box-sizing: border-box;
	padding: 40px 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#pgfwanl .fwal-al .heise{
	background: rgba(0,0,0,.4);
}
#pgfwanl .fwal-al .heise:hover{
	background: url(../images/al-bg_25.jpg) no-repeat;
	background-position: center center;
	background-color: rgba(0,0,0,0);
}
#pgfwanl .fwal-al .blbg h3{
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	margin-top: 0px;
    margin-bottom: 0px;
}
#pgfwanl .fwal-al .blbg h4{
	position: absolute;
	bottom: 30px;
	right: 20px;
	text-align: right;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}
#pgfwanl .anl-more-btn{
	background:#d9d9d9;
	color: #fff;
	width: 164px;
	margin: 0 auto;
	line-height: 46px;
	text-align: center; 
	display: block;
	margin-top: 5vh; 
}
#pgfwanl .anl-more-btn:hover{
	background: #0d337e;
	transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
#ttrongyu .rongyu-title{
	border-bottom: 4px solid #0d337e;
	position: relative;
	margin: 10px 0 0 0;
}
#ttrongyu .rongyu-title h3{
	color: #333;
	font-size: 32px;
	margin: 0;
	padding: 18px 0;
	font-weight: 700;
}
#ttrongyu .rongyu-title:after{
	content: "";
	width: 40px;
	height:4px;
	background: #2196f3;
	position: absolute;
	left: 0;
	bottom: -4px; 
}
.iso-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.iso-area li {
	width: 33%;
	padding: 25px 0;
}
.iso-area li div{
	text-align: center;
	box-sizing: border-box;
    position: relative;
    margin: 25px 0;

}
.iso-area li div img{
	max-width: 100%;
	-moz-box-shadow: 0px 0px 20px #ededef;
    -webkit-box-shadow: 0px 0px 20px #ededef;
    box-shadow: 0px 0px 20px #ededef;
}
.iso-area li:nth-child(3) div:after{
	background: none;
}
.iso-area li div:after{
	position: absolute;
	content: "";
	width:2px;
	height:300px;
	background:#ebebeb;
	right: 0;
	top:50%;
	margin-top: -150px;

}
.iso-area li div:before{
	position: absolute;
	content: "";
	width: 55px;
	height: 66px;
/* 	background: url(../images/huizhang.png) center center; */
	right: 25px;
	top:-25px;
}
.iso-area li p{
	font-size: 24px;
	color: #333;
	font-weight: bolder;
	text-align: center; 
}
.qtrongyu-area{
	overflow: hidden;
}
.qtrongyu-area li {
	width: 50%;
	min-width: 50%;
	padding: 25px 0;
	float: left;
}
.qtrongyu-area li div{
	text-align: center;
	box-sizing: border-box;
    position: relative;
    margin: 25px 0;

}
.qtrongyu-area li div img{
	max-width: 100%;
	-moz-box-shadow: 0px 0px 20px #ededef;
    -webkit-box-shadow: 0px 0px 20px #ededef;
    box-shadow: 0px 0px 20px #ededef;
}
.qtrongyu-area li:nth-child(even) div:after{
	background: none;
}
.qtrongyu-area li div:after{
	position: absolute;
	content: "";
	width:2px;
	height:300px;
	background:#ebebeb;
	right: 0;
	top:50%;
	margin-top: -150px;

}
.qtrongyu-area li div:before{
	position: absolute;
	content: "";
	width: 55px;
	height: 66px;
	background: url(../images/huizhang.png) center center;
	right: 25px;
	top:-25px;
}
.qtrongyu-area li p{
	font-size: 24px;
	color: #333;
	font-weight: bolder;
	text-align: center; 
}
.gaoxin li div:before{
	position: absolute;
	content: "";
	width: 55px;
	height: 66px;
	background: url(../images/huizhang.png) center center;
	right: 145px;
	top:-25px;
}
/*合作企业内页*/
#tthezuo .hezuo-area{
	margin: 40px 0;
}
#tthezuo .hezuo-area li{
	min-width: 25%;
	width: 25%;
	box-sizing: border-box;
	float: left;
	padding: 10px;
	height: 16.8vh;
	position: relative;
	margin-top: 15px;
}
#tthezuo .hezuo-area li img{
	width: 100%;
	display: block;
	-o-filter: grayscale(100%); 
	-moz-filter: grayscale(100%); 
	-webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
    filter: grayscale(100%);
    position: absolute;
    top: 0;
    left: 0;
}
#tthezuo.hezuo-area li:hover{
	
}
#tthezuo .hezuo-area li:hover img{
	-o-filter: grayscale(0%); 
	-moz-filter: grayscale(0%); 
	-webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
    filter: grayscale(0%);
	transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
 	-moz-box-shadow: 0px 0px 20px #ededef;
    -webkit-box-shadow: 0px 0px 20px #ededef;
    box-shadow: 0px 0px 20px #ededef;

}
/* 事业部内页 */
.syb_subt{
	margin: 0px auto 100px;
}
.syb_subt ul {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 0;
}
.syb_subt ul li{
	width: 20%;
	text-align: center;
    box-sizing: border-box;
	position: relative;
}
.syb_subt ul li a{
	color: black;
	font-size: 20px;
	line-height: 50px;
	width: 100%;
	text-decoration: none;
	display: block;
}
.syb_subt ul li:not(:nth-child(5))::after{
	content: "";
	height: 30px;
	width: 1px;
	background: linear-gradient(to bottom, #fff, #18499b, #fff);
	position: absolute;
	right: 0px;
	top: 10px;
}
.syb_subt ul li.hover
,.syb_subt ul li:hover{
	border-bottom: 2px solid #18499b;
}
.syb_subt ul li.hover::before{
	content: "";
	border-radius: 50%;
	width: 10px;
	height: 10px;
	background: #fff;
	position: absolute;
	bottom: -6px;
	left: 48%;
	border: 2px solid #18499b;
}
.shiyebu{
	    margin-top: 50px;
}
.about_1{
	background: linear-gradient(to left, rgb(26, 41, 128), rgb(38, 208, 206));
	position: relative;
	height: 480px;
	width: 1100px;
	margin: 20px auto;
}
.about_1 .abo-text{
	padding: 60px 80px;
}
.about_1 .abo-text h3{
font-size: 35px;
    color: #fff;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}
.about_1 .abo-text p{
	font-size: 16px;
	margin-top: 40px;
	color: #fff;
	width: 55%;
	text-align: justify;
}
.about_1 .abo-text p:last-child{
	font-size: 22px;
	font-weight: 600;
	font-style: italic;
	color: beige;
}
.about_1 .abo-text h3::after{
	content: "";
	position: absolute;
	height: 3px;
	width: 200px;
	background-color: #fff;
	top: 50px;
	left: 0;
}
.about_1 .abo-img{
	position: absolute;
	right: -30px;
	bottom: 30px;
	overflow: hidden;
	width: 500px;
}
.about_1 .abo-img img{
	transition: all 0.5s ease;
}
.about_1 .abo-img:hover img{
	transform:scale(1.1)
}
.about_3{
	background: #f7f7f7;
	padding: 10px 0 50px;
}
.about_3 h3{
	font-size: 36px;
	color: #333;
	position: relative;
	text-align: center;
}
.about_3 h3:after{
	position: absolute;
	content: "";
	width: 126px;
	height: 2px;
	background: #0d337e;
	bottom: -15px;
	left: 50%;
	margin-left: -63px;
	z-index: 1;
}
.about_3 h3:before{
	position: absolute;
	content: "";
	width: 38px;
	height: 2px;
	background: #2196f3;
	bottom: -15px;
	left: 50%;
	margin-left: -63px;
	z-index: 2;
}
.about_3 ul{
	display: flex;
	justify-content: space-evenly;
	margin-top: 50px;
	padding: 0;
	flex-wrap: wrap;
}
.about_3 ul li{
	width: 20%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #548aff;
	border-radius: 35%;
	height: 200px;
	transition: all 0.5s ease;
}
.about_3 ul li:hover{
	transform: translateY(-10px);
}
.about_3 ul li .ico{
	height: 70%;
	position: relative;
}
.about_3 ul li .ico img{
	padding-top: 45px;
}
.about_3 ul li .ico::after{
	content: "";
	height: 100px;
	width: 100px;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	left: -50%;
	border: 2px solid #fff;
}
.about_3 ul li p{
	height: 30%;
	font-size: 25px;
	color: #548aff;
	font-weight: 600;
	box-shadow: 0px 6px 10px #e6e6e6;
	background-color: #fff;
	width: 100%;
	text-align: center;
	margin: 0;
	line-height: 2.5;
	letter-spacing: 3px;
	transition: all 0.5s ease;
}
.about_3 ul li:hover p{
	background-color: #548aff;
	color: #fff;
}
.about_3 ul li:nth-child(2) p{
	color: #2ccde8;
}
.about_3 ul li:nth-child(3) p{
	color: #2ce8b5;
}
.about_3 ul li:nth-child(4) p{
	color: #e8832c;
}
.about_3 ul li:nth-child(2):hover p{
	background-color: #2ccde8;
	color: #fff;
}
.about_3 ul li:nth-child(3):hover p{
	background-color: #2ce8b5;
	color: #fff;
}
.about_3 ul li:nth-child(4):hover p{
	background-color: #e8832c;
	color: #fff;
}
.about-4 h3{
	font-size: 36px;
	color: #333;
	font-weight: 600;
	position: relative;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.about-4 h3:after{
	position: absolute;
	content: "";
	width: 126px;
	height: 2px;
	background: #0d337e;
	bottom: 0;
	left: 50%;
	margin-left: -63px;
	z-index: 1;
}
.about-4 h3:before{
	position: absolute;
	content: "";
	width: 38px;
	height: 2px;
	background: #2196f3;
	bottom: 0;
	left: 50%;
	margin-left: -63px;
	z-index: 2;
}
.about-4 .abo-p{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.about-4 .abo-p p{
	font-size: 20px;
	color: #104299;
	font-weight: 600;
	margin-left: 50px;
	position: relative;
	margin: 30px;
	letter-spacing: 5px;
}
.about-4 .abo-p p:not(:last-child)::after{
	position: absolute;
	content: "";
	background: black;
	height: 10px;
	width: 10px;
	left: 150%;
	border-radius: 50%;
	top: 10px;
}
.about-4 .a4-img ul{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 0;
}
.about-4 .a4-img ul li{
	position: relative;
	margin-bottom: 30px;
	width: 30%;
	transition: all 0.5s ease;
	height: 250px;
	overflow: hidden;
}
.about-4 .a4-img ul li img{
	width: 100%;
	height: 100%;
}
.about-4 .a4-img a{
	font-size: 23px;
	line-height: 1.5;
	display: block;
	width: 100%;
	height: 250px;
	color: #fff;
	position: relative;
	transition: all 0.5s ease;
	background-color: #3535358f;
	top: -250px;
}
.about-4 .a4-img li:hover img{
	transform: scale(1.1);
	transition: all 0.5s ease;
}
.about-4 .a4-img a p{
	position: absolute;
	transition: all 0.5s ease;
}
.about-4 .a4-img a p:first-child{
	top: 110px;
	left: calc( 50% - 100px );
}
.about-4 .a4-img a p:last-child{
	opacity: 0;
	bottom: 40px;
	left: calc( 50% - 60px );
}
.about-4 .a4-img a:hover p:first-child{
	top: 90px;
}
.about-4 .a4-img a:hover p:last-child{
	opacity: 1;
	bottom: 60px;
	transition-delay: 0.1s;
}


/*联系我们*/
#ttlxwm{
	margin: 50px auto 70px auto;
	background: #f4f4f4;
	display: flex;
}
.ttlxwm-l{
	width: 570px;
	box-sizing: border-box;
	padding: 10px 20px;
}
.ttlxwm-r{
	width:560px;
}
#ttlxwm .rongyu-title{
	border-bottom: 4px solid #0d337e;
	position: relative;
	margin: 10px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#ttlxwm .rongyu-title h3{
	color: #333;
	font-size: 32px;
	margin: 0;
	padding: 10px 0;
	font-weight: 700;
}
#ttlxwm .rongyu-title span{
	font-size: 14px;
	color: #999;
}
#ttlxwm .rongyu-title:after{
	content: "";
	width: 40px;
	height:4px;
	background: #2196f3;
	position: absolute;
	left: 0;
	bottom: -4px; 
}
.contact-area p{
	color: #333333
	margin-bottom:15px;
}
.contact-area{
	margin-top:20px;
}
.contact-area div{
	padding-top: 5px;
}
.contact-area div img{
	display: inline-block;
	margin-right: 10px;
}
.liuyan-area{
	margin-top: 25px;
}
.liuyan-area input[type="text"]{
	border: none;
	background: #fff;
	font-size: 16px;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 15px;
	width: 100%;
}
.liuyan-area textarea{
	border: none;
	background: #fff;
	font-size: 16px;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 15px;
	width: 100%;
	resize:none;
}
.liuyan-area input[type="submit"]{
	border: none;
	background: #0d337e;
	font-size: 16px;
	width: 140px;
	display: block;
	margin: 15px auto 10px;
	color: #fff;
	line-height: 36px;
}
.liuyan-area p{
	text-align: center;
	color: #2196f3;
	font-size: 12px;
}
/*业务*/
.feqibanner{
	background:url(../images/fqcl_02.jpg) center center;
	display: flex;
	align-items: center;
}
.bus-banner-txt{
	width: 319px;
	margin:0 auto;
}
.bs-nav{
	margin: 0 auto;
	position: relative; 
}
.bs-nav-area{
	width: 100%;
	position: absolute;
	display: flex;
	justify-content: space-between;
	background: #fff;
	-moz-box-shadow: 0px 0px 10px #ededef;
    -webkit-box-shadow: 0px 0px 10px #ededef;
    box-shadow: 0px 0px 10px #ededef;
    left: 0;
    top:-50px;
    margin: 0;
    padding: 0;
}
.bs-nav-area li{
	display: flex;
	justify-content: center;
	width: 33.3333333%;
	padding: 20px 0;
}
.bs-nav-area li a{
	display: flex;
	align-items: center;
}
.bs-nav-area li a:hover .bs-nav-text{
	margin-left: 40px;
}
.bs-nav-area li a .bs-nav-icon{
	width: 46px;
	height: 46px;
}
.jjfa1-nav-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -461px -33px;
}
.jjfa2-nav-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -507px -33px;
}
.jjfa3-nav-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -555px -33px;
}
.bs-nav-text{
	margin-left:20px; 
}
.bs-nav-text h3{
	color: #999999;
	font-size:24px;
	font-weight: bold; 
	margin: 0;
	max-width: 200px;
}
.bs-nav-text p{
	color: #999999;
	font-size:16px;
	margin: 0;
}
.bs-nav-area .on{
	background: #0d337e;
}
.bs-nav-area .on .bs-nav-icon{
	background-position-y:-79px;
}
.bs-nav-area .on .bs-nav-text h3,.bs-nav-area .on .bs-nav-text p{
	color: #fff;
}
.bs-content{
	padding: 75px 0 0 0;
}
#business .bs-content-area h3{
	margin: 35px 0 20px 0; 
	font-size:32px;
	color: #333;
	font-weight: bold;
}
#business .bs-content-area p{
	font-size: 14px;
	color:#666666;
	line-height: 1.8;
}
#business .fenlei-img-area{
	overflow: hidden;
}
#business .fenlei-img-area li{
	width: 32%;
	margin:0 2% 2% 0;
	float:left;
	overflow: hidden;
}
#business .fenlei-img-area li:hover a img{
	transform: scale(1.1,1.1);
	-webkit-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
}
#business .fenlei-img-area li:hover a .black-bg h3{
	top:30%;
}
#business .fenlei-img-area li:hover a .black-bg p{
	bottom:40px;
}
#business .fenlei-img-area li a{
	display: block;
	position: relative;
	width: 100%;
}
#business .fenlei-img-area li a .black-bg{
	position: absolute;
	background: rgba(78,155,235,.6);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 20px;
	top: 0;
	left: 0;
}
#business .fenlei-img-area li a .black-bg h3{
	position: absolute;
	top:50%;
	font-size: 26px;
	font-weight: bold;
	left: 0;
	text-align: center;
	color: #fff;
	width: 100%;
	margin-top: -14px;
}
#business .fenlei-img-area li a .black-bg p{
	position: absolute;
	bottom:-80px;
	font-size: 14px;
	left: 0;
	color: #fff;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	 overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-indent: 2em;
}
#business .fenlei-img-area li a img{
	max-width: 100%;
	width: 100%;
}
#business .fenlei-img-area li:nth-child(3),#business .fenlei-img-area li:nth-child(6){
	margin:0 0 2% 0;
}
#business .chuli-img-area{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	margin:0 0 2% 0;
}
#business .huanbao-imgarea{
	margin-top: 20px;
	display: flex;
	justify-content: flex-start;
	margin:0 0 2% 0;
}
#business .chuli-img-area li{
	width: 30%;
	background: #ebebeb;
	margin-right: 5%;
	box-sizing: border-box;
	padding:11px 18px;
	display: flex;
	align-items: center;
	position: relative;  
}
#business .chuli-img-area .chuili-info{
	position: absolute;
	top: 120px;
	left: 0;
	width: 100%;
}
#business .chuli-img-area .chuili-info p{
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	text-align: justify;
}
#business .chuli-img-area li:hover{
	transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-o-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
#business .chuli-img-area li:nth-child(3){
	margin-right:0;
}
#business .chuli-img-area li .chuliicon{
	width: 78px;
	height: 78px;
}
#business .chuli-img-area li h3{
	margin: 0;
	margin-left: 24px;
	color: #333;
	font-size: 20px;
}
.shebei-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -522px -136px;
}
.feng-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -522px -215px;
}
.xiaoguo-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -522px -294px;
}
#business .yuanli-text-area{
	display: flex;
	justify-content: space-between;
}
#business .yuanli-text-area .yuanli-text-area-l{
	width: 47%;
}
#business .yuanli-text-area .yuanli-text-area-l p{
	color: #666666;
	line-height: 1.8;
}
#ztjjfa{
	background:url(../images/jiejuebg.jpg) no-repeat;
	background-attachment: fixed; 
	padding: 40px 0;
	margin-top: 35px;
}
.ztjjfa-area{
	margin: 0 auto;
}
#ztjjfa .ztjjfa-area .jufn-text{
	color: #666666;
	font-size: 14px;
	line-height: 2;
	text-align: center;
	margin-top: 55px;
	margin-bottom: 65px;

}
#ztjjfa .jiejue-step{
	width: 1000px;
	margin: 55px auto 35px auto;
	display: flex;
	justify-content: space-between;
}
#ztjjfa .jiejue-step li{
	width: 160px;
	position: relative;
}
#ztjjfa .jiejue-step li:hover .step-icon{
	transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
#ztjjfa .jiejue-step li:last-child:after{
	background: none;
}
#ztjjfa .jiejue-step li:after{
	position: absolute;
	content: "";
	width: 150px;
	height: 13px;
	background: url(../images/sprite.png) no-repeat;
	background-position: -454px -494px;
	top: 39px;
	right: -136px;
}
#ztjjfa .jiejue-step .step-icon{
	width: 87px;
	height: 87px;
	margin: 0 auto 16px auto;
	border-radius: 50%;
}
#ztjjfa .jiejue-step li p{
	text-align: center;
	color: #333;
	font-size: 16px;
}
#ztjjfa .jiejue-step li .step1{
	background:url(../images/sprite.png) no-repeat;
	background-position: -246px -514px;
}
#ztjjfa .jiejue-step li .step2{
	background:url(../images/sprite.png) no-repeat;
	background-position: -336px -514px;
}
#ztjjfa .jiejue-step li .step3{
	background:url(../images/sprite.png) no-repeat;
	background-position: -426px -514px;
}
#ztjjfa .jiejue-step li .step4{
	background:url(../images/sprite.png) no-repeat;
	background-position: -516px -514px;
}
#ztjjfa .quickzixun{
	box-sizing: border-box;
	width: 164px;
    line-height: 46px;
	display: block;
	margin: 0 auto;
	border:2px solid #2196f3;
	color:#2196f3;
	text-align: center;
	font-size: 16px;
}
#ztjjfa .quickzixun:hover{
	background: #2196f3;
	color:#fff;
	transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
.wushuibanner{
	background:url(../images/wscl_02.jpg) center center;
	display: flex;
	align-items: center;
}
.huaxue-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -443px -136px;
}
.shengwu-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -443px -215px;
}
.wuli-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -443px -295px;
}
.wushui-fanwei{
	margin-top: 172px;
}
.chulistep-area{
	display: flex;
	justify-content: space-between;
}
.chulistep-area li{
	width: 261px;
	position: relative; 
}
.chulistep-area li:hover .chulistep{
	transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
.chulistep-area li:last-child:after{
	background: none;
}
.chulistep-area li:after{
	position: absolute;
	content: "";
	width: 150px;
	height: 13px;
	background: url(../images/sprite.png) no-repeat;
	background-position: -454px -494px;
	top: 24px;
	right: -166px;
}
.chulistep-info{
	margin-top: 20px;
}
.chulistep-info p{
	color: #666;
	font-size: 14px;
}
.chulistep-area li .chulistep{
	width: 260px;
	height: 63px;
	border-radius:15px; 
}
.chulistep-area li .yiji-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -149px -60px;
}
.chulistep-area li .erji-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -149px -124px;
}
.chulistep-area li .sanji-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -149px -188px;
}
.huanping-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -443px -377px;
}
.yanshou-icon{
	background:url(../images/sprite.png) no-repeat;
	background-position: -522px -377px;
}
.huanbaobanner{
	background:url(../images/hbcl_02.jpg) center center;
	display: flex;
	align-items: center;
}
/*产品与服务*/
.proserbanner{
	background:url(../images/pdbg_02.jpg) center center;
}
.eq-nav div{
	display: flex;
	align-items: center;
}
.eq-nav h3{
	font-size: 24px;
	margin: 0;
	font-weight: bold;
	margin: 16px 0;
}
.eq-nav p{
	color: #666;
	font-size: 14px;
	margin: 0;
	margin-left: 28px;
}
.eq-nav b{
	color: #0c337d;
	font-size: 20px;
}
#eqshebei{
	margin: 0 auto;
}
#eqshebei .eqshebei-area{
	overflow: hidden;
	padding: 30px 10px;
}
#eqshebei .eqshebei-area li .eq-img{
	text-align: center;
}
#eqshebei .eqshebei-area li .eq-img{
	width:236px;
	height:258px;
	overflow:hidden;
	display:flex;
	align-items: center;
}
#eqshebei .eqshebei-area li .eq-img img{
	width: 100%;
    height: 100%;
}
#eqshebei .eqshebei-area li{
    float: left;
    width: 25%;
    box-sizing: border-box;
    padding: 25px 25px;
    position: relative;
    margin-bottom: 15px;
}
#eqshebei .eqshebei-area li:nth-child(1):before{
	position: absolute;
	left: 0;
	top:10%;
	width: 1px;
	height: 80%;
	background: #e6e6e6;
	content: "";
}
#eqshebei .eqshebei-area li:nth-child(5):before{
	position: absolute;
	left: 0;
	top:10%;
	width: 1px;
	height: 80%;
	background: #e6e6e6;
	content: "";
}
#eqshebei .eqshebei-area li:nth-child(9):before{
	position: absolute;
	left: 0;
	top:10%;
	width: 1px;
	height: 80%;
	background: #e6e6e6;
	content: "";
}
#eqshebei .eqshebei-area li:nth-child(13):before{
	position: absolute;
	left: 0;
	top:10%;
	width: 1px;
	height: 80%;
	background: #e6e6e6;
	content: "";
}
#eqshebei .eqshebei-area li:after{
	position: absolute;
	right: 0;
	top:10%;
	width: 1px;
	height: 80%;
	background: #e6e6e6;
	content: "";
}
#eqshebei .eqshebei-area li:hover:after{
	background: none;
}
#eqshebei .eqshebei-area li:hover:before{
	background: none;
}
#eqshebei .eqshebei-area li .eqshebei-item p{
    color: #333333;
    font-size: 16px;
    text-align: center;
    height: 65px;
    margin: 0;
    padding: 24px 0;
}
#eqshebei .eqshebei-area li .eqshebei-item a{
	display: block;
	border: 30px;
	box-sizing: border-box;
	border:2px solid #cecece;
	line-height: 30px;
	width: 117px;
	margin: 30px auto 0 auto;
	color: #666;
	text-align: center;
	border-radius: 30px;
	font-size: 14px;
	position: absolute;
	bottom: 32px;
	left: 50%;
	margin-left: -58px;
	opacity: 0
}
#eqshebei .eqshebei-area li:hover .eqshebei-item a{
	background: #0c337d;
	color: #fff;
	border:2px solid #0c337d;
	bottom: -22px;
	opacity: 1;

}
#eqshebei .eqshebei-area li:hover .eqshebei-item{
	transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	
}
#eqshebei .eqshebei-area li:hover{
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
#online{
	background: #f5f5f5;
	overflow: hidden;
}
#online .online-area{
	display: flex;
}
#online .online-l{
	width: 50%;
	box-sizing: border-box;
	padding: 30px;
}
#online .online-r{
	width: 50%;
	position: relative;
	height: 524px;
}	
#online .online-r .help-img{
	width: 175%;
	height: 524px;
	background: url(../images/help_05.jpg) left center no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}
#online .rongyu-title{
	border-bottom: 4px solid #0d337e;
	position: relative;
	margin: 10px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#online .rongyu-title h3{
	color: #333;
	font-size: 32px;
	margin: 0;
	padding: 10px 0;
	font-weight: 700;
}
#online .rongyu-title span{
	font-size: 14px;
	color: #999;
}
#online .rongyu-title:after{
	content: "";
	width: 40px;
	height:4px;
	background: #2196f3;
	position: absolute;
	left: 0;
	bottom: -4px; 
}
/*case*/
.casebanner{
	background:url(../images/casebg_02.jpg) center center;
}
#case-nav{
	margin: 20px auto 0 auto;
}
.case-nav .container{
	padding: 0;
}
#case-nav .case-img{
	width: 60px;
	height: 68px;
	margin: 0 auto;
	opacity: .6;
	cursor: pointer;

}
.sv-area{
	display:none;
}
#case-nav .on{
	opacity: 1;
}
#case-nav .swiper-slide p{
	text-align: center;
	color: #333;
	opacity: .6;

}
#case-nav .swiper-slide:hover .case-img,#case-nav .swiper-slide:hover p{
	opacity: 1;
}
#case-nav .swiper-button-next{
	right:0;
	color: #999999;
	width: 15px;
	height: 16px;
	background:url(../images/sprite.png) no-repeat;
	background-position: 0px -408px;
    margin-top: -8px;

}
#case-nav .swiper-button-prev{
	left:0;
	color: #999999;
	width: 15px;
	height: 16px;
	background:url(../images/sprite.png) no-repeat;
	background-position: 0px -386px;
    margin-top: -8px;
}
.case-nav1{
	background:url(../images/sprite.png) no-repeat;
	background-position: -262px -252px;
}
.case-nav2{
	background:url(../images/sprite.png) no-repeat;
	background-position: -333px -252px;
}
.case-nav3{
	background:url(../images/sprite.png) no-repeat;
	background-position: -262px -375px;
}
.case-nav4{
	background:url(../images/sprite.png) no-repeat;
	background-position: -333px -376px;
}
.case-nav5{
	background:url(../images/sprite.png) no-repeat;
	background-position: -333px -441px;
}
.case-nav6{
	background:url(../images/sprite.png) no-repeat;
	background-position: -333px -313px;
}
.case-nav7{
	background:url(../images/sprite.png) no-repeat;
	background-position: -190px -440px;
}
.case-nav8{
	background:url(../images/sprite.png) no-repeat;
	background-position: -170px -520px;
}
.case-nav9{
	background:url(../images/sprite.png) no-repeat;
	background-position: -112px -433px;
}
.case-nav10{
	background:url(../images/sprite.png) no-repeat;
	background-position: -114px -376px;
}
.case-nav11{
	background:url(../images/sprite.png) no-repeat;
	background-position: -182px -372px;
	width: 70px !important;
}
.case-nav12{
	background:url(../images/sprite.png) no-repeat;
	background-position: -264px -444px;
}
.case-nav13{
	background:url(../images/sprite.png) no-repeat;
	background-position: -262px -314px;
	height: 62px !important;
	margin-bottom: 6px !important;
}
#pgfwanl .pgfwanl-area{
	margin-top: 0;
} 
/*新闻动态*/
.newsbanner{
	background:url(../images/newsbg_02.jpg) center center;
}
.news-page-item{
	margin: 30px 0;
    position: relative;
	right: 20px;
}
nav.my-4 {
    text-align: center;
}
a.page-item.page-link {
    display: inline-block;
    height: 40px;
    color: #646464;
    border: 1px solid #dedede;
    line-height: 40px;
    -moz-box-sizing: initial;
    margin: 0 8px;
    padding: 0 16px;
    border-radius: 5px;
}
a.page-num {
    display: inline-block;
    height: 40px;
	color: #646464;
    border: 1px solid #dedede;
    line-height: 40px;
    -moz-box-sizing: initial;
    margin: 0 8px;
    padding: 0 16px;
    border-radius: 5px;
}
a.page-num.page-num-current {
	background: #005995;
    border-color: #005995;
    color: #fff;
    display: inline-block;
    height: 40px;
    border: 1px solid #dedede;
    line-height: 40px;
    -moz-box-sizing: initial;
    margin: 0 8px;
    padding: 0 16px;
    border-radius: 5px;
}
#newsdongtai .news-page-item li{
	display: flex;
	align-items: flex-start;
	box-sizing: border-box;
	padding:30px 34px 10px 34px;
	border-bottom:1px solid #dbdbdb;
	background: #fff;  
}
#newsdongtai .news-page-item li:hover{
	transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	-moz-box-shadow: 0px 0px 8px #888888;
    -webkit-box-shadow: 0px 0px 8px #888888;
    box-shadow: 0px 0px 8px #888888;
}
#newsdongtai .news-page-item li .news-img{
	display: block;
	width: 200px;
	height: 158px;
	overflow: hidden;
	
  
    text-align: center;
}
#newsdongtai .news-page-item li .news-img:hover{
	transform: scale(1.2);
	-o-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
}
#newsdongtai .news-page-item li .news-img img{
	width: 100%;
}
#newsdongtai .news-page-item li .news-page-item-r{
	margin-left: 42px;
}
.news-page-item-r-t{
	display: flex;
	align-items: center;
}
.news-page-item-r-t-l{
	align-items: center;
	width: 76px;
	border-right:1px solid #b3b3b3; 
}
.news-page-item-r-t-l b{
	font-size:46px;
	font-weight: bold;
	color: #333;
	display: block;
	position: relative;
	line-height: 1;
	margin-bottom: 9px;
}
.news-page-item-r-t-l b:after{
	position: absolute;
	width: 38px;
	height: 1px;
	background: #b3b3b3;
	content: "";
	bottom: -4px;
	left: 8px;
}
.news-page-item-r-t-l span{
	margin-top: 9px;
	color: #333;
	font-size: 14px;
	line-height: 1;
}
.news-page-item-r-t-r{
	margin-left: 18px;
}
.news-page-item-r-t-r a{
	color: #333;
	display: block;
	font-size:24px;
	font-weight: bold; 
}
.news-page-item-r-t-r a:hover{
	color:#0d337e; 
}
.news-page-item-r-b{
	margin-top: 10px;
}
.news-page-item-r-b p{
	color: #666666;
	line-height: 1.8;
}
.more-right-txt{
	display: flex;
	flex-direction:column;
	justify-content: space-between;
	margin-left: 10px;
}
.more-right-txt h3{
	color: #333333;
	line-height: 1.6;
	font-size: 14px;
	margin: 0;
}
.more-right-txt span{
	display: block;
	text-align: right;
	color: #666666;
	font-size: 12px;
}
.more-dt ul li a{
	display: flex;
	padding:13px 0;
	border-bottom: 1px solid #ebebeb;
}
.more-dt ul li a:hover{
	background: #ebebeb;
}
#big-pages-content{
	background: #f5f5f5;
	padding: 35px 0
}
.pages-content-l{
	background: #fff;
	width: 70%;
	max-width: 70%;
	box-sizing: border-box;
	padding:35px;
}
.pages-content-l img{
    max-width: 100%;
}
#pages-content{
	display: flex;
	margin: 35px auto;
	padding: 0;
	justify-content: space-between;
	align-items: flex-start;
}
#pages-content .pages-content-title{
	border-bottom: 1px solid #f5f5f5;
}
#pages-content .pages-content-title h3{
	font-size: 24px;
	margin: 0;
	color: #333;
	font-weight: bold;
}
.pages-content-r .more-img{
	width: 85px;
	min-width: 85px;
	height: 63px;
	overflow: hidden;
}
.pages-content-r .more-img img{
	width: 100%;
}
#pages-content .pages-content-title p{
	color: #666;
	margin: 10px 0;
}
#pages-content .pages-content-area{
	padding: 20px 0 20px 0;
}
.pages-content-r{
	width: 292px;
}
.pages-content-r .more-dt{
	background: #fff;
	padding: 10px 20px;
	box-sizing: border-box;
	margin-bottom: 28px;
}
#big-pages-content .rongyu-title{
	border-bottom: 4px solid #0d337e;
	position: relative;
	margin: 10px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#big-pages-content .rongyu-title h3{
	color: #333;
	font-size: 18px;
	margin: 0;
	padding: 10px 0;
	font-weight: 700;
}
#big-pages-content .rongyu-title span{
	font-size: 14px;
	color: #999;
}
#big-pages-content .rongyu-title:after{
	content: "";
	width: 40px;
	height:4px;
	background: #2196f3;
	position: absolute;
	left: 0;
	bottom: -4px; 
}
#big-pages-content .liuyan-area input[type="text"]{
	border: none;
	background: #e6e6e6;
	font-size: 16px;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 15px;
	width: 100%;
}
#big-pages-content .liuyan-area textarea{
	border: none;
	background: #e6e6e6;
	font-size: 16px;
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 15px;
	width: 100%;
	resize:none;
}
/*业务内页*/
.bus-cont-bg{
	height: auto;
}
.bus-cont-bg img{
	width: 100%;
	display: block;
}
.bus-cont-nav{
	margin: 0 auto
}
.bus-cont-nav ul{
	justify-content: space-between;
}
.bus-cont-nav ul li{
	text-align: center;
	font-size: 16px;
}
.bus-cont-nav ul li:hover{
	background: #0d337e;
	color: #fff;
	cursor: pointer;
}
.buscon-area{
	padding: 30px 0;
}
#bus-cont-area .graybg{
	background: #f5f5f5;
}
#bus-cont-area  .neirong-txt{
	color: #666;
	text-indent: 2em;
	font-size: 16px;
}
 @media screen and (min-width: 768px) and (max-width: 1370px){
	 .about_1{
	 	display: flex;
		width: 90%;
		justify-content: space-around;
		align-items: center;
		height: 600px;
		flex-direction: column;
	 }
	 .about_1 .abo-text{
	 		 padding: 20px;
			 width: 100%;
			line-height: 1.3;
	 }
	 .about-4 .a4-img a p:first-child {
	     top: 110px;
	     left: calc( 50% - 80px );
	 }
	 .about-4 .a4-img a p:last-child {
	     left: calc( 50% - 50px );
	 }
	 .about_1 .abo-text h3{
		 font-size: 30px;
	 }
	 .about_1 .abo-text p{
		 width: 100%;
	 }
	 .about_1 .abo-text p:last-child{
		 font-size: 20px;
		     margin-top: 20px;
		     width: 100%;
	 }
	 .about_1 .abo-img{
			 position: initial;
			 width: 80%;
			     height: 100%;
	 }
	 .about_1 .abo-img img{
		 width: 95%;
	 }
	 .about-4 .a4-img a p{
		 font-size: 20px;
	 }
	 .about_3 ul li p{
		 font-size: 20px;
	 }
	  .syb_subt ul li a{
	 		  font-size: 18px;
	  }
	  .about_3 ul li .ico::after{
		      height: 80px;
		      width: 80px;
		      top: 30px;
		      left: -30%;
	  }
	#gongsi .one-item-content{
		width: 100%;
		box-sizing: border-box;
		padding: 5vh;
	}
	#gongsi .one-item-r{
		width: 50%;
	}
	#gongsi .one-item-r img{
		width: 100%;
	}
	.one-item-content .one-item-l p{
	    margin: 3.2vh 0 4.3vh 0;
	}
	.one-item-content .one-item-l .title{
	    padding: 0 0 3.2vh 0;
	}
	.one-item-content .gongsi-shuzi{
		bottom: -13.8vh;
		left: auto;
	}
	#honor-item .one-item-content{
		width: 100%;
		box-sizing: border-box;
		padding: 5vh;
	}
	#item-title p{
		display: none;
	}
 }
#bus-cont-area #item-title h3{
	font-size: 36px;
}
.side-cnt {
    position: fixed;
    right: 0;
    top: 67%;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    background-color: #fff;
    -moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,.1);
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,.1);
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 3;
}
.side-cnt dl a {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.side-cnt dl:first-child {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}
.side-cnt dl {
    cursor: pointer;
    border-bottom: 2px solid #fff;
    padding: 10px;
    background-color: #3c3c3c;
    margin-bottom: 0;
    position: relative;
}
.side-cnt .talk-icon {
    background-position: -2px -108px;
}
.side-cnt .qrcode-icon {
    background-position: -2px -50px;
}
.side-cnt i {
    display: block;
    width: 25px;
    height: 28px;
    margin: 0 auto;
    background: url(../images/side-cnt.png) no-repeat;
}
.side-cnt .phone-icon {
    background-position: -2px -170px;
}
.side-cnt dd {
    font-size: 12px;
    color: #fff;
    line-height: 17px;
    text-align: center;
}
.side-cnt .top-icon {
    background-position: -4px 8px;
}
.side-cnt dd p {
    color: #898989;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}
.side-cnt dd p span{
    font-size: 14px;

}
.side-cnt .wx, .side-cnt .phone {
    display: none;
    min-width: 136px;
    line-height: 24px;
    padding: 8px;
    border: 1px solid #eee;
    background: #fff;
    color: #333;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 96px;
}
 .side-cnt .phone {
 	box-sizing: border-box;
 }
.side-cnt .phone {
    top: 0;
}
.side-cnt .wx {
    height: auto;
    margin-top: -54px;
    line-height: 20px;
}
#toTop {
    display: none;
    background-color: #1a4191;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    cursor: pointer;
}
.side-cnt dl:last-child {
    border-bottom: none;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}
.side-cnt .wx::after, .side-cnt .phone::after {
    content: " ";
    position: absolute;
    right: -6px;
    top: 50%;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border: #eee solid 1px;
    border-left: 0;
    border-bottom: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
    z-index: -1;
}
.side-cnt dl:hover{
	background-color: #1a4191;
}
.side-cnt dl:hover .phone{
	display: block !important;
}
.side-cnt dl:hover .wx{
	display: block!important;
}
footer .foot-bottom p a{
	color: #bfbfbf
}
footer .foot-bottom p a:hover{
	text-decoration: underline;
}



@media screen and (max-width: 1890px) {
	.nav{
		/*position: fixed;*/
		width: 100%;
		text-align: right;
		display: flex;
		 flex-direction:row;
		 justify-content: flex-end;
		 text-align: center;
		 box-sizing: border-box;
		 padding: 0 60px 0 0;
	}
	.nav .nav-link{
		
		display: inline-block;
		align-items:center; 
		position: relative;
		z-index: 1;
	}
	.nav .nav-link a{
		display: block;
		color: #333;
		font-size: 18px;
		padding: 3.4vh 2.8vh 2.1vh 2.8vh;
	}
	.nav .nav-link:hover a{
		color: #fff;
	}
	.nav .nav-link:hover p{
		color: #fff;
	}
	.nav .nav-link:after{
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		width: 100%;
		height: 100%;
		background: -webkit-linear-gradient(#18499b, #0e72cf); /* Safari 5.1 - 6.0 */
		background: -o-linear-gradient(#18499b, #0e72cf); /* Opera 11.1 - 12.0 */
		background: -moz-linear-gradient(#18499b, #0e72cf); /* Firefox 3.6 - 15 */
		background: linear-gradient(#18499b, #0e72cf); /* 标准的语法 */ 
		transition: all 0.2s ease-out;
		-webkit-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		transform: translateY(-100%);
		-o-transform: translateY(-100%);
		-webkit-transform: translateY(-100%);
		-moz-transform: translateY(-100%);
	
	
	}
	.nav .nav-link:hover:after{
		transform: translateY(0);
		-o-transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
	
		
	}
	.nav .sub-nav{
		position: absolute;
		top:80px;
		left: 0;
		width: 100%;
		display: block;
		background: #fff;
		border-bottom: 2px solid #0c337d;
		opacity: 0;
		visibility:hidden;
	}
	
	.nav .show{
		
		visibility:visible;
		opacity: 1;
		
	}
	.nav .sub-nav a{
		display: block;
		padding: 0;
		font-size: 14px;
		line-height: 3.2;
		color: #333 !important;
		position: relative;
		z-index: 1;
	}
	.ani{
		transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
	}
	.nav .sub-nav a:before{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #0c337d;
		transition: all 0.3s ease-out;
		-webkit-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		transform: scale3d(0,0,0);
		-o-transform: scale3d(0,0,0);
		-webkit-transform: scale3d(0,0,0);
		-moz-transform: scale3d(0,0,0);
		z-index: -1;
	
	}
	.nav .sub-nav a:hover{
		color:#fff !important;
	}
	.nav .sub-nav a:hover:before{
		transform: scale3d(1,1,1);
		-o-transform: scale3d(1,1,1);
		-webkit-transform: scale3d(1,1,1);
		-moz-transform: scale3d(1,1,1);
	}
	.nav a p{
		font-size: 12px;
		margin: 0;
		color: #666;
	}
	.nav-tel{
		display: inline-block;
	}
	.tel{
		width: 34px;
		height: 34px;
		margin: 3.4vh 18px 0 18px;
		background:url("../images/sprite.png");
		background-position: 0px -49px;
	}
	.nav-tel:hover .tel{
		background-position: 0px 0px;
	}
	.nav-tel:hover .sub-nav{
		bottom: -75px;
	}
	.nav-tel .sub-nav{
		width: 172px;
		right: 0;
		left: auto;
		bottom: -101px;
	}
	.nav-tel .sub-nav p{
		padding: 5px 10px 0 10px;
		font-size:22px;
		text-align: right;
		font-weight: bold;
		font-family: "Britannic Bold";
		color:#333 !important;
	}
	.nav-tel .sub-nav p i{
		font-size:14px;
		font-style: normal;
		font-weight: normal;
		color:#333 !important;
	}



    
	
}

.sj{
	display: none;
}
.f{
	display: none;
}
.sjhead{
	font-size: 25px;
	font-weight: 600;
}
.sjbt{
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}
.box{
	width:100%;
	height: 300px;
	overflow:hidden;
	margin-top: 20px;
}
.text1{
	font-size: 16px;
	width: 100%;
	height: 50px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	background-color: #0d337e;
}
.text2{
	font-size: 16px;
	width: 100%;
	height: 50px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	background-color: #0d337e;
	border-top: solid 1px #ffffff;
}
.text3{
	font-size: 16px;
	width: 100%;
	height: 50px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	background-color: #0d337e;
	border-top: solid 1px #ffffff;
}
.text4{
	font-size: 16px;
	width: 100%;
	height: 50px;
	color: #ffffff;
	line-height: 50px;
	text-align: center;
	background-color: #0d337e;
	border-top: solid 1px #ffffff;
}
.box2{
	width:150px;
	height: 150px;
	overflow:hidden;
}
.img2{
	width:100%;
	height: 100%;
	object-fit: cover;
}
.box1{
	width:150px;
	height: 150px;
	overflow:hidden;
}
.img1{
	width:100%;
	height: 100%;
	object-fit: cover;
}
.bkyy{
	width: 130px;
	height: 40px;
	background-color: #0d337e;
	text-align: center;
	line-height: 40px;
	margin: 0 auto;
	margin-top: 30px;
	
}
.mouse-item {
    width: 100px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 999;
    margin-left: -49px;
}
@media screen and (max-width: 768px) {
	.about_1{
		display: flex;
			width: 90%;
			justify-content: space-around;
			align-items: center;
			height: 800px;
			flex-direction: column;
	}
	.syb_subt ul li:not(:nth-child(5))::after{
		right: -9px;
		top: -5px;
	}
	.syb_subt ul li:nth-child(4)::after{
		right: -40px;
	}
	.about-4 .a4-img a p:first-child{
		top: 110px;
		left: calc( 50% - 65px );
	}
	.about-4 .a4-img a p:last-child{
		opacity: 0;
		bottom: 40px;
		left: calc( 50% - 42px );
	}
	.about_1 .abo-text{
			 padding: 20px;
				 width: 100%;
				line-height: 1.3;
	}
	.about_1 .abo-text h3{
			 font-size: 30px;
	}
	.about_1 .abo-text p{
			 width: 100%;
	}
	.about_1 .abo-text p:last-child{
			 font-size: 18px;
			     margin-top: 20px;
			     width: 100%;
	}
	.about_1 .abo-img{
				 position: initial;
				 width: 80%;
				     height: 50%;
	}
	.about_1 .abo-img img{
			 width: 100%;
			 height: 95%;
	}
	.about-4 .a4-img a p{
			 font-size: 16px;
			height: 20%;
	}
	.about_3 ul li{
		    width: 38%;
			margin-bottom: 20px;
	}
	.about_3 ul li p{
			 font-size: 18px;
			 line-height: 3.5;
	}
	.about-4 .a4-img ul li{
		width: 45%;
	}
	.syb_subt{
		margin: 20px 0;
	}
	.syb_subt ul li{
		margin-bottom: 20px;
		width: 30%;
	}
	.about-4 .a4-img a p:last-child{
		opacity: 1;
	}
	 .syb_subt ul li a{
			  font-size: 16px;
			  line-height: 1.3;
	 }
	 .about_3 ul li .ico::after{
			      height: 80px;
			      width: 80px;
			      top: 30px;
			      left: -30%;
	 }
  .s{
	  display: none;
  }
  .f{
	  display: block;
  }
  .mouse-item{
	width: 60px;
	position: absolute;
	bottom: 20px;
	left: 35px;
    z-index: 999;
    margin-left:-49px;
}
}