@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles */
.hyphenate,
.hyphenate p {
	hyphens: auto;
}

.full-h-minus-header {
	min-height: calc(100vh - 61px);
}

/* 在你的全局 CSS 文件中添加 */
html, body {
  overflow-x: hidden;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.animate-marquee {
  display: inline-block;
  animation: marquee 50s linear infinite;
}
