.tabbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--tabbar-height);
    background-color: #f8f5f6;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    gap: 2px;
}

.tab-item.active {
    color: var(--primary-dark);
}

.tab-icon {
    width: 22px;
    height: 22px;
}

.tab-text {
    line-height: 1;
}

/* 桌面端隐藏底部Tab */
@media (min-width: 769px) {
    .tabbar {
        display: none;
    }
}
