.two_news_box {
    width: 100%;
    padding-top: calc(30px + 5rem);
    padding-bottom: calc(30px + 5rem);
}

.two_news {
    max-width: 1440px;
    width: 85%;
    margin: auto;
}

.two_news_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(8px + 1rem);
}

.two_news_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(10px + 3rem);
}

.two_news_pic {
    width: 26.875%;
    height: calc(10px + 10rem);
}

.two_news_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two_news_con {
    width: 48.8888%;
}

.two_news_con .p1 {
    font-family: pingfang_medium;
    font-weight: 600;
    font-size: calc(10px + 0.5rem);
    color: #333333;
    line-height: calc(8px + 1rem);
}

.two_news_con .p2 {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #777777;
    line-height: calc(10px + 1rem);
    margin-top: calc(6px + 0.5rem);
}
.two_news_time{
    margin-left: calc(19px + 3rem);
}
.two_news_time .p1 {
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #777777;
    line-height: calc(2px + 1rem);
}

.two_news_more {
    width: calc(14px + 5rem);
    height: calc(2px + 2rem);
    border: 1px solid #979797;
    margin-top: calc(6px + 2rem);
    transition: .3s;
}

.two_news_more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: pingfang_regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #777777;
    line-height: 1;

}
.two_news_list .line{
    border-bottom: calc(0px + 0.1rem) solid #ECECEC;
}

.two_news_item:hover .two_news_more{
    background-color: #971D33;
    border-color: #971D33;
}
.two_news_item:hover .two_news_more a{
    color: #ffffff;
}
@media screen and (max-width: 1100px){
    .two_news_item{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .two_news_pic {
        width: 100%;
        height: calc(10px + 40rem);
    }
    .two_news_con{
        width: 100%;
    }
    .two_news_con .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .two_news_con .p2{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .two_news_time .p1{
        font-size: calc(9px + 1rem);
    }
    .two_news_more a{
        font-size: calc(10px + 1rem);
    }
    .two_news_more {
        width: calc(28px + 12rem);
        height: calc(2px + 7rem);
      
    }
    .two_news_time{
        margin-left: 0;
    }
}