.news_box {
    width: 100%;
    padding-top: calc(20px + 5rem);
    padding-bottom: calc(63px + 5rem);
}

.news {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;

}

.news_card {
    width: 31.6824%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding-bottom: calc(4px + 2rem);
}

.news_pic {
    width: 100%;
    height: calc(95px + 10rem);
    overflow: hidden;
}

.news_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}


.news_card .p1 {
    height: calc(34px + 1rem);
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(8px + 0.5rem);
    color: #333333;
    line-height: calc(10px + 1rem);
    padding: 0 calc(10px + 1rem);
    margin-top: calc(6px + 1.5rem);
    transition: .5s;
    overflow: hidden;
}

.news_time_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(10px + 1rem);
    margin-top: calc(8px + 1.5rem);
}

.news_time {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(3px + 0.25rem);
}

.news_time p {
    font-family: Futura Md BT;
    font-weight: 500;
    font-size: calc(6px + 0.5rem);
    color: #A5A5A5;

}

.news_jt {
    width: calc(3.3px + 0.25rem);
}

.news_card:hover .p1 {
    color: #006B98;
}

.news_card:hover .news_pic img {
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    .news{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 2rem);
    }
    .news_card {
        width: 100%;
    }
    .news_pic {
       
        height: calc(95px + 27rem);
    }
    .news_card .p1{
        font-size: calc(12px + 1rem);
        line-height: 1.5;
        height: calc(5px + 10rem);
        
    }
    .news_time p {
        font-size: calc(10px + 1rem);
    }
}