/* .menu-section {
  font-size: 13px;
  padding: 10px 20px;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 7px;
  max-width: 1024px;
}

.menu-section__title {
  text-align: center;
}

.menu-item {
  
}

.menu-item__title {
  display: flex;
}

.menu-item__title--zh {
  background: #80293c;
  color: #fff;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
}

.menu-item__title--en {
  color:#80293c;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0 10px 10px 0;
  border: 1px solid #80293c;
  padding: 6px 10px;

}

.menu-item__content {
  display: flex;
  justify-content: space-between;
}

.menu-item__product {
  margin: 20px 0;
  text-align: center;
}

.menu-item__product-name {
  font-weight: bold;
} */
/* 基础样式重置 */
/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 菜单区域容器 */
.menu-section {
  font-size: 13px;
  padding: 10px 20px;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 7px;
  max-width: 1024px;
}

/* 菜单标题图片 */
.menu-section__title {
  text-align: center;
  margin-bottom: 20px;
}

.menu-section__title img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 菜单项标题样式 */
.menu-item__title {
  display: flex;
  margin: 40px 0;
}

.menu-item__title--zh {
  background: #80293c;
  color: #fff;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 10px 0 0 10px;
  font-weight: bold;
  white-space: nowrap;
}

.menu-item__title--en {
  color: #80293c;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0 10px 10px 0;
  border: 1px solid #80293c;
  padding: 8px 12px;
  white-space: nowrap;
  text-align: center;
}

/* 核心：实现严格左右对齐的网格布局 */
.menu-item__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* 关键属性：左右对齐 */
  gap: 20px;
  margin-bottom: 30px;
}

/* 产品项容器 - 固定宽度 */
.menu-item__product {
  width: 240px; /* 固定宽度 */
  text-align: center;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* 防止缩小 */
}

.menu-item__product:hover {
  transform: translateY(-5px);
}

/* 固定图片尺寸 */
.menu-item__product img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 产品名称 */
.menu-item__product-name {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 5px;
}

/* 响应式适配 */
@media (max-width: 820px) {
  /* 当容器宽度不足显示3个时改为2个 */
  .menu-item__content {
    justify-content: space-around; /* 中等屏幕改为分散对齐 */
  }
}

@media (max-width: 560px) {
  /* 小屏幕单列居中 */
  .menu-item__content {
    justify-content: center;
  }
  
  .menu-item__title--zh,
  .menu-item__title--en {
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (max-width: 400px) {
  /* 超小屏幕调整 */
  .menu-section {
    padding: 10px;
  }
  
  .menu-item__title {
    flex-direction: column;
  }
  
  .menu-item__title--zh {
    border-radius: 10px 10px 0 0;
  }
  
  .menu-item__title--en {
    border-radius: 0 0 10px 10px;
    border-top: none;
  }
}

/* 解决最后一行对齐问题的占位元素 */
.menu-item__content::after {
  content: "";
  width: 240px;
  height: 0;
  visibility: hidden;
}
  