/* 分类列表样式 */
.categoryList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0 15px 0;
    background: #fff;
}
.categoryList .cat-item {
    display: inline-block;
    padding: 8px 20px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.categoryList .cat-item:hover {
    background: #e8f4ff;
    color: #1890ff;
}
.categoryList .cat-item.active {
    background: #1890ff;
    color: #fff;
}
