@charset "utf-8";
html, body {
    width: 100%;
    height: 100%;
    background: #1a478b;
    padding: 0;
    margin: 0;
    border: 0;
}
.container{
    position: absolute;
    height:calc(100% - 50px);
    left:0;
    z-index: 1;
}

#login_header {
    margin: 0;
    width: 100%;
    color: lightgrey;
    top: 25px;
    text-align: center;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 20px;
}

.vision {
    font-size: 0.5em;
    margin-left: 10px;
}

#login_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url(../img/login_public/bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.main {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-top: 1px solid transparent;
}

.login-title {
    padding-left: 10%;
    text-align: left;
    color: white;
    margin-bottom: 5px;
    font-size: 1em;
}

input[type=text], input[type=password], input[type=button], input[type=submit] {
    width: 71%;
    height: 3em;
    background: transparent;
    border-radius: 25px;
    /*margin: auto;*/
    opacity: 1;
    outline-style: none;
    border: 1px solid #6b9fde;
    font-size: 1em;
    color: white;
    font-family: "微软雅黑";
    text-align: center;
}

input::-webkit-input-placeholder, input::-moz-input-placeholder, input::-ms-input-placeholder {
    color: white;
}

input:focus {
    background-color: #145098;
    box-shadow: 0px 0px 5px #1c67cd;
}

.main .center {
    width: 100%;
    margin: 0;
    height: 320px;

}

#submit {
    width: 71%;
    font-size: 1.2em;
    letter-spacing: 2px;
    background-color: #00c2ff;
    opacity: 1;
    text-align: center;
    color: white;
    padding: 0;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    height: 2.5em;
}

#submit:active {
    background-color: #0192c9;
    top: 5px;
    box-shadow: 0px 0px 5px rgba(241, 237, 239, 0.35);
}

#login-form,.wechat-login {
    min-width: 300px;
    width: 60%;
    max-width: 500px;
    padding: 1.5% 0 1.5% 0;
    opacity: 0.8;
    font-size: 14px;
    color: #cccccc;
    border: 1px solid #6b9fde;
    border-radius: 10px;
    text-align: center;
    background: #165aab;
    margin: auto;
    position: relative;
}

#login-form > div {
    position: relative;
}

.Cone {
    color: white;
    position: absolute;
    margin-top: 2.5%;
    height: 50px;
    font-size: 1.35em;
    margin-left: 15px;
}

.warnspan {
    height: 20px;
    color: coral;
    font-size: 12px;
    text-align: left;
    padding: 3px 0 0 15%;
}

#board_panel {
    display: none;
    text-align: right;
    position: relative;
}

#board_panel img {
    width: 80%;
    display: none;
}

#board_panel img.bardimg {
    display: inline;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-name: changeboard;
    animation-delay: 0;
}

#info_panel {
    bottom: 0;
    left: 10%;
    display: none;
    padding: 5px 10px;
    margin: auto;
    border-left: 4px solid #01baf3;
    opacity: 0.9;
    margin-top: 10px;
    text-align: left;
    color: #4694e6;
    background: url(../img/login_public/infobg.png) no-repeat top left;
    background: -webkit-linear-gradient(left, #0f6cbf, transparent);
    background: -moz-linear-gradient(left, #0f6cbf, transparent);
    background: -o-linear-gradient(left, #0f6cbf, transparent);
    background: -webkit-gradient(linear, 0 0, 100% 0, from(#0f6cbf), to(transparent));
    background: linear-gradient(left, #0f6cbf, transparent);
}

#info_panel p:first-child {
    background: #074e97;
    padding: 3px;
    border-radius: 5px;
    font-size: 1.5em;
    display: inline-block;
    letter-spacing: 2px;
}

#info_panel p:last-child {
    font-size: 1.1em;
}

#info_panel p {
    font-size: 1.4em;
    margin: 2px;
}

#bottom_panel {
    bottom: 0;
    height: 100px;
    width: 100%;
    color: #7ca3c9 !important;
    padding: 10px;
    text-align: center;
}

#bottom_panel a {
    color: #7ca3c9 !important;
}


@keyframes changeboard {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes changeboard /* Firefox */
{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes changeboard /* Safari 和 Chrome */
{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes changeboard /* Opera */
{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media only screen and (max-height: 0px) and  (max-height: 500px) {
    #bottom_panel {
        position: relative !important;
    }

    input[type=text], input[type=password], input[type=button], input[type=submit] {
        height: 2.5em;
    }

    #info_panel {
        position: relative !important;
    }
}

@media only screen and (min-width: 768px) {
    .center > .col-md-7 {
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .vision {
        font-size: 0.6em;
        margin-left: 10px;
    }

    .login-title {
        font-weight: bold;
    }
}

@media only screen and (min-width: 992px) {
    #login_header {
        font-size: 2.2em;
    }

    .center > .col-md-7 {
        width: 58.3333%;
    }

    #board_panel {
        display: block;
    }

    .login-title {
        font-size: 1.5em;
    }
}

@media only screen and (min-width: 992px) and (min-height: 500px) {
    #login_header {
        position: absolute;
        font-size: 2em;
        /*padding-left: 15%;*/
        top: 15%;
        text-align: left;
    }

    .center {
        height: 50% !important;
    }

    #bottom_panel {
        position: absolute;
    }

    #info_panel {
        display: inline-block;
        font-family: 黑体;
        position: absolute;
    }

    #board_panel {
        height: 100%;
    }

    #bottom_panel {
        color: #598aba !important;
    }

    #bottom_panel a {
        color: #7ca3c9 !important;
    }
}

.input-line {
    padding-left: 70px;
    padding-right: 70px;
    line-height: 42px;
}

.input-line input {
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 35px;
}

.icon-span {
    left: 80px;
    top: 0;
    bottom: 0;
}

.theme_white,#header > div{
    width:100%;
    max-width:1250px;
    left:0;
}
.theme_white #login_bg{
    background: #f5f5f7 !important;
}
.theme_white .main .center{
    background:url("/static/normal/img/login_public/white_bg.png") center center / contain no-repeat;
    margin-top: 150px;
    height:65%;
    border-bottom: 1px solid lightgrey;
}
@media only screen and (min-width: 1250px){
    .theme_white,#header > div{
        left:calc((100% - 1250px) / 2);
    }

}
@media only screen and (min-width: 992px){
    .theme_white #board_panel{
        display: none;
    }
    .theme_white .main .center{
        height:65% !important;
    }
}
@media only screen and (min-height: 500px) and (min-width: 992px){
    .theme_white #board_panel{
        display: none;
    }
}
.theme_white #login-form, .theme_white .wechat-login{
    border-radius: 0;
    background: white;
    border: 0;
    box-shadow: 0 0 10px lightgrey;
    width:100%;
    height:100%;
}
.theme_white #login_box{
    float: right;
    height:90%;
}
.theme_white #login_header{
    color:black;
    line-height: 30px;
}
.theme_white input[type=text], .theme_white input[type=password], .theme_white input[type=button], .theme_white input[type=submit]{
    border-radius: 0;
    border:1px solid lightgrey !important;
    color:grey;
}
.theme_white .has-error .form-control{
    border-color:orangered !important;
}
.theme_white input:focus {
    background-color: transparent !important;
    box-shadow: none !important;
}
.theme_white .login-title{
    color:black;
    font-weight: normal;
    margin:60px 0;
}
