.index_box{
	width: 100%;
}
.header{
	width: 100%;
	height: 100px;
	display: flex;
	margin: auto;
	position: fixed;
	top: 0px;
	background: #fff;
	z-index: 9998;
	box-shadow: 0px 2px 15px #999999;
}
.header .header-left{
	width: 20%;
	height: 100px;
	display: flex;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}
.header .header-left img{
	height: 68px;
}
.header .header-cont{
	width: 60%;
	height: 100px;
	display: flex;
}

.header .header-cont .lf {
	width: 50%;
	display: flex;                  /*flex布局*/
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}
.header .header-cont .lf li {
	float:left ;
	font-size: 18px;
	padding: 0 30px;
}

.header .header-cont .rf {
	width: 50%;
	display: flex;                  /*flex布局*/
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}


.header .header-cont .rf .search{
	width:100%;
	height:100px;
	display: flex;                  /*flex布局*/
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}

.header .header-cont .rf .search .searchInp{
	width:70%;
	height:32px;
	margin:12px 0;
	border-radius: 20px 0 0 20px;
	border: 1px solid #e8e8ed;
	outline: 0;
	vertical-align: middle;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.header .header-cont .rf .search .searchInp:focus{
	box-shadow: 0px 0px 3px #4d87f1;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.header .header-cont .rf .search .btn {
	display: inline-block;
	width: 100px;
	height:32px;
	line-height: 32px;
	text-align:center;
	color:#fff;
	padding-left: 12px;
	font-size:18px;
	border-radius: 0 20px 20px 0 ;
	color: #fff;
	background:#FC293F url("../img/search_icon.png") no-repeat 10px center / 20px 20px;
}

.header .header-right{
	width: 20%;
	height: 100px;
	display: flex;                  /*flex布局*/
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}

.header .header-right .btn{
	width:180px;
	height:40px;
	line-height:40px;
	text-align:center;
	color:#fff;
	font-size:18px;
	background: #3779F1;
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.header .header-right .btn:hover{
	background-color: #195ad1;
	box-shadow: 0px 0px 20px #195ad1;
	-webkit-transition: all .3s;
    transition: all .3s;
}

.CON-B{
	width: 100%;
	display: block;
	margin: 110px auto;

}

.content{
	width: 100%;
	height: 540px;
	display: flex;
	margin: auto;

}
.content .nav {
	width: 20%;
	height: 540px;
	background: #f1f1f1;
	color:#333;
	position: absolute;
}

.content .nav > li {  /* 调整一级导航*/
	height: 45px;
	line-height:45px;
	padding-left:15%;
	-webkit-transition: all .3s;
    transition: all .3s;
	font-size: 16px;
}

.content .nav > li:hover {
	background: #4d87f1;
	color: #fff;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.content .nav >li > a {
	font-size:18px;
}
.content .nav >li > a::after {
	content: '/';
	padding:0 2px;
	color: #333;
}

.content .nav >li > a:last-of-type::after {
	content: '';
	padding:0;
}

.content .nav a:hover {
	color: #f00;
}

/* 二级导航 */
.content .nav >li:hover > ul.l2 {
	display: block;
	overflow: auto;
	-webkit-transition: all .3s;
    transition: all .3s;
}

/* 二级导航 */
.content .nav .l2 {
	height: 145px;
	line-height:145px;	
	display: none; /* 隐藏2级导航*/
	font-weight: bold;
	position: absolute;
	left:100%;
	top:0;
	width:400%;
	min-height:540px;
	border:1px solid #d8d8d8;
	box-shadow: 5px 0px 10px #666666 ; /* 设置盒子投影 */
	z-index: 9990 ; /* 设置层级 */
	background-color: #fff;
	max-height: 500px;
	-webkit-transition: all .3s;
    transition: all .3s;
}

.content .nav .l2 > li {
	position: relative;
	height: 100px;
	line-height: 40px;
	width: 200px;
	top:10px;
	text-align: right;
	font-size: 18px;
	text-align: center;
}

.content .nav .l2 > li > a {
	padding: 2px 5px;
}
.content .nav .l3 a {
	padding: 2px 8px;
}

.content .nav .l2 > li > a::after, 
.content .nav .l2 > li:first-child .l3  a::after {
	content: '>' ;
	padding-left:5px;
}


.content .nav .l2 > li:first-child > a {
	background-color: #000;
	color: #fff;
	padding: 2px 15px;
}

.content .nav .l2 > li:first-child .l3 a {
	color: #000;
	margin:0 5px;
}

.content .nav .l3 {
	left: 200px;
	top: 0;
	line-height:40px;
	font-weight: 400;
	width: auto;
	text-align: left;
	margin-left: 20px;
	margin-top: 10px;
}

.content .nav .l3 li {
	float: left;
	margin-left: 5px;
	border-radius: 5px;
	-webkit-transition: all .3s;
    transition: all .3s;
    width: 180px;
    text-align: center;
}
.content .nav .l3 li:hover {
	box-shadow: 0px 0px 10px #666666;
	-webkit-transition: all .3s;
    transition: all .3s;
}
			
/* 轮播图 */
.content .swiper {
	width: 80%;
	height: 540px;
	position: absolute;
	left: 20%;
	white-space: nowrap; /* 强制内容不换行*/
	overflow: hidden;
}

.content .swiper  img {
	width: 100%;
	height: 540px;
}

.content .swiper .dots {
	position: absolute;
	bottom: 0;
	height: 40px;
	width: 100%;
	background-color:rgba(0,0,0, 0.3);
	text-align: center;
	line-height: 50px;
	font-size: 0;
}

.content .swiper .dots span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	margin: 0 5px;
}


.content .swiper .dots span.active {
	background: #f00;
}

.content .swiper .left, .swiper .right {
	position: absolute;
	height: 69px; /* 395 - 69 = 326*/
	width: 42px;
	top: 170px;
	cursor: pointer;
}

.content .swiper .left {
	background: url(../images/icon-slides.png) no-repeat -84px 0 ;
}

.content .swiper .right {
	right: 0;
	background: url(../images/icon-slides.png) no-repeat -126px 0 ;
}

.content .swiper .left:hover {
	background: url(../images/icon-slides.png) no-repeat 0 0 ;
}

.content .swiper .right:hover {
	background: url(../images/icon-slides.png) no-repeat -42px 0 ;
}

/*应用*/
.recom{
	width: 100%;
	height: 1770px;
	display: block;                  /*flex布局*/
	margin: 0 auto;
	position: relative;
	z-index: -1;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}
.recom .recom-titl{
	width: 100%;
	height: 170px;
}
.recom .recom-titl .recom-text1{
	font-size: 28px;
	color: #2C62A0;
	display: flex;
	padding-top: 68px;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/

}
.recom .recom-titl img{
	display: block;
	padding-left: 49%;
}

.recom .appli{
	width: 88%;
	height: 1600px;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	
}
.recom .appli .appli-1{
	width: 100%;
	height: 600px;	
	display: flex;
	margin: 0 auto;

	
}
.recom .appli .pic1{
	width: 66%;
	height: 580px;
	display: block;
	position: relative;
	-webkit-transition: all .3s;
    transition: all .3s;
    z-index: 9993;
}
.recom .appli .pic1:hover{
	box-shadow: 0px 0px 20px #195ad1 ;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.recom .appli .pic1-img{
	width: 100%;
	height: 580px;
	position: absolute;
	z-index: -1;
	top: 0px;

}

.recom .appli .pic1-text1{
	width: 100%;
	height: 80px;
	font-size: 14px;
	color: #fff;
	position: absolute;
	z-index: 2;
	bottom: 50px;
	left: 40px;	
}
.recom .appli .pic1-text2{
	width: 100%;
	height: 80px;
	font-size: 18px;
	color: #fff;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 40px;	
}
.recom .appli .pic2{
	height: 100%;
	width: 2%;
	display: block;
}

.recom .appli .pic3{
	width: 32%;
	height: 580px;
	display: block;
	position: relative;

}


.recom .appli .pic3-img{
	width: 100%;
	height: 580px;
	position: absolute;
	z-index: -1;
	top: 0px;

}


.recom .appli .appli-3{
	width: 100%;
	height: 400px;	
	display: flex;
	margin: 0 auto;
}
.recom .appli .pic4{
	height: 400px;
	width: 32%;
	display: block;
	position: relative;
}

.recom .appli .pic4-img{
	width: 100%;
	height: 400px;
	position: absolute;
	z-index: -1;
	top: 0px;

}


/*资质*/
.qualifi{
	width: 100%;
	height: 770px;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: -1;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}

.qualifi .qualifi-titl{
	width: 100%;
	height: 170px;
}


.qualifi .qualifi-titl .qualifi-text1{
	font-size: 28px;
	color: #2C62A0;
	display: flex;
	padding-top: 68px;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/

}

.qualifi .qualifi-titl img{
	display: block;
	padding-left: 49%;
}

.qualifi .qualifi-BJ{
	width: 100%;
	height: 600px;
	display: block;
	position: relative;
	z-index: 1;
	top:0px;
}

.qualifi .qualifi-BJ img{
	width: 100%;
	height: 600px;
}

.qualifi .qualifi-pic{
	width: 90%;
	height: 350px;
	position: absolute;
	display: flex;
	margin: auto 2%;
	z-index: 2;
	top:300px;
}

.qualifi .qualifi-pic .img1{
	z-index:10;
	-webkit-transform:rotate(-10deg);
	-moz-transform:rotate(-10deg);
	transform: rotate(-10deg);
}

.qualifi .qualifi-pic .img2{
	z-index:20;
	-webkit-transform:rotate(10deg);
	-moz-transform:rotate(10deg);
	transform: rotate(10deg);
}


/*联系我们*/
.footer{
	width: 100%;
	height: 570px;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: -1;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
}

.footer .footer-titl{
	width: 100%;
	height: 170px;

}

.footer .footer-titl .footer-text1{
	font-size: 28px;
	color: #2C62A0;
	display: flex;
	padding-top: 68px;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/

}
.footer .footer-titl img{
	display: block;
	padding-left: 49%;
}


.footer .footer-for{
	width: 80%;
	display: flex;
	margin-left: 10%;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;      
	
}

.bottom-text{
	width: 100%;
	height: 40px;
	line-height: 40px;
	color: #fff;
	display: block;
	margin: auto;
	text-align: center;
	position: absolute;
	margin: 0px auto;
	background: #3779F1;
}
.index_text{
	
	-webkit-transition: all .3s;
    transition: all .3s;
    padding-bottom: 5px;
}
.index_text:hover{
	color: #195ad1;
	-webkit-transition: all .3s;
    transition: all .3s;
	box-shadow: 0px 2px 0px #195ad1;
	font-weight: bold;
}
.footer_left{
	width: 30%;
	display: inline-block;
	line-height: 75px;
	text-align: left;
	min-width:400px
}
.footer_left li{
	color: #666;
}
.footer_left img{
	width: 25px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.footer_right{
	width: 50%;
	display: inline-block;
	text-align: left;
	min-width:658px
}
.footer_right input{
	width: 200px;
	border: 1px solid #8fb4f8;
	border-radius: 2px;
	padding: 10px;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.footer_right input:focus{
	box-shadow: 0px 0px 5px #195ad1;
	-webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 8px;
}
.footer_right .row .col{
	display: inline-block;
	
}
.footer_right textarea{
	width:609px;
	border: 1px solid #6397f7;
	border-radius: 2px;
	padding: 10px;
	margin-top: 5px;
	-webkit-transition: all .3s;
    transition: all .3s;
}
.footer_right textarea:focus{
	box-shadow: 0px 0px 5px #195ad1;
	-webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 8px;
}
.footer_right button{
	width:609px;
	height:40px;
	line-height:40px;
	text-align:center;
	color:#fff;
	font-size:18px;
	background: #4a82e8;
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	-webkit-transition: all .3s;
    transition: all .3s;
}


.bottom-box{
	width: 100%;
	height: 360px;
	display: flex;                  /*flex布局*/
	font-size: 16px;
	z-index: 999;
	position: relative;
	color: #aaa;
	margin-top: 50px;
	background: #282828;
}
.bottom-box .bottom-box-left{
	width: 80%;
	height: 100%;
	display: flex;
	justify-content: center;         /*水平轴线居中*/
	align-items:center;                /*垂直居中*/
	margin: 20px auto;

}

.bottom-box .bottom-box-left .left1{
	width: 18%;
	height: 100%;
	display: block;
	margin:auto;
	padding-top: 10px;
	padding-left: 30px;

}
.bottom-box .bottom-box-right{
	width: 20%;
	height: 100%;
	display: block;
	margin: auto;

	background: red;
}
.bottom-box .bottom-box-right img{
	width: 80%;
	padding-top: 50px;
	margin: auto;
}
.bottom-box .bottom-box-right .text{
	width: 80%;
	font-size: 14px;
	font-family: "宋体";
	color: #273865;
	margin: auto;
	
}

