a {
  text-decoration: none; /* 去掉下划线 */
  color: inherit; /* 继承父元素的颜色 */
}

[ng-cloak] {
  display: none !important;
}

/* 遮罩层样式 */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
  display: none; /* 默认隐藏 */
  align-items: center;
  justify-content: center;
  z-index: 9999; /* 确保在最上层 */
}

#overlay .loading-text {
  background: white;
  padding: 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
}