a,a:active,a:hover,a:visited{
    text-decoration: none;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,label{
    font-weight: normal;
}
button,input,select,text,textarea{
    outline: none;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
/*login的头部*/
#login_header{
    width: 100%;
    height: 60px;
}
.login-header{
    width: 100%;
}
.login-logo{
    display: inline-block;
    float: left;
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
}
.login-logo > img{
    max-height: 34px;
	margin-top: -5px;
}
.login-header > span{
    font-size: 18px;
    color: #777;
    margin: 20px 0 0 20px;
    float: left;
}
.login-header > .backhome{
    float: right;
    font-size: 14px;
    color: #bbb;
    margin-top: 20px;
    text-decoration: none;
}

/*login的footer*/
#login_footer{
    width: 100%;
}
.login-footer{
    width: 100%;
    padding: 20px 0;
}
.login-footer > p{
    width: 100%;
    text-align: center;
}
.login-footer > p > a{
    position: relative;
    text-decoration: none;
    color: #bbbbbb;
    margin: 0 12px;
}
.login-footer > p > a:after{
    content: '';
    position: absolute;
    width: 1px;
    height: 13px;
    top: 0;
    right: -12px;
    background: #eeeeee;
}
.login-footer > p > a:last-child:after{
    display: none;
}
.login-footer > span{
    color: #bbbbbb;
    font-family: Arial;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/*中间内容*/
.login-banner{
    width: 100%;
    height: 550px;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.login-pagi {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
}
.login-pagi_elem{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 8px;
    height: 8px;
    margin: 0 3px;
    border-radius: 8px;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .3s;
}
.login-pagi_elem.active{
    background: rgba(255,255,255,1);
}

.login-slider {
    z-index: 1;
    position: relative;
    height: 100%;
}
.login-slider.animating {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    will-change: transform;
}


.login-slide {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
}

/*登录框*/
.login-con{
    width: 100%;
    position: relative;
}
.login-mian-box{
    position: absolute;
    width: 362px;
    height: 370px;
    top: 50px;
    right: 0;
    border-radius: 3px;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    padding: 0 20px;
    overflow: hidden;
}
.login-box{
    width: 100%;
}
.login-title{
    width: 100%;
    height: 44px;
    border-bottom: 1px solid #eee;
    margin-top: 8px;
}
.login-title > a{
    display: inline-block;
    text-decoration: none;
    height: 44px;
    line-height: 44px;
    color: #07111b;
    font-size: 16px;
    padding: 0 10px 0 30px;
    cursor: pointer;
    position: relative;
}
.login-title > a.active{
    border-bottom: 2px solid #26caac;
	color:#26caac;
}
.login-title > a > i{
    position: absolute;
    top: 14px;
    left: 10px;
    width: 16px;
    height: 16px;
    background-size: 16px auto;
    background-position: 0 -16px;
    background-repeat: no-repeat;
}
.login-title > a.active > i{
    background-position: 0 0;
}
.login-title > a > i.login-icon-user{
    background-image: url("../images/login_icon1.png");
}
.login-title > a > i.login-icon-school{
    background-image: url("../images/login_icon2.png");
}
.login-title > a > i.login-icon-re{
    background-image: url("../images/login_icon3.png");
}
.login-title > a > i.login-icon-pwd{
    background-image: url("../images/login_icon4.png");
}
.login-tips{
    height: 22px;
    width: 100%;
    margin: 5px 0;
}
.login-tips .login-tips-d{
    width: 100%;
    height: 22px;
    background: #fff4e5;
    font-size: 12px;
    padding: 0 10px;
    line-height: 22px;
    overflow: hidden;
    color: #f56108;
    display: none;
}
.login-text{
    position: relative;
    width: 100%;
    height: 42px;
    border: 1px solid #dbe1e7;
    background: #f8fafc;
    border-radius: 3px;
    margin-bottom: 20px;
}
.login-text.cur{
    border: 1px solid rgba(38,202,172,.4);
    background: rgba(38,202,172,.04);
}
.login-text > input{
    width: 100%;
    border: 0;
    background: none;
    padding: 0 14px;
    height: 40px;
    color: #555;
}
.login-text > input::-webkit-input-placeholder { /* WebKit browsers */
    color:    #aaa;
}
.login-text > input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #aaa;
}
.login-text > input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #aaa;
}
.login-text > input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #aaa;
}

.login-box .login-btn{
    width: 100%;
    height: 42px;
    background: #26caac;
    border: 1px solid #24bda1;
    border-radius: 3px;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: background .5s ease;
}
.login-box .login-btn:hover{
    background: #24bda1;
}

.login-other{
    width: 100%;
}
.remember-pwd{
    float: left;
    position: relative;
}
.remember-pwd > label{
    padding-left: 18px;
    margin: 0;
}
.remember-pwd span{
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("../images/login_check_box.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 14px;
    position: absolute;
    left: 0;
    top: 2px;
}
.remember-pwd span.cur{
    background-position: 0 -14px;
}

.forget-pwd{
    float: right;
}
.forget-pwd > a{
    text-decoration: none;
    color: #999;
    margin-left: 20px;
    position: relative;
}
.forget-pwd > a:hover{
    color: #26caac;
}
.forget-pwd > a:first-child:after{
    content: '';
    position: absolute;
    top: 1px;
    right: -12px;
    width: 1px;
    height: 13px;
    background: #eee;
}

.other-loginstyle{
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #f8fafc;
    border-top: 1px solid #eff1f3;
    padding: 0 20px;
}
.other-loginstyle > span{
    float: left;
    margin-top: 20px;
}
.other-loginstyle > a{
    float: right;
    width: 30px;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    height: 30px;
    line-height: 32px;
    background: #dbe1e7;
    border-radius: 30px;
    margin: 15px 10px 0 10px;
}
.other-loginstyle > a > i{
    font-size: 16px;
}
.other-loginstyle > a.qq:hover{
    background: #68a5e1;
}
.other-loginstyle > a.wb:hover{
    background: #ea5d5c;
}


@media (max-width: 737px) {
    /*login的头部*/
    #login_header{
        height: 50px;
    }
    .login-header{
        position: relative;
    }
    .login-logo{
        height: 34px;
        line-height: 34px;
        margin-top: 6px;
    }
    .login-logo > img{
        max-height: 30px;
		margin-top: -2px;
    }
    .login-header > span{
        font-size: 15px;
        margin: 16px 0 0 12px;
    }
    .login-header > .backhome{
        position: absolute;
        right: 0;
        top: 11px;
        padding: 0 10px;
        font-size: 12px;
        height: 30px;
        line-height: 30px;
        border: 1px solid #eeeeee;
        border-radius: 30px;
        background: #fafafa;
        margin-top: 0;
    }

    /*login的footer*/
    .login-footer > p{
        margin-bottom: 2px;
    }
    .login-footer > p > a{
        display: inline-block;
    }
    .login-footer > p > a:after{
        top: 4px;
    }

    /*中间内容*/
    .login-banner{
        height: auto;
        background: #f6f9fb;
    }

    .login-pagi {
        display: none;
    }
    .login-slider{
        display: none;
    }


    /*登录框*/
    .login-mian-box{
        width: 100%;
        top: 0;
        position: static;
        margin: 20px 0;
    }
    .login-title > a{
        font-size: 14px;
    }
}












