html,
body {
	/* width: 100vw; */
	/* min-width: 1020px;
	overflow-x: hidden; */
	margin: 0;
	padding: 0;
	background: #000;
	font-family: "PingFang SC", "Microsoft YaHei", "黑体";
}

a {
	text-decoration: none;
}

.head {
	position: fixed;
	top: -72px;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 72px;
	background: rgba(30, 30, 30, 0.8);
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	-moz-backdrop-filter: saturate(180%) blur(10px);
	-o-backdrop-filter: saturate(180%) blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.head>div {
	width: 80px;
	height: 30px;
	background: url('./../images/footer_logo.svg') no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
}

.head-active {
	animation: headMove 0.1s linear forwards;
}

@keyframes headMove {
	0% {
		top: -72px;
	}

	100% {
		top: 0;
	}
}

.video_bg {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video_bg video {
	/* width: auto;
	height: 100%; */
	width: 1280px;
	height: 720px;
	animation: videoMove 7s linear forwards;
}

.video_bg>div {
	/* width: 100vw;
	height: 100vh;
	background: rgba(30, 30, 30, 0);
	backdrop-filter: saturate(180%) blur(2px);
	-webkit-backdrop-filter: saturate(180%) blur(2px);
	-moz-backdrop-filter: saturate(180%) blur(2px);
	-o-backdrop-filter: saturate(180%) blur(2px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2; */
}

@keyframes videoMove {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0.2;
	}

	100% {
		opacity: 1
	}
}

.suspension {
	width: 72px;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: fixed;
	right: 10px;
	bottom: 50px;
	z-index: 11;
}

.suspension div {
	width: 70px;
	height: 62px;
	border: 1px solid #41435A;
	background: #1E1E1E;
	font-size: 12px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.suspension div img {
	width: 20px;
	height: 20px;
	margin-bottom: 8px;
}

.suspension div span,
.suspension div img {
	opacity: 0.5;
}

.suspension div:hover {
	border-color: #ACAEBF;
}

.suspension div:hover span,
.suspension div:hover img {
	opacity: 1;
}

.suspension>div:first-child {
	visibility: hidden;
}

.suspension .suspension_active div {
	border-color: #ACAEBF;
}

.suspension .suspension_active img,
.suspension .suspension_active span {
	opacity: 1;
}

.ICP {
	height: 36px;
	color: #ACAEBF;
	background: #1E1E1E;
	font-size: 12px;
	font-family: PingFangSC-Regular, PingFang SC;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;

}

.ICP img {
	width: 14px;
	height: 14px;
	margin: 0 5px;
}