.news_box {
    width: 100%;
    padding: calc(1px + 4rem) 0;
}

.news {
    max-width: 1567px;
    width: 90%;
    margin: auto;
}

.news_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(16px + 2rem);
}

.news_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_pic {
    width: 27.76%;
    height: calc(52px + 10rem);
}

.news_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_text {
    width: 67.007%;
    height: calc(52px + 10rem);
    display: flex;
    justify-content: flex-start;
    gap: calc(10px + 4rem);
    border-bottom: calc(0px + 0.1rem) #EDEDED solid;
    padding-bottom: calc(7px + 1.5rem);
    transition: .3s;
    padding-top: calc(5px + 0.25rem);
}

.news_time {
    width: calc(16px + 4rem);
}

.news_time .p1 {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: calc(6px + 0.5rem);
    color: #152A3F;
    line-height: calc(6px + 1rem);
}

.news_time .p2 {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: calc(4px + 1rem);
    color: #152A3F;
    line-height: calc(6px + 1.5rem);
}

.news_intro .p3 {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 500;
    font-size: calc(4px + 1rem);
    color: #152A3F;
    line-height: calc(3px + 2rem);
}

.news_intro .p4 {
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 350;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(6px + 1rem);
    margin-top: calc(9px + 0.5rem);
}

.news_item:hover .news_time p {
    color: #0054AC;
}

.news_item:hover .news_intro .p3 {
    color: #0054AC;
}

.news_item:hover .news_text {
    border-color: #0054AC;
}

@media screen and (max-width: 1100px){
    .news_item{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .news_pic {
        width: 100%;
        height: calc(56px + 40rem);
    }
    .news_text{
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .news_time{
        display: flex;
        justify-content: flex-start;align-items: center;
        gap: calc(1px + 0.5rem);
    }
    .news_time .p1{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_time .p2{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .news_intro .p3{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .news_intro .p4{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
 
}