input,input:active{
	border:none;
	outline:none;
}
body{
	background:#ffffff;
	/* background: linear-gradient(27deg, #2B5EFF, #77CFF3); */
}
.content{
	/* background: linear-gradient(27deg, #2B5EFF, #77CFF3); */
	background:url(../../img/login_bg.png) no-repeat;
	background-size:cover;
}
header{
	height: 90px;
	background:#ffffff;
}
.header_bottom{
	height:100%;
	border-bottom:0;
}
.header_logo img{
	width: 357px;
	height: 46px;
}
.header_bottom_con{
	height:100%;
}
.header_logo{
	height:100%;
	display:flex;
	align-items:center;
}
.login_footer{
	font-size: 15px;
	color: #FFFFFF;
	text-align:center;
	padding-bottom:66px;
	margin-top:20px;
}


/**
 * 登录部分
 */
.login_main_one{
	/* position:absolute; */
	/* top:0; */
	/* top:90px; */
	/* left:0; */
	width:100%;
	box-sizing: border-box;
}
.login_main{
	/* background:url(../../img/head_banner.png) no-repeat; */
	/* background:url(../../img/login_img.png) no-repeat; */
	/* background-position:50%; */
	height:490px;
	width:100%;
}
.main{
	display:flex;
	/* justify-content:flex-end; */
	justify-content:space-between;
	align-items:center;
}
.main_left{
	width:700px;
	color: #FFFFFF;
	text-align:center;
	margin-top: -230px;
}
.main_left img{
	width:700px;
}
.main_left_top{
	width: 330px;
	font-size: 28px;
	text-align: left;
	margin: 0 auto;
	margin-bottom: 10px;
}
.main_left_bottom{
	width: 330px;
	font-size: 40px;
	text-align: left;
	margin: 0 auto;
}

.main_right{
	width:476px;
	height:490px;
	background-color:#fff;
	text-align:center;
	box-shadow: 0px 0px 22px 0px rgba(0,25,67,0.09);
	padding-bottom:20px;
	box-sizing: border-box;
}
.login_nav{
	height:50px;
	font-size: 24px;
	line-height:24px;
	color: #181818;
	border-bottom:1px solid #D9D9D9;
	margin:36px 0;
	padding:0 90px;
	display:flex;
	justify-content: space-between;
	align-items:center;
}
.login_nav_item{
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	align-items:center;
}
.login_nav_item div{
	font-weight: 400;
	font-size: 18px;
	color: #444444;
	line-height:22px;
}
.login_nav_item span{
	width: 30px;
	height: 3px;
	background: var(--bg-color);
	border-radius: 2px;
	display:none;
}
.login_nav_item.active div{
	font-weight: 500;
	font-size: 22px;
	color: var(--text-color);
	line-height:22px;
}
.login_nav_item.active span{
	display:block;
}

.input_list{
	display:flex;
	justify-content: center;
	align-items:center;
	margin-bottom:18px;
	font-size: 14px;
	color: #181818;
	text-align:center;
}
.input_list span{
	width:60px;
	text-align:right;
}
.input_list input{
	width: 336px;
	height: 44px;
	background: #EFF3FF;
	box-sizing: border-box;
	padding-left:12px;
}
.input_list span{
	/* width:auto; */
}
#login-form .input_list{
	margin-bottom:25px;
}
/* 滑块占位 */
/* .drap{
	width: 279px;
	height: 38px;
	background: #F2F2F2;
	border: 1px solid #E8E8E8;
	box-sizing: border-box;
	border-radius: 8px;
	margin-left:95px;
	margin-bottom:18px;
} */

