html, body {
    height: 100%;
    width: 100%;
    font-family: MicrosoftYaHei;
    overflow: hidden;
}
body{
    background: url(../images/login/bg.jpg) 50% 50% no-repeat;
    background-size: cover;
}

body,html,div,p,ul,li,a,span,label,dl,dd,dt,button,input{
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
}
.m-title{
	display: none;
}
.error-info{
    display: none;
}
.login-form{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1080px;
    height: 510px;
    margin: -300px 0 0 -540px;
    background:rgba(255,255,255,1);
    box-shadow:0px 5px 20px 0px rgba(202,207,233,0.6);
    border-radius: 4px;
    display: flex;
}
.login-form .l{
    flex: 1;
    width: 575px;
    height: 100%;
    padding: 40px 90px;
}
.login-form .l ul{
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #ededed;
}
.login-form .l li{
    list-style: none;
    flex: 1;
}
.login-form .l li a{
    display: block;
    height: 50px;
    line-height: 50px;
    text-decoration: none;
    font-size:16px;
    color:rgba(153,153,153,1);
}
.login-form .l li a span{
    display: inline-block;
    height: 100%;
    position: relative;
}
.login-form .l li a.active span::before{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    height:4px;
    background:rgba(48,49,53,1);
    border-radius:3px;
}
.login-form .l li a.active{
    font-weight:bold;
    color:rgba(51,51,51,1);
}
.login-form .l h3{
    font-size:26px;
    color:rgba(51,51,51,1);
    line-height: 0;
    margin: 50px 0 40px;
    font-weight: 400;
}
.login-form .l form{
    display: block;
}
.login-form .l form label{
    display: block;
    margin-bottom: 24px;
}
.login-form .l form label input{
    display: block;
    padding: 0 10px;
    width: 100%;
    height: 42px;
    border-radius:4px;
    border:1px solid rgba(225,233,230,1);
}
.login-form .l form button{
    height: 43px;
    background:linear-gradient(180deg,rgba(51,83,196,1) 0%,rgba(31,53,177,1) 100%);
    border-radius:4px;
    border: 0;
    width: 100%;
    color: #fff;
    cursor: pointer;
}
.login-form .l form button:active{
    background:linear-gradient(180deg,rgba(31,53,177,1) 0%,rgba(51,83,196,1) 100%);
}

.login-form .r{
    width: 499px;
    height: 100%;
    background: url(../images/login/bg-side.jpg);
}
.login-form .r .txt{
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 499px;
    height: 100%;
    overflow: hidden;
    background:linear-gradient(180deg,rgba(51,83,196,1) 0%,rgba(31,53,177,1) 100%);
    border-radius:2px;
    opacity:0.9;
    color: #fff;
}
.login-form .r .txt dl{
    height: 55px;
    padding-left: 73px;
    margin-bottom: 50px;
}
.login-form .r .txt dl:last-child{
    margin-bottom: 0;
}
.login-form .r .txt dt{
    font-size:18px;
    font-weight: 400;
    line-height: 150%;
}
.login-form .r .txt dd{
    margin: 0;
    font-size:14px;
    color: rgba(255,255,255,0.7);
}
.login-form .r .txt .item-1{
    background: url(../images/login/icon-01.png) no-repeat;
}
.login-form .r .txt .item-2{
    background: url(../images/login/icon-02.png) no-repeat;
}
.login-form .r .txt .item-3{
    background: url(../images/login/icon-03.png) no-repeat;
}
.login-form #tab-3{
	display: none;
	text-align: center;
	padding: 20px 0;
}

.login-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.4);
}
.login-footer .inner{
    width: 650px;
    margin: 0 auto;
    height: 80px;
}
.login-footer .inner p{
    display: flex;
    align-items: center;
    /*margin: 0 80px 0 0;*/
    justify-content: center;
    text-align: center;
    height: 80px;
    font-size:14px;
    line-height: 180%;
}
.login-footer .inner img{
    float: right;
    margin: 5px 0;
    width: 70px;
    display: block;
}

.login-form .l .register{
    padding: 20px 0 0;
}
.login-form .l .register label{
    margin-bottom: 20px;
}
.login-form .l .register .split{
    display: flex;
}
.login-form .l .register .split input{
    flex: 1;
    margin-right: 24px;
}
.login-form .l .register .split img{
    width: 100px;
}
.login-form .l .register .split button{
    width: 100px;
}
.login-form .l .register .split .gender{
    height: 43px;
    background: linear-gradient(180deg,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 100%);
    border-radius: 4px;
    color: #2842b9;
    cursor: pointer;
    border: 1px solid #2842b9;
}
.login-form .l .register .split .gender.acitve{
    background: linear-gradient(180deg,rgba(31,53,177,1) 0%,rgba(51,83,196,1) 100%);
    color: #fff;
}
.login-form .l .register .split .gender.w{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.login-form .l .register .split .gender.m{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    right: -1px;
}