/**
 * peweldingmachine：手机底栏留白修正
 * 系统 xy_mfoot.css 的 .footer-bar{margin-bottom:56px} 在桌面端会留出白缝。
 */
.footer-bar {
	margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
	body {
		padding-bottom: 0 !important;
	}
	.l-footer {
		padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
	}
}
