
/* 导航栏主容器 - 透明沉浸式 */
.navbar[data-v-44e1afd8] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* 移除背景色，默认透明 */
  background: transparent;
}

/* 滚动后的导航栏 - 添加玻璃态背景 */
.navbar-scrolled[data-v-44e1afd8] {
  padding: 15px 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar-container[data-v-44e1afd8] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo样式 - 居左 */
.navbar-brand[data-v-44e1afd8] {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  transition: all 0.3s ease;
  margin-right: auto;
}
.brand-logo[data-v-44e1afd8] {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: float-44e1afd8 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.navbar-brand:hover .brand-logo[data-v-44e1afd8] {
  transform: rotate(10deg) scale(1.1);
}
.brand-text[data-v-44e1afd8] {
  display: flex;
  align-items: center;
}
.brand-highlight[data-v-44e1afd8] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-brand[data-v-44e1afd8]:hover {
  transform: translateY(-2px);
}

/* 导航菜单 - 居中 */
.navbar-menu[data-v-44e1afd8] {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 60px;
}

/* 导航链接 - 加大字体和间距 */
.nav-link[data-v-44e1afd8] {
  position: relative;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.link-text[data-v-44e1afd8] {
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}
.link-underline[data-v-44e1afd8] {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}
.nav-link[data-v-44e1afd8]:hover {
  color: #fff;
}
.nav-link:hover .link-underline[data-v-44e1afd8],
.nav-link.active .link-underline[data-v-44e1afd8] {
  width: calc(100% - 32px);
}
.nav-link.active[data-v-44e1afd8] {
  color: #fff;
}

/* 下拉箭头 */
.dropdown-arrow[data-v-44e1afd8] {
  transition: transform 0.3s ease;
}
.dropdown-arrow.rotate[data-v-44e1afd8] {
  transform: rotate(180deg);
}

/* 产品下拉菜单 */
.nav-dropdown[data-v-44e1afd8] {
  position: relative;
}

/* 简约下拉菜单 */
.dropdown-menu-simple[data-v-44e1afd8] {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  margin-top: 15px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  overflow: hidden;
}

/* 为下拉菜单添加一个微妙的渐变叠加 */
.dropdown-menu-simple[data-v-44e1afd8]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

/* 下拉项 */
.dropdown-item[data-v-44e1afd8] {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.dropdown-item[data-v-44e1afd8]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}
.dropdown-item[data-v-44e1afd8]:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding-left: 28px;
}
.dropdown-item[data-v-44e1afd8]:hover::before {
  transform: scaleY(1);
}

/* 产品图标 */
.item-icon[data-v-44e1afd8] {
  font-size: 24px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 产品内容 */
.item-content[data-v-44e1afd8] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* 产品名称 */
.item-name[data-v-44e1afd8] {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* 产品徽章 */
.item-badge[data-v-44e1afd8] {
  padding: 3px 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* 移动端菜单按钮 - 调整位置 */
.mobile-toggle[data-v-44e1afd8] {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-toggle[data-v-44e1afd8]:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.hamburger[data-v-44e1afd8] {
  display: block;
  width: 24px;
  height: 20px;
  position: relative;
}
.hamburger span[data-v-44e1afd8] {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger span[data-v-44e1afd8]:nth-child(1) { top: 0;
}
.hamburger span[data-v-44e1afd8]:nth-child(2) { top: 50%; transform: translateY(-50%);
}
.hamburger span[data-v-44e1afd8]:nth-child(3) { bottom: 0;
}
.hamburger.active span[data-v-44e1afd8]:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span[data-v-44e1afd8]:nth-child(2) {
  opacity: 0;
}
.hamburger.active span[data-v-44e1afd8]:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* 移动端菜单 - 玻璃态风格 */
.mobile-menu[data-v-44e1afd8] {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu-content[data-v-44e1afd8] {
  padding: 30px 20px;
}
.mobile-link[data-v-44e1afd8] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.mobile-link[data-v-44e1afd8]:hover,
.mobile-link[data-v-44e1afd8]:active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.3);
  color: #fff;
  transform: translateX(5px);
}
.mobile-dropdown[data-v-44e1afd8] {
  margin-bottom: 15px;
}
.dropdown-toggle[data-v-44e1afd8] {
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.mobile-submenu[data-v-44e1afd8] {
  margin-top: 10px;
  padding-left: 20px;
}
.mobile-sublink[data-v-44e1afd8] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.mobile-sublink[data-v-44e1afd8]:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(102, 126, 234, 0.2);
  color: #fff;
  transform: translateX(5px);
}

/* 动画 */
.dropdown-enter-active[data-v-44e1afd8],
.dropdown-leave-active[data-v-44e1afd8] {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-enter-from[data-v-44e1afd8],
.dropdown-leave-to[data-v-44e1afd8] {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
}
.mobile-menu-enter-active[data-v-44e1afd8],
.mobile-menu-leave-active[data-v-44e1afd8] {
  transition: all 0.3s ease;
}
.mobile-menu-enter-from[data-v-44e1afd8],
.mobile-menu-leave-to[data-v-44e1afd8] {
  opacity: 0;
  transform: translateY(-20px);
}
.dropdown-mobile-enter-active[data-v-44e1afd8],
.dropdown-mobile-leave-active[data-v-44e1afd8] {
  transition: all 0.3s ease;
}
.dropdown-mobile-enter-from[data-v-44e1afd8],
.dropdown-mobile-leave-to[data-v-44e1afd8] {
  opacity: 0;
  max-height: 0;
}

/* 响应式 */
@media (max-width: 1024px) {
.desktop-only[data-v-44e1afd8] {
    display: none;
}
.mobile-toggle[data-v-44e1afd8] {
    display: block;
}
.navbar-container[data-v-44e1afd8] {
    padding: 0 20px;
}
}
@media (max-width: 768px) {
.navbar[data-v-44e1afd8] {
    padding: 15px 0;
}
.navbar-brand[data-v-44e1afd8] {
    font-size: 20px;
}
.brand-logo[data-v-44e1afd8] {
    width: 32px;
    height: 32px;
}
.brand-text[data-v-44e1afd8] {
    font-size: 20px;
}
}

/* 动画关键帧 */
@keyframes float-44e1afd8 {
0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-5px);
}
}

/* 沉浸式Toast提示框 */
.toast-container[data-v-44e1afd8] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  pointer-events: none;
}
.toast-content[data-v-44e1afd8] {
  position: relative;
  min-width: 380px;
  padding: 28px 36px;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 120px rgba(102, 126, 234, 0.1),
    inset 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

/* 背景装饰 */
.toast-content[data-v-44e1afd8]::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  animation: toast-glow-44e1afd8 3s ease-in-out infinite;
}

/* Toast图标 */
.toast-icon[data-v-44e1afd8] {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-ring[data-v-44e1afd8] {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: padding-box;
  animation: icon-rotate-44e1afd8 3s linear infinite;
}
.icon-ring[data-v-44e1afd8]::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
}
.icon-emoji[data-v-44e1afd8] {
  font-size: 28px;
  z-index: 1;
  animation: icon-bounce-44e1afd8 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Toast消息 */
.toast-message[data-v-44e1afd8] {
  flex: 1;
}
.toast-title[data-v-44e1afd8] {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.toast-text[data-v-44e1afd8] {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* 装饰元素 */
.toast-decoration[data-v-44e1afd8] {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}
.decoration-dot[data-v-44e1afd8] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  animation: dot-float-44e1afd8 3s ease-in-out infinite;
}
.dot-1[data-v-44e1afd8] {
  top: 20%;
  right: 20px;
  animation-delay: 0s;
}
.dot-2[data-v-44e1afd8] {
  top: 50%;
  right: 40px;
  animation-delay: 1s;
}
.dot-3[data-v-44e1afd8] {
  top: 80%;
  right: 15px;
  animation-delay: 2s;
}

/* Toast动画 */
.toast-enter-active[data-v-44e1afd8] {
  animation: toast-in-44e1afd8 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast-leave-active[data-v-44e1afd8] {
  animation: toast-out-44e1afd8 0.3s cubic-bezier(0.4, 0, 1, 1);
}
@keyframes toast-in-44e1afd8 {
0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7) rotateX(90deg);
}
50% {
    transform: translate(-50%, -50%) scale(1.05) rotateX(-10deg);
}
100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0);
}
}
@keyframes toast-out-44e1afd8 {
0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}
}
@keyframes toast-glow-44e1afd8 {
0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.5;
}
50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 0.8;
}
}
@keyframes icon-rotate-44e1afd8 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
@keyframes icon-bounce-44e1afd8 {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-5px);
}
}
@keyframes dot-float-44e1afd8 {
0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
}
50% {
    transform: translateY(-20px) translateX(-10px);
    opacity: 0.8;
}
}

