.news {
    padding: 0.6rem 0;
}

.news_cont {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.news_item {
    position: relative;
    width: 3.8rem;
    background-color: white;
    box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: 0.5s;
    margin-right: 0.3rem;
    margin-bottom: 0.4rem;
}

.news_item:nth-of-type(3n) {
    margin-right: 0;
}

.news_item:hover {
    box-shadow: 1px 2px 30px 0px rgba(0, 0, 0, 0.2);
}

.news_item>a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
}

.news_img {
    width: 100%;
    height: 2.85rem;
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news_text {
    padding: 0.25rem 0.3rem 0.3rem 0.3rem;
}

.news_p1 {
    font-size: 14px;
    color: #43484C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.1rem;
}

.news_p2 {
    font-size: 24px;
    color: #43484C;
    line-height: 36px;
    margin-bottom: 0.15rem;
}

.news_p3 {
    font-size: 16px;
    color: rgba(67, 72, 76, 0.7);
    line-height: 25px;
    margin-bottom: 0.37rem;
}

.news_btn {
    margin-left: auto;
    width: 0.3rem;
    height: 0.3rem;
}

.news_btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 800px) {

    .news_cont {
        width: 90%;
    }

    .news_item {
        width: 100%;
        margin-right: 0;
    }

    .news_img {
        height: auto;
    }
}