/* 为博客园增加类似 Microsoft 风格的 Alart */
.git-alert {
    position: relative; /* 创建定位上下文 */
    padding: 16px !important;
  }

/* header 的样式设置 */
.git-alert-header {
  font-family: "Arial Black";
  display: flex;
  gap: calc(8px * 1.618); /* 黄金分割间距 */
  align-items: center;
  margin-bottom: 2px;
  /* 修复定位的核心 */
  position: static !important; 
  transform: none !important;
}

/* icon 的样式设置 */
.git-alert-icon {
  width: 20px;
  height: 20px;
  margin-right: 50px !important; /* 强制间距 */
  /* 清除旧方案的绝对定位 */
  position: static !important;
  left: auto !important;
  top: auto !important;
}

/* alart 框内的实际文本的样式设置 */
.git-alert-content {
  color: var(--color-basic-900);
  padding-left: 0px !important; /* 取消旧偏移 */
  /* 视觉分隔线，根据需要加粗 */
  border-top: 0px solid rgba(0,0,0,0.5);
  margin-top: 0px;
  padding-top: 0px;
}

#loading{bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999;background-color:#f4f5f5;pointer-events:none;}.loader-inner{will-change:transform;width:40px;height:40px;position:absolute;top:50%;left:50%;margin:-20px 0 0 -20px;background-color:#3742fa;border-radius:50%;animation:scaleout 0.6s infinite ease-in-out forwards;text-indent:-99999px;z-index:999991;}@keyframes scaleout{0%{transform:scale(0);opacity:0;}40%{opacity:1;}100%{transform:scale(1);opacity:0;}}