.news-wrap {
    margin: 0 auto;
    padding: 1rem 0;
}

.news-list {
    margin-top: 0.5rem;
}

.news-item {
    width: 100%;
    display: flex;
    align-items: center;
    transition: all .365s;
    margin-bottom: 0.4rem;
}

.news-item:hover {
    box-shadow: 0 0.04rem 0.08rem 0.01rem rgba(0, 0, 0, 0.1600);
}

.news-img {
    width: 3.32rem;
    height: 2.09rem;
    flex-shrink: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-right {
    flex: 1;
    padding-left: 1.5rem;
    display: flex;
    /* align-items: center; */
}

.news-date {
    padding-right: 0.4rem;
    flex-shrink: 0;
}

.news-date-y {
    font-size: 0.3rem;
    font-family: Microsoft YaHei-Light, Microsoft YaHei;
    font-weight: 300;
    color: #999999;
}

.news-date-d {
    font-size: 0.14rem;
    font-family: Microsoft YaHei-Light, Microsoft YaHei;
    font-weight: 300;
    color: #999999;
    margin-top: 0.05rem;
}

.news-des {
    flex: 1;
    padding-left: 0.5rem;
    border-left: 0.02rem dashed #E7E7E7;
}

.news-text {
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
}

.news-content {
    margin-top: 0.15rem;
    display: flex;
    align-items: center;
}

.news-p {
    flex: 1;
    font-size: 0.14rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #666666;
    line-height: 0.26rem;
}

.news-more {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-left: 0.8rem;
    padding-right: 0.2rem;
}

.news-more p {
    height: 0.29rem;
    border-left: 0.02rem dashed #E7E7E7;
}

.news-more img {
    margin-left: 0.2rem;
    width: 0.15rem;
}

.news-page {
    margin-top: 0.9rem;
}

@media only screen and (max-width: 1024px) {
    .news-list {
        padding: 0 0.3rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-img {
        width: 100%;
        height: auto;
        flex-shrink: 0;
    }

    .news-right {
        padding: 0;
        padding-top: 0.2rem;
    }

    .news-more {
        display: none;
    }

    .news-date-d {
        font-size: 0.24rem;
    }

    .news-des {
        padding-left: 0.3rem;
    }

    .news-text {
        font-size: 0.26rem;
    }

    .news-p{
        font-size: 0.24rem;
        line-height: 0.34rem;
    }
}