.lbanner-box {
    display: none !important;
}

.related_products{
    margin-bottom: 5%;
}

.web_main {
    margin-top: 5%;
}

.newsList .news_item {
    width: 100%;
    align-items: center;

}

.newsList .news_item .item_num {
    font-family: 'Poppins-Bold';
    font-weight: 400;
    font-size: 59px;
    color: #005BAC;
    line-height: 43px;
    text-align: right;
    padding: 5px 0;
    border-bottom: 1px solid #005BAC;
}

.newsList .news_item .item_wrap {
    margin-top: 2.5%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.newsList .news_item .news_img {
    width: 44%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 29%;
    -webkit-transition: all 150ms ease-out 0ms;
    -moz-transition: all 150ms ease-out 0ms;
    -o-transition: all 150ms ease-out 0ms;
    transition: all 150ms ease-out 0ms;
}

.newsList .news_item .news_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.newsList .news_item .news_img:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
    z-index: 20;
}

.newsList .news_item .news_info {
    width: 52%;
}


.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: #005BAC;
}

.newsList .news_item .news_info .news_content {
    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 #005BAC;
    font-family: 'Poppins-Regular';
    font-weight: 400;
    font-size: 18px;
    color: #005BAC;
    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: #005BAC;
}

.newsList .news_item .news_info .news_details a:hover {
    background-color: #005BAC;
    color: #FFFFFF;
}

.newsList .news_item .news_info .news_details a:hover:after {
    color: #FFFFFF;
}


@media (max-width:950px) {
    .web_main {
        margin-top: 8%;
    }

    .newsList .news_item {
        flex-direction: column;
        margin-bottom: 8%;
    }

    .newsList .news_item .news_img {
        width: 44%;
        margin-bottom: 5%;
        order: 1 !important;
        padding-bottom: 29%;
    }

    .newsList .news_item .news_info {
        width: 55%;
        order: 2 !important;
    }
}


@media (max-width:768px) {
    .newsList .news_item .item_wrap{
        flex-direction: column;
    }
    .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;
    }
}