.news {
    padding-bottom: 50px;
    background-size: cover;
    background-position: center
}

.news>.separator-img {
    padding-bottom: 20px
}

@media only screen and (max-width:480px) {
    .news>.separator-img {
        padding-top: 0
    }
}

.news .section-title {
    text-align: center;
    padding: 20px 0 40px 0
}

.news .section-title span {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    display: inline-block;
    border-bottom: 2px solid #fff;
    color: #fff
}

.news .news-container {
    display: flex;
    background-color: #fff;
    height: auto;
    border-radius: 5px;
    overflow: hidden
}

@media only screen and (max-width:480px) {
    .news .news-container {
        flex-wrap: wrap
    }
}

.news .news-container .thumbnail {
    width: 60%
}

@media only screen and (max-width:480px) {
    .news .news-container .thumbnail {
        width: 100%
    }
}

.news .news-container .thumbnail .carousel-inner {
    height: 100%
}

.news .news-container .thumbnail .carousel-item {
    height: 100%
}

.news .news-container .newsItem {
    width: 40%;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
    padding: 20px 20px 0 20px
}

@media only screen and (max-width:768px) {
    .news .news-container .newsItem {
        padding: 10px 10px 40px 10px
    }
}

@media only screen and (max-width:480px) {
    .news .news-container .newsItem {
        padding: 10px 10px 40px 10px
    }
}

.news .news-container .newsItem .carousel-indicators {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    justify-content: flex-start;
    position: inherit
}

.news .news-container .newsItem .carousel-indicators li {
    width: 100%;
    height: auto;
    display: flex;
    text-indent: unset;
    opacity: 1;
    display: flex;
    border-top: 0;
    border-bottom: 0;
    margin: 0;
    padding-bottom: 14px
}

.news .news-container .newsItem .carousel-indicators li.active .newsItem__thumbnail {
    border: 3px solid red
}

.news .news-container .newsItem .carousel-indicators li.active .newsItem__info__title {
    color: var(--default_color)
}

@media only screen and (max-width:768px) {
    .news .news-container .newsItem .carousel-indicators li {
        padding-bottom: 5px
    }
}

.news .news-container .newsItem__thumbnail {
    height: 100%;
    width: 32%
}

.news .news-container .newsItem__info {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    line-height: 1.5
}

.news .news-container .newsItem__info__title {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-style: dashed;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .news-container .newsItem__info__title img {
    margin-bottom: -4px
}

.news .news-container .newsItem__info__title span {
    font-size: 14px;
    font-weight: 700
}

@media only screen and (max-width:768px) {
    .news .news-container .newsItem__info__title {
        /* font-size: var(--medium_title) */
    }

    .news .news-container .newsItem__info__title span {
        font-size: var(--medium_text)
    }
}

.news .news-container .newsItem__info__publishedTime {
    font-size: 10px;
    color: gray;
    display: flex;
    align-items: center
}

.news .news-container .newsItem__info__publishedTime * {
    padding: 5px 5px 0 0
}

@media only screen and (max-width:768px) {
    .news .news-container .newsItem__info {
        margin-bottom: 0
    }
}

@media only screen and (max-width:480px) {
    .news .news-container .newsItem {
        width: 100%
    }
}

.news .news-container .btnMore {
    position: absolute;
    width: 120px;
    bottom: 0;
    right: 0;
    z-index: 100;
    cursor: pointer
}