/* 顶部导航 */
.home-nav {
  margin-top: 10px;
  height: 75px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-around;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  /* margin-left: 165px;
  margin-right: 165px; */

  max-width: 1920px;
  width: 100%;
  /* min-width: 1200px; */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.home-nav-menu {
  display: flex;
  align-items: center;
  justify-content: end;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-nav-menu-item {
  /* margin-right: 90px; */
  color: #793325;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 120px; */
  height: 50px;
  /* padding: 20px; */
  padding: 20px;
}

/* li {
  display: inline-block;
  width: 120px;
  height: 50px;
} */

/* 选中状态核心：添加背景图片 */
.home-nav-menu-item.active {
  /* width: 120px; */
  height: 50px;
  display: inline-block;
  /* 替换为你的背景图地址 */
  background-image: url("../images/bowl.png");
  background-repeat: no-repeat;
  background-size: 120px 50px;
  /* 铺满导航项 */
  background-position: center;
  color: #fff; /* 文字颜色，根据背景图调整 */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 鼠标悬浮效果（可选） */
/* .home-nav-menu-item:hover:not(.active) {
  color: #0066cc;
  background: #e8f4ff;
} */

.home-nav-menu-item-last {
  margin-right: 0px;
}

.home-nav-menu-item.white {
  color: #fff; /* 文字颜色，根据背景图调整 */
}
