.news_box {
    width: 100%;
    padding: calc(20px + 3rem) 0;
}

.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%;
    border-bottom: 1px #dbdbdb solid;
    padding-bottom: calc(10px + 2rem);

}

.news_item_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_item_text {
    width: 83.625%;
}

.news_item_text .p1 {
    font-size: calc(6px + 1rem);
    color: #333333;
    font-weight: bold;
}

.news_item_text .p2 {
    font-size: calc(6px + 0.5rem);
    color: #666666;
    margin-top: calc(6px + 0.5rem);
}

.news_item_time .p3 {
    font-size: calc(10px + 2rem);
    color: #333333;
    font-weight: bold;
    line-height: 1;
}

.news_item_time .p4 {
    font-size: calc(4px + 2rem);
    color: #333333;
    line-height: 1;
    margin-top: calc(5px + 0.2rem);
}

.news_item_pic {
    width: calc(3px + 40rem);
    height: calc(21px + 20rem);
    margin-top: calc(6px + 1rem);
    overflow: hidden;
}

.news_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.news_item:hover .p1 {
    color: #f7b014;
}

.news_item:hover .p3 {
    color: #f7b014;
}

.news_item:hover .p4 {
    color: #f7b014;
}

.news_item:hover img {
    transform: scale(1.05);
}

@media screen and (max-width: 1100px){
    .news_item_text .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    .news_item_text .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    }
    .news_item_pic {
        width: calc(3px + 60rem);
        height: calc(21px + 32rem);
      
    }
}