@font-face {
    font-family: 'Inter-SemiBold';
    src: url('./font/Inter-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.loading_bg{
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
	display: flex;
	background: #D9D9D9;
	/*display: none;*/
}

@keyframes loadingText{
	0%{
		left: -150%;
	}
	100%{
		left: -50%;
	}
}

.loadingBody{
	width: 100%;
	height: 100%;
	position: relative;
	transform: skewX(-25deg);
	background: #D9D9D9;
	position: absolute;
	z-index: 2;
	display: flex;
	transition: 3s;
	overflow: hidden;
}

.loadingBody.nth1{
	left: -50%;
}


.loadingBody.nth2{
	right: -50%;
}

.loading{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	left: -100vw;
	z-index: 2;
	transform: skewX(25deg) translateX(50vw);
	position: relative;
	animation: loadingText 2s 1 forwards linear;
}

.loading svg{
	margin: 0 2.8vw;
	position: relative;
}

.loading_cent {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}

.index_video{
	position: fixed;
	width: 100%;
    height: 100vh;
    object-fit: cover;
}

.index_font{
	position: relative;
	width: 100%;
    height: 100vh;
	text-align: center;
	display: none;
	cursor: pointer;
}
.index_font .logo{
	height: 74px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index_font .title{
	position: absolute;
	width: 100%;
	bottom: 0;
	padding-bottom: 48px;
	color: #FFF;
	text-align: center;
	font-family: 'Inter-SemiBold', sans-serif;
	font-weight: 600;
}

.index_font .title p{
	font-size: 24px;
    letter-spacing: -1.5%;
}

.index_font .title h1{
	font-size: 60px;
    letter-spacing: -3.5%;
}

.index_font .title p.jindu{
	display: none;
}
    
@media (max-width: 767px) {
	/* inedex-加载页 */
	.index_font .title p{
		font-size: 11px;
	}
	.index_font .title h1{
		font-size: 20px;
		margin: 10px 0 20px;
	}
	.index_font .title p.jindu{
		display: block;
	}
}