hongjli
2025-04-23 57f311036b7e97453413b47ebe5d1248dfff50cc
src/app/globals.css
@@ -44,6 +44,8 @@
  color: rgb(var(--foreground-rgb));
  font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  min-height: 100vh;
  opacity: 1;
  transition: opacity 0.2s ease-out;
}
/* 滚动性能优化 */
@@ -819,3 +821,23 @@
.animate-error-scan {
  animation: error-scan 2s linear infinite;
}
/* 页面过渡效果 */
.page-transitioning {
  animation: fadeOut 0.2s ease-out forwards;
  pointer-events: none;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* 防止链接点击时的闪烁 */
.no-flash-link {
  -webkit-tap-highlight-color: transparent;
}