@keyframes show {
	0% {
		opacity: 0;
	}
				 
	100% {
		opacity: 1;
	}            
}

@keyframes hide {
	0% {
		opacity: 1;
	}
			 
	100% {
		opacity: 0;
	}
} 

.toast_box {
	/* width: 100%; */
	position: absolute;
	bottom: 50%;
	left: 50%;
	/* justify-content: center; */
	z-index: 10;
	transform: translate(-50%, -50%);
	display: none;
}
			 
.toast_box p {
	box-sizing: border-box;
	padding: 10px 20px;
	width: max-content;
	/* 提示框的背景色 */
	background: #707070;
	color: #fff;
	font-size: 16px;
	text-align: center;
	border-radius: 6px;
	opacity: 0.8;
} 

.toliet{
	margin: 0 auto;
}

