.category-block {
    text-align: center;
}

.category-block a.category-item {
    width: 20%;
    color: #5880ac;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: .2s ease-in-out;
}

.category-block a.category-item:nth-child(1) {
    background-color: #F0F5F9;
}

.category-block a.category-item:nth-child(2) {
    background-color: #F0EBD0;
}

.category-block a.category-item:nth-child(3),
.category-block a.category-item:nth-child(9) {
    background-color: #F0F5F9;
}

.category-block a.category-item:nth-child(4),
.category-block a.category-item:nth-child(6) {
    background-color: #fff;
}

.category-block a.category-item:nth-child(5) {
    background-color: #DCEEE3;
}

.category-block a.category-item:nth-child(7) {
    background-color: #F5F1EB;
}

.category-block a.category-item:nth-child(8),
.category-block a.category-item:nth-child(10) {
    background-color: #D6E2F3;
}

.category-block .category-item-img {
    width: 46px;
    height: 46px;
    margin: 0 auto 30px;
}

.category-block .category-item-img img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.category-block a.category-item .category-item-title {
    color: #3D4158;
    font-size: 14px;
    line-height: 17px;
    transition: .2s ease-in-out;
}

.category-block a.category-item .category-item-num {
    font-size: 12px;
    line-height: 15px;
    color: #3D4158;
    position: absolute;
    left: 5px;
    top: 10px;
}

.category-block a.category-item:before {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: black;
    opacity: 0;
    transition: .2s ease-in-out;
}

.category-block a.category-item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.category-block a.category-item:hover .category-item-title {
    text-shadow: 0 0 1px rgba(0, 0, 0, .2);
}

.category-item:hover .category-item-img .img-box {
    transform: translateY(-5px) scale(1.2);
}

.category-item:active .category-item-img .img-box {
    transform: translateY(-5px) scale(1.15);
}

.category-item:hover .title {
    color: #365d88;
}

.category-item:active .title {
    color: #23476f;
}

@media (max-width: 1024px) {
    .category-block .category-item-img {
        width: 30px;
        height: 30px;
        margin: 0px auto 13px;
    }
}