body {
	width: 100%;
	height: 100%;
}

#background {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	z-index: 0;
}

#background-login {
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 100%;
	height: 100%;
	z-index: 0;
}

::-webkit-scrollbar {
	width: 0px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: #5f5f5f;
}

#container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -47.5%);
	height: 800px;
	width: 1180px;
	background: rgba(255,255,255,0.3);
	border: 1px solid #FFFFFF;
	border-radius: 20px;
}

#copyright {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%, 0);
}

#touxiang {
	position: absolute;
	right: 130px;
	top: -68px;
	width: 48px;
	width: 48px;
}

#showusername {
	position: absolute;
	right: 16px;
	top: -58px;
	font-size: 20px;
	width: 100px;
	text-align: left;
}

#logout {
	position: absolute;
	right: 0px;
	top: -58px;
	width: 30px;
	width: 30px;
	filter: brightness(1);
	transition: filter 0.3s;
}

#logout:hover {
	cursor: pointer;
	filter: brightness(1.7);
}

#logout:active {
	filter: brightness(1.5);
}