@import '@/global/global.less';

.container {
	background: url('../../assets/images/login-bg.png') no-repeat center;
	width: 100%;
	min-height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	background-size: cover;
	.header {
		justify-content: flex-start;
		height: 200px;
		width: 90%;
		padding: 60px 0 40px 0;
		display: flex;
		align-items: center;
		.logo {
			height: 80px;
		}
		.line {
			height: 40px;
			width: 1px;
			background-color: #fff;
			margin: 0 2em;
		}
		.title {
			font-size: 2.8em;
			flex: 1;
			color: #fff;
			font-family: '微软雅黑';
		}
	}
	.content {
		justify-content: center;
		width: 80%;
		border-radius: 1em;
		padding: 1em;
		display: flex;
		flex: 1;
	}
	.footer {
		justify-content: flex-end;
		height: 150px;
		width: 80%;
		text-align: center;
		.text {
			display: inline-block;
			margin-top: 40px;
			color: #fff;
			font-size: 1.5em;
			font-weight: 500;
			font-family: '宋体';
		}
	}
	.login-img-container {
		background: url('../../assets/images/login-img.png') no-repeat center
			top;
		width: 100%;
		height: 100%;
		background-size: 100% 100%;
		// background-attachment: fixed;
	}
	.login-router {
		display: flex;
		align-items: flex-start;
		justify-content: space-around;
		width: 100%;
		.login-router-view {
			flex: 1;
			max-width: 550px;
			min-height: 500px;
			border: 1px solid #eee;
			border-radius: 1em;
			box-shadow: 0px 1px 5px 0px #eee;
			padding: 3em;
			display: flex;
			justify-content: space-between;
			flex-direction: column;
			.text {
				text-align: center;
				display: inline-block;
				color: @primary-color;
				font-size: 1.5em;
				font-weight: 500;
				font-family: '宋体';
			}
		}
	}
}
