.news_list_box {
    width: 100%;
    padding: calc(30px + 5rem) 0;
}

.news_list {
    max-width: 1400px;
    width: 85%;
    margin: auto;
}

.news_list_card_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(20px + 3rem);
    margin-top: calc(9px + 2rem);
}

.news_list_card {
    width: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(8px + 3rem);
}

.news_list_pic {
    width: calc(40px + 15rem);
    height: calc(40px + 10rem);
}

.news_list_pic img {
    width: 100%;
    height: 100%;
}

.news_list_intro {
    width: calc(106px + 30rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(10px + 1rem);
}

.news_list_intro p:nth-of-type(1) {
    font-family: PINGFANG;
    font-weight: bold;
    font-size: calc(4px + 1rem);
    color: #333333;
}

.news_list_intro p:nth-of-type(2) {
    font-family: PINGFANG;
    font-weight: 500;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(2px + 1.5rem);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_time{
font-family: Microsoft YaHei;
font-weight: 300;
font-size: calc(4px + 0.5rem);
color: #33333180;
display: flex;
justify-content: flex-start;
align-items: center;
gap: calc(5px + 0.25rem);
}

.news_time img{
    width: calc(4px + 0.5rem);
}

.jiantou img{
    width: calc(17px + 2rem);
    margin-left: calc(20px + 3rem);
    display: none;
}

.jiantou img:nth-of-type(1){
    display: block;
}
.news_list_card:hover{
box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
}

.news_list_card:hover .news_list_intro p:nth-of-type(1){
    color: #629282;
}

.news_list_card:hover .jiantou img{
    display: none;
}
.news_list_card:hover .jiantou img:nth-of-type(2){
    display: block;
}