.news_box {
    width: 100%;
    padding-top: calc(2px + 3rem);
    padding-bottom: calc(20px + 5rem);
}

.news {
    max-width: 1280px;
    width: 90%;
    margin: auto;
}

.news_top {
    width: 100%;
    height: calc(82px + 10rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F7F7F7;
}

.news_top_pic {
    width: 50%;
    height: 100%;
}

.news_top_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_top_right {
    width: 50%;
    padding: 0 calc(8px + 2rem);

}

.news_top_right .p1 {
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 400;
    font-size: calc(4px + 1rem);
    color: #999999;
    line-height: calc(4px + 1.5rem);
}

.news_top_right .p1 span {
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 500;
    font-size: calc(2px + 4rem);
    color: #000000;
    line-height: calc(15px + 5rem);
}

.news_top_right .line {
    width: 100%;
    height: 1px;
    background: #D8D8D8;
    margin-top: calc(5px + 1rem);
}

.news_top_right .p3 {
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 500;
    font-size: calc(10px + 0.5rem);
    color: #CEB25A;
    line-height: calc(8px + 1rem);
    margin-top: calc(7px + 1rem);
}

.news_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(2px + 2rem);
    margin-top: calc(2px + 2rem);
}

.news_item {
    width: 31.25%;
    background-color: #F7F7F7;
}

.news_item_pic {
    width: 100%;
    height: calc(76px + 5rem);
}

.news_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_tiem {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_text{
    padding: calc(4px + 1rem) calc(2px + 1rem);
    padding-bottom: calc(5px + 1.5rem);
}

.news_tiem .p1 {
    width: max-content;
    line-height: calc(4px + 1rem);
    background: #CEB25A;
    border-radius: calc(0px + 0.1rem);
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 500;
    font-size: calc(2px + 0.5rem);
    color: #FFFFFF;
    padding: 0 calc(2px + 0.25rem);
}

.news_tiem .p2 {
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 400;
    font-size: calc(4px + 0.5rem);
    color: #999999;
    line-height: calc(10px + 0.5rem);
}

.news_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px #D8D8D8 solid;
    padding-bottom: calc(8px + 0.5rem);
    margin-top: calc(3px + 0.5rem);
}

.news_title .p3 {
    width: calc(69px + 10rem);
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 500;
    font-size: calc(10px + 0.5rem);
    color: #000000;
    line-height: calc(8px + 1rem);
}

.news_title .p4 {
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 500;
    font-size: calc(2px + 2rem);
    color: #000000;
    line-height: calc(14px + 2rem);
}

.news_item .p5 {
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 400;
    font-size: calc(4px + 0.5rem);
    color: #666666;
    line-height: calc(10px + 0.5rem);
    margin-top: calc(4px + 1rem);
}

.news_more {
    height: calc(7px + 0.5rem);
    font-family: Alibaba PuHuiTi 2.0, Alibaba PuHuiTi 20;
    font-weight: 400;
    font-size: calc(2px + 0.5rem);
    color: #000000;
    line-height: calc(7px + 0.5rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(3px + 0.25rem);
    margin-top: calc(4px + 1rem);
}
.news_more img{
    width: calc(10px + 0.5rem);
    height: calc(5px + 0.25rem);
}


@media screen and (max-width: 1100px){
    .news_top{
        display: none;
    }
    .news_box {
        padding-top: calc(15px + 3rem);
    }
    .news_list{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 5rem);
    }
    .news_item{
        width: 100%;
    }
    .news_item_pic {
        width: 100%;
        height: calc(76px + 18rem);
    }
    .news_tiem .p1{
        font-size: calc(10px + 1rem);
        line-height: calc(18px + 1rem);
    }
    .news_tiem .p2{
        font-size: calc(10px + 1rem);
    }
    .news_title .p3{
        width: 70%;
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .news_title .p4{
        font-size: calc(20px + 1rem);
    }
    .news_item .p5{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_more{
        font-size: calc(10px + 1rem);
    }
    .news_text {
        padding: calc(10px + 1rem) calc(8px + 1rem);
        padding-bottom: calc(8px + 1.5rem);
    }
}