@charset "utf-8";


/* =================================
 *登录弹窗
 ===================================*/

.loginmask {
	background: rgba(0, 0, 0, .6);
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: 99993;
	right: 0;
	top: 0;
	display: none;


}

.login-warp {
	position: absolute;
	display: none;
	z-index: 99994;
	top: 50%;
	left: 50%;
	 /* 平滑动画 + GPU 加速 */
	    transform: translate3d(-50%, -50%, 0);
	    backface-visibility: hidden; /* 防止锯齿 */
	    transform-style: preserve-3d;
	
	    /* 提高渲染质量（部分浏览器有效） */
	    image-rendering: pixelated;
	    -webkit-font-smoothing: antialiased;

	background: #fff url("../images/bg/login_bg.png") no-repeat 50%;
	background-size: 100% auto;
	max-width: 428px;
	width: 100vw;
	border-radius: 14px;
	/* border-top: 4px solid #000; */
	border-radius: 5px;
	box-shadow: 0 14px 24px rgba(0, 0, 0, .47);
}

/* =================================
 *注册
 ===================================*/
.reg-warp {
	background: #fff url("../images/bg/login_bg.png") no-repeat 50%;
	min-height: 760px;
	padding-top: 140px;
	position: relative;
	overflow: hidden;

}

/* 登录 */
.login-form {
	padding: 30px;
	width: 100%;
	position: relative;
}

.login-form.reg-form {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	width: 450px;
	margin: 10vh auto;
	border-radius: 5px;
}

.login-form .close-btn {
	width: 20px;
	height: 16px;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

.login-form .close-btn:after {
	width: 100%;
	height: 2px;
	background-color: #000;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.login-form .close-btn:before {
	transition: all .3s ease;
	width: 100%;
	height: 2px;
	background-color: #000;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	bottom: auto
}

.login-form .top-title {
	font-weight: 400;
	font-size: 24px;
	color: #000;
	text-align: center;
	margin-bottom: 28px;
	margin-top: 10px;
}

.login-form .lable-title {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	margin-bottom: 10px
}

.login-form .lable-title span {
	color: #6dec24;
}

.login-form .tips {
	color: #a9aab3;
	font-size: 14px;
}

.login-form .m-input {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #373f47;
	/* border-radius: 5px; */
	transition: all .3s ease;
	cursor: text;
	height: 53px;
	padding-right: 24px;
	margin-bottom: 26px;

}

.login-form .m-input.pwd {
	padding-right: 50px;
	margin-bottom: 0;
}

.login-form .m-input.yzm {
	padding-right: 110px;
}

.login-form .m-input:focus-within {
	border-color: #000
}

.login-form .m-input ::placeholder {
	font-weight: 400;
	font-size: 16px;
	color: #65666b
}


.login-form .m-input .from-ipt {
	width: 100%;
	padding-left: 15px;
	border: none;
	outline: none;
	font-weight: 700;
	font-size: 16px;
	color: #000;
	background-color: transparent;
	height: 100%
}
.login-form .m-input .from-ipt.form-select option{color: #000;}
.login-form .m-input .eye {
	cursor: pointer;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}


.login-form .m-input .eye.eye-open {

	background: url('../images/icon/ic_eye_open.png') no-repeat center;
	background-size: 100% 100%;

}

.login-form .m-input .eye.eye-close {
	background: url('../images/icon/ic_eye_close.png') no-repeat center;
	background-size: 100% 100%;
	opacity: .8;
}

.login-form .m-input .code {
	cursor: pointer;
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	border-radius: 60px;
	position: absolute;
	top: 50%;
	color: #000;
	font-size: 15px;
	right: 0px;
	transform: translateY(-50%);
}

.login-form .sign-link {
	font-weight: 400;
	font-size: 16px;
	color: #000;
	transition: all .3s ease;
	text-decoration: none;
	margin: 10px 0;
	cursor: pointer;
}

.login-form .sign-link:hover {
	color: #0066cc;
}



.login-form .sign-bot {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap
}

.login-form .sign-bot .sign-btn {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	min-height: 53px;
	margin-right: 30px;
	padding: 17px 48px;
	border-radius: 100px;
	transition: all .3s ease;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 1;
	outline: none;
	cursor: pointer;
	border: none
}



.login-form .sign-bot .sign-btn.tr {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
}

/* .login-form .sign-bot .sign-btn.tr:hover {
	background-color: #0066cc;
	color: #fff;
	border: 1px solid #0066cc;
} */

@media only screen and (max-width: 1024px) {.reg-warp{
	padding-top: 62px;
}
	
@media (max-width: 767px) {

	.login-warp {
		max-width: auto;
		width: 90vw;
	}

	.login-form {
		padding: 30px 20px;
	}

	.reg-warp {

		height: 100%;

	}

	.login-form.reg-form {
		margin: 5vh auto;
		width: 90vw;
	}

	.login-form .close-btn {
		width: 20px;
		height: 16px;
		position: absolute;
		right: 16px;
		top: 16px;
		cursor: pointer;
	}

	.login-form .m-input {
		height: 45px;
		padding-right: 20px;
		margin-bottom: 16px
	}

	.login-form .sign-bot {
		margin-top: 40px;
	}

	.login-form .sign-bot .sign-btn {

		min-height: 45px;
		margin-right: 20px;
		padding: 0px 28px;

	}

}