.tab-content {
    padding: 60px 0;
}

.tab-content .tab-item .tab-block {
    width: 1440px;
    margin: 0 auto;

}

.tab-block .block {
    display: block;
    width: 100%;
    height: 190px;
    background: #FBFBFB;
    padding: 23px 29px 21px 25px;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-right: 20px;
}

.tab-block .block:hover {
    background: #065096;
    transition: .5s;
    transition-timing-function: var(--ease-in-out-a);
    text-decoration: none;

}

.tab-block .block:hover span,
.tab-block .block:hover h5,
.tab-block .block:hover p {
    color: #fff;
}

.tab-block .block span {
    font-size: 14px;
    color: #888787;
    line-height: 1;
}

.tab-block .block h5 {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 10px 0 40px;
    height: 50px;
    overflow: hidden;
    font-weight: normal;
    text-overflow: ellipsis;

}


.tab-block .block p {
    color: #606060;
}

@media only screen and (max-width:960px) {
    .tab-content .tab-item .tab-block {
        width: 100%;

    }

    .tab-block .block {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
}