html,
body {
	margin: 0;
	padding: 0;
}

.login-box {
	background: url('../img/login_bg.jpg') no-repeat;
	background-position: center;
	background-size: cover;
	width: 100vw;
	height: 100vh;
}

.login-item {
	width: 720px;
	height: 500px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background-color: #ffffff;
	display: flex;
	box-shadow: 0 0 15px 0 rgba(14, 5, 11, .2);
	border-radius: 4px;
}

.login-item .left {
	width: 280px;
	background: url('../img/login_bg_leftBg.png') no-repeat;
	background-size: cover;
	background-position: center;
	padding-top: 60px;
	box-sizing: border-box;
}

.login-item .left .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.login-item .left .logo img {
	width: 55px;
	margin-right: 6px;
}

.login-item .left .logo .zh {
	font-size: 20px;
	font-weight: bold;
	color: #1d58b2;
	font-family: '楷体';
}

.login-item .left .h {
	margin-top: 30px;
	text-align: center;
	font-size: 26px;
	position: relative;
	font-weight: bold;
}

.login-item .left .h::before {
	content: '';
	width: 60px;
	height: 6px;
	border-radius: 10px;
	background-color: #1d58b2;
	display: block;
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
}

.login-item .right {
	width: calc(100% - 280px);
	padding: 60px 70px 0 70px;
	box-sizing: border-box;
}

.login-item .right .tab-list {
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-item .right .tab-list .li {
	margin: 0 20px;
	font-size: 20px;
	cursor: pointer;
}

.login-item .right .tab-list .li.active {
	color: #1d58b2;
	font-weight: bold;
	position: relative;
}

.login-item .right .tab-list .li.active:before {
	content: '';
	width: 40px;
	height: 4px;
	border-radius: 10px;
	background-color: #1d58b2;
	display: block;
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
}

.login-item .right .h {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

.login-item .right .input-box {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
}

.login-item .right .input-box input {
	border: 1px solid #e1e1e1;
	line-height: 44px;
	padding: 0 10px;
	margin-bottom: 15px;
}

.login-item .right .input-box button {
	color: #ffffff;
	background: #1d58b2;
	border: 0;
	line-height: 44px;
	font-size: 18px;
	border-radius: 50px;
	margin-top: 10px;
	cursor: pointer;
}

.login-item .right .input-box .dsc {
	text-align: center;
	margin-top: 20px;
	color: #666666;
}

.login-item .right .input-box .dsc a {
	color: #1d58b2;
	text-decoration: none;
}

@media screen and (max-width:980px) {
	.login-item {
		width: calc(100% - 50px);
	}

	.login-item .left {
		display: none;
	}

	.login-item .right {
		width: 100%;
		box-sizing: border-box;
		padding: 60px 30px 0 30px;
	}
}