@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
html,body{
	position: relative;
	height:100%;
	box-sizing: border-box;
}
body {
	display: flex;
	align-items: left;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	padding: 20px;
	background-image: url(../images/login_bg1.jpg);
	background-repeat:no-repeat;
	background-size:100% 100%;
	-moz-background-size:100% 100%
}
img {
	max-width: 100%;
	height: auto;
}

/*mainStyle*/
#loginZone {
	  width:  400px;
	height: 350px;
	background:#ffffffcc; 
	transform:translate(-50%,-50%);
	text-align: right;
	margin-left:auto; 
	margin-top: 15%;
	margin-right: -100px;

 
}
#text {
	width:  400px;
	height: 50px;  
	position:absolute;
	left:50%;
	top:20%; 
	margin:0 auto;

}
#loginZone h3{
	font-size:28px;
	font-weight:normal;
	color:#333333;
	letter-spacing:5px;
	height:50px;
	line-height:50px;
	text-align:center;
	margin-top:15px;
	margin-bottom:15px;
 
}

#username{
	width:200px;
	height:25px;
	font-size:16px;
	padding-left:5px;
	letter-spacing:2px;
	border:1px solid #b5b5b5;
	margin-bottom:15px;
	
}

#password1{
	width:200px;
	height:25px;
	font-size:16px;
	padding-left:5px;
	letter-spacing:2px;
	border:1px solid #b5b5b5;
	margin-bottom:15px;
	
}

#loginBtn{
	width: 50px;
	height: 30px;
	line-height: 30px;
	border: none;
	margin-top: 10px;
	border-radius: 5px;
	background: red;
	color: #fff;
}
#wechatBtn{
	width: 50px;
	height: 30px;
	line-height: 30px;
	border: none;
	margin-top: 10px;
	border-radius: 5px;
	background: green;
	color: #fff;
}


::-webkit-input-placeholder { /* WebKit browsers */ 
    color: #b5b5b5; 
	
} 
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ 
    color: #b5b5b5; 
	
} 
::-moz-placeholder { /* Mozilla Firefox 19+ */ 
    color: #b5b5b5; 
	
} 
:-ms-input-placeholder { /* Internet Explorer 10+ */ 
    color: #b5b5b5; 

} 
 

/* 小屏幕（平板，大于等于 768px） */
@media (max-width: 768px) { 	
	/* #loginZone{
		padding-top:40%;
	} */
	/* #center-div {
		top: 152px;
	} 
	.tool-icon{
		display: none;
	}*/
	body{
		background-size: 440%;
	}
}