.news_box {
    width: 100%;
}

.news {
    max-width: 1588px;
    width: 90%;
    margin: auto;
    padding: calc(10px + 0.5rem) 0;
    display: flex;
    justify-content: space-between;
    gap: calc(10px + 3rem);
}

.news_right {
    flex: 1;
    padding-top: calc(25px + 0.5rem);
}

.news_right .p1 {
    font-size: calc(10px + 0.5rem);
    color: #363636;
    font-weight: bold;
    margin-bottom: calc(5px + 0.25rem);
    line-height: 1.7;
}

.news_right .div2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(10px + 1rem);
    border-bottom: 1px #9e9e9e dashed;
    padding-bottom: calc(5px + 0.25rem);
}

.news_right .div2 p {
    color: #9e9e9e;
    font-size: calc(4px + 0.5rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(5px + 0.25rem);
}

.news_right .div2 p img {
    width: calc(6px + 0.5rem);
}

.news_right .p3 {
    font-size: calc(4px + 0.5rem);
    color: #333333;
    line-height: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(10px + 0.5rem);
    margin-top: calc(10px + 1rem);
}

@media screen and (max-width: 1100px) {
    .news {
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }

    .news_item .tit h3 {
        font-size: calc(12px + 1rem);
    }

    .news_item .tit .date {
        font-size: calc(10px + 1rem);
    }

    .news_item .info {
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }

    .news_item .more {
        width: calc(30px + 11rem);
        line-height: calc(20px + 1.5rem);
        font-size: calc(10px + 1rem);
    }

    .news_right .p1{
        font-size: calc(14px + 1rem);
        line-height: 1.5;
    }
    .news_right .div2 p{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_right .div2 p img {
        width: calc(12px + 0.5rem);
    }
    .news_right .p3{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_right .p3 img{
        width: 100% !important;
        height: auto !important;
    }
}