/* 响应式Toast */
@media (max-width: 480px) {
.toast-container[data-v-44e1afd8] {
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
}
.toast-content[data-v-44e1afd8] {
    min-width: 320px;
    max-width: calc(100vw - 40px);
    padding: 20px 24px;
}
.toast-icon[data-v-44e1afd8] {
    width: 48px;
    height: 48px;
}
.icon-emoji[data-v-44e1afd8] {
    font-size: 24px;
}
.toast-title[data-v-44e1afd8] {
    font-size: 16px;
}
.toast-text[data-v-44e1afd8] {
    font-size: 13px;
}
.toast-enter-active[data-v-44e1afd8] {
    animation: toast-in-mobile-44e1afd8 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes toast-in-mobile-44e1afd8 {
0% {
      opacity: 0;
      transform: translateX(-50%) translateY(100px);
}
100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
}
}
}


/* 沉浸式Footer */
.footer-immersive[data-v-9156e364] {
  position: relative;
  padding: 80px 0 40px;
  background: #0a0a0a;
  overflow: hidden;
}

/* 背景装饰 */
.footer-bg[data-v-9156e364] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.gradient-overlay[data-v-9156e364] {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.1) 0%, transparent 40%);
  animation: breathe-9156e364 8s ease-in-out infinite;
}
@keyframes breathe-9156e364 {
0%, 100% { opacity: 0.5;
}
50% { opacity: 1;
}
}
.pattern-overlay[data-v-9156e364] {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

/* 主内容 */
.footer-content[data-v-9156e364] {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Logo和标语 */
.footer-brand[data-v-9156e364] {
  margin-bottom: 40px;
}
.brand-logo[data-v-9156e364] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}
.logo-img[data-v-9156e364] {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
  animation: pulse-glow-9156e364 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.brand-logo:hover .logo-img[data-v-9156e364] {
  transform: rotate(10deg) scale(1.1);
}
@keyframes pulse-glow-9156e364 {
0%, 100% {
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}
50% {
    filter: drop-shadow(0 4px 16px rgba(102, 126, 234, 0.5));
}
}
.logo-icon[data-v-9156e364] {
  font-size: 40px;
  animation: pulse-glow-9156e364 3s ease-in-out infinite;
}
@keyframes float-9156e364 {
0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-5px);
}
}
.logo-text[data-v-9156e364] {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tagline[data-v-9156e364] {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 分隔线 */
.footer-divider[data-v-9156e364] {
  width: 100px;
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(102, 126, 234, 0.5) 50%, 
    transparent 100%);
  position: relative;
}
.footer-divider[data-v-9156e364]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(102, 126, 234, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* 备案信息 */
.footer-legal[data-v-9156e364] {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.8;
}
.copyright[data-v-9156e364] {
  margin-bottom: 10px;
  font-weight: 300;
}
.legal-links[data-v-9156e364] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.legal-links a[data-v-9156e364] {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.legal-links a[data-v-9156e364]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(102, 126, 234, 0.5);
  transition: width 0.3s ease;
}
.legal-links a[data-v-9156e364]:hover {
  color: rgba(102, 126, 234, 0.8);
}
.legal-links a[data-v-9156e364]:hover::after {
  width: 100%;
}
.separator[data-v-9156e364] {
  color: rgba(255, 255, 255, 0.2);
}

/* 装饰元素 */
.footer-decoration[data-v-9156e364] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-shape[data-v-9156e364] {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  backdrop-filter: blur(5px);
}
.shape-1[data-v-9156e364] {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation: float-slow-9156e364 15s ease-in-out infinite;
}
.shape-2[data-v-9156e364] {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation: float-slow-9156e364 20s ease-in-out infinite reverse;
}
.shape-3[data-v-9156e364] {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 50%;
  animation: float-slow-9156e364 18s ease-in-out infinite;
}
@keyframes float-slow-9156e364 {
0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
}
33% { 
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.7;
}
66% { 
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
}
}

/* 响应式设计 */
@media (max-width: 768px) {
.footer-content[data-v-9156e364] {
    padding: 40px 20px;
}
.footer-brand[data-v-9156e364] {
    margin-bottom: 30px;
}
.brand-logo[data-v-9156e364] {
    flex-direction: row;
    gap: 10px;
}
.logo-img[data-v-9156e364] {
    width: 35px;
    height: 35px;
}
.logo-text[data-v-9156e364] {
    font-size: 20px;
}
.brand-tagline[data-v-9156e364] {
    font-size: 14px;
}
.footer-divider[data-v-9156e364] {
    margin: 30px 0;
}
.footer-legal[data-v-9156e364] {
    gap: 15px;
}
.copyright[data-v-9156e364] {
    font-size: 13px;
}
.legal-links[data-v-9156e364] {
    font-size: 12px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
.separator[data-v-9156e364] {
    display: none;
}
}

/* 超小屏幕 */
@media (max-width: 480px) {
.footer-decoration[data-v-9156e364] {
    display: none;
}
}


.back-to-top[data-v-cf307b4a] {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: var(--text-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-index-fixed);
  transition: all var(--transition-base) var(--easing-base);
}
.back-to-top[data-v-cf307b4a]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.back-to-top[data-v-cf307b4a]:active {
  transform: translateY(0);
}

/* 动画 */
.fade-enter-active[data-v-cf307b4a],
.fade-leave-active[data-v-cf307b4a] {
  transition: opacity var(--transition-base) var(--easing-base);
}
.fade-enter[data-v-cf307b4a],
.fade-leave-to[data-v-cf307b4a] {
  opacity: 0;
}

/* 响应式 */
@media (max-width: 768px) {
.back-to-top[data-v-cf307b4a] {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
}
}


/* 全局过渡动画 */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}

/* 确保App占满全屏 */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 主内容区域自适应高度 */
#app > main {
  flex: 1;
}

