/* main css */

/* 媒体查询css */
/* 手机超小屏幕竖屏375px及以下 */
@media (max-width:375px) {
	section.banner{
		background: url(../images/bg/main.png) no-repeat !important;
		background-size: cover !important;
	}
}

/* 手机小屏幕横屏376px~767px以下 */
@media (min-width:376px) and (max-width:767px) {
	section.banner{
		background: url(../images/bg/main.png) no-repeat !important;
		background-size: cover !important;
	}
}

/* 平板中屏幕768px-991px */
@media (min-width:768px) and (max-width:991px) {
	section.banner{
		background: url(../images/bg/main.png) no-repeat !important;
		background-size: cover !important;
	}
}

/* 普通电脑大屏幕992px~1199px */
@media (min-width:992px) and (max-width:1199px) {
	section.banner{
		background: url(../images/bg/main.png) no-repeat !important;
	}
}

/* 大屏幕1200及以上 */
@media (min-width:1200px) {}