body {
  background-color: #0D1117;
  color: #C9D1D9;
  overflow: hidden; /* 防止因为滚动条出现双重滚动 */
}

/* 自定义滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0D1117;
}
::-webkit-scrollbar-thumb {
  background: #30363D;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #58A6FF;
}

.animate-blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
