
    .news-content {
        text-align: center;
        position: relative;
        overflow: hidden;
        padding: 0;
    }
    .news-content::before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(20px);
        background-color: #eaedffa3;
    }
    .news-content-bg {
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .news-content-header {
        padding: 10px 25px;
        background-color: #fff;
    }
    .news-content-header .news-content-title {
        text-align: left;
        font-weight: 600;
        color: #1678b9;
    }
    .news-content-calendar {
        padding: 0;
        margin: 0;
        width: 25px;
        height: 25px;
    }
    .news-content-calendar img {
        width: 25px;
        height: 25px;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }
    .news-content-calendar:hover img {
        opacity: .6;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }
    .news-content .news-carousel {
        width: 100%;
        margin: 0;
    }
    .news-content .news-carousel-title:hover {
        color: #01485e;
    }
    .news-content .news-carousel {
        transition: box-shadow .3s;
        width: 100%;
        height: 100%;  
        border-radius: 8px;
        background-color: transparent;
        padding-bottom: 0;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .news-content .news-carousel .news-carousel-item{
        width: 280px;
        margin: 15px 5px;
        position: relative;
        background: #fff;
        padding-bottom: 30px;
        border-radius: 7px;
        overflow: hidden;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    @media (max-width: 1000px) {
        .news-content .news-carousel .news-carousel-item{
            max-width: 300px;
        }
    }
    .news-content .news-carousel .news-carousel-item:hover {
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
        -webkit-transform: scale(1.02);
        -moz-transform: scale(1.02);
        -ms-transform: scale(1.02);
        -o-transform: scale(1.02);
        transform: scale(1.02);
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .news-content .news-carousel .news-carousel-figure{
        height: auto;
        overflow: hidden;
    }
    .news-content .news-carousel .news-carousel-figure .watermark{
        width: 50px;
        position: absolute;
        z-index: 1;
        top: 0;
        right: 5px;
    }

    .news-content .news-carousel .news-carousel-caption{
        position: relative;
        padding: 40px 15px 0 15px;
    }
    .news-content .news-carousel .news-carousel-caption .news-carousel-title{
        height: 50px;
        overflow: hidden;
    }
    .news-content .news-carousel .news-carousel-caption .news-carousel-title a{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-content .news-carousel .news-carousel-caption .news-carousel-text{
        height: 55px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .news-content .news-carousel .news-carousel-date{
        position: absolute;
        top: 0;
        z-index: 9;
        left: calc(50% - 56px);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .news-content .news-carousel .news-carousel-item:hover .news-carousel-date{
        top: -16px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .news-content .news-carousel .news-carousel-date-item{
        width: 110px;
        text-align: center;
        background-image: url("../img/mesh.png");
        background-position: top;
        background-size: cover;
    background-repeat: no-repeat;
        height: 30px;
        border-radius: 25px;
        padding: 4px;
        color: #000;
        font-size: .8rem;
        line-height: 22px;
        font-weight: 600;
    }
    .news-content .news-carousel .news-carousel-info{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 35px;
        z-index: 9;
        border-top:1px solid #ecedf0;
    }
    .news-content .news-carousel .news-carousel-info .news-carousel-metadata{
        padding: 0 15px;
        margin-top: 100%;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .news-content .news-carousel .news-carousel-item:hover .news-carousel-info .news-carousel-metadata{
        margin-top: 0;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .news-content .news-carousel .news-carousel-info .news-carousel-metadata .news-carousel-ViewCount small{
        padding-left:5px;
        font-size: .7rem;
    }
    .news-content .news-carousel .news-carousel-info .news-carousel-metadata .news-carousel-NewsHashTags{
        cursor: pointer;
    }
    .news-carousel {
        position: relative;
        text-align: left;
        height: auto;
        color: #777;
    }

    .news-carousel-figure {
        display: block;
        overflow: hidden;
    }
    .news-carousel-figure picture img {
        max-width: 400px;
    }
    .news-carousel-figure img {
        width: 100%;
        will-change: transform;
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }
    .news-carousel-caption {
        position: relative;
        padding: 18% 15px 30px;
        margin-top: -11.2%;
        z-index: 1;
    }
    .news-carousel-caption::before {
        position: absolute;
        content: "";
        height: 80px;
        top: 0;
        right: -2px;
        bottom: 0;
        left: 0;
        background: #fff;
        -webkit-transform-origin: 100% 50%;
        -moz-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
        -o-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
        -webkit-transform: skewY(-6deg);
        -moz-transform: skewY(-6deg);
        -ms-transform: skewY(-6deg);
        -o-transform: skewY(-6deg);
        transform: skewY(-6deg);
        will-change: transform;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }
    .news-carousel-caption::after {
        position: absolute;
        content: "";
        height: 80px;
        top: 0;
        right: 0;
        bottom: 0;
        left: -2px;
        background: #fff;
        -webkit-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: skewY(6deg);
        -moz-transform: skewY(6deg);
        -ms-transform: skewY(6deg);
        -o-transform: skewY(6deg);
        transform: skewY(6deg);
        will-change: transform;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }
    .news-carousel-counter {
        width: 120px;
        height: 36px;
        display: inline-block;
        padding: 5px 15px;
        text-align: center;
        position: absolute;
        top: -18px;
        left: calc(100% - 130px);
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        border-radius: 25px;
        font-size: 0.9rem;
        line-height: 25px;
        font-weight: 200;
        letter-spacing: 0.075em;
        color: #fff;
        background: -webkit-gradient(linear, left top, right top, color-stop(0, #003a6d), to(#00b0ff));
        background: -webkit-linear-gradient(left, #003a6d 0, #00b0ff 100%);
        background: -moz-linear-gradient(left, #003a6d 0, #00b0ff 100%);
        background: -o-linear-gradient(left, #003a6d 0, #00b0ff 100%);
        background: linear-gradient(to right, #003a6d 0, #00b0ff 100%);
        
        will-change: transform;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .news-carousel-title {
        font-weight: 300;
        letter-spacing: 0;
        text-transform: none;
        font-size: 0.85rem;
        text-align: center;
    }
    .news-carousel-title a,
    .news-carousel-title a:active,
    .news-carousel-title a:focus {
        color: inherit;
    }
    .news-carousel-text {
        font-size: 0.8rem;
        letter-spacing: normal;
        text-align: justify;
    }
    .desktop .news-carousel-figure img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    .news-carousel .news-carousel-item:hover .news-carousel-figure img {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .news-carousel .news-carousel-item:hover .news-carousel-caption::before {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .news-carousel .news-carousel-item:hover .news-carousel-counter {
        --hover-x: calc(-50% - 130px);
        -webkit-transform: translate3d(var(--hover-x), 0, 0);
        -moz-transform: translate3d(var(--hover-x), 0, 0);
        transform: translate3d(var(--hover-x), 0, 0);
    }
    .news-carousel-caption {
        padding: 15px;
        padding-top: 40px;
    }
    
    ul.news-dots button::before {
        content: "";
        width: 0;
        height: 0;
    }
    ul.news-dots button {
        border: 0;
        background-color: #c0c0c0;
        height: 3px;
        padding: 0;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .news-dots li:hover button,
    .news-dots li.slick-active button {
        background-color: #fff;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .news-dots li:hover button::before,
    .news-dots li.slick-active button::before {
        color: transparent;
    }