.news_read_box {
    width: 100%;
    background-color: #f6f6f6;
    padding-top: calc(30px + 5rem);
    padding-bottom: calc(50px + 5rem);
}

.news_read {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.news_read_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(16px + 4rem);
}
.news_read_title_left {
    width: calc(130px + 40rem);
}

.news_read_title_left .p1 {
    font-size: calc(8px + 2rem);
    font-weight: 600;
    color: #333333;
    line-height: 1.7;
}

.news_read_title_left .p2 {
    font-size: calc(5px + 0.5rem);
    font-weight: 400;
    color: #333333;
    margin-top: calc(1px + 0.25rem);
}

.news_read_back{
    width: calc(90px + 5rem);
    height: calc(20px + 2rem);
    border-radius: calc(5px + 0.5rem);
    background-color: #175cb1;
}

.news_read_back a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(6px + 0.5rem);
    color: #ffffff;

}

.news_read_con{
    font-size: calc(6px + 0.5rem);
    color: #333333;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(10px + 1rem);
    padding-top: calc(10px + 1.5rem);
    border-top: 1px #e2e2e2 solid;
    margin-top: calc(5px + 2rem);
}

.news_prev_next{
    display: flex;
    justify-content: space-between;
    margin-top: calc(20px + 3rem);
}
.news_prev_next p{
    font-size: calc(6px + 0.5rem);
    color: #666666;
}

@media screen and (max-width: 1100px){
    .news_read_box {
        padding-top: calc(20px + 1rem);
    }
    .news_read_title_left .p1{
        font-size: calc(16px + 1rem);
        line-height: 1.5;
    }
    .news_read_back a{
        font-size: calc(10px + 1rem);
    }
    .news_read_title_left .p2{
        font-size: calc(9px + 1rem);
        margin-top: calc(10px + 1rem);
    }
    .news_read_con{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_prev_next{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 2rem);
    }
    .news_prev_next p{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}