/* 登录页 */
input:focus,
textarea:focus {

	outline: none;

}


input::-ms-clear {
	display: none;
}

textarea {

	resize: none;

}

.container {
	padding: 20px 0px;
	min-height: calc(100vh - 226px - 206px);
	width: 1190px;
	margin: 0 auto;
	display: flex;
	align-content: center;
}


.login-part {
	width: 990px;
	height: 558px;
	background-color: #fff;
	margin: auto;
	border-radius: 4px;
	box-shadow: 0 0 12px #dddedf;
	display: flex;
}

.login-form {
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-form-left {
	width: 440px;
	height: 458px;
}

.login-form-right {
	width: 550px;
	height: 100%;
}

.login-form-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login-form-info .title {
	color: #333;
	font-size: 20px;
	margin-bottom: 20px;
	width: 100%;
	border-bottom: 1px solid #efefef;
	background-color: #fff;
	line-height: 45px;
}


.login-form-info .title {
	display: flex;
	justify-content: space-between;
}

.login-form-info .title-item {
	width: 50%;
}

.login-form-info .title-item.member-login {
	text-align: left;
	padding-left: 20px;
}

.login-form-info .title-item.member-register {
	text-align: right;
	padding-right: 20px;
}

.member-register span {
	display: inline-block;
	color: #666;
	font-size: 14px;
	text-align: center;
	width: 86px;
	height: 32px;
	line-height: 32px;
	border: 1px solid #E5E5E5;
	border-radius: 4px;
	cursor: pointer;
}

.login-form-info .login-tab {
	display: flex;
	justify-content: center;
	cursor: pointer;
}

.login-form-info .login-tab .login-tab-item {
	margin: 20px;
}

.login-form-info .login-tab .login-tab-lactive {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 600;
	color: #333333;
	border-bottom: 2px solid #3596cb;
}

.login-form-info .username,
.pass {
	height: 28px;
	line-height: 28px;
	margin-top: 20px;
	margin-bottom: 22px;
	text-align: center;
	position: relative;
}

.login-form-info .pass .close {
	    position: absolute;
	    right: 5px;
	    top: 0;
}

.login-form-info .username input,
.pass input {
	padding-left: 26px;
	height: 28px;
	width: 283px;
	border: 0;
	border-bottom: 1px solid #E5E5E5;
}

.login-form-info .username input:focus,
.pass input:focus {

	outline: none;

	border-bottom: 1px solid #333;

}

.login-form-info .ago {
	font-size: 15px;
	color: #999;
	position: absolute;
}

.login-form-info .do-action {
	display: flex;
	justify-content: end;
	width: 285px;
	margin-bottom: 30px;
}

.login-form-info .do-action a {
	font-size: 14px;
	color: #2676B5;
	cursor: pointer;
}

.login-form-info .sub a {
	width: 285px;
	height: 43px;
	line-height: 43px;
	text-align: center;
	background-color: #3596cb;
	color: #fff;
	font-size: 16px;
	border-radius: 22px;
	margin-top: 18px;
	display: block;
	cursor: pointer;
}

.login-form-info .sub a:hover {
	background-color: #185aa0;
}

.login-form-right img {
	width: 100%;
	height: 100%;
}