/**
 * 全局样式
 * 虹猫创意官网基础样式重置和通用样式
 */

/* ===== CSS Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* ===== 通用元素样式 ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-base) var(--easing-base);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: transparent;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ===== 容器布局 ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding: 0 var(--spacing-md);
  }
}

/* ===== 栅格系统 ===== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--spacing-md) * -1);
  margin-right: calc(var(--spacing-md) * -1);
}

.col {
  flex: 1;
  padding: 0 var(--spacing-md);
}

/* ===== 工具类 ===== */
/* 文本对齐 */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* 文本颜色 */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-danger { color: var(--danger-color); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-secondary); }

/* 背景颜色 */
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-gradient { background: var(--primary-gradient); }

/* 间距工具类 */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.pt-1 { padding-top: var(--spacing-xs); }
.pt-2 { padding-top: var(--spacing-sm); }
.pt-3 { padding-top: var(--spacing-md); }
.pt-4 { padding-top: var(--spacing-lg); }
.pt-5 { padding-top: var(--spacing-xl); }

.pb-1 { padding-bottom: var(--spacing-xs); }
.pb-2 { padding-bottom: var(--spacing-sm); }
.pb-3 { padding-bottom: var(--spacing-md); }
.pb-4 { padding-bottom: var(--spacing-lg); }
.pb-5 { padding-bottom: var(--spacing-xl); }

