#loading{
	background-color: #FFFFFF;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	margin-top: 0em;
	top: 0em;
	opacity:0.95;
}

#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}

#loading-center-absolute {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 修复：固定.object容器尺寸，避免塌陷 */
.object{
	width: 120px;  /* 适配动画元素的合理宽度 */
	height: 120px; /* 必须固定高度，替代原有auto */
	display: flex; /* 让内部动画元素居中 */
	justify-content: center;
	align-items: center;
	border-radius: 50%; /* 保留原有圆形容器样式 */
}

/* 修复：补充原有缺失的object_one动画关键帧 */
#object_one {
	animation: object_one 1.5s infinite normal;
	-webkit-animation: object_one 1.5s infinite normal;
	-moz-animation: object_one 1.5s infinite normal;
	-ms-animation: object_one 1.5s infinite normal;
	-o-animation: object_one 1.5s infinite normal;

	animation-delay: 0.25s;
	-webkit-animation-delay: 0.25s;
	-moz-animation-delay: 0.25s;
	-ms-animation-delay: 0.25s;
	-o-animation-delay: 0.25s;
}

/* 定义旋转动画（让容器带动内部元素旋转） */
@keyframes object_one {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
/* 兼容各浏览器前缀 */
@-webkit-keyframes object_one {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes object_one {
	0% { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); }
}
@-ms-keyframes object_one {
	0% { -ms-transform: rotate(0deg); }
	100% { -ms-transform: rotate(360deg); }
}
@-o-keyframes object_one {
	0% { -o-transform: rotate(0deg); }
	100% { -o-transform: rotate(360deg); }
}

/* 动画元素样式 */
.loader-circle {
	width: 100px;
	height: 100px;
	border: 8px solid #f0f0f0; /* 浅灰色边框和白色蒙版形成对比 */
	border-top: 8px solid orangered; /* 主色边框 */
	border-radius: 50%; /* 环形效果 */
}

/* ========== 加载蒙版样式（适配浅色/深色模式） ========== */
#loading{
	background-color: var(--bg-color); /* 继承全局背景色（白天白/黑夜深灰） */
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 9999; /* 提高层级，避免被其他元素覆盖 */
	margin-top: 0em;
	top: 0em;
	opacity: 0.98; /* 深色模式下稍提高不透明度，保证遮挡效果 */
	transition: background-color 0.4s ease; /* 跟随全局过渡动画 */
}

#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}

#loading-center-absolute {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 修复容器塌陷 + 适配模式 */
.object{
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

#object_one {
	animation: object_one 1.5s infinite normal;
	-webkit-animation: object_one 1.5s infinite normal;
	-moz-animation: object_one 1.5s infinite normal;
	-ms-animation: object_one 1.5s infinite normal;
	-o-animation: object_one 1.5s infinite normal;

	animation-delay: 0.25s;
	-webkit-animation-delay: 0.25s;
	-moz-animation-delay: 0.25s;
	-ms-animation-delay: 0.25s;
	-o-animation-delay: 0.25s;
}

/* 旋转动画关键帧 */
@keyframes object_one {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@-webkit-keyframes object_one {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes object_one {
	0% { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); }
}
@-ms-keyframes object_one {
	0% { -ms-transform: rotate(0deg); }
	100% { -ms-transform: rotate(360deg); }
}
@-o-keyframes object_one {
	0% { -o-transform: rotate(0deg); }
	100% { -o-transform: rotate(360deg); }
}

/* 加载动画元素（适配深浅色模式） */
.loader-circle {
	width: 100px;
	height: 100px;
	border: 8px solid var(--border-color); /* 浅色：浅灰 / 深色：深灰边框 */
	/*border-top: 8px solid var(--accent-color);*/ /* 浅色：黑色 / 深色：白色主色 */
	border-top: 8px solid orangered; /* 主色边框 */
	border-radius: 50%;
}