.BeAlert_overlay{
	overflow:hidden;
	position:fixed;
	margin:0;
	padding:0;
	z-index:999999;
	background:#000;
	left:0;
	right:0;
	top:0;
	bottom:0;
	width:auto;
	height:auto;
	opacity: 0.6;
}
.BeAlert_box{
	position:fixed;
	top:50%;
	left:50%;
	background-color:#363636;
	border-radius:5px;
	padding:20px;
	z-index:1000000;
	font-family:微软雅黑;
	font-size:12px;
	text-align:center
}
.BeAlert_box .BeAlert_image{
	background:#363636;
	width:60px;
	height:60px;
	margin:10px auto;
	border-radius: 50%;
}
.BeAlert_box .BeAlert_image.warning{
	background:url("/static/admin/img/warning.png");
	background-size:60px;
	border-radius: 50%;
}
.BeAlert_box .BeAlert_image.error{
	background:url("/static/admin/img/error.png");
	background-size:60px;
	border-radius: 50%;
}
.BeAlert_box .BeAlert_image.info{
	background:url("/static/admin/img/info.png");
	border-radius: 50%;
	background-size:60px
}
.BeAlert_box .BeAlert_image.question{
	background:url("/static/admin/img/question.png");
	border-radius: 50%;
	background-size:60px
}
.BeAlert_box .BeAlert_image.success{
	background:url("/static/admin/img/success.png");
	border-radius: 50%;
	background-size:60px
}
.BeAlert_box .BeAlert_title{
	font-size:20px;
	margin:5px auto
}
.BeAlert_box .BeAlert_message{
	font-size:14px;
	margin:5px auto
}
.BeAlert_box .BeAlert_button{
	margin-top:20px
}
.BeAlert_box .BeAlert_button button{
	display:none;
	background-color:#24ab99;
	color:#fff;
	border:none;
	box-shadow:none;
	font-size:17px;
	font-weight:500;
	-webkit-border-radius:4px;
	border-radius:2px;
	width: 80px;
	height: 40px;
	line-height: 40px;
	cursor:pointer;
	margin:0 10px;
	outline:none;
	border-radius: 5px;
}
.BeAlert_box .BeAlert_button button.BeAlert_cancel{
	background-color:#c1c1c1
}
.BeAlert_box .BeAlert_button button.BeAlert_cancel:hover{
	background-color:#24ab99;
}
.BeAlert_box .BeAlert_button button.BeAlert_confirm:hover{
	background-color:#24ab99;
}
/*.BeAlert_confirm{
	background: #45c5fb;
}*/