/* Flex布局工具类 */
.flex { display: flex; }
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ===== 按钮样式 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base) var(--easing-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-colored);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.btn-large {
  padding: 16px 36px;
  font-size: var(--font-size-lg);
}

.btn-small {
  padding: 8px 20px;
  font-size: var(--font-size-sm);
}

/* 按钮光波动画 */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== 卡片样式 ===== */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base) var(--easing-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== 节专用样式 ===== */
.section {
  padding: var(--spacing-5xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title h2 {
  font-size: var(--font-size-4xl);
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: var(--spacing-md);
}

.section-title p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== 渐变文字 ===== */
.gradient-text {
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ===== 装饰元素 ===== */
.decoration-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary-gradient);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* ===== 滚动条美化 ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== 选中文本样式 ===== */
::-moz-selection {
  background: var(--primary-color);
  color: var(--text-white);
}
::selection {
  background: var(--primary-color);
  color: var(--text-white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--text-white);
} 

/* 自定义滚动条样式 - 适配深色主题 */
/* Webkit浏览器 (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 10, 0.8);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
  border-radius: 10px;
  border: 2px solid rgba(10, 10, 10, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%);
  border-color: rgba(102, 126, 234, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
}

/* 角落 */
::-webkit-scrollbar-corner {
  background: rgba(10, 10, 10, 0.8);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 126, 234, 0.3) rgba(10, 10, 10, 0.8);
}

/* 选择文本的颜色也调整为匹配主题 */
::-moz-selection {
  background: rgba(102, 126, 234, 0.3);
  color: #fff;
}
::selection {
  background: rgba(102, 126, 234, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(102, 126, 234, 0.3);
  color: #fff;
}

/* 移动端滚动条优化 */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-thumb {
    border-width: 1px;
  }
}

/* 特定区域的滚动条样式 */
.mega-menu::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mega-menu::-webkit-scrollbar-track,
.mobile-menu::-webkit-scrollbar-track {
  background: rgba(20, 20, 20, 0.5);
}

.mega-menu::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.4);
  border: none;
  border-radius: 3px;
}

