/**
 * 鑫三利智慧堆场生产系统 - 标签栏样式组件
 * 用于页面顶部的状态/类别标签切换
 */

/* 标签栏容器 */
.tabbar-container {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 4px;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

/* 标签项 */
.tabbar-item {
  padding: 8px 20px;
  font-size: 14px;
  color: #595959;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.tabbar-item:hover {
  color: #262626;
  background: rgba(255, 255, 255, 0.6);
}

/* 激活状态 */
.tabbar-item.active {
  background: #ffffff;
  color: #1890ff;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* 标签项内的徽章（数字） */
.tabbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  color: inherit;
}

.tabbar-item.active .tabbar-badge {
  background: #e6f7ff;
  color: #1890ff;
}

/* 禁用状态 */
.tabbar-item.disabled {
  color: #bfbfbf;
  cursor: not-allowed;
}

.tabbar-item.disabled:hover {
  background: transparent;
  color: #bfbfbf;
}

/* 小尺寸 */
.tabbar-container.tabbar-small {
  padding: 3px;
}

.tabbar-container.tabbar-small .tabbar-item {
  padding: 6px 14px;
  font-size: 13px;
}

.tabbar-container.tabbar-small .tabbar-badge {
  min-width: 16px;
  height: 16px;
  font-size: 11px;
  padding: 0 4px;
}

/* 大尺寸 */
.tabbar-container.tabbar-large {
  padding: 5px;
}

.tabbar-container.tabbar-large .tabbar-item {
  padding: 10px 24px;
  font-size: 15px;
}

.tabbar-container.tabbar-large .tabbar-badge {
  min-width: 20px;
  height: 20px;
  font-size: 13px;
  padding: 0 7px;
}

/* 带图标的标签项 */
.tabbar-item .tabbar-icon {
  font-size: 14px;
  line-height: 1;
}

.tabbar-container.tabbar-small .tabbar-item .tabbar-icon {
  font-size: 13px;
}

.tabbar-container.tabbar-large .tabbar-item .tabbar-icon {
  font-size: 15px;
}
