.news-content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.news-content ul li {
    width: calc(25% - 20px);
    position: relative;
    margin-bottom: 50px
}

.news-content ul li a {
    display: block;
    width: 100%;
    padding-bottom: 40px;
    border-top: 6px solid var(--bgscolor);
    border-bottom: 2px solid var(--bgscolor);
    overflow: hidden
}

.news-content ul li .news-img {
    margin-bottom: 15px;
    overflow: hidden;
    transform-origin: right bottom;
    transform: skewY(3deg)
}

.news-content ul li .news-img img {
    width: 100%;
    height: 310px;
    transition: all .5s linear
}

.news-content ul li .news-tag,
.news-content ul li .news-time {
    font-size: 16px;
    color: var(--ftcolor)
}

.news-content ul li h3 {
    font-size: 20px;
    color: var(--fttcolor);
    line-height: 24px;
    font-family: 'Roboto-Bold';
    margin: 15px 0 30px;
    height: 48px;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.news-content ul li::before {
    content: "";
    width: 0;
    height: 6px;
    position: absolute;
    left: 0;
    top: 0;
    background: #0148a2;
    transition: all .5s linear
}

.news-content ul li::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #0148a2;
    transition: all .5s linear
}

@media(any-hover:hover) {
    .news-content ul li:hover img {
        transform: scale(1.2)
    }

    .news-content ul li:hover h3 {
        color: #0148a2
    }

    .news-content ul li:hover::before,
    .news-content ul li:hover::after {
        width: 100%
    }
}

@media screen and (max-width:768px) {
    .news-content ul li {
        width: 100%;
        margin-bottom: 30px
    }

    .news-content ul li .news-tag,
    .news-content ul li .news-time {
        font-size: 14px
    }

    .news-content ul li h3 {
        font-size: 18px;
        line-height: 22px;
        height: auto;
        margin: 10px 0 15px
    }

    .news-content ul li .news-img {
        margin-bottom: 10px
    }

    .news-content ul li a {
        padding-bottom: 22px;
        border-top: 0
    }
}