.wfmsgbox {
	width: 383px;
	position: fixed;
	z-index: 99999;
}

.wfmsgbox.top-right {
	right: 12px;
	top: 20px;
}

.wfmsgbox.top-left {
	left: 12px;
	top: 20px;
}

.wfmsgbox.top-center {
	left: 50%;
	top: 20px;
	transform: translate(-50%, 0);
}

.wfmsgbox.center-left {
	left: 12px;
	top: 50%;
	transform: translate(0, -50%);
}

.wfmsgbox.center-center {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.wfmsgbox.center-right {
	right: 12px;
	top: 50%;
	transform: translate(0, -50%);
}

.wfmsgbox.bottom-left {
	left: 12px;
	bottom: 12px;
	transform: translate(0, 0);
}

.wfmsgbox.bottom-center {
	left: 50%;
	bottom: 12px;
	transform: translate(-50%, 0);
}

.wfmsgbox.bottom-right {
	right: 12px;
	bottom: 12px;
	transform: translate(0, 0);
}

.wfmsg {
	width: 383px;
	height: auto;
	padding: 5px 0;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
	border-radius: 10px !important;
	margin-bottom: 10px;
	box-shadow: 0 1px 6px rgb(0 0 0 / 20%);
	background: #fff;
	line-height: 1;
	position: relative;
	overflow: hidden;
}

.wfmsg.info {
	background: #f4f4f5;
	color: #909399;
}

.wfmsg.warn {
	background-color: #fdf6ec;
	color: #e6a23c;
}

.wfmsg.success {
	background: rgba(29, 29, 29, 0.77);
}

.wfmsg.tips {
	background: rgba(29, 29, 29, 0.77);
}

.wfmsg.err {
	background-color: #fef0f0;
	color: #f56c6c;
}

.wftitle {
	font-family: PingFangSC, PingFang SC;
	font-weight: 600;
	font-size: 24px;
	color: #F4B438;
	line-height: 33px;
	letter-spacing: 2px;
	display: flex;
	align-items: center;

}

.wftitle .icon_success {
	width: 34px;
	height: 34px;
	background-image: url(../img/get_integral_icon.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	margin: 11px;
}
.wftitle .icon_tips {
	width: 34px;
	height: 34px;
	background-image: url(../img/get_integral_icon_msg.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	margin: 11px;
}

.wftitle>div:last-child {
	flex: 1;
}
.wftitle .title_success {
	
}
.wftitle .title_tips {
	color: #D8D8D8 !important;
}


.wfcontent {
	width: 367px;
	font-family: PingFangSC, PingFang SC;
	font-weight: 400;
	font-size: 18px;
	color: #D8D8D8;
	line-height: 25px;
	letter-spacing: 2px;
	text-align: left;
	font-style: normal;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
}

.wftitle+.wfcontent {
	margin-left: 12px;
}

.noicon+.wfcontent {
	margin-left: 0
}

.wfmsgshadow {
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 88888;
}

.m-wfmsgbox {
	width: auto;
	max-width: 60vw;
}

.m-wfmsgbox .wfmsg {
	margin-bottom: 0;
	min-width: 80px;
	min-height: 20px;
}