p {
	margin: 0;
	padding: 0;
}
.model {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.2);
	z-index: 11000;
}
.model_popup {
	width: 80%;
	max-width: 452px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #FFFFFF;
	border-radius: 8px;
	text-align: center;
	position: absolute;
	overflow: hidden;
}
.popup-titPanel{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.model_popup .popup-ts {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    color: #333333;
    font-size: 16px;
    color: #333333;
	text-align: left;
	padding: 0 20px;
	font-weight: bold;
}
.popup-close{
	background: #ff5140;
	margin-right: 10px;
	border-radius: 5px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
.model_toast {
	width: 80%;
	max-width: 452px;
	height: auto;
	background: rgba(0,0,0,.5);
	border-radius: 8px;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.model_toast .popup-toast {
	padding: 20px 40px;
	text-align: center;
	color: #fff;
}
.model_popup .popup-text {
    padding: 25px 40px 35px;
    text-align: center;
    color: #333333;
	/* border-bottom: 1px solid #f2f2f2; */
	border-top: 1px solid var(--main-color);
}
.popup-btn {
	overflow: hidden;
	padding-bottom: 20px;
}
.popup-btn .sure{
    display: inline-block;
    width: 100px;
    height: 34px;
    line-height: 34px;
    background-color: var(--main-color);
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid transparent;
	/* float: right; */
}
.popup-btn .alert_sure {
	margin: 0;
}
.popup-btn .cancel {
    display: inline-block;
    width: 100px;
    height: 34px;
    line-height: 34px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
	background-color: #fff;
	border: 1px solid var(--main-color);
	color: var(--main-color);
	margin-right: 40px;
	/* float: right;
	margin-right: 40px; */
}