/**
 * 电脑端不给手机底栏留白。
 * 系统 xy_mfoot.css 在所有宽度都写了 .footer-bar{margin-bottom:56px}，
 * 桌面没有固定底栏，版权条下会多出一条白边。
 */
.footer-bar{
	margin-bottom: 0;
}
@media screen and (max-width: 768px){
	.footer-bar{
		margin-bottom: 0;
	}
}
