.loginMainBgV{
	width: 100%;
	height: 660px;
	background-image: url("../img/loginBgImg.png");
	position: relative;
}
.loginkBg{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 50px;
	width: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../img/eplmwhiBg.png");
	background-size: cover;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	
}
.whiteBg{
	
	background:white; 
	width: 240px;
	height:100%;
	border-radius: 15px;
	padding: 0 40px 40px 40px;
}
.topChuangeV{
	height: 60px;
	display: flex;
	margin-bottom: 40px;
}
.topChuangeV .oneType{
	margin: 10px;
	font-size: 16px;
	cursor: pointer;
	color: #666;
	height: 60px;
}
.topChuangeV .actionType{
	color: #1781d6;
	font-weight: bold;
	font-size: 16px;
	border-bottom: 2px solid #1781d6;
}
.inputBV{
	margin-top: 12px;
	width: 230px;
	height: 34px;
	border-radius: 5px;
	border: 1px solid #e8ecf0;
	display: flex;
	align-items: center;
	padding: 0 5px;
}
.rememberV{
	height: 30px;
	margin-top: 10px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.getBackPWL{
	margin-top: 5px;
	color:#1781d6;
	font-size: 14px;
	text-align: right;
}
.loginButton{
	margin-top: 30px;
	width: 240px;
	height: 34px;
	background-color: #1781d6;
	border-radius: 5px;
	line-height: 34px;
	text-align: center;
	font-size: 16px;
	color: white;
}
.registL{
	position: absolute;
	right: 70px;
	bottom: 15px;
	color:#1781d6;
	font-size: 14px;
	line-height: 20px;
	width: 100%;
	text-align: right;
}
.registNW{
	position: absolute;
	left: 70px;
	bottom: 15px;
	color:#1781d6;
	font-size: 14px;
	line-height: 20px;
	width: 100%;
	text-align: left;
}


/* 找回密码 */
.getVerCodBtn{
	margin-top: 12px;
	width: 100px;
	height: 34px;
	background-color: #1781d6;
	border-radius: 5px;
	line-height: 34px;
	text-align: center;
	font-size: 14px;
	color: white;
}
/* 注册界面 */
.registkBg{
	position: absolute;
	top: 50px;
	right: 50px;
	width: 380px;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../img/eplmwhiBg.png");
	background-size: cover;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.remindTexC{
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 80px;
	left: 0;
	font-size: 12px;
	color: crimson;
}

#loading{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.spinner{
	margin-top: 20px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
}
@keyframes spin{
	0%{transform: rotate(0deg);}
	100%{transform: rotate(360deg);}
}