/* 弹框 */
/* @media (min-width: 768px) */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    background-color: rgba(0,0,0,0.7);
    /*overflow: hidden;*/
    /*-webkit-overflow-scrolling: touch;*/
    /*outline: 0;*/
}
.modal1 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    background-color: rgba(0,0,0,0.7);
    /*overflow: hidden;*/
    /*-webkit-overflow-scrolling: touch;*/
    /*outline: 0;*/
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    padding: 2vw;
}
.modal-dialog {
    width: 500px;
    margin: 10% auto;
}
.modal-title {
    text-align: center;
    font-size: 22px;
}
.modal-header {
    padding: 15px;
    border-bottom: 0px solid #e5e5e5;
}
.modal-footer {
    padding: 15px 25px;
    text-align: right;
    border-top: 0px solid #e5e5e5;
    color: #2a82e4;
}
.login_input{
    background-color: rgba(238, 238, 238, 1);
    height: 55px;
    width: 97%;
    border: none;
    padding-left: 3%;
}
.login_btn{
    background-color: #2a82e4;
    height: 52px;
    color: #ffffff;
    width: 100%;
    border: none;
    font-size: 20px;
}
.modal-body > *{
    margin-bottom: 20px;
}

.user_content{
    color: #3097ef;
}

.nav_ul li:hover,
.nav_right:hover{
    cursor: pointer;
}