@charset "UTF-8";
html,body{
    margin: 0px;
    padding: 0px;
    background-color: #dedede;
}


/* 控制用户登录页样式 */
.container-fluid > .row:first-child h2{
    margin-top: 20%;
}
.form-signin{
   border: 1px solid #cccccc;
   padding: 30px 30px 50px 30px;
   background-color: #ffffff;
   box-shadow: 2px 2px 4px #cccccc;
   margin-top: 25px;
}
.form-signin:hover{
   box-shadow: 3px 3px 5px #bbbbbb;
}
.form-signin1{
    /* border: 1px solid #cccccc; */
    padding: 30px;
    /* background-color: #ffffff; */
   /*  box-shadow: 2px 2px 4px #cccccc; */
    margin-top: 25px;
}

.form-signin > button:last-child{
    margin-top: 15px;
}
.input-group{
    margin-bottom: 20px;
}
.row > div:first-child{
    padding-left: 0px;
    padding-right: 0px;
}
.scroll-height,.scroll-height > div > .item{
    height: 100%;
}
.scroll-height > div{
    height: 100%;
}
.item > img{
    width: 100%;
}
div#sign-frame {
    margin-top: 20%;
}
@media screen and (max-width: 1050px){
	div#sign-frame {
	    margin-top: 40%;
	}
}
@media screen and (max-width: 903px){
}
div#register-frame {
    margin-top: 10%;
    padding-top: 40px;
    
}
@media screen and (max-width: 767px){
}
div#register-agreement {
    margin-top: 6%;
    padding-top: 40px;
}

.animation-right{
    animation: moveleft .5s ease-in-out .3s backwards;
    -o-animation: moveleft .5s ease-in-out .3s backwards;
    -ms-animation: moveleft .5s ease-in-out .3s backwards;
    -moz-animation: moveleft .5s ease-in-out .3s backwards;
    -webkit-animation: moveleft .5s ease-in-out .3s backwards;
}
@keyframes moveleft {
    0%{
        transform: translateX(20px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

@media screen and (max-width: 725px){
    .copyright{
        margin-top: 10%;
    }
    .scroll-height{
        display: none;
    }
}


/* 控制用户登录页和用户注册页跳转样式 */
#register-agreement,#register-frame{
    display: none;
}

/* 控制用户注册页样式 */
#register-agreement form{
    padding: 10% 15% 7% 15%;
}
#register-agreement form h3{
    margin-top: 0px;
}
#register-agreement input{
    margin-top: 20px;
}
#register-agreement textarea{
    margin: 0 auto;
    resize: none;
    outline: none;
    width: 100%;
    height: 50%;
    margin-top: 10px;
}