nav {
  /* 确保导航栏固定在顶部 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* 添加过渡效果使显示/隐藏更平滑 */
  transition: transform 0.3s ease-in-out;
  /* 确保导航栏在其他内容上方 */
  z-index: 999;
}