/*具体内容部分*/
.main-navbar-section{
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background-color: #fff;
}
.main-section>div{
	padding: 50px 0;
}
.main-section>div section{
	margin-top: 50px;
}
.main-section h2,
.main-section h2 + p{
	text-align: center;
}
.main-section h2 + p{
	color: #aaa;
}
.main-section:nth-child(odd){
	background-color: #fff;
}
.main-section:nth-child(even){
	background-color: #fafafa;
}

/*section3*/
/*业务模式*/
.main-section-bModule figure{
	height: 420px;
	margin: 30px auto;
	padding: 50px 30px;
	text-align: center;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background-color: #fff;
	-webkit-box-shadow: 0 0 12px rgba(0,0,0,.3);
	box-shadow: 0 0 12px rgba(0,0,0,.3);
}
.main-section-bModule figure:hover{
	-webkit-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	transform: translateY(-15px);
}
.main-section-bModule figure:hover .icon{
	color: #46AAAC;
}
.main-section-bModule figure .icon{
	font-size: 80px;
	color: #039dd9;
}
.main-section-bModule figure h4{
	font-size: 28px;
}
.main-section-bModule figure p{
	margin: auto;
}

/*媒体查询*/
/*大于等于1200px*/
@media only screen and (min-width:1200px){
	
}
/*大于等于992px,小于1200pxpx*/
@media only screen and (min-width:992px) and (max-width:1199px){
	
}
/*大于等于768px,小于992px*/
@media only screen and (min-width:768px) and (max-width:991px){
	
}
/*大于等于480px,小于768px*/
@media only screen and (min-width:480px) and (max-width:767px){
	.main-section>div{
		padding: 30px 0;
	}
	.main-section>div section{
		margin-top: 30px;
	}
	.main-section h2{
	    font-size: 30px;
	    margin-top: 10px;
	    margin-bottom: 10px;
	}
	.main-section>div section h3{
		font-size: 22px;
		margin-top: 10px;
	}
}
/*小于480px*/
@media only screen and (max-width: 479px) {
	.main-section>div{
		padding: 15px 0;
	}
	.main-section>div section{
		margin-top: 15px;
	}
	.main-section h2{
	    font-size: 26px;
	    margin-top: 10px;
	    margin-bottom: 10px;
	}
	.main-section>div section h3{
		font-size: 20px;
		margin-top: 10px;
	}
}