.news_box {
    width: 100%;
    padding: calc(15px + 4rem) 0;
}

.news {
    max-width: 1570px;
    width: 85%;
    margin: auto;
}

.news_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(19px + 3rem);
}

.news_item a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news_item_pic {
    width: 42.0382%;
    height: calc(36px + 20rem);
    overflow: hidden;
}

.news_item_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.news_item_text {
    width: 42.0382%;
    height: calc(36px + 20rem);
    border-bottom: 1px #999999 solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s;
}

.news_item_time .p1 {
    font-family: D_DIN_PRO_Heavy;
    font-weight: 900;
    font-size: calc(6px + 1.5rem);
    color: #333333;
    line-height: 1;
    transition: .3s;
}

.news_item_time .p2 {
    font-family: D_DIN_PRO_Heavy;
    font-weight: 900;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    line-height: 1;
    margin-top: calc(8px + 0.5rem);
}

.news_item_text .p3 {
    font-family: D_DIN_PRO_SemiBold;
    font-weight: 600;
    font-size: calc(6px + 1.5rem);
    color: #222222;
    line-height: calc(10px + 1.5rem);
    letter-spacing: 1px;
}

.news_item_text .p4 {
    font-family: D_DIN_PRO_Regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #666666;
    line-height: calc(2px + 1.5rem);
    margin-top: calc(5px + 0.25rem);
}

.news_more {
    width: calc(28px + 5rem);
    height: calc(28px + 5rem);
    background: #D8D8D8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-top: calc(1px + 1.5rem);
    transition: .3s;
}

.news_more img {
    width: calc(10px + 1.5rem);
}

.news_item:hover .news_item_text .p3 {
    color: #E40000;
}

.news_item:hover .news_item_text {
    border-color: #E40000;
}

.news_item:hover .news_item_pic img {
    transform: scale(1.1);
}

.news_item:hover .news_item_text .news_more {
    background-color: #E40000;
}

@media (max-width: 1100px) {
    .news_item a {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: calc(10px + 1rem);
    }

    .news_item_time .p1 {
        font-size: calc(12px + 1rem);
    }

    .news_item_time .p2 {
        font-size: calc(10px + 1rem);
    }

    .news_item_pic {
        width: 100%;
        height: calc(36px + 43rem);

    }

    .news_item_text {
        width: 100%;
        height: auto;
        padding-bottom: calc(10px + 1rem);
    }

    .news_item_text .p3 {
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }

    .news_item_text .p4 {
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}