/* 表单css */
html,
body {
	width: 100%;
	/*height: 100%;*/
	background: url(../images/login_bg.jpg) no-repeat fixed center;
}
.LoginBox_bg {
	width: 100%;
	height: 100%;
	z-index: 2;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Form_box {
	margin: 20px 0px;
	width: 1200px;
	border-radius: 10px;
	background: #fff;
	height: 610px;
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.form_title{
	color: #000000;
	font-size: 36px;
	text-align: center;
	margin-bottom: 30px;
}
.Form_box .form_item {
	width: 370px;
	height: 54px;
	margin-bottom: 30px;
}
.Form_box .form_item .form_block{
	border: 1px solid #bdbdbd;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background: #fff;
	box-sizing: border-box;

}
.Form_box .form_item  label{

	width: 15px;
	height: 19px;
	display: inline-block;
	vertical-align: middle;
	margin-left:10px;
}
.Form_box .form_item  label.icon_user{
		background: url(../images/icon_user.png) no-repeat center center;
}
.Form_box .form_item  label.icon_pwd{
		background: url(../images/icon_pwd.png) no-repeat center center;
}
.Form_box .form_item  .form_ipt{
	width:250px;
	height: 100%;
	border:none;
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	padding-left:10px;
	box-sizing: border-box;
	color: #333;
}
.Form_box .form_item  .form_yzm{
	width: 110px;
	height: 100%;
	background: url(../images/img_yzm.png) no-repeat center center;
	display: inline-block;
		vertical-align: middle;
}
.form_btn{
	width: 100%;
	height: 100%;
	background: rgba(64,158,255,1);
	font-size: 20px;
	color: #fff;
	letter-spacing: 2px;
	border: none;
	border-radius: 3px;
	font-weight: bold;
	box-shadow: 0px 0px 19px 9px rgba(64,158,255,.3);
	transition: all 2s;
	cursor: pointer;
}
.form_btn:hover{
	background: rgba(64,158,255,0.6);
}
.Formzz_box{
	flex-direction: column;
	height: auto;
}
.Formzz_box .form_title{
	padding-top: 20px;
}
.Formzz_box .form_word{
	padding:0 30px 30px;
}
.Formzz_box .form_word .form_word_item{
	line-height: 30px;
	font-size: 18px;
	padding-bottom: 20px;
}
.Formzz_box .form_word .form_word_item a{
	color: red;
}
.Formzz_box  .form_item_btn{
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}
.Formzz_box  .form_item_btn .form_btn{
	width:175px;
}
.Formzz_box  .form_item_btn .form_btn:last-child{
	background: rgba(255,87,34,1);
}
.Formzz_box  .form_item_btn .form_btn:last-child:hover{
	background: rgba(255,87,34,.6);
}
