/*登录布局*/
#login_view {
	position: fixed;
	z-index: 2200;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
	display: none;
}

/*我要参加表单*/
#login_view .login_view_content{
	width:  530px;
	height: 300px;
	background: white;
	text-align: center;
	margin-left: 335px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-left: 50%;
	position: absolute;
	left: -265px;
}
#login_view .login_view_content h3{
	color: red;
	padding: 0;
	margin: 0;
	font-size: 20px;
	margin-top: 20px;
	letter-spacing: 2px;
}
/*switch按钮*/
.switch_btn_view{
	width: 210px;
	height: 34px;
	top: 56px;
	left: 160px;
	position: relative;
	display: none;
	
}
.switch_btn_view .left_btn,
.switch_btn_view .right_btn{
	display: inline-block;
	width: 120px;
	height: 34px;
	color: red;
	position: absolute;
	top: 0;
	border-radius: 17px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	line-height: 34px;
	outline: none;
	cursor: pointer;
}

.switch_btn_view .left_btn{
	left: 0;
	background-color: #FDE79C;
	z-index: 10;
	
}

.switch_btn_view .right_btn{
	right: 0;
	background-color: #E7E7E6;
	z-index: 9;
}

/*表单*/
.login_form{
	border: none;
	width: 530px;
	position: relative;
	top: 20px;
}

.login_form fieldset{
	margin-bottom: 24px;	
	border: none;
}

.login_form label{
	width: 55px;
	height: 32px;
	font-weight: bold;
	color: black;
}

.login_form input{
	width: 270px;
	height: 32px;
}


.login_form input[type='submit']{
	width: 200px;
	height: 36px;
	border-radius: 13px;
	border: none;
	background-color: red;
	font-size: 16px;
	line-height: 36px;
	font-weight: bold;
	color: white;
	cursor: pointer;
}

.login_form input[type='submit']:focus{
	outline: none;
	cursor: pointer;
}