input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.bgBodyImg {
	position: absolute;
	width: 1.26rem;
	height: .4rem;
	top: .46rem;
	left: .46rem;
}

.bgBody {
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* background-color: rgba(0,211,35,.1); */
	background-image: url('../img/logo_beijing.png');
	position: relative;
}

.pageLogoBox {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1rem;
	background-color: rgba(0, 211, 35, .2);
}

.pageLogoBox img {
	height: .4rem;
}

.pageCenterBox {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url('../img/dev_img.png');
	background-repeat: no-repeat;
	background-size: 100%, 100%;
	width: 11.82rem;
	height: 6.12rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flex_right {
	width: 50%;
	padding: .84rem;
	height: 100%;
}

.pageTitle {
	font-size: .2rem;
	font-weight: 500;
	color: #333333;
	text-align: center;
	margin-bottom: .6rem;
}

.forgetBox {
	width: 8rem;
	padding: 0 0 .3rem;
}

.loginForm {
	display: flex;
	flex-direction: column;
}

.loginForm .inputBox {
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-bottom: .18rem;
	padding: .15rem;
	width: 100%;
	height: .58rem;
	border: 1px solid #999999;
	border-radius: .04rem;
}

.loginForm .inputBox .inputIcon {
	width: .26rem;
	margin-right: .1rem;
}

.loginForm .inputBox .input {
	flex: 1;
	font-size: .18rem;
}

.loginForm .loginClearBox {
	width: .26rem;
	padding: 0 .16rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loginForm .loginClearBox .login_clear {
	width: .26rem;
	cursor: pointer;
	display: none;
}

.loginForm .inputBox .getCodeBtn {
	width: 1rem;
	padding-left: .15rem;
	border-left: 1px solid #E8EBF0;
	font-size: .16rem;
	text-align: center;
	color: #1FA74A;
	cursor: pointer;
}

.loginForm .inputBox .getCodeBtn[disabled] {
	color: #999;
}

/* 整体的label样式，设置为块级元素方便布局 */
.agreeBox {
	display: flex;
	align-items: center;
	color: #666;
	margin-bottom: .3rem;
}

/* 自定义模拟复选框的外观，这里用一个div来模拟 */
.agreeText::before {
	content: "";
	display: inline-block;
	width: .16rem;
	height: .16rem;
	border: 1px solid #ccc;
	border-radius: 50%;
	margin-right: .05rem;
	vertical-align: middle;
}

/* 当复选框被选中时，模拟复选框的样式改变 */
.agreeCheckBox:checked+.agreeText::before {
	background-color: #1FA74A;
	border-color: #1FA74A;
}

/* 当复选框被选中时，在模拟复选框中添加对勾样式 */
.agreeCheckBox:checked+.agreeText::before {
	content: "✔";
	color: white;
	text-align: center;
	line-height: .16rem;
	font-size: .14rem;
}

.agreeText {
	display: flex;
	align-items: center;
	font-size: .14rem;
}

.agreeText a {
	color: #1FA74A;
	font-size: .14rem;
}


.loginForm input[type=submit] {
	width: 100%;
	height: .58rem;
	background: #1FA74A;
	border-radius: .8rem;
	color: #fff;
	font-size: .16rem;
	cursor: pointer;
}

.switchUrl {
	padding: .20rem 0 .10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1FA74A;
	font-size: .16rem;
}

.switchUrl span {
	cursor: pointer;
}

.switchUrl a::after {
	color: #1FA74A;
	font-size: .12rem;
	font-family: swiper-icons;
	content: "next";
	margin-left: .8rem;
}

.loginForm .codeInputBox {
	display: none;
}

.inputBottom {
	color: #999;
	margin-bottom: .18rem;
	display: flex;
	justify-content: flex-end;
	line-height: 1;
	height: .14rem;
}

.forget {
	text-decoration: underline;
	text-decoration-color: #999;
	margin-left: .10rem;
	font-size: .14rem;
}