body .container .m01_news_list a {
    display: flex;
    justify-content: space-between;
    gap: 2.08333vw
}

body .container .m01_news_list a:not(:last-child) {
    margin-bottom: 2.08333vw
}

body .container .m01_news_list a .pic {
    width: 25vw;
    position: relative;
    overflow: hidden
}

body .container .m01_news_list a .pic img {
    width: 100%;
    height: 14.58333vw;
    object-fit: contain;
    transition: all 600ms
}

body .container .m01_news_list a .pic .tag {
    position: absolute;
    left: 0;
    top: 0;
    padding: .52083vw;
    background: #EFEFF2;
    line-height: 1.11
}

body .container .m01_news_list a .text {
    width: 56.25vw
}

body .container .m01_news_list a .text .time {
    color: #666;
    margin-top: 1.35417vw
}

body .container .m01_news_list a .text .t {
    line-height: 1.17;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 1.04167vw 0;
    transition: all 600ms
}

body .container .m01_news_list a .text .des {
    color: #666;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 1.04167vw
}

body .container .m01_news_list a .text .common_btn {
    border: 1px solid rgba(0, 0, 0, 0.08)
}

body .container .m01_news_list a .text .common_btn p {
    color: #000
}

body .container .m01_news_list a .text .common_btn svg path {
    stroke: #000
}

body .container .m01_news_list a:hover .pic img {
    transform: scale(1.05)
}

body .container .m01_news_list a:hover .text .t {
    color: #B82234
}

@media screen and (max-width: 768px){
        body .container .m01_news_list a {
        gap: 10px;
        flex-direction: column
    }

    body .container .m01_news_list a:not(:last-child) {
        margin-bottom: 30px
    }

    body .container .m01_news_list a .pic {
        width: 100%
    }

    body .container .m01_news_list a .pic img {
        height: 200px
    }

    body .container .m01_news_list a .pic .tag {
        padding: 10px
    }

    body .container .m01_news_list a .text {
        width: 100%
    }

    body .container .m01_news_list a .text .time {
        margin-top: 0
    }

    body .container .m01_news_list a .text .t {
        margin: 10px 0
    }

    body .container .m01_news_list a .text .des {
        margin-bottom: 10px
    }

}