/*
 * 仅消除手机端页面横向滚动条，不改 html/body overflow（避免裁掉 fixed 底栏）
 */
@media screen and (max-width: 768px) {
	/* 旧右侧浮动客服：absolute 易把文档撑宽 */
	.scrollsidebar {
		display: none !important;
	}
	/* 产品横滑轨道：负 margin / 超宽 ul */
	.product_scroll {
		overflow: hidden !important;
		max-width: 100%;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.index_ad .layout {
		max-width: 100%;
	}
	/* 底栏自身不要产生横向条 */
	.mfoot_box,
	.mfoot_inner {
		max-width: 100%;
		overflow: hidden;
	}
}
