#loginBox{
	width: 638px;
	display:none;
	cursor:pointer;
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 2000;
}
.form_box{
	width: 615px;
	height: 307px;
	background: rgba(255,255,255,0.5);
	border-radius: 2px;
	box-sizing: border-box;
	left: 0px;		/*div固定在屏幕中央*/
	top: 0px;
	right: 0;
	bottom: 120px;
	position: fixed;
	margin: auto;
	padding: 10px;
}

#loginDiv {
	width: 595px;
	height: 287px;
	background-color: rgba(255, 255, 255, 1);
}
#loginOut{
	position: absolute;
	top: 16px;
	right:16px;
	width: 32px;
	height: 32px;
	border-radius: 32px;
	color: white;
	line-height: 32px;
	z-index: 999999999999999999999999999;
	text-align: center;
}
.login_left{
	float: left;
	width: 255px;
	height: 240px;
	margin: 25px 30px;
}
.login_right{
	float: left;
	width: 280px;
	margin-top: 40px;
}
.clear{
	clear: both;
}
/*改变placeholder的颜色*/

.login_input::-webkit-input-placeholder {
	color: #CCCCCC;
}

.login_input {
	width: 255px;
	height: 35px;
	background-color: rgba(255, 255, 255, 1);
	border: 1px solid rgba(204, 204, 204, 1);
	outline: none;
	font-size: 12px;
	color: black;
	padding-left: 20px;
	float: left;
	margin-top: 15px;
}

#loginDiv>p,
#loginBtn {
	font-size: 13px;
	color: #fff;
	width: 255px;
	margin-top: 15px;
	float: left;
}

#loginBtn {
	height: 35px;
	background-color: #64b1cb;
	border-radius: 2px;
	font-size: 12px;
	color: white;
	text-align: center;
	border: none;
	cursor: pointer;
}
.login_verify{
	width: 100px;
	height: 35px;
	background-color: rgba(255, 255, 255, 1);
	border: 1px solid rgba(204, 204, 204, 1);
	outline: none;
	font-size: 12px;
	color: black;
	padding-left: 20px;
	float: left;
	margin-top: 15px;
}
.login_verify::-webkit-input-placeholder {
	 color: #CCCCCC;
 }