.mzw-ofh {
	overflow: hidden;
}

.mzw-col-l{
	float: left;
}

.mzw-col-r{
	float: right;
}

.mzw-img1 img {
	width: 100%;
	height: auto;
}

.mzw-img2 img {
	width: auto;
	height: 100%;
}

.mzw-img3 img {
	width: 100%;
	height: 100%;
}

.mzw-img4 img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.mzw-img5 img{
	width: auto;
	min-width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.tabcon{
	display: none;
}
.tabcon.show{
	display: block;
}

/* 动画过度时间 */
.mzw-transition{
	transition: .4s;
}

/* 单行文本溢出省略 */
.mzw-text-ellipsis-m1{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* 多行文本溢出省略 */
.mzw-text-ellipsis-m2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

/* 清浮动 */
.mzw-clearboth::after {
	content: "";
	display: block;
	clear: both;
}

/* 弹窗的浮动背景色 */
.mzw-popup-fixed-wall {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.mzw-popup-wall {
	background-color: #FFFFFF;
	border-radius: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/* 改变input中placeholder的颜色 */
.mzw-input-placeholder input::-webkit-input-placeholder {color: rgba(151, 151, 151, 0.4);}
.mzw-input-placeholder input:-moz-placeholder {color: rgba(151, 151, 151, 0.4);}
.mzw-input-placeholder input::-moz-placeholder {color: rgba(151, 151, 151, 0.4);}
.mzw-input-placeholder input::-ms-input-placeholder {color: rgba(151, 151, 151, 0.4);}

/* 滚动条设置 */
.mzw-scrollbar::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}
.mzw-scrollbar::-webkit-scrollbar-thumb {
	border-radius: 5px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.2);
}
.mzw-scrollbar::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}

/* 隐藏滚动条 */
.mzw-scrollbar-none::-webkit-scrollbar{
	display: none;
}

.mzw-pc{
	display: block !important;
}

.mzw-pe{
	display: none !important;
}

body{
	/* 微软雅黑 */
	/* font-family: "Microsoft YaHei"; */
	/* 思源黑体 */
	/* font-family: "Source Han Sans CN"; */
	font-family: PingFang SC;
	background-color: #f9f9f9;
}

@media only screen and (min-width: 950px) and (max-width:1920px) {}
@media only screen and (max-width:949px) {
	.mzw-pc{
		display: none !important;
	}
	
	.mzw-pe{
		display: block !important;
	}
}