.message{
    position: fixed;
    top: 50px;
    text-align: center;
    /*background: #ddd;*/
    padding: 7px 20px;
    margin-left: 50%;
    transform: translate(-50%);
    border-radius: 10px;
    z-index: 99999;
    opacity: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px #ddd;
}
.message .message_icon{
    width: 18px;
    margin-right: 5px;
}


.loading_wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #eee;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    text-align: center;
    line-height: 100vh;
}
.loading_wrapper img{
    transform: rotate(7deg);
}

/*确认框*/
.mask{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    overflow: auto;
    outline: 0;
    width: 100%;
    height: 100%;
}
.confirmContainer{
    position: fixed;
    top: 50px;
    width: 420px;
    height: 190px;
    margin: 0 auto;
    border: 1px solid #bfbfbf;
    margin-top: 20px;
    background: #fff;
    opacity: 1;
    border-radius: 5px;
    padding: 32px 32px 24px;
    z-index: 9999;
    margin-left: 50%;
    transform: translate( -50%, 0);
}
.confirmContainer img{
    width: 20px;
}

.confirmTitle{
    font-size: 16px;
}
.confirmDescription{
    font-size: 12px;
    color: #585858;
    margin-top: 10px;
    margin-left: 20px;
}
.confirmBtns{
    overflow: hidden;
    float: right;
    margin-top: 24px;
    /*position: absolute;*/
    /*top: 150px;*/
}
.confirmBtns div{
    display: inline-block;
    padding: 10px 50px;
}
.confirmBtns .cancel, .confirmBtns .confirm{
    width: 75px;
    padding: 5px 10px;
    border-radius: 3px;
    text-align: center;
}
.confirmBtns .cancel{
    line-height: 1.5715;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,.015);
    box-shadow: 0 2px 0 rgba(0,0,0,.015);
    cursor: pointer;
    -webkit-transition: all .3s cubic-bezier(.645,.045,.355,1);
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    height: 32px;
    padding: 4px 15px;
    font-size: 14px;
    border-radius: 2px;
    color: rgba(0,0,0,.65);
    background: #fff;
    border-color: #d9d9d9
}
.confirmBtns .confirm{
    color: #fff;
    border: 1px solid #37b89c;
    background: #37b89c;
}


