html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/login/bg001.jpg) no-repeat;
    background-size: cover;
    font-family: Microsoft YaHei;
    height: 100%;
    font-size: 14px;
    margin: 0;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    padding: 0;
}

ul, li {
    list-style: none;
}

.spinner {
    visibility: hidden;
    position: absolute !important;
    top: 12px !important;
    left: 34% !important;
}

.mouse-disable input {
    cursor: no-drop !important;
    opacity: 0.3;
}

.mouse-disable .spinner {
    visibility: inherit;
}

.login {
    display: flex;
    width: 500px;
    padding: 30px;
    background: rgba(255,255,255,0.80);
    border-radius: 5px;
    box-shadow: 0 1px 11px rgba(0,0,0,.27);
    -webkit-box-shadow: 0 1px 11px rgba(0,0,0,.27);
}

    .login .left {
        width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

        .login .left h4 {
            font-size: 24px;
            font-weight: normal;
            color: #666;
        }

    .login .right {
        width: calc(100% - 180px);
        padding-left: 30px;
        border-left: 1px solid #bcbcbc;
    }

    .login .title {
        display: flex;
        height: 40px;
        line-height: 40px;
        font-size: 26px;
        color: #666;
        margin-bottom: 10px;
        font-family: Microsoft Yahei;
    }

    .login .box {
        display: flex;
        justify-content: center;
        color: #666;
    }

        .login .box > form {
            width: 100%;
        }

            .login .box > form > ul {
                margin: 0;
            }

    .login .main li:first-child {
        margin-top: 0;
    }

    .login .box li {
        margin-top: 20px;
        position: relative;
    }

        .login .box li .text {
            position: absolute;
            left: 10px;
            top: 8px;
            font-size: 20px;
            color: #0f0f0f;
        }

        .login .box li:nth-child(2) .text {
            color: #919191;
        }

        .login .box li > input {
            width: calc(100% - 64px);
            height: 20px;
            line-height: 30px;
            padding: 8px 10px 8px 50px;
        }

.rememberpwd {
    display: flex;
}

    .rememberpwd span {
        width: 20px;
        height: 20px;
        font-size: 14px;
        display: inline-block;
        position: relative;
        top: 5px;
        left: 0;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .rememberpwd .icon-checked, .rememberpwd .icon-unchecked {
        color: #505050;
        position: relative;
        top: 0px;
        left: 2px;
        cursor: pointer;
    }

.cup {
    cursor: pointer;
    font-family: Microsoft YaHei;
    color: #b1b0b0;
}

.login-btn {
    position: relative;
}

.login .box .login-btn input {
    background-color: #469FC7;
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 0;
    color: #fff;
    outline: none;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    border-radius: 2px;
    font-family: Microsoft YaHei;
    background: #4A7AE5;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.50);
    border-radius: 3px;
    transition: background .5s;
}

.yzcode {
    display: none;
}

.copyright {
    position: fixed;
    bottom: 20px;
    font-size: 12px;
    color: #fff;
}

.btn-disabled {
    background: #bebebf !important;
}

.login-loading {
    display: none;
    position: absolute;
    top: 10px;
    left: 190px;
    width: 18px;
    height: 18px;
    -webkit-animation: circle infinite .75s linear;
    -moz-animation: circle infinite .75s linear;
    -o-animation: circle infinite .75s linear;
    animation: circle infinite .75s linear;
    border: 2px solid #fff;
    border-top-color: rgba(0,0,0,.2);
    border-right-color: rgba(0,0,0,.2);
    border-bottom-color: rgba(0,0,0,.2);
    border-radius: 100%;
}

@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