/* 隐藏横向滚动条（如果不需要） */
body {
  overflow-x: hidden;
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
} 
/**
 * 全局CSS变量定义
 * 虹猫创意官网主题色彩系统
 */
:root {
  /* ===== 品牌主色调 ===== */
  /* 紫色渐变系 - 体现创意与科技感 */
  --primary-color: #667eea;
  --primary-light: #8b9cff;
  --primary-lighter: #a8b8ff;
  --primary-dark: #5568d3;
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  
  /* 辅助色 - 粉紫色系 */
  --secondary-color: #764ba2;
  --secondary-light: #9565c4;
  --secondary-dark: #5e3a81;
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  
  /* 强调色 - 橙色系 */
  --accent-color: #ff6b6b;
  --accent-light: #ff8e8e;
  --accent-dark: #ff4848;
  --accent-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  
  /* ===== 功能色彩 ===== */
  --success-color: #4caf50;
  --success-light: #81c784;
  --success-dark: #388e3c;
  
  --warning-color: #ff9800;
  --warning-light: #ffb74d;
  --warning-dark: #f57c00;
  
  --danger-color: #f44336;
  --danger-light: #ef5350;
  --danger-dark: #c62828;
  
  --info-color: #2196f3;
  --info-light: #64b5f6;
  --info-dark: #1976d2;
  
  /* ===== 中性色系 ===== */
  --text-primary: #2c3e50;
  --text-regular: #4a5568;
  --text-secondary: #718096;
  --text-placeholder: #a0aec0;
  --text-light: #e2e8f0;
  --text-white: #ffffff;
  
  /* ===== 背景色彩 ===== */
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --bg-light: #fafbff;
  --bg-dark: #1a202c;
  --bg-gradient-light: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  --bg-gradient-dark: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-overlay-light: rgba(255, 255, 255, 0.9);
  
  /* ===== 边框色彩 ===== */
  --border-base: #e2e8f0;
  --border-light: #edf2f7;
  --border-lighter: #f7fafc;
  --border-dark: #cbd5e0;
  
  /* ===== 阴影系统 ===== */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-colored: 0 10px 40px rgba(102, 126, 234, 0.25);
  --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
  
  /* ===== 字体系统 ===== */
  --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 
                        'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', 
                        Helvetica, Arial, sans-serif;
  --font-family-mono: 'SF Mono', Monaco, 'Roboto Mono', 'Source Code Pro', 
                      Menlo, Consolas, monospace;
  
  /* ===== 字体大小 ===== */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --font-size-6xl: 60px;
  
  /* ===== 字重 ===== */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  
  /* ===== 行高 ===== */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
  
  /* ===== 间距系统 ===== */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;
  --spacing-5xl: 128px;
  
  /* ===== 圆角系统 ===== */
  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 50%;
  --radius-pill: 9999px;
  
  /* ===== 过渡动画 ===== */
  --transition-fast: 150ms;
  --transition-base: 250ms;
  --transition-slow: 350ms;
  --transition-slower: 500ms;
  --easing-base: cubic-bezier(0.4, 0, 0.2, 1);
  --easing-out: cubic-bezier(0, 0, 0.2, 1);
  --easing-in: cubic-bezier(0.4, 0, 1, 1);
  --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* ===== 层级系统 ===== */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal-backdrop: 1040;
  --z-index-modal: 1050;
  --z-index-popover: 1060;
  --z-index-tooltip: 1070;
  
  /* ===== 响应式断点 ===== */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
} 
/**
 * 动画样式
 * 虹猫创意官网动画效果定义
 */

