.news_box{
    width: 100%;
    padding-top: calc(40px + 5rem);
    padding-bottom: calc(10px + 4rem);
}
.news{
    max-width: 1600px;
    width: 90%;
    margin: auto;
}
.news_list{
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
gap: calc(10px + 2rem);
}

.news_item{
    width: 100%;
    height: calc(20px + 15rem);
    background-color: #f6f6f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(20px + 3rem);
}
.news_item_text{
    width: calc(140px + 40rem);
}
.news_item_text .p1{
    font-size: calc(2px + 1.5rem);
    color: #333333;
    font-weight: 700;
    line-height: 1.7;
}
.news_item_text .p2{
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; 
    overflow: hidden;
    margin-top: calc(5px + 0.5rem);
}
.news_more{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: calc(8px + 1rem);
    gap: calc(10px + 1rem);
}
.news_more .p3{
    font-size: calc(6px + 0.5rem);
    color: #175cb1;
    
}
.news_more .line{
    width: 1px;
    height: calc(5px + 0.5rem);
    background-color: #999999;
}
.news_more .p4{
    font-size: calc(6px + 0.5rem);
    color: #333333;
    transition: .3s;
    
}
.news_more .p4 span{
    font-family: 黑体;
}

.news_more .p4:hover{
    color: #175cb1;
}

.news_item_pic{
    width: calc(100px + 15rem);
    height: calc(25px + 10rem);
    border-radius: calc(5px + 1rem);
}

.news_item_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(5px + 1rem);
}

@media screen and (max-width: 1100px){
    .news_item{
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(10px + 1rem);
        padding-top: calc(10px + 2rem);
        padding-bottom: calc(10px + 2rem);
    }

    .news_item_text .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .news_item_text .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_more .p3{
        font-size: calc(9px + 1rem);
    }
    .news_more .p4{
        font-size: calc(9px + 1rem);   
    }
    .news_item_pic {
        width: 100%;
        height: calc(25px + 42rem);
        
    }
}