/* 底部导航栏 */
.tabbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
    height: 60px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.tabbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px 0;
}

.tabbar-icon,
.tabbar-icon-active {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.tabbar-icon-active {
    display: none;
}

.tabbar-item.active .tabbar-icon {
    display: none;
}

.tabbar-item.active .tabbar-icon-active {
    display: block;
}

.tabbar-text {
    font-size: 11px;
    color: #7A7E83;
}

.tabbar-item.active .tabbar-text {
    color: #3cc51f;
}

/* 为有tabbar的页面添加底部padding */
body.has-tabbar .container {
    padding-bottom: 80px;
}
