/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
.flex {
  display: flex;
}
.h-screen {
  height: 100vh;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
::-webkit-scrollbar {
  display: none;
}

html,
body {
  -ms-overflow-style: none; /* IE 和 Edge */
  scrollbar-width: none; /* Firefox */
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.animate-pulse-slow {
  animation: pulse 4s ease-in-out infinite;
}
