.mobile-tabbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(247, 247, 247, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 6px 0;
  padding-bottom: calc(6px + env(safe-area-inset-bottom));
  z-index: 20;
}
.mobile-tabbar .tabbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 1;
  position: relative;
}
.mobile-tabbar .tabbar-item img {
  width: 24px;
  height: 24px;
  display: block;
}
.mobile-tabbar .tabbar-item .icon-normal {
  display: block;
}
.mobile-tabbar .tabbar-item .icon-active {
  display: none;
}
.mobile-tabbar .tabbar-item span {
  margin-top: 2px;
  font-size: 9px;
  color: #939495;
  white-space: nowrap;
}
.mobile-tabbar .tabbar-item.active .icon-normal {
  display: none;
}
.mobile-tabbar .tabbar-item.active .icon-active {
  display: block;
}
.mobile-tabbar .tabbar-item.active span {
  color: #EA8101;
}
.mobile-tabbar .tabbar-item:active {
  opacity: 0.7;
}

.footer-box {
  height: calc(50px + env(safe-area-inset-bottom));
}

.badge {
  min-width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  transform: translateX(16px);
  background-color: #EA8101;
  color: #fff;
  border-radius: 100px;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.badge-two-digit {
  padding: 0px 4px;
}
