@charset "UTF-8";
/**
 * 金钼系统 - 局部 Loading 遮罩样式
 * 用于数据加载版块的 loading 效果
 */

.jinmu-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border-radius: inherit;
}

.jinmu-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--jinmu-primary, #1976d2);
  border-radius: 50%;
  animation: jinmu-spin 0.8s linear infinite;
}

@keyframes jinmu-spin {
  to {
    transform: rotate(360deg);
  }
}
