body {
    background-color: #ededed;
}

.container {
    width: 100%;
    min-height: 100vh;
    min-width: 1300px;
    /*background: url(../images/bg.png) no-repeat center center;*/
}

.main_cont {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    background: url(../images/login_bg.jpg) no-repeat top center;
    background-size: 100% auto;
    padding-top: 0.1px;

}

.main_cont .main_cont_inner {
    width: 1300px;
    margin: 0 auto;
}

.main_cont_inner .main_title {
    width: 100%;
    text-align: left;
    margin: 10vh auto 0;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}

.login_view {
    width: 100%;
    /* margin: 5vh auto 0; */
    margin: 0 auto;
}


/*登录*/
.login_view_r {
    width: 360px;
    margin-right: 85px;
}

.login {
    width: 100%;
    height: 347px;
    margin-top: 20vh;
    /* margin-top: 80px; */
    /*background: yellow;*/
}

.login_title {
    margin: 0 auto;
    font-family: "微软雅黑";
    text-align: left;
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 22px;
    color: #fff;
    letter-spacing: 1px;
}

.input-wrap {
    height: 47px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #cacaca;
    font-size: 14px;
    background: url(../images/yh.png) no-repeat 10px 12px;
}

.login .input-wrap:hover {
    border: 1px solid #2494f2;
}

.login .input-wrap input {
    display: block;
    height: 45px;
    line-height: 45px;
    margin-left: 12%;
    width: 88%;
    border: none;
    outline: none;
}

.login .username,
.login .password {
    width: 100%;
    margin: 0 auto 28px;
}

.login .username .input-wrap {
    background: url(../images/yh.png) no-repeat 10px 12px;
    background-color: #fff;
}

.login .password .input-wrap {
    background: url(../images/mm.png) no-repeat 10px 12px;
    background-color: #fff;
}


.login .login_btn {
    display: block;
    width: 100%;
    margin: 40px auto 0;
    line-height: 45px;
    text-align: center;
    background: #0064cb;
    font-size: 18px;
    color: #fff;
    font-family: "微软雅黑";
    border: none;
    outline: none;
    cursor: pointer;
}


/**错误信息提示*/
.errorMsg {
    display: block;
    width: 100%;
    text-align: center;
    font-family: '微软雅黑';
    font-size: 14px;
    color: red;
    min-height: 35px;
    line-height: 35px;
    margin: 0 auto;
}


@media screen and (max-width: 720px) {
    body { width: 100%; }
    .container {
        width: 100%;
        min-width: 300px;
    }

    .main_cont{
        width: 100%;
        background-size: 90%;
        background: url(../images/login_bg_m.jpg) no-repeat top center;
    }

    .main_cont .main_cont_inner{
        width: 100%;
    }

    .login_view_r{
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .login{
        width: 85%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 150px auto 0;
    }

    .login_title{
        text-align: center;
    }


}
