@charset "utf-8";
body{
	width: 100%;
	height: 100%;
	background: url(../images/login-bg.jpg) no-repeat center top;
	background-size: cover;
	overflow: hidden;
}
.login-box{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.login-box .logoBox{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.login-box .logoBox img{
	width: 70px;
	display: block;
}
.login-box input[type="text"],
.login-box input[type="password"]{
	width: 334px;
	height: 38px;
	background: #65666a;
	border:none;
	outline: none;
	border-radius: 4px;
	padding:0 10px;
	color: #fff;
}
.login-box ::-webkit-input-placeholder { /* WebKit browsers */
  color: #c9c9c9;
}
.login-box ::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #c9c9c9;
}
.login-box :-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #c9c9c9;
}   
.login-box button{
	width: 334px;
	height: 38px;
	background: #b99608;
	border:none;
	outline: none;
	border-radius: 4px;
	padding:0 10px;
	color: #fff;
	cursor: pointer;
}
.login-box .toolBox{
	width: 334px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.login-box .toolBox > div{
	height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box .toolBox input[type="checkbox"]{
	width: 12px;
	height: 12px;
	background: #b99608;
	border:none;
	outline: none;
	border-radius: 4px;
	margin-right: 4px;
	display: block;
}
@media (max-width:1280px) {
}
@media (max-width:992px) {
}
@media (max-width:750px) {
}