.wrap{
    width: 100%;
    max-width: 1920px;
    height: 100%;
    background: url("../img/bg.png");
    background-size: cover;

    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -moz-box;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack:space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.content{
    height: calc(100% - 62px);
    margin: 0 23.28%;

    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -moz-box;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;

    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    align-items: center;

}
.title{
    font-size:30px;
    font-weight:bold;
    color:rgba(255,255,255,1);
    margin-bottom: 60px;
    white-space: nowrap;
}
.form_box{
    width: 410px;
    height: 366px;
    background:rgba(255,255,255,1);
}
.form_title{
    width: 100%;
    height: 92px;
    background: url("../img/head.png");
    background-size: cover;
}

.form{
    padding-top: 30px;
}
.form_item{
    width: 310px;
    height: 48px;
    position: relative;
    margin: 0 auto 10px auto;
    background: white;
    /*border:1px solid rgba(0,77,155,1);*/
    border:1px solid rgba(238,238,238,1);
    /*box-shadow:0px 0px 13px 0px rgba(0,77,155,0.2);*/
    border-radius:5px;
}
.form_item_btn{
    width: 310px;
    height: 48px;
    position: relative;
    margin: 0 auto 10px auto;
}
.icon_style{
    width: 19px;
    height: 22px;
    position: absolute;
    top:12px;
    left:5px;
}
.ipt{
    width: calc(100% - 27px);
    height: calc(100% - 2px);
    border:none;
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 25px;
    text-indent: 8px;
    margin: auto;
}
.login_btn{
    width: 310px;
    height: 48px;
    background:#2482C5;
    border-radius:5px;
    color: white;
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}
.login_btn:hover{
    cursor: pointer;
}


.footer{
    width: 100%;
    font-size:12px;
    font-weight:400;
    color:rgba(255,255,255,1);
    margin-bottom: 10px;

    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -moz-box;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: flex-end;

    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}

/* 登陆错误 */
.modal-dialog{
    /* width: 71%!important; */
    /*width: 71%;*/

    width: 100%;
    height: 100%;
    padding: 0 18.75%;

    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -moz-box;
    display: flex;

    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: center;

    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    align-items: center;

    margin: auto;
}
.modal_left{
    flex: 0.55;
    /*background: silver;*/
}
.modal_box{
    flex: 0.45;
    /*background: saddlebrown;*/
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-box;
    display: -moz-box;
    display: flex;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}
.error_text{
    font-size: 16px;
    text-align: center;
    line-height:28px;
}
.close_icon{
    width: 24px;
    height: 24px;
}
.close{
    opacity: 1!important;
}
.close:hover, .close:focus{
    opacity: 1!important;
}
.modal-header{
    border:none!important;
    padding: 15px 15px 0px 15px!important;
}
.modal-body{
    padding-top: 0!important;
}
.modal-footer{
    border:none!important;
    text-align: center!important;
    padding-bottom: 30px!important;
}
.error_btn{
    width:110px;
    height:38px;
    background:#2482C5;
    border-radius:5px;
    color: white;
}
.login_error_icon{
    display: inline-block;
}
.m_error_text{
    text-align: center;
    padding-top: 30px;
}
.modal-content{
    width: 220px!important;
}

/* 媒体查询 */
@media (min-width: 1680px) and (max-width: 1920px) {
    .footer{
        margin-bottom: 31px;
    }
}
@media (min-width: 1440px) and (max-width: 1680px) {
    .content{
        margin: 0 20%;
    }
}
@media (min-width: 1366px) and (max-width: 1440px) {
    .content{
        margin: 0 19%;
    }
}
@media (min-width: 1280px) and (max-width: 1366px) {
    .content{
        margin: 0 18%;
    }
}
@media (max-width: 1280px){
    .content{
        margin: 0 15%;
    }
}

/* 1384 1280*/