@charset "UTF-8";
.MobileMenu {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  padding: 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* 美化滚动条 */
}
.MobileMenu ::-webkit-scrollbar {
  height: 8px;
}
.MobileMenu ::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}
.MobileMenu ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.MobileMenu .MenuItem {
  width: 70px;
  text-align: center;
  cursor: pointer;
  scroll-snap-align: center;
}
.MobileMenu .MenuItem .Icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
  transition: all 0.3s ease;
}
.MobileMenu .MenuItem .Icon img {
  width: 60px;
  height: 60px;
}
.MobileMenu .MenuItem .Icon:hover {
  background: #00ACC1;
  box-shadow: 0 0 15px rgba(0, 172, 193, 0.3);
  transform: scale(1.05);
}
.MobileMenu .MenuItem .Label {
  font-size: 13px;
  margin-top: 6px;
  color: #333;
}

/*# sourceMappingURL=MobileFuncMenu.css.map */
