.box {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	background-color: #f0f0f0;
	font-family: Arial, sans-serif;
	position: fixed;
	overflow: hidden;
	left: 0;
	right: 0;
	z-index: 999;
}

.loading-container {
	text-align: center;
	display: flex;
    flex-direction: column;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.logo-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(to right, #0088ff, #0066cc);
	clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
	margin-right: 10px;
}

.logo-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.logo-text-chinese {
	font-size: 24px;
	font-weight: bold;
	color: #4a4a4a;
}

.logo-text-english {
	font-size: 14px;
	color: #888;
}

.loading-bar {
	width: 200px;
	height: 8px;
	background-color: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 auto;
}

.loading-progress {
	width: 50%;
	height: 100%;
	background-color: #0088ff;
	animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}