/* 头部 */
.top {
    width: 100%;
    height: 100px;
    background-color: rgb(255, 255, 255);
}

.top .logo {
    float: left;
    margin-top: 13px;
}
.top .logo img { height: 70px;}

.top .back {
    float: right;
    margin-top: 40px;
}

.top .back a {
    font-size: 16px;
    color: #304EBC;
}

/* 主体 */
.main {
    height: 500px;
    background-image: url(../../image/public/login/loginbg.png);
    background-repeat: no-repeat;
    background-position: center 0px;
}

.main .login-box {
    padding: 30px;
    height: 284px;
    width: 290px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    font-size: 12px;
    color: rgb(51, 51, 51);
    position: absolute;
    top: 80px;
    right: 0;
}

.main .login-box .title {
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
    color: rgb(51, 51, 51);
    padding-bottom: 16px;
    border-bottom: 1px rgb(238, 238, 238) solid;
    margin-bottom: 20px;
}

.main .login-box .mobile {
    position: absolute;
    top: 96px;
    left: 45px;
}

.main .login-box .pwd {
    position: absolute;
    top: 162px;
    left: 45px;
}

.main .login-box .in {
    padding: 2px 14px 2px 44px;
    width: 230px;
    height: 38px;
    background-color: #f9f9f9;
    border-radius: 4px;
    color: rgb(153, 153, 153);
    margin-bottom: 20px;
    border: 1px rgb(221, 221, 221) solid;
    outline: none;
}

input[type="checkbox"] {
    display: block;
    float: left;
    margin-top: -1px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
}

.check-style {
    width: 11px;
    height: 11px;
    display: block;
    margin: 2px 6px 0px 0px;
    float: left;
    border: 1px #ccc solid;
}

.check-style.on {
    background-image: url(../../image/public/login/select-on.png);
    border: 1px rgb(234, 95, 22) solid;
    background-position: -1px 0px;
}

.main a {
    color: #666666;
}

.main .login-box .forget {
    display: block;
    float: right;
}

.main .login-box .loginbtn {
    display: block;
    width: 290px;
    height: 40px;
    background-color: #304EBC;
    border-radius: 4px;
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
    line-height: 40px;
    border: none;
    margin-top: 18px;
    cursor: pointer;
}