.login_forget{
	display:flex;
	justify-content:space-between;
	align-items:center;
	width:400px;
}
.login_radio{
	height:14px;
	display:flex;
	align-items:center;
	font-size: 14px;
	color: #181818;
	line-height:14px;
	margin-left:50px;
}
.login_radio a{
	color:#FF0000;
}
input[type="radio"], input[type="checkbox"]{
	margin: 0;
}
.login_btn{
	width: 400px;
	height: 46px;
	color:#fff;
	background: var(--bg-color);
	margin-top:24px;
}
.login_reset{
	width:400px;
	color: var(--text-color);
	font-size:14px;
	text-align:right;
	margin:0 auto;
	margin-top:14px;
}
.login_reset_two{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.login_reset a{
	color: var(--text-color);
}
/*
*注册部分
*/
#register-form .input_list{
	margin-bottom:14px;
}
.register{
	display:flex;
	justify-content:center;
	margin-top:50px;
}
.register .login_radio{
	margin-left:0;
	font-size:12px !important;
}
.gray_span{
	font-size:14px;
	color: #000000;
	border:none !important;
	margin-right:0 !important;
	margin-left:10px;
	font-weight: normal !important;
	margin-bottom: 0 !important;
}
/* 找回密码 */
.register_list input{
	width:232px;
}
#changepwd-form .input_list span,
#register-form .input_list span{
	width:75px;
}
.register_list .input_list_btn{
	width:104px;
	height:44px;
	font-size:14px;
	line-height:44px;
	color: #FFFFFF;
	background: var(--bg-color);
}

/* 隐藏原生的复选框 */
input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}
/* 创建自定义复选框 */
input[type="checkbox"] + label {
  position: relative;
	padding-left: 22px;
  cursor: pointer;
  display: inline-block;
  user-select: none;
}
/* 自定义复选框的样式 */
input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  left: 0;
  top: 0;
  background-color: #eee; /* 复选框的默认颜色 */
  border: 1px solid #ccc; /* 边框颜色 */
	border-radius: 2px;
}
/* 当复选框被选中时的样式 */
input[type="checkbox"]:checked + label:before {
  background-color: var(--text-color); /* 选中时的背景颜色 */
  border-color: var(--text-color); /* 选中时的边框颜色 */
}
/* 可选：添加一个勾选符号 */
input[type="checkbox"]:checked + label:after {
  content: '\2713'; /* 勾选符号 */
  position: absolute;
  left: 3px;
  top: 0;
  color: white;
  font-size: 11px;
	font-weight: bold;
}



/* .login_con{
	display:flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}
.login_bg{
	width: 600px;
}
.login{
	width: 600px;
	height: 500px;
	box-sizing: border-box;
	padding: 40px 15px 0 15px;
}

.login_nav{
	display:flex;
	align-items: center;
	height: 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #999;
}
.login_nav_item{
	width: 150px;
	height: 100%;
	color: #333;
	text-align: center;
}
.login_nav_item.active,.login_nav_item:hover{
	font-weight: bold;
	font-size: 16px;
	color: var(--text-color);
	border-bottom: 1px solid var(--text-color);
}

.changepwd_title{
	font-size:18px;
	font-weight:bold;
	text-align:center;
}

.login_content{
	box-sizing: border-box;
	padding:50px 50px 0 50px;
}
.login_content_mobile,
.login_content_mobile:hover{
	width: 470px;
	height: 42px;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	box-sizing: border-box;
	padding:0 20px;
	margin-bottom: 30px;
}
.login_content_code{
	display:flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.login_content_code_input,
.login_content_code_input:hover{
	width: 310px;
	height: 42px;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	box-sizing: border-box;
	padding:0 20px;
}
.login_content_code_btn{
	width: 150px;
	height: 42px;
	background-color: #ffffff;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	border-radius: 5px;
	cursor: pointer;
}
.login_radio{
	margin-bottom:20px;
}
.login_btn{
	width: 470px;
	height: 42px;
	color: #ffffff;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: var(--bg-color);
	margin-bottom: 30px;
	cursor: pointer;
}
.login_content_link{
	display: flex;
	justify-content: space-between;
}
.login_content_link a{
	color: #333;
} */

