/**
 * 主题覆盖：手机底栏 + 禁止页面横向滑动（去掉底部横向滚动条）
 * 系统默认：Homes/Tpl/_common/Public/xy_mfoot.css
 */
@media screen and (max-width: 768px) {
	html,
	body {
		overflow-x: hidden !important;
		max-width: 100% !important;
		width: 100% !important;
	}
	.mfoot_box {
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		max-width: 100vw !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
	}
	.mfoot_inner {
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
	}
	.mfoot_nav {
		min-width: 0 !important;
		flex: 1 1 0 !important;
	}
	.mfoot_label {
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	/* 避免侧栏客服展开把页面撑出横向滚动 */
	.side_contact {
		max-width: 100vw;
	}
	.side_contact_panel {
		max-width: min(320px, calc(100vw - 56px)) !important;
	}
}
