/* 登录 */
.login_body{
	background: url(../img/loginBgB.png) no-repeat 0 0 / 100% 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
}
.login_body::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../img/loginBg.jpg) no-repeat 0 bottom / 100% auto;
	z-index: -1;
}

.login_body .quickLinkRow{
	margin-top: 10px;
}
.login_body .quickLinkRow,
.login_body .quickLinkRow a{
	color: #fff;
}
.left_col{
	font-size: 18px;
}

.login_box{
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	padding:60px 0 135px;
}
.login_box>img{
	position: absolute;
	left: 0;
	top: 150px;
}

.login_main{
	width: 924px;
	position: relative;
	background: url(../img/loginMain_c.png) repeat-y;
	box-sizing: border-box;
	padding: 30px 193px 16px;
	right: -86px;
	margin: 120px 0;
}
.login_main::before,
.login_main::after{
	content: '';
	width: 100%;
	position: absolute;
	left: 0;
}
.login_main::before{
	height: 60px;
	background: url(../img/loginMain_t.png) no-repeat;
	top: -60px;
}
.login_main::after{
	height: 85px;
	background: url(../img/loginMain_b.png) no-repeat;
	bottom: -85px;
}
.login_main>img{
	height: 38px;
	margin: 0 auto;
	display: block;
}
.login_main>div{
	position: relative;
	display: none;
}
.login_main>div.cur{display: block;}
.login_main>div>img{
	position: absolute;
	right: 0;
	top: -44px;
	cursor: pointer;
}

.login_tit{
	display: flex;
	border-bottom: 1px solid #ddd;
	margin-top: 50px;
}
.login_tit li{
	font-size: 22px;
	color: #666666;
	margin-right: 50px;
	padding-bottom: 30px;
	position: relative;
	cursor: pointer;
}
.login_tit li.cur,
.login_main h4{
	font-size: 24px;
	font-weight: bold;
	color: #1D1D1D;
}
.login_tit li.cur::after{
	content: '';
	width: 40px;
	height: 6px;
	background: #3C7AF6;
	border-radius: 3px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%,0);
}
.login_main h4{
	margin: 30px 0 -30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.login_main h4 a{
	font-size: 22px;
	color: #2A52F5;
	font-weight: normal;
}

.login_control_box{
	padding: 55px 0 50px;
}
.login_way1_cont{
	display: none;
}
.login_way1_cont.cur{
	display: block;
}
.login_control{
	margin-bottom: 20px;
	display: flex;
	font-size: 20px;
	color: #666;
	position: relative;
}
.login_control.typeName{
	display: none;
}
.login_control.typeName.cur{
	display: flex;
}
.login_control_box i{
	position: absolute;z-index: 2;
	right: 20px;
	top: 50%;
	color: #ec3838;
	font-size: 12px;
	transform: translate(0,-50%);
}
.login_control input:not([type=radio]).error,
.login_select h3.error{
	border: 1px solid #ff9c9c;
}
.login_control input:not([type=radio]),
.login_select h3{
	flex: 1;
	height: 60px;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 18px;
	padding: 0 20px;
}
.login_select h3{
	line-height: 58px;
	cursor: pointer;
}
.login_select h3::after{
	content: '';
	width: 0;
	height: 0;
	border: 9px solid transparent;
	border-top-color: #ccc;
	position: absolute;
	right: 18px;
	top: 50%;
	margin-top: -4.5px;
}
.login_select.cur h3::after{
	border-top-color:transparent;
	border-bottom-color: #ccc;
	margin-top: -13.5px;
}
.login_control button{
	width: 158px;
	background: #3451EC;
	border-radius: 4px;
	border: none;
	font-size: 20px;
	color: #FFFFFF;
	cursor: pointer;
}
.login_control button.btn_readonly{
	background: #BBBBBB;
}
.login_control span{
	display: flex;
	align-items: center;
	margin:0 40px 0 20px;
	font-size: 18px;
}
.login_control span input{
	margin-right: 10px;
}
.login_select{
	position: relative;
	flex: 1;
	display: flex;
}
.login_control .login_select:not(:first-child){
	margin-left: 10px;
}

.login_select ul{
	position: absolute; z-index: 5;
	right: 0;
	top: 100%;
	width: 170px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	padding: 8px 0;
	max-height: 217px;
	overflow: auto;
	display: none;
}
.login_select.cur ul{
	display: block;
}
.login_select li{
	font-size: 16px;
	color: #666666;
	line-height: 36px;
	padding: 0 10px 0 20px;
	cursor: pointer;
	margin: 1px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.login_select li:hover,
.login_select li.chk{
	font-size: 18px;
	background: #2A52F5;
	color: #FFFFFF;
}
.login_select li.chk::after{
	content: '';
	width: 14px;
	height: 14px;
	background: url(../img/chk.png) no-repeat 0 center / 100% auto;
}

.login_foot{
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	color: #666666;
	margin-bottom: 20px;
}
.login_foot a:last-child,
.login_sm h6 a:last-child{
	color: #F3752E ;
}

.login_sub{
	width: 100%;
	height: 60px;
	background: #3451EC;
	border-radius: 4px;
	font-size: 26px;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
}

.login_sm h5{
	font-size: 24px;
	font-weight: bold;
	color: #1D1D1D;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
	margin-top: 40px;
}
.login_sm p{
	text-align: center;
	font-size: 18px;
	color: #666666;
	padding: 20px 0 50px;
}
.login_sm p img{
	margin: 0 auto 15px;
	display: block;
	width: 251px;
}
.login_sm h6{
	text-align: center;
}
.login_sm h6 a{
	font-size: 18px;
	color: #666666;
}

.reg_agree{
	font-size: 18px;
	color: #666666;
	padding-top: 30px;
	margin-bottom: -20px;
	position: relative;
	display: flex;
	align-items: center;
}
.reg_agree a{
	text-decoration: underline;
	color: #666666;
	margin: 0 10px;
}
.reg_agree a:hover{
	color: #2A52F5;
}
.reg_agree input{
	margin-right: 8px;
}
.reg_agree.error::after{
	content: '!';
	width: 1em;
	height: 1em;
	background: #ec3838;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 1em;
	margin-right: 10px;
}