[v-cloak] {
	display: none;
}


/* 登陆弹出层 */
.container {
	margin: 70px 4%;
}

.login_header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 36px;
	margin: 20px auto;
	position: relative;
}

.login_header h4 {
	flex: none;
	text-align: left;
	color: var(--mid-gray);
	font-weight: normal;
}

.login_header .affiliation {
	height: 54px;
	position: absolute;
	bottom: 10px;
	left: 160px;
}

.login_header .affiliation img {
	height: 100%;
}

.login_panel {
	display: flex;
	flex-direction: row;
	height: auto;
	max-width: 970px;
	min-height: 400px;
	background: #fff;
}


.login_panel input {
	display: inline-block;
	width: 100%;
	height: 3em;
	line-height: 1.5;
	padding: 4px 7px;
	font-size: 12px;
	border: 1px solid #dcdee2;
	border-radius: 4px;
	color: #515a6e;
	background-color: #fff;
	background-image: none;
	position: relative;
	cursor: text;
}

.login_panel .login_form {
	/* 弹出层  90%*/
	height: auto;
	flex: 1;
	padding-right: 50px;
}

.login_panel .login_form .username {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.login_panel .login_form .username label {
	width: 80px;
	text-align: left;
	margin-bottom: .5em;
	font-size: 14px;
	color: var(--title-text);
	font-weight: bold;
}

.login_panel .login_form .username input {
	width: 100%;
}

.login_panel .login_form .password {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.login_panel .login_form .password label {
	width: 80px;
	text-align: left;
	margin-bottom: .5em;
	font-size: 14px;
	color: var(--title-text);
	font-weight: bold;
}

.login_panel .login_form .password input {
	width: 100%;
}

.login_panel .login_form .captcha {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}

.login_panel .login_form .captcha label {
	width: 80px;
	text-align: left;
	margin-bottom: .5em;
	font-size: 14px;
	color: var(--title-text);
	font-weight: bold;
}

.login_panel .login_form .captcha .captcha_box {
	display: flex;
	align-items: center;
	height: 36px;
}

.login_panel .login_form .captcha input {
	width: 50%;
}

.login_panel .login_form svg {
	width: 120px;
}


.login_panel .login_form .rememberPwd {
	margin: 5px 0px;
	display: flex;
	flex-direction: row;
}

.login_panel .login_form .rememberPwd .ivu-checkbox-inner {
	top: -9px;
}

.login_panel .login_form .rememberPwd .ivu-checkbox-checked .ivu-checkbox-inner {
	background-color: var(--theme-green);
}



.login_panel .submit-group {}

.login_panel .submit {
	width: 120px;
	height: 40px;
	color: #fff;
	font-weight: bold;
	background-color: var(--theme-green);
	cursor: pointer;
}

.login_panel .forgetPwd {
	margin-left: 30px;
	border: none;
	font-size: 14px;
	font-weight: bold;
}

.login_panel .login_msg {
	color: var(--theme-red);
	text-align: center;
	margin-top: 20px;
}





.login_panel .sider {
	flex: 1;
	border-left: var(--light-gray) 1px dotted;
	padding-left: 50px;
}

.login_panel .sider h3 {

	color: var(--mid-gray);
	font-size: 24px;
	margin: 1.5em 0 .5em;
}



.login_panel .sider a {
	height: 40px;
	width: 120px;
	padding: 0;
}

.login_panel .sider a span {
	line-height: 40px;
}

.login_panel .sider .wxLoginBtn {
	/* border:none; */
	/* margin-left:100px; */
	width: 100%;
	height: 40px;
}

.login_panel .sider .register_btn {
	height: 40px;
	width: 100%;
}


@media screen and (max-width: 540px) {

	/* 当屏幕尺寸小于540px时，应用下面的CSS样式 */
	.container {
		margin: 70px 8%;
	}

	.login_panel {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
	}


	.login_panel .login_form {
		width: 100%;
		/* 弹出层  90%*/
		height: auto;
		padding: 0;
	}


	.login_panel .rememberPwd .wxLoginBtn {
		margin: 20px 60px 20px 80px;
		width: 278px;
	}

	.login_panel .forgetPwd {
		margin-left: 15px;
	}

	.login_panel .sider {
		width: 100%;
		padding: 20px 0;
		border-left: none;
		border-top: #ccc 1px dotted;
		margin: 0px;
	}

	.login_panel .sider h3 {}

	.login_panel .sider a {
		width: 100%;
		height: 40px;
		padding: 0;
	}

	.login_panel .sider a span {
		line-height: 40px;
	}
}