@charset "UTF-8";

html {
	height: 100%;
	font-size: 100px;
}

body {
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-family:PingFang-SC-Medium;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	overflow: hidden;
}

.main-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.login-container {
	width: 84.37%;
	height: 65.81%;
	box-shadow: 0px 0.1rem 0.6rem 0.1rem #56515161;
	border-radius: 0.1rem;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0.1rem 2rem;
	min-height: 5.4rem;
	box-sizing: border-box;
	min-width: 900px;
}

.login-box-container {
	
}

.box-container {
	display: flex;
	align-items: center;
	width: 4.8rem;
	height: 4.8rem;
	position: relative;
	transform-style:preserve-3d;
}

.box {
	position: absolute;
	width: 4.8rem;
	height: 4.8rem;
	left: 0;
	top: 0;
	text-align: center;
}

.login-box {
	/* background:rgba(243,243,243,0.5); */
	box-shadow:0px 3px 7px 0px rgba(13, 4, 2, 0.25);
	border-radius: 0.1rem;	
	text-align: center;
	background: rgba(245,245,245,1);
	z-index: 10;
}

.reg-box {
	background:rgba(243,243,243,0.5);
	z-index: 0;
	box-shadow:0px 3px 7px 0px rgba(13, 4, 2, 0.25);
	border-radius: 0.1rem;
	transform: scale(0.9) translateX(0.6rem);
	text-align: center; 
}

.reg-box .login-row + .login-row {
	margin-top: 0.15rem;
}

.move-left {
	animation: move-left 2.5s ease .1s;
}

.move-right {
	animation: move-right 2.5s ease .1s;
}

@keyframes move-left {
	50% {
		left: -3rem;
	}
	100% {
		width: 90%;
		height: 90%;
		right: -0.3rem;
		top: 5%;
		z-index: 1;
	}
}

@keyframes move-right {
	50% {
		transform: scale(1);
		left: 2rem;
	}
	100% {
		transform: scale(1);
		left: 0;
		top: 0;
		z-index: 10;
	}
}

.login-box-right {
	width: 0.28rem;
	height: 4.1rem;
	box-shadow:0px 3px 7px 0px rgba(13, 4, 2, 0.25);
	border-radius:0px 0.1rem 0.1rem 0px;
	background:rgba(243,243,243,0.5);
}

.login-title {
	margin-top: 0.55rem;
	color: #213878;
	font-size: 0.28rem;
	font-weight: 500;
}

.login-box-body {
	margin-top: 0.45rem;
	padding: 0 0.65rem;
}

.login-row {
	width: 100%;
	height: 0.5rem;
	padding: 0 0.28rem;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 0.06rem;
	background: rgba(255,255,255,0.5);
	border:1px solid rgba(229,229,229,1);
}
.login-row input {
	width: calc(100% - 0.3rem);
	padding: 0.1rem 0;
	padding-bottom: 0.05rem;
	font-size: 0.15rem;
	background: rgba(0,0,0,0);
	border: none;
	outline: none;
	color: #666;
}

.login-row input:-webkit-autofill {
	-webkit-text-fill-color: #666;
	 background-color: rgba(0,0,0,0);
}

.login-row input::-webkit-input-placeholder {
	color: #999;
}

.login-row img {
	width: 0.18rem;
	height: 0.18rem;
	margin-left: 0.1rem;
}

.login-row + .login-row {
	margin-top: 0.25rem;
}

.tool-container {
	margin-top: 0.17rem;
	display: flex;
	justify-content: flex-end;
	font-size: 0.16rem;
	padding: 0 0.1rem;
	color: #213878;
}

a {
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
}

.btn-container {
	margin-top: 0.35rem;
}

.btn-rounded {
	background:linear-gradient(0deg,rgba(0,162,255,1),rgba(64,185,255,1));
	color: white;
	font-size: 0.18rem;
	text-align: center;
	width: 100%;
	height: 0.5rem;
	line-height: 0.5rem;
	cursor: pointer;
	border-radius: 0.28rem;
	box-shadow: 0px 3px 7px 0px rgba(13,2,4,0.2);
	border: 0;
	outline: none;
	display: inline-block;
	text-decoration: none;
}

.btn-rounded:hover {
	text-decoration: none;
}

.btn-rounded:hover,.btn-rounded:focus{
	background:linear-gradient(0deg,rgb(47, 179, 255),rgb(112, 188, 232));
}

.btn-rounded:active {
	background:linear-gradient(0deg,rgb(14, 137, 208),rgb(74, 189, 255));
}

.link-reg {
	color: #0D51FF;
	font-size: 0.16rem;
	margin-top: 0.1rem;
	display: flex;
	justify-content: flex-end;
}

.login-success-body {
	width: 100%;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.icon-success {
	width: 1.8rem;
	height: 1.5rem;
}

.logout-btn-container {
	margin-top: 0.3rem;
}

.logout-btn-container .btn-rounded {
	width: 3.5rem;
}

.reg-sex {
	display: flex;
	justify-content: space-between;
	color: #333333;
	font-size: 0.16rem;
	margin-top: 0.15rem;
	align-items: center;
}

.sex-box-container {
	display: flex;
	
}
.sex-box {
	width: 1rem;
	height: 0.4rem;
	border-radius: 0.28rem;
	background: rgba(255,255,255,1);
	border:1px solid rgba(229,229,229,1);
	display: flex;
	align-items: center;
	padding: 0 0.1rem;
	box-sizing: border-box;
	cursor: pointer;
}

.sex-box + .sex-box {
	margin-left: 0.15rem;
}

.sex-box .check {
	width: 0.28rem;
	height: 0.28rem;
	border:1px solid rgba(229,229,229,1);
	border-radius: 50%;
	margin-right: 0.1rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sex-box .check img {
	width: 0.16rem;
	height: 0.15rem;
}

.reg-box .login-title {
	margin-top: 0.3rem;
}

.reg-box .login-box-body {
	margin-top: 0.25rem;
}

.reg-box .btn-container {
	margin-top: 0.13rem;
}

.go-login-container {
	margin-right: 0.2rem;
	color: #0D51FF;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 0.16rem;
}
.go-login-container img {
	width: 0.13rem;
	height: 0.15rem;
	margin-right: 2px;
}