.lbanner-box {
    display: none !important;
}


.web_main {
    margin-top: 5%;
}

.newsList .news_item {
    width: 100%;
    align-items: center;
}

.newsList .news_item .news_img {
    width: 50%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 31%;
}

.newsList .news_item .news_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.newsList .news_item .news_info {
    width: 50%;
}

.newsList .news_item:nth-child(odd) .news_info {
    padding: 0 5% 2%;
}

.newsList .news_item:nth-child(even) .news_img {
    order: 2;
}

.newsList .news_item:nth-child(even) .news_info {
    order: 1;
    padding-right: 7%;
}

.newsList .news_item .news_info .news_date {
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
}

.newsList .news_item .news_info .news_title {
    margin-top: 1%;
    margin-bottom: 2%;
}

.newsList .news_item .news_info .news_title a {
    font-family: 'Poppins-Bold';
    font-weight: 400;
    font-size: 26px;
    color: #333333;
    line-height: 33px;
}



.newsList .news_item .news_info .news_title:hover a {
    color: #2000C3;
}

.newsList .news_item .news_info .news_content p {
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 25px;
}

.newsList .news_item .news_info .news_details a {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid #2000C3;
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #2000C3;
    line-height: 22px;
    margin-top: 5%;
}



.newsList .news_item .news_info .news_details a::after {
    margin-left: 10px;
    content: '\f105';
    font-family: 'fontawesome';
    font-size: 18px;
    color: #2000C3;
}

.newsList .news_item .news_info .news_details a:hover {
    background-color: #2000C3;
    color: #FFFFFF;
}

.newsList .news_item .news_info .news_details a:hover:after {
    color: #FFFFFF;
}

@media (max-width:1366px) {
    .newsList .news_item .news_info .news_content {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width:950px) {
    .web_main {
        margin-top: 8%;
    }


    .newsList .news_item .news_info .news_title a {
        display: block;
        text-align: center;
    }

    .newsList .news_item {
        flex-direction: column;
        margin-bottom: 8%;
    }

    .newsList .news_item .news_img {
        width: 100%;
        margin-bottom: 5%;
        order: 1 !important;
        padding-bottom: 62%;
    }

    .newsList .news_item .news_info {
        width: 100%;
        order: 2 !important;
    }
}