@charset "utf-8";

/*
* 免责声明css
*
*/
.modal_agree {
    /* z-index: 100; */
    /* display: none; */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* overflow: auto; */
    background-color: rgba(0, 0, 0, 0.5);
    /* animation-duration: 2s; */
}
.modal-content {
    background-color: #f4f4f4;
    margin: 15% auto;
    width: 60%;
    box-shadow: 0 5p 8px 0 rgba(19, 7, 7, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
    animation-name: modalopen;
    animation-duration: 3s;
}

.modal-header {
    background: rgb(5, 80, 151);
    padding: 15px;
    color: #fff;
    text-align: center;
}

.modal-body {
    font-size: 20px;
    padding: 10px 20px;
}

.modal-footer {
    background: rgb(5, 80, 151);
    padding: 10px;
    color: #fff;
    text-align: center;
}

.closeBtn {
    color: #ccc;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.closeBtn:hover {
    cursor: pointer;
    color: #000000
}

div {
    display: block;
}
