.news_box {
    width: 100%;
    padding-top: calc(15px + 5rem);
    padding-bottom: calc(67px + 5rem);
}

.news {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(3px + 2rem);
}

.news_item {
    width: 100%;
    height: calc(20px + 15rem);
    background: #F3F3F3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(13px + 3rem);
    position: relative;
}

.news_pic {
    width: 28.5135%;
    height: 100%;
}

.news_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_con {
    width: 60%;
}

.news_con .p1 {
    font-family: Helvetica_bold;
    font-weight: bold;
    font-size: calc(8px + 1rem);
    color: #EC6629;
    line-height: 1;
    border-bottom: calc(0px + 0.1rem) #e6e6e6 solid;
    padding-bottom: calc(6px + 1.5rem);
}

.news_con .p2 {
    margin-top: calc(9px + 2rem);
}

.news_con .p2 p {
    font-family: Helvetica_roman;
    font-weight: normal;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 1rem);
}

.news_time {
    width: calc(60px + 5rem);
    line-height: calc(20px + 2rem);
    background: #EC6629;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
font-family: DINPro;
font-weight: 500;
font-size: calc(8px + 0.5rem);
color: #FFFFFF;

}

@media screen and (max-width: 1100px) {
    .news_con .p1{
        font-size: calc(12px + 1rem);
        
    }
    .news_con .p2 p{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: auto;
    }
    .news_pic{
        width: 100%;
    }
    .news_con{
        width: 100%;
        padding: 0 5%;
        padding-bottom:5%;
    }
    .news_time{
        width: calc(70px + 5rem);
        font-size: calc(10px + 1rem);
    }
    .news_box {
        padding-bottom: calc(24px + 1rem);
    }
}