.storanet_alert{
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.sa_blind{
    position: fixed;
    width: 100%;
    /* height: 100%; */
    background-color: #000000;
    opacity: 0.2;
}
.sa_wrap{
    overflow-y: auto;
    max-height: 830px;
    border-radius: 20px;
    width: auto;
    min-width: 340px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background-color: #ffffff;
    box-shadow: 0 5px 5px rgba(0,0,0,0.32);
}
.sa_title{
    color: #25303f;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.sa_content{
    padding: 20px;
    font-size: 20px;
    color: #25303f;
    text-align: center;
    font-weight: bold;
}
.sa_button{
    font-size: 16px;
    margin: 5px;
    padding: 5px 15px;
    text-align: center;
    border-radius: 10px;
    width: auto;
    font-weight: bold;
    cursor: pointer;
}
.sa_ok{
    background: #03426d;
    color: #ffffff;
}
.sa_cancel{
    border: #e6e6e6 solid 1px;
    background: #f2f4f6;
}
.sa_btn_wrap{
    justify-content: flex-end;
    display: flex;
}

.sa_close{
    right: 10px;
    position: absolute;
    width: 36px;
    cursor: pointer;
}