.daohang-bar {
  height: 99px;
  width: 100%;
  background: url("/statics/site/images/sildmenu_bg.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.daohang-item {
  width: 100px;
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, background-color 0.3s ease;
  padding: 0 8px;
  box-sizing: border-box;
}

.daohang-item img {
  width: 24px;
  height: 24px;
}

.daohang-item span {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}

.daohang-item:hover {
  transform: scale(1.05);
  color: #ffd700;
}


@media screen and (max-width: 480px) {
  .daohang-bar {
    gap: 10px;
  }

  .daohang-item {
    width: 80px;
    gap: 0;
    padding: 0;
    flex-direction: column;
  }

  .daohang-item img {
    display: none; /* Òþ²ØÍ¼±ê */
  }

  .daohang-item span {
    font-size: 13px;
  }
}
