.ys-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  z-index: 9999;
}

.ys-mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #111;
  font-size: 12px;
}

.ys-mobile-nav-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-bottom: 4px;
}

/* Desktop hide */
@media (min-width: 768px) {
  .ys-mobile-bottom-nav {
    display: none;
  }
}