/* 分类标签栏 - 默认在PC端隐藏 */
.category-tabs {
    display: none;
}

.tabs-scroll {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tab-item {
    flex: 1;
    text-align: center;
    margin: 0 8px;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.tabs-scroll::-webkit-scrollbar {
    display: none;
}

.tab-item:hover {
    color: #FFAE00;
}

.tab-item.active {
    color: #FFAE00;
    border-bottom-color: #FFAE00;
    font-weight: 500;
    background-color: #fbfbfb;
}

/* 移动端响应式设计 */
@media (max-width: 768px) {
    /* 移动端分类标签栏 - 在手机端显示 */
    .category-tabs {
        margin-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        overflow: hidden;
        display: block;
        margin-bottom: 16px;
    }
    
    .tabs-scroll {
        gap: 0;
    }
    
    .tab-item {
        padding: 6px 14px;
        font-size: 13px;
    }
}