.BeAlert_overlay {
    overflow: hidden;
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999;
    /*background: url("overlay.png");*/
    background-color:rgba(0,0,0,0.1);
    
    
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: auto;
}


.BeAlert_box {
    position: fixed;
    top: 50%;
    left: 50%;
    padding-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0px;
    z-index: 10000000000000000000;
    font-family: 微软雅黑;
    font-size: 12px;
    text-align: center;
    border: 1px solid #ccc;
}

.BeAlert_box  .BeAlert_head {
    padding-top: 10px;
    padding-left: 14px;
    height: 33px;
    font-size: 16px;
    color: #666;
    font-family: Pingfang-sc-regular;
    background-color: #f7f7f7;
    text-align: left;
}
.BeAlert_box .BeAlert_image {
    background: #fff;
    width: 60px;
    height: 60px;
    margin: 10px auto;
}
.BeAlert_box .BeAlert_image.warning {
    background: url("warning.png");
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.error {
    background: url("error.png");
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.info {
    background: url("info.png");
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.question {
    background: url("question.png");
    background-size: 60px;
}
.BeAlert_box .BeAlert_image.success {
    background: url("success.png");
    background-size: 60px;
}
.BeAlert_box .BeAlert_title {
    font-size: 20px;
    margin: 5px auto;
}
.BeAlert_box .BeAlert_message {
    font-size: 14px;
    margin: 25px auto;
}
.BeAlert_box .BeAlert_button {
    margin-top: 10px;
}
.BeAlert_box .BeAlert_button button {
    display: none;
    background-color: #38b3ff;
    color: #fff;
    border: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    -webkit-border-radius: 4px;
    border-radius: 2px;
    padding: 0px 30px;
    height: 35px;
    width: 120px;
    cursor: pointer;
    margin: 0px 10px;
    outline: none;
}
.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: #38b3ff;
}
