.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-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-weight: 400;
    font-size: 26px;
    color: #333333;
    line-height: 33px;
}

.newsList .news_item .news_info .news_title:hover a{
    color: #F5C607;
}

.newsList .news_item .news_info .news_content p {
    
    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 #F5C607;
    
    font-weight: 400;
    font-size: 18px;
    color: #F5C607;
    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: #F5C607;
}

.newsList .news_item .news_info .news_details a:hover{
    background-color: #F5C607;
    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: 100%;
        margin-bottom: 5%;
        order: 1 !important;
        padding-bottom: 62%;
    }
    .newsList .news_item .news_info{
        width: 100%;
        order: 2 !important;
    }
}