html {
	height:100%;
	min-width: 1366px;
}
body.signin {
	height:auto;
	background:url(../img/login_bg_1.jpg) no-repeat center fixed;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	color:rgba(255,255,255,.95);
	padding-top: 14rem;
}
.signinpanel {

}
.signinpanel h2{
	text-align: center;
	font-size: 34px;
	color: #FFFFFF;
	font-family: 'Arial Narrow', 'Arial';
	font-weight: 400;
	margin-bottom: 6rem;
	/*-webkit-box-reflect:above  20px linear-gradient(transparent,rgba(255,255,255,.3));*/
}
.signinpanel .login-wrapper{
	width: 330px;
	margin: 0 auto;
}

.login-wrapper form{
	width: 330px;
	height: 100%;
	background-color: #F4F4F4;
	box-shadow: 2px 2px 2px rgba(33, 36, 36, 0.35);
	border-radius: 14px;
}

.signinpanel .form-control {
	display:block;
	margin-top:20px;
	border-radius: 6px;
}
.form-control:focus{
	border-color: rgba(25, 84, 240, 1) !important;
	-webkit-box-shadow: 2px 2px 2px rgba(66, 166, 246, 0.349019607843137);
	box-shadow: 2px 2px 2px rgba(66, 166, 246, 0.349019607843137);
}
.signinpanel .uname {
	background:#fff url(../img/user.png) no-repeat 95% center;
	color:#333
}
.signinpanel .pword {
	background:#fff url(../img/locked.png) no-repeat 95% center;
	color:#333
}
.signinpanel .code {
    background: #fff no-repeat 95% center;color:#333; margin:0 0 15px 0;
}
.signinpanel .btn {
	margin-top:30px;
	line-height: 28px;
}
.signinpanel form {
	padding:30px
}

/*
登录界面check样式
*/
.checkbox-custom {
    position: relative;
	margin-top: 22px;
    padding: 0 15px 0 25px;
    margin-bottom: 7px;
    display: inline-block;
}
/*
将初始的checkbox的样式改变
*/
.checkbox-custom input[type="checkbox"] {
    opacity: 0; /*将初始的checkbox隐藏起来*/
    position: absolute;
    cursor: pointer;
    z-index: 2;
    margin: -6px 0 0 0;
    top: 50%;
    left: 3px;
}
/*
设计新的checkbox，位置
*/
.checkbox-custom label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9px;
    width: 18px;
    height: 17px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #bbb;
    background: #fff;
}
/*
点击初始的checkbox，将新的checkbox关联起来
*/
.checkbox-custom input[type="checkbox"]:checked +label:after {
    position: absolute;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    content: "\e013";
    top: 42%;
    left: 3px;
    margin-top: -5px;
    font-size: 11px;
    line-height: 1;
    width: 16px;
    height: 16px;
    color: #333;
}
.checkbox-custom label {
    cursor: pointer;
    line-height: 1.2;
    font-weight: normal; /*改变了rememberme的字体*/
    margin-bottom: 0;
    text-align: left;
}
.signin .copyright{
	position: fixed;
	width: 100%;
	height: 56px;
	background-color: rgba(0,0,0,.3);
	line-height: 56px;
	text-align: center;
	bottom:0;
	font-family: '微软雅黑';
	font-weight: 400;
	font-style: normal;
	color: #FFF;
	font-size: 14px;
}
.btn:active:focus, .btn:focus{
	outline: none;
}
.btn-success:active:hover{
	background-color: #1c84c6;
	border-color: #1c84c6;
}