.BeAlert_overlay {
    overflow: hidden;
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999;
    background:url(../images/overlay.png);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.BeAlert_box {
    position: fixed;
    top: 60%;
    left: 50%;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    z-index: 10000;
    font-family: 微软雅黑;
    font-size: 12px;
    text-align: center;
}
.BeAlert_box .BeAlert_image {
    background: #fff;
    width: 60px;
    height: 60px;
    margin: 10px auto;
}
.BeAlert_box .BeAlert_image.warning {
    background:url(../images/warning.png);
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.error {
    background:url(../images/error.png);
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.info {
    background:url(../images/info.png);
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.question {
    background:url(../images/question.png);
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.success {
    background:url(../images/success.png);
    background-size: 60px;
}
.BeAlert_box .BeAlert_title {
    font-size: 16px;
    margin: 5px auto;
	color:#333;
}
.BeAlert_box .BeAlert_message {
    font-size: 14px;
    margin: 5px auto;
	text-align:left;
	color:#666;
	margin-left: 35px;
}

.BeAlert_box .BeAlert_button {
    margin-top: 20px;
}
.BeAlert_box .BeAlert_button button {
    display: none;
    background-color: #03a9f5;
    color: #fff;
    border: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 5px;
    padding: 5px 30px;
    cursor: pointer;
    margin: 0 10px;
    outline: none;
	font-family:inherit;
}
.BeAlert_box .BeAlert_button button.BeAlert_cancel {
    background-color: #c1c1c1;
}
.BeAlert_box .BeAlert_button button.BeAlert_cancel:hover {
    background-color: #b9b9b9;
}
.BeAlert_box .BeAlert_button button.BeAlert_confirm:hover {
    background-color: #16b6ff;
}