/* ===== 淡入动画 ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== 缩放动画 ===== */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

/* ===== 旋转动画 ===== */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}

/* ===== 滑动动画 ===== */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* ===== 抖动动画 ===== */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

/* ===== 弹跳动画 ===== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== 波浪动画 ===== */
@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(10px);
  }
}

/* ===== 渐变动画 ===== */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== 加载动画 ===== */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinnerGrow {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ===== 呼吸灯动画 ===== */
@keyframes breathing {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ===== 光波动画 ===== */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== 闪烁动画 ===== */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* ===== 文字动画 ===== */
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.8),
                 0 0 20px rgba(102, 126, 234, 0.6),
                 0 0 30px rgba(102, 126, 234, 0.4);
  }
  50% {
    text-shadow: 0 0 20px rgba(102, 126, 234, 1),
                 0 0 30px rgba(102, 126, 234, 0.8),
                 0 0 40px rgba(102, 126, 234, 0.6);
  }
}

/* ===== 浮动动画 ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatBubble {
  0% {
    transform: translateY(100vh) scale(0);
  }
  10% {
    transform: translateY(80vh) scale(0.5);
  }
  50% {
    transform: translateY(40vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
  }
}

/* ===== 动画应用类 ===== */
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out;
}

.animate-zoomIn {
  animation: zoomIn 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ===== 延迟动画类 ===== */
.animation-delay-100 {
  animation-delay: 100ms;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-300 {
  animation-delay: 300ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-500 {
  animation-delay: 500ms;
}

/* ===== 动画速度类 ===== */
.animation-fast {
  animation-duration: 0.3s;
}

.animation-normal {
  animation-duration: 0.6s;
}

.animation-slow {
  animation-duration: 1s;
}

.animation-slower {
  animation-duration: 1.5s;
}

/* ===== 悬停动画效果 ===== */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-grow {
  transition: transform 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

.hover-shrink {
  transition: transform 0.3s ease;
}

.hover-shrink:hover {
  transform: scale(0.95);
}

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: var(--shadow-xl);
}

/* ===== 过渡效果 ===== */
.transition-all {
  transition: all var(--transition-base) var(--easing-base);
}

.transition-colors {
  transition: background-color var(--transition-base) var(--easing-base),
              color var(--transition-base) var(--easing-base),
              border-color var(--transition-base) var(--easing-base);
}

.transition-transform {
  transition: transform var(--transition-base) var(--easing-base);
}

.transition-opacity {
  transition: opacity var(--transition-base) var(--easing-base);
} 
