.wrapper {
  overflow: hidden;
  position: fixed;
  bottom: 0;
}

@keyframes slideInUp {
  0% {
    visibility: visible;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: visible;
    transform: translate3d(0, 100%, 0);
  }
}

.hidden {
  display: none;
}
.showIn {
  animation-name: slideInUp;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-timing-function: ease-in;
  animation-iteration-count: initial;
}
.hideOut {
  animation-name: slideOutDown;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  animation-iteration-count: initial;
}

.tabBar {
  height: 50px;
  background-color: #fff;
  border-top: 1px solid #eee;
  width: 750rpx;
  display: flex;
  padding-bottom: 0;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 999;
}

.item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text {
  font-size: 12px;
  padding-top: 2px;
}
.icon {
  width: 24px;
  height: 24px;
}
