.news-box {
    margin: 0 auto;
    padding-bottom: 1rem;
}


/*  */
.news-list {
    margin: 0 auto;
    margin-top: .55rem;
}

.news-item {
    padding: 0.2rem 0.55rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.28rem;
    position: relative;
    box-shadow: -0.04rem -0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.1), 0.04rem 0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.1);
}

.news-item::after {
    content: '';
    width: 0.09rem;
    height: 100%;
    background: #C81526;
    position: absolute;
    left: 0;
    bottom: 0;
}

.news-item:last-of-type {
    margin-bottom: 0;
}

.news-img {
    width: 3.2rem;
    height: 2rem;
    flex-shrink: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    font-size: 0.18rem;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #C81526;
    margin-top: .5rem;
    text-align: right;
}

.news-des {
    flex: 1;
    margin-left: .6rem;
}

.news-text {
    font-size: 0.25rem;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #444444;
    transition: all .365s;
}

.news-p {
    font-size: 0.16rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 0.24rem;
    margin-top: 0.15rem;
}



.news-page {
    padding-top: 0.6rem;
}

.news-item:hover {
    background: #FFFFFF;
    box-shadow: -0.04rem -0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.1), 0.04rem 0.04rem 0.1rem 0rem rgba(0, 0, 0, 0.1);
}

.news-item:hover .news-text {
    color: #C81526;
}
@media screen and (max-width:1024px){
    .news-box{
        padding: 0 .25rem .8rem;
    }
    .news-item {
        padding: 0.2rem 0.25rem;
    }
    .news-img{
        width: 2.8rem;
    }
    .news-des{
        margin-left: .2rem;
    }
    .news-text {
        font-size: 0.28rem;
        line-height: 1.5;
    }
    .news-p,.news-date{
        font-size: .24rem;
        line-height: .36rem;
    }
}