/*modal 模态框*/
.modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
}

.modal-wrap {
    margin: auto 0.15rem;
    position: relative;
    top: 50%;
}

.modal-content {
    width: 90%;
    height: 100%;
    background: #fff;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 0.05rem;
    position: relative;
    min-height: 100px;
    margin:0 auto;
}
.modal-content .modal-closeBtn {
    display: block;
    position: absolute;
    top: 0.05rem;
    right: 0.1rem;
    cursor: pointer;
    z-index: 10010;
}
.modal-content .modal-closeBtn i {
    font-size: 0.14rem;
    color: #ccc;
}
/*alert 弹出框*/
.alert-wrap {
    width: 100%;
    height: 100%;
}
.alert-header {
    text-align: center;
    height: 0.56rem;
    line-height: 0.56rem;
}
.alert-header-text {
    display: block;
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: 0.16rem;
    color: #000;
}
.alert-header-close {
    display: block;
    cursor: pointer;
    z-index: 10010;
}
.alert-header-close i {
    font-size: 12px;
    color: #b8bac3;
}
.alert-content {
    padding: 0 0.2rem 0.1rem;
    text-align: center;
    font-size: 0.14rem;
    color: #444;
    line-height: 0.2rem;
}
.alert-checkbox-wrap {
    font-size: 0.12rem;
    color: #777;
    padding: 0 0.2rem;
    margin: 0;
}
.alert-checkbox i {
    font-size: 0.15rem;
    color: #ddd;
    margin-right: 0.1rem;
}
.alert-checkbox.checked i {
    color: #00c3d5;
}
.alert-footer {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.1rem 0.2rem 0.3rem;
}
.alert-btn {
    height: 0.44rem;
    line-height: 0.44rem;
    font-size: 0.16rem;
    text-align: center;
    border-radius: 0.05rem;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 0.03rem 0.1rem rgba(185, 100, 82, 0.3);
}
.alert-ok {
    background-color: #00c3d5;
    color: #fff;
}
.alert-cancel {
    margin-right: 30px;
    color: #8f93a2;
    border: 1px solid #ddd;
}
