#home-cover {
  position: relative;
  height: 100vh; /* 让封面区域占满整个屏幕高度，确保波浪初始就显示在顶部 */
  overflow: hidden;
}

#waves-container {
  position: absolute;
  top: 100; /* 从页面最顶部开始 */
  left: 0;
  width: 100%;
  height: 90%; /* 高度与封面区域一致，覆盖顶部导航栏 */
  z-index: 0; /* 低于导航栏的 z-index:10 */
}