/* TabBar 底部导航栏样式 */
.tabbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px; /* 固定宽度 */
    display: flex;
    background-color: #fff;
    border-top: 1px solid #ebedf0;
    padding: 5px 0 5px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.tabbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #646566;
}

.tabbar-item.active {
    color: #1296db;
}

.tabbar-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
}

.tabbar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tabbar-text {
    font-size: 12px;
    line-height: 1.2;
}

/* 页面底部留白，避免被tabbar遮挡 */
.page-with-tabbar {
    padding-bottom: 60px;
}
