/* 全屏loading遮罩层样式 */
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* 更深的半透明黑色背景 */
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loading-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
	border-radius: 10px;
}

.loading-icon {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-top: 5px solid #ffffff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 15px;
}

.loading-text {
	color: white;
	font-size: 28px;
	font-weight: bold;
}

/* 旋转动画关键帧 */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
