/* The stylesheet of this file controls the styles of header.php, menu.php, footer.php and content(div). */

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE 10+ */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}


