body {
    height: 100%;
    min-height: 500px;
    width: 100%;
    position: relative;
    background: url(/images/login-body-bg.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.logo {
    position: absolute;
    background: url(/images/logo.png) no-repeat;
    background-size: auto 59px;
    width: 259px;
    height: 60px;
    top: 60px;
    left: 110px;
    z-index: 99;
    cursor: pointer;
}

.container .login-ctn {
    position: absolute;
    z-index: 999;
    margin: auto;
    width: 520px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    top: 50%;
    margin-top: -203px;
    left: 50%;
    margin-left: -260px;
    padding: 10px;
    box-sizing: border-box;
    background: url(/images/login-bg.png) no-repeat;
    background-size: 100% 100%;
}

.login-bg {
    padding: 40px 70px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.login-title {
    color: #fff;
    font-size: 22px;
    position: relative;
    line-height: 48px;
    text-align: center;
    background: url(/images/login-title-bg.png) no-repeat;
    background-size: 100% 100%;
    width: 148px;
    height: 48px;
    margin: 0 auto;
}

.login-form {
    margin-top: 50px;
}

.login-item {
    margin: 0 auto 20px;
    position: relative;
    width: 360px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
}

.login-item .iconfont {
    font-size: 18px;
    color: #fff;
    float: left;
    position: absolute;
    left: 20px;
}

.login-item input {
    height: 48px;
    box-sizing: border-box;
    width: 100%;
    background: none;
    color: #ffe39f;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 0 25px 0 50px;
}

.login-item input:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.login-item input::-webkit-input-placeholder {
    color: #fff;
}

.login-item input:-moz-placeholder {
    color: #fff;
}

.login-item input::-moz-placeholder {
    color: #fff;
}

.login-item input:-ms-input-placeholder {
    color: #fff;
}

/*.login-item:hover .iconfont {*/

/*    color:#d22800;*/

/*}*/
.btn-group {
    width: 360px;
    margin: 40px auto 0;
    overflow: hidden;
}

.login-btn,
.expert-btn {
    float: left;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    background: rgba(17, 139, 242, 0.4);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.login-btn {
    width: 355px;
    margin-right: 20px;
}

.expert-btn {
    width: 124px;
}

.login-btn:hover,
.expert-btn:hover {
    background-color: #118BF2;
    background-image: linear-gradient(to right, #118BF2, #0FD7E7);
}

.login-toolbar {
    margin-top: 20px;
    text-align: right;
}

.login-toolbar>span {
    padding: 0 10px;
    color: #fff;
}

.login-toolbar #forgetpw {
    color: #fff;
    text-decoration: underline;
}

.login-toolbar #register {
    color: #0deaff;
}

.login-toolbar .login-remember {
    float: left;
    color: #999;
}

.login-toolbar .login-remember input {
    position: relative;
    opacity: 0;
    margin-left: 10px;
}

.login-toolbar .login-remember i {
    display: inline-block;
    position: absolute;
    background: #e8ecf5;
    border: 1px solid #d4dae9;
    color: #d4dae9;
    border-radius: 3px;
    margin-top: 2px;
    width: 13px;
    height: 13px;
}

#south {
    color: #fff;
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%;
}

#south span {
    margin: 0 10px;
}

.verify-code {
    height: 46px;
    width: 130px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 1px;
    top: 2px;
}

.verify-code img {
    vertical-align: middle;
    height: 48px;
    width: 120px;
    display: block;
    float: right;
    /*border-top-right-radius: 25px;*/
    /*border-bottom-right-radius: 25px;*/
}

@media screen and (min-width: 320px) and (max-width: 640px) {
    body {
        min-width: 0;
        background-size: auto 100%;
        min-height: 700px;
    }

    .container {
        padding-top: 120px;
    }

    .logo {
        top: 30px;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        background: url("/images/logo.png") no-repeat;
        background-size: 100%;
        width: 250px;
        height: 60px;
    }

    .container .login-ctn {
        width: 94%;
        position: relative;
        margin: 0 auto;
        left: 0;
        z-index: 2;
    }

    .login-bg {
        padding: 30px;
    }

    .login-title {
        /*display: none;*/
    }

    .login-toolbar {
        margin-top: 20px;
    }

    .btn-group,
    .login-btn,
    .expert-btn {
        width: 100%;
    }

    .login-btn {
        margin-bottom: 20px;
    }

    .login-item {
        width: 100%;
    }
}