html,body,div,ul,li,ol,p,a,span,input{
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
}
#UserName-error,#Password-error{
    color: red;
    font-size: 14px;
    line-height: 17px;
    background-image:url("../static/images/error_03.png");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
}
.iconfont{
    font-family:"iconfont" !important;
    color: #b8b8b8;
    font-size: 23px;
    line-height: 40px;
    padding-left: 8px;
    margin: 0;
}
.login{
    position: absolute;
    top:0;
    left:0;
    bottom: 0;
    right:0;
    background:url("../static/images/login.jpg") no-repeat 100% center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login_con{
    width:500px;
    height:430px;
    position: relative;
}
.login_in{
    width: 500px;
    min-height:400px;
    border-radius: 5px;
    background: #fff;
    padding-top: 42px;
    padding-bottom: 30px;
    box-sizing: border-box;
    position: absolute;
    top:0;
    left:0;
    z-index: 99;
}
.form_con{
    width: 281px;
    height:auto;
    margin: 0 auto;
}
.login_title{
    width: 100%;
    height:72px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}
.login_title>img{
    /*width: 45px;*/
    height:100%;
    display: block;
    margin-right: 5px;
}
.login_title>h3{
    width: auto;
    height:100%;
    font-size: 30px;
    color: #444444;
    font-family: "黑体";
    line-height: 42px;
    font-weight: 800;
}
.input_type{
    width: 100%;
    height:40px;
    position: relative;
    margin-bottom: 19px;
}
.input_type>span{
    position: absolute;
    top:0;
    left:0;
}
.input_type>input{
    width: 100%;
    height:40px;
    box-sizing: border-box;
    border:1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    padding-left: 34px;
    outline-color: #2375d1;
    /*position: absolute;*/
    /*top:0;*/
    /*left:0;*/
}
.input_type>input::-webkit-input-placeholder{
    color: #888888;
}
.input_type>input::-moz-placeholder{
    color: #888888;
}
.input_type>input:-ms-input-placeholder{
    color: #888888;
}
.login_btn{
    width: 100%;
    height:41px;
    border:1px solid #6893ea;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-family: "微软雅黑";
    background: #2375d1;
    cursor: pointer;
}
.form_yin{
    width: 339px;
    height:40px;
    background: url("../static/images/shodow_03.png") no-repeat;
    position: absolute;
    bottom:30px!important;
    left:50%;
    margin-left: -169px;
    border-radius:60%;
    opacity: 0.3;
    box-shadow: 0 9px 25px 9px rgba(27,5,7,0.7);
}
.back{
    position: fixed;
    top:40px;
    right:70px;
    color:#fff;
    font-size: 15px;
    width: auto;
    height:40px;
    line-height: 40px;
    background: rgba(35,117,209,0.5);
    padding: 0 15px;
    border-radius: 5px;
}
.login_check{
    width: 100%;
    height:auto;
    overflow: hidden;
}
.back_load{
    width:auto;
    height:auto;
    font-size: 14px;
    line-height: 35px;
    text-align: right;
    margin-top: 15px;
    margin-bottom: 15px;
    float: right;
}
.back_load>a{
    color: #2375d1;
}
.back_load>a:hover{
    color:#ff8b44;
}
/*忘记密码*/
.forgot_password{
    width: auto;
    float: left;
    font-size: 14px;
    line-height: 35px;
    text-align: right;
    margin-top: 15px;
    margin-bottom: 15px;
}
.forgot_password>a{
    color: #2375d1;
}
.forgot_password>a:hover{
    color:#ff8b44;
}
.back:hover{
    background: rgba(35,117,209,1);
}

/*快捷登录*/
.shortcut_login{
    width: 100%;
    height:41px;
    border:1px solid #a5a5a5;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: #333;
    font-family: "微软雅黑";
    /*background: #2375d1;*/
    display: block;
    margin-top: 20px;
}
.shortcut_login:hover{
    color: #2375D1;
    border-color: #2375D1;
}

/*响应式*/
@media (max-width:500px){
    .back{
        right:5%;
    }
   .login_con{
       width:90%;
       margin: 0 auto;
   }
    .login_in{
        width: 100%;
    }
}
@media (max-width:380px){
    .form_yin{
        width: 85%;
        left:60%;
    }
    .back{
        top:25px;
    }
}
@media (max-width:350px){
    .login_con{
        height:354px;
    }
    .input_type{
        width: 90%;
        margin: 0 auto 19px;
    }
    .login_btn{
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    .login_check{
        width: 90%;
        margin: 0 auto;
    }
}