body {
    background-color: rgba(0,0,0,1);
    position: relative;
    overflow: hidden;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0,0,0,1);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -100px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fa6700;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fa6700;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fa6700;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#background {
    background-image: url("../images/background.jpg");
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -200;
    background-repeat: no-repeat;
    background-size: cover;
    /*-webkit-animation: sliderzoom linear 20s infinite alternate;*/
}

@-webkit-keyframes sliderzoom {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.4);
        -moz-transform: scale(1.4);
        -ms-transform: scale(1.4);
        -o-transform: scale(1.4);
        transform: scale(1.4)
    }
}

#center {
    /*background-image: url("../images/loginbackCenter.png");*/
    background-position: center center;
    background-repeat: no-repeat;
    height: 700px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-size: cover;
    -webkit-animation: sliderzoom linear 20s infinite alternate;
}

#loginForm {
    background-image: url("../images/login.png?v=10");
    background-repeat: no-repeat;
}

#loginbutton {
    font-size: 18px;
    margin: 0 auto;
    background: #45A2FF;
    border-radius: 2px;
    color: #fff;
    font-family: 'Microsoft YaHei','PingFang SC','Hiragino Sans GB';
    display: block;
    width: 305px;
    height: 42px;
    line-height: 42px;
    margin-top: 25px;
    /*box-shadow: 0 1px 3px rgba(0,0,0,.2);*/
    cursor: pointer;
}

    #loginbutton:hover {
        background: #2A95FF;
    }

.text-input {
    height: 24px;
    line-height: 24px;
    border: none;
    width: 280px;
    padding: 10px;
    padding-left: 0;
    padding-right: 20px;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: 'Microsoft YaHei','PingFang SC','Hiragino Sans GB';
}

.form-control {
    background-color: rgba(0, 0, 0, 0);
    background-position: center bottom, center calc(99%);
    background-repeat: no-repeat;
    background-size: 0 2px, 100% 1px;
    transition: background 0s ease-out 0s;
}

    .form-control,
    .form-control.focus,
    .form-control:focus {
        background-image: linear-gradient(#FA4E77, #FA4E77), linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2));
        border: 0;
        border-radius: 0;
        box-shadow: none;
        float: none;
    }

        .form-control.focus,
        .form-control:focus {
            background-size: 100% 2px, 100% 1px;
            outline: 0;
            transition-duration: .3s;
        }

        .form-control:-webkit-autofill {
            -webkit-box-shadow: 0 0 0 1000px white inset !important;
        }

#bottom {
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(52,71,94,0.5);
    width: 100%;
}

    #bottom a {
        font-family: Arial;
        text-align: center;
        cursor: pointer;
        display: block;
        padding-left: 2px;
        padding-right: 2px;
        width: 220px;
        /*margin:0 auto;*/
        height: 23px;
        line-height: 25px;
        color: #fff;
        font-weight: bold;
        margin-top: 15px;
        margin-left: 8px;
    }

        #bottom a span {
            color: #76e400;
        }

        #bottom a:hover {
            background-color: #6BC30D;
            color: #ffffff;
        }

            #bottom a:hover span {
                color: #ffffff;
            }


.errorA {
    color: #ff4a00;
    font-size: 14px;
    font-family: 'Microsoft YaHei','PingFang SC','Hiragino Sans GB';
}
