header.first-screen {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.first-screen #canvas {
  /* position: absolute; */
	width: 100vw;
	height: 100vh;
}

.first-screen .slogin {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.first-screen .slogin-centent {
	width: 1020px;
	height: 285px;
	margin: 0 auto;
	background: rgba(30, 30, 30, 0.3);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	-moz-backdrop-filter: saturate(180%) blur(12px);
	-o-backdrop-filter: saturate(180%) blur(12px);
	margin-top: 265px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	display: flex;
	flex-direction: column;
}
.first-screen .logos {
	flex: 0 0 162px;
	border-bottom: 1px solid #fff;
	display: flex;
}
.first-screen .logos > div {
	flex: 1;
	height: 100%;
}
.first-screen .logos > div:first-child {
	border-right: 1px solid #fff;
	background: url('./../images/logo_left.png') center no-repeat;
	background-size: 238px 86px;
}
.first-screen .logos > div:last-child {
	background: url('./../images/logo_right.svg') center no-repeat;
	background-size: 200px 70px;
}

.first-screen .text {
	width: 100%;
	flex: 1;
	overflow: hidden;
	display: flex;
	position: relative;
}
.first-screen .text p {
	height: 100%;
	position: absolute;
	font-weight: 600;
	font-size: 32px;
	color: #fff;
	display: flex;
	/* animation: move 10s linear infinite; */
	animation-delay:3s;
	white-space: nowrap;
	text-overflow:ellipsis;
	margin: 0;
}
.first-screen .text p span {
	width: 980px;
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
	background: url('./../images/icon_logo.svg') no-repeat;
	background-size: 28px 28px;
	background-position: right 50px;
}

@keyframes move {
	0%{ left: 0; }
	100%{ left: -980px; }
}