/*vantage.html start*/
/**当浏览器的可显示区域大于1200px时**/
/*@media screen and (min-width:1200px) {*/
.vantage_banner {
	background: url(../../public/images/vantage/banner.jpg) no-repeat center top #f6f6f6;
	width: 100%;
	height: 350px;
	margin-top: 86px; /*留给菜单,即为main.css中的类header_top_box的高*/
}

.platform {
	width: 100%;
	margin: 0 auto;
	background: #fff;
	padding: 40px 0;
}
/*}*/

/**当浏览器的可显示区域宽度小于1200px时**/
@media screen and (max-width:1200px) {
	.vantage_banner {
		width: 1200px;
	}
	.platform {
		width: 1200px;
	}
}

.platform h1 {
	text-align: center;
	color: #616161;
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 13px;
}

.platform h1 span {
	color: #008b45;
}

.platform .zhp {
	text-align: center;
	font-size: 21px;
	color: #a7a7a7;
}

/**当浏览器的可显示区域大于1200px时**/
/*@media screen and (min-width:1200px) {*/
.flow {
	width: 100%;
	background: #fbfaf5;
	padding: 40px 0;
}
/*}*/

/**当浏览器的可显示区域宽度小于1200px时**/
@media screen and (max-width:1200px) {
	.flow {
		width: 1200px;
	}
}

.flowcon {
	width: 1200px;
	margin: 0 auto;
}

.flowcon .img {
	vertical-align: middle;
}

/*vantage.html end*/