@charset "utf-8";

.tNewsBx section{
    width: 100%;
}

.newsItem {
    display: block;
    width: 100% !important;
}

.newsItem:first-of-type {
    margin: 0;
}

.newsImg {
    height: 0;
    position: relative;
    padding: 0 0 60.6%;
    overflow: hidden;
    background: var(--white);
}

.newsImg img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: all .3s;
}

img+.noImg {
    display: none;
}

.newsItem a:hover .newsImg img {
    filter: brightness(.5);
}

.newsDate,
.newsTit{
    display: block;
    line-height: 1.5;
    color: #383838;
}