hongjli
2025-04-07 dc5ccbb11801c997fd91b427341e4ea79f95b084
src/app/globals.css
@@ -55,6 +55,20 @@
  animation-delay: 0.5s;
}
/* 页面内容淡入动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}
/* Logo圆环脉冲动画 */
@keyframes logo-ring-pulse {
  0% {
@@ -236,36 +250,29 @@
/* AI数据流效果动画 */
@keyframes dataflowY {
  0% {
    background-position: 0 -200px;
  from {
    transform: translateY(-100%);
  }
  100% {
    background-position: 0 200px;
  to {
    transform: translateY(100%);
  }
}
@keyframes dataflowX {
  0% {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.animate-dataflowY {
  background-image: linear-gradient(to bottom, transparent 0%, rgba(106, 219, 255, 0.4) 50%, transparent 100%);
  background-size: 100% 200px;
  animation: dataflowY 8s linear infinite;
  animation: dataflowY 3s linear infinite;
}
.animate-dataflowX {
  animation: dataflowX 4s infinite;
  animation: dataflowX 5s linear infinite;
}
/* 按钮倾斜动画 */
@@ -296,7 +303,7 @@
}
.animate-scanline {
  animation: scanline 8s linear infinite;
  animation: scanline 3s ease-in-out infinite;
}
/* 基础渐变动画 */
@@ -439,11 +446,11 @@
}
@keyframes dataflowY {
  0% {
    background-position: 0 -200px;
  from {
    transform: translateY(-100%);
  }
  100% {
    background-position: 0 200px;
  to {
    transform: translateY(100%);
  }
}
@@ -483,7 +490,7 @@
}
.animate-data-blink {
  animation: data-blink 3s ease-in-out infinite;
  animation: data-blink 2s ease-in-out infinite;
}
.animate-data-blink-slow {
@@ -491,27 +498,16 @@
}
.animate-dataflowY {
  background-image: linear-gradient(to bottom, transparent 0%, rgba(106, 219, 255, 0.4) 50%, transparent 100%);
  background-size: 100% 200px;
  animation: dataflowY 8s linear infinite;
  animation: dataflowY 3s linear infinite;
}
.animate-scanline {
  animation: scanline 8s linear infinite;
  animation: scanline 3s ease-in-out infinite;
}
.animate-fade-in {
  animation: fadeIn 1.5s ease-in-out forwards;
  animation: fade-in 1.5s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 悬停效果增强 */
@@ -535,66 +531,215 @@
  animation: circle-pulse 4s ease-in-out infinite;
}
/* 红框中科技感圆圈动画效果 - 更柔和的版本 */
/* 光扫描效果动画 */
@keyframes lightSweep {
  0% {
    transform: translateX(-100%) skewX(-45deg);
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  60% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(100%) skewX(-45deg);
    opacity: 0;
  }
}
/* 技术圆圈效果动画 */
@keyframes tech-circle-pulse {
  0%, 100% {
  0% {
    opacity: 0.3;
    border-color: rgba(106, 219, 255, 0.2);
  }
  50% {
    opacity: 0.6;
    border-color: rgba(106, 219, 255, 0.5);
    border-color: rgba(106, 219, 255, 0.3);
  }
  100% {
    opacity: 0.3;
    border-color: rgba(106, 219, 255, 0.2);
  }
}
@keyframes tech-circle-rotate {
  0% {
    transform: rotate(0deg);
    background-color: rgba(19, 28, 65, 0.3);
    background: rgba(19, 28, 65, 0.3);
  }
  50% {
    background-color: rgba(19, 28, 65, 0.5);
    background: rgba(30, 43, 99, 0.3);
  }
  100% {
    transform: rotate(360deg);
    background-color: rgba(19, 28, 65, 0.3);
    background: rgba(19, 28, 65, 0.3);
  }
}
@keyframes tech-center-blink {
  0%, 100% {
    opacity: 0.1;
  0% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
    transform: scale(1);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
}
@keyframes tech-glow-pulse {
  0%, 100% {
  0% {
    opacity: 0.05;
    box-shadow: 0 0 3px rgba(106, 219, 255, 0.05);
    box-shadow: 0 0 5px 0px rgba(106, 219, 255, 0.05);
  }
  50% {
    opacity: 0.15;
    box-shadow: 0 0 8px rgba(106, 219, 255, 0.15);
    box-shadow: 0 0 15px 5px rgba(106, 219, 255, 0.15);
  }
  100% {
    opacity: 0.05;
    box-shadow: 0 0 5px 0px rgba(106, 219, 255, 0.05);
  }
}
.animate-tech-circle-pulse {
  animation: tech-circle-pulse 8s ease-in-out infinite;
  animation: tech-circle-pulse 8s infinite ease-in-out;
}
.animate-tech-circle-rotate {
  animation: tech-circle-rotate 30s linear infinite;
  animation: tech-circle-rotate 30s infinite linear;
}
.animate-tech-center-blink {
  animation: tech-center-blink 5s ease-in-out infinite;
  animation: tech-center-blink 5s infinite ease-in-out;
}
.animate-tech-glow-pulse {
  animation: tech-glow-pulse 8s ease-in-out infinite;
  animation: tech-glow-pulse 8s infinite ease-in-out;
}
/* 高亮划过效果 - 用于登录页面按钮 */
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.animate-shimmer {
  animation: shimmer 2s infinite;
}
/* 登录页面特殊动画 */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes tech-connect {
  0%, 100% {
    opacity: 0.2;
    transform: scaleX(0.7);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1);
  }
}
.animate-tech-connect {
  animation: tech-connect 8s ease-in-out infinite;
}
/* 输入框聚焦动画 */
@keyframes focus-border {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.animate-focus-border {
  animation: focus-border 0.3s ease-out forwards;
}
/* 量子光线效果动画 - 登录按钮专用 */
@keyframes quantum-scan {
  0% {
    transform: translateX(-100%) skewX(-30deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes quantum-glow {
  0%, 100% {
    box-shadow: 0 0 5px 2px rgba(106, 219, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(106, 219, 255, 0.3);
  }
}
@keyframes quantum-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.quantum-button:hover .quantum-scan-line {
  animation: quantum-scan 3s ease-in-out infinite;
}
.quantum-button:hover {
  animation: quantum-glow 4s ease-in-out infinite;
}
.quantum-button:hover .quantum-pulse {
  animation: quantum-pulse 2s ease-in-out infinite;
}
/* 主页闪光按钮效果 */
@keyframes shine {
  100% {
    left: 125%;
  }
}
.animate-shine {
  animation: shine 1.5s ease-in-out;
}