/* 首页标签页样式 */
.index-tabs {
    margin-bottom: 20px;
}

.tab-buttons {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 20px;
}

.tab-btn {
    padding: 16px 20px 14px 20px;
    margin-right: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #8a8a8a;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #333;
}

.tab-btn.active {
    color: #0188fb;
    border-bottom-color: #0188fb;
}

.tab-content {
    background: #fff;
    border-radius: 0 0 8px 8px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .tab-buttons {
        padding: 0 15px;
    }
    
    .tab-btn {
        padding: 14px 15px 12px 15px;
        margin-right: 20px;
        font-size: 15px;
    }
}