.div_background{
    width: 100%;
    height: 100%;
    position:fixed;
    top :0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}


/* 隱私權 */
.pri_pro_box{
    width: 370px;
    background: #fff;
    border: 2px solid #005aad;
    padding: 10px 15px 25px 15px;
    position: fixed; 
    right: 5px;
    bottom: 5px;
    z-index: 999;
    transition: .3s;
}

.pri_pro_box:hover{
    border-radius: 20px;
    transition: .3s;
}

a{
    color: #005aad;
}

.text-center{
    text-align: center;
}

a.btn_agree{
    display: inline-block;
    background:#005aad;
    padding: 1rem 2rem;
    color: #fff;
    transition: .3s;
    margin-top: 1rem;
    cursor:pointer;
}

a.btn_agree:hover{
    border-radius: 10px;
    transition: .3s;
}


/* 防詐騙 */
.pri_pro_box2{
    width: 65%;
    background-color: #fff;
    background-image: url(../images/page_bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    border: 2px solid #005aad;
    padding: 5rem;
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: .3s;
}

.pri_pro_box2 h3{
    font-size: 36px;
    color: #005aad;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
    .pri_pro_box2{
        width: 80%;
        padding: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .pri_pro_box2{
        width: 95%;
        padding: 2rem;
    }

    .pri_pro_box2 h3{
        font-size: 32px;
        margin-bottom: 2rem;
    }
}