/* components/tab-bar/tab-bar.wxss */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  border-top: 0.1333vw solid #e8e9ee;
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 100;
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.1333vw 0;
  font-size: 2.9333vw;
  color: #9ca3af;
}

.tab-item.active {
  color: #4a7fd4;
}

.tab-icon {
  font-size: 5.3333vw;
  margin-bottom: 0.5333vw;
}

.tab-label {
  font-size: 2.9333vw;
}

.tab-icon { width:5.6vw; height:5.6vw; margin-bottom:0.8vw; }
.tab-item { color:#78879a; padding-top:2.4vw; }
.tab-item.active { color:#365f93; background:#f5f8fc; }
.tab-label { font-size:3.0667vw; }
