/* custom-tab-bar/index.wxss */

.tab-bar {
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 7.5rem;
  height: 1.1rem;
  background: #FFFFFF;
  border-top: 0.01rem solid #E5E5EA;
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 999;
}

.tab-bar[hidden] {
  display: none;
}

.tab-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.02rem;
  padding: 0;
  border: none;
  background: none;
  color: #999999;
}

.tab-icon {
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  margin-bottom: 0.02rem;
}

.tab-text {
  font-size: 0.22rem;
  color: #999999;
  font-weight: 400;
  line-height: 1.2;
}

.tab-bar-item-active {
  color: #007AFF;
}

.tab-bar-item-active .tab-text {
  color: #007AFF;
  font-weight: 600;
}

.tab-bar-item:active {
  opacity: 0.6;
}
