body,
p,
ul,
li,
h1,
h2,
h3,
h4 {
    margin   : 0;
    padding  : 0;
    font-size: 20px;
}
input {

    border: 0;  // 去除未选中状态边框
outline: none; // 去除选中状态边框
background-color: rgba(0, 0, 0, 0);// 透明背景

}

.container {
    width           : 100%;
    height          : 100vh;
    /*background-image: url(/statics/public/images/login/bg.jpg);*/
    background-size : cover;
    position        : relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_left{
    position: fixed;
    z-index: 0;
    left: 7%;
    top: 60%;
    display: flex;
    flex-direction: column;
}
.login_container {
    width        : 480px;
    /*background   : rgba(255, 255, 255, 0.8);*/
    /*box-shadow   : 0px 2px 10px 0px rgba(51, 51, 51, 0.3);*/
    border-radius: 4px;
    /*position     : fixed;*/
    /*right        : 10%;*/
    /*top          : 50%;*/
    /*transform    : translateY(-50%);*/

}

.login_header {
    display        : flex;
    align-items    : center;
    padding        : 36px 0 5px 0;
    text-align     : center;
    justify-content: center;
    margin: 0 auto 20px;
}

.logo_name {
    font-size  : 32px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color      : #fff;
}

.login_header img {
    width : 61px;
    height: 62px;
}
.form_name{
    color: #fff;
    font-size: 17px;
    padding-left: 85px;
    margin: 18px 0 13px;
}
.login_form_item {
    width          : 310px;
    height         : 30px;
    background     : rgba(255, 255, 255, 1);
    border-radius  : 4px;
    margin         : 5px auto 13px;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 7px 0;
}

.login_form_item_v {
    width          : 310px;
    height         : 50px;
    margin         : 5px auto 13px;
    display        : flex;
    justify-content: space-between;
    align-items    : center;

}

.login_form_item_v input {
    width        : 170px;
    height       : 44px;
    background   : rgba(255, 255, 255, 1);
    border-radius: 4px;
    border       : 0;
    outline      : none;
    padding-left : 20px;
    box-sizing   : border-box;
}

.login_form_item_v img {
    width : 124px;
    height: 44px;
}

.login_form_item img {
    width : 20px;
    margin: 0 20px
}

.login_form_item input {
    height : 100%;
    flex   : 1;
    border : 0;
    outline: none;
    padding-left: 20px
}

.login_form_item_v button {
    width        : 340px;
    height       : 50px;
    /*background   : rgba(47, 107, 238, 1);*/
    background: #ca172a;
    border-radius: 4px;
    font-size    : 17px;
    font-family  : Microsoft YaHei;
    /*font-weight  : bold;*/
    color        : rgba(255, 255, 255, 1);
    border       : 0
}

.login_footer {
    width        : 480px;
    height       : 80px;
    /*background   : rgba(250, 250, 250, 1);*/
    opacity      : 0.9;
    border-radius: 0px 0px 10px 10px;
    margin-top   : 38px;
    text-align   : center;
}

.login_a {
    padding-top: 9px;
}

.login_footer .login_a a {
    width          : 94px;
    height         : 30px;
    background     : rgba(255, 255, 255, 1);
    border         : 1px solid rgba(222, 222, 222, 1);
    border-radius  : 4px;
    display        : inline-block;
    line-height    : 30px;
    font-size      : 14px;
    font-family    : Microsoft YaHei;
    font-weight    : 400;
    color          : rgba(102, 102, 102, 1);
    text-decoration: none;
}
.login_footer p a {
    /*background     : rgba(255, 255, 255, 1);*/
    display        : inline-block;
    line-height    : 30px;
    font-size      : 14px;
    font-family    : Microsoft YaHei;
    font-weight    : 400;
    color          : #fff;
    text-decoration: none;
}
.login_footer a img {
    width         : 20px;
    vertical-align: middle;
}

.login_footer p {
    margin-top : 10px;
    font-size  : 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color      : rgba(102, 102, 102, 1);

}