.catalog__item{ display: none; }
.catalog__item:nth_child(1),
.catalog__item:nth_child(2),
.catalog__item:nth_child(3){
display: block;
}
<button class="show-all">Показать</button>
$('.show-all').on('click', function(){
$('.catalog_item').css('display', 'block');
})