.news_list {
    padding: 0 15px;
}

.news_item {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0px 1px 8px 1.5px rgba(121, 121, 121, 0.11), 0px 3px 5px 2px rgba(90, 90, 90, 0.1);
}

.news_item:last-child {
    margin-bottom: 0;
}

.news_item_img {
    /* background-image: url('/static/images/news-1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%; */
    height: 340.45px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}

.news_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_item_svgpic {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(157, 23, 36, .8);
    opacity: 0;
    transition: all .5s;
}

.news_item_img:hover {
    background-size: 110%;
}

.news_item_img:hover .news_item_svgpic {
    opacity: 1;
}

.news_item_info {
    display: flex;
    padding: 20px;
}

.nii_left {
    width: 50px;
    min-height: 150px;
    flex-shrink: 0;
}

.nii_left_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50%;
    border-bottom: 1px solid #efefef;
    border-right: 1px solid #efefef;
}

.nii_left_item:last-child {
    border-bottom: 0;
}

.nii_left_item div {
    font-size: 11px;
    margin-top: 2px;
    line-height: 16px;
}

.nii_right {
    padding-left: 30px;
    padding-top: 10px;
}

.nii_class {
    display: flex;
    align-items: center;
}

.nii_class_item {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-right: 10px;
}

.nii_class_item span {
    color: #999;
}

.nii_class_item a {
    color: #252525;
}

.nii_title {
    color: #2e2e2e;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold;
    display: block;
    margin: 20px 0 14px;
}

.nii_title:hover {
    color: #9D1724;
}

.nii_btn {
    display: flex;
}

.nii_btn a {
    padding: 14px 24px;
    font-size: 12px;
    line-height: 100%;
    background-color: #9D1724;
    border-radius: 3px;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

.nii_btn a:hover {
    background-color: #b24646;
}

@media (max-width:1100px) {
    .news_item_img {
        height: 3.021rem;
    }

    .nii_class {
        display: block;
    }

    .nii_class_item {
        flex-wrap: wrap;
        margin-bottom: 10px;
        line-height: 1.5;
    }
}