.pageContent {
	width: 1400px;
	height: 1080px;
	background: #FFFFFF;
	margin: 0 auto;
	position: relative;
}

.leftBg {
	width: 1101px;
	height: 860px;
	background: url(../img/loginBg.png) no-repeat top right;
	background-size: 1101px 860px;
	position: absolute;
	top: 70px;
	left: -260px;
}
.rightBox {
	width: 460px;
	top: 0;
	position: absolute;
	right: 0;
	text-align: center;
}
.rightBox .logo {
	width: 76px;
	height: 33px;
	margin: 66px auto 0;
}
#loginBox .title,
#regBox .title {
	font-size: 40px;
	color: #2D2D33;
	margin-top: 100px;
	font-weight: 600;
}
.formBox {
	margin-top: 100px;
}
.formLine {
	position: relative;
	width: 350px;
	height: 70px;
	border-bottom: 1px solid rgba(220, 226, 238, 0.6);
	margin: 16px auto 0;
}
.formBox .inp {
	display: block;
	width: 350px;
	height: 70px;
	line-height: 70px;
	font-size: 20px;
}
.formLine .delBtn {
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	top: 26px;
	right: 10px;
	background: url("../img/svg/delBtn.svg") no-repeat right center;
	background-size: 18px 18px;
	cursor: pointer;
}

.opBtn {
	width: 350px;
	margin: 32px auto 0;
}
.check {
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	color: #4A4A53;
	background: url(../img/svg/checkNo.svg) no-repeat 0 center;
	background-size: 18px 18px;
	padding-left: 20px;
	float: left;
	cursor: pointer;
}
.check.yes {
	background: url(../img/svg/checkYes.svg) no-repeat 0 center;
	background-size: 18px 18px;
}
.forgetPwd {
	float: right;
	height: 30px;
	line-height: 30px;
	width: 90px;
	font-size: 16px;
	color: #4A4A53;
	background: url(../img/wenhao.png) no-repeat right center;
	background-size: 18px 18px;
	text-align: left;
	cursor: pointer;
	/*display: inline-block;*/
}
.forgetPwd:hover {
	color: #3B6AFB;
}
.errorTip {
	width: 350px;
	background: url(../img/svg/errTip.svg) no-repeat left center;
	padding-left: 26px;
	height: 22px;
	line-height: 22px;
	font-size: 16px;
	color: #FF5B3E;
	margin: 15px auto 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	text-align: left;
}
.loginBtn,
.regBtn {
	width: 195px;
	height: 60px;
	background: #3B6AFB;
	box-shadow: 0 9px 23px 0 rgba(0,49,200,0.22);
	border-radius: 100px;
	margin: 100px auto 0;
	text-align: center;
	font-size: 24px;
	color: #FFFFFF;
	text-align: center;
	line-height: 60px;
	cursor: pointer;
}
.regBtn {
	margin-top: 67px;
}
.loginBtn.disabled,
.regBtn.disabled {
	background: rgba(59,106,251,0.30);
}
@keyframes roll{
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes roll {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-moz-keyframes roll {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-o-keyframes roll {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.loginBtn img {
	height: 24px;
	animation: roll 1s infinite;
	-moz-animation: roll 1s infinite;	/* Firefox */
	-webkit-animation: roll 1.5s infinite linear;	/* Safari 和 Chrome */
	-o-animation: roll 1s infinite;	/* Opera */
}
.link {
	font-size: 20px;
	color: #3B6AFB;
	text-align: center;
	margin: 40px auto 0;
	cursor: pointer;
}
input {
	font-weight: 600;
}
.formLine.captcha {
	height: 60px;
}
#getCodeBtn {
	position: absolute;
	display: block;
	width: 140px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	right: 10px;
	top: 0;
	font-size: 20px;
	color: #3B6AFB;
	cursor: pointer;
}