.login-wrap {
    position: relative;

    width: 100%;
    height: 100%;

    background: url('/public/images/login/bg.png') no-repeat center;
    -o-background-size: cover;
       background-size: cover;
    overflow: hidden;
}
.left-logo {
    display: block;
    float: left;

    width: 362px;
    height: 46px;
    margin-top: 50px;
    margin-left: 60px;
}
.right-title {
    display: block;
    float: right;
    position: absolute;
    top: 50px;
    right: 15%;
    z-index: 99;

    width: 320px;
    height: 60px;

    line-height: 60px;
    font-size: 50px;
    color: #fff;
    text-align: center;
    font-weight: 700;
}
.login-box {
    position: absolute;
    top: 210px;
    right: 200px;
    right: 15%;
    z-index: 99;

    width: 320px;
    height: 380px;
    padding: 20px;
    border-radius: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;

    background: #fff;
}
.login-box-text {
    width: 100%;
    height: 25px;

    font-size: 24px;
    text-align: center;
    color: #0a8ff6;
    font-weight: 700;
}
.login-error-text {
    display: block;

    width: 100%;
    min-height: 20px;
    margin-top: 10px;
    
    font-size: 14px;
    text-align: center;
    color: #f00;
}
.login-ipt-line {
    width: 100%;
    height: 50px;
    margin-top: 15px;

    border: 1px solid #ddd;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-radius: 5px;
    overflow: hidden;
}
.login-ipt-line:first-child {
    margin-top: 5px;
}
.chose-ipt-line {
    border: 1px solid #f00;
}

.login-icon {
    display: block;
    float: left;

    width: 20px;
    height: 20px;
    margin-left: 14px;
    margin-top: 14px;
}
.user-icon {
    background: url('/public/images/login/user.png') no-repeat center;
    -o-background-size: cover;
       background-size: cover;
}
.pwd-icon {
    background: url('/public/images/login/pwd.png') no-repeat center;
    -o-background-size: cover;
       background-size: cover;
}
.code-icon {
    background: url('/public/images/login/code.png') no-repeat center;
    -o-background-size: cover;
       background-size: cover;
}
.login-ipt {
    display: block;
    float: left;

    width: -webkit-calc(100% - 40px);

    width: -moz-calc(100% - 40px);

    width: calc(100% - 40px);
    height: 100%;
    padding-left:10px;
    
    border: none;
    -moz-box-sizing: border-box;
         box-sizing: border-box; 
    line-height: 50px;
    font-size: 16px;;
    color: #555;
}
.pwd-eyes-ipt {
    width: -webkit-calc(100% - 68px);
    width: -moz-calc(100% - 68px);
    width: calc(100% - 68px);
}
.login-code-ipt {
    display: block;
    float: left;

    width: 140px;
    height: 100%;
    padding-left:10px;
    
    border: none;
    -moz-box-sizing: border-box;
         box-sizing: border-box; 
    line-height: 50px;
    font-size: 16px;;
    color: #555;
}
.code-wrap {
    display: block;
    float: left;

    width: 94px;
    height: 40px;
    margin-top: 3px;
    padding-left: 8px;

    border-left: 1px solid #ddd;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}
.code-img {
    display: block;

    width: 100%;
    height: 100%;

    cursor: pointer;
}

.login-rempwd-line {
    width: 100%;
    height: 25px;
    margin-top: 14px;
    margin-bottom: 6px;
}

.rempwd-left {
    float: left;

    height: 100%;
    cursor: pointer;
}

.remped-right {
    float: right;

    height: 100%;
} 

.rempwd-icon {
    display: block;
    float: left;

    width: 14px;
    height: 14px;
    
    background: url('/public/images/login/check.png') no-repeat center;
    -o-background-size: cover;
       background-size: cover;
}

.rempwd-icon-on {
    background: url('/public/images/login/check-on.png') no-repeat center;
    -o-background-size: cover;
       background-size: cover;
}

.rempwd-text {
    display: block;
    float: left;

    height: 14px;
    line-height: 14px;
    font-size: 14px;
    margin-left: 5px;
    color: #999;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select:none;
}

.forget-pwd {
    display: block;
    
    height: 14px;
    font-size: 14px;
    color: #999;
    text-align: right;
}

.login-submit-btn {
    width: 100%;
    height: 34px;
    border-radius: 5px;

    background: #0783e5;
    outline: none;    
    border: none;
    line-height: 34px;
    font-size: 16px;
    color: #fff;
    text-align: center;

    cursor: pointer;
}