.ny_news {
    padding: 15px 2vw;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.newslist {
    display: block;
    background: #f1f1f1;
    padding: 15px;
    margin-bottom: 30px;
    transition: 1s;
}

.newslist:hover {
    transform: translatey(-10px);
}

.newslist .imgbox {
    display: block;
    overflow: hidden;
}

.newslist .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 1s;
}

.newslist:hover .imgbox img {
    transform: scale(1.2);
}

.newslist .text {
    display: flex;
    flex-direction: column;
    padding: 20px 30px 5px;
    background: #f2f2f2;
}

.newslist .text h1 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


.newslist .text span {
    display: flex;
    justify-content: space-evenly;
    line-height: 16px;

}

.newslist .text span p img {
    width: 16px;
    height: 16px;
}

.newslist .text span p {
    color: #737b80;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0;
}


@media screen and (max-width: 640px) and (min-width:0px) {
    .newslist .text {
        padding: 15px 20px;
    }

    .newslist .text h1 {
        font-size: 18px;
    }


    .newslist .text span {
        font-size: 14px;
    }

    .newslist p {
        font-size: 12px;
        opacity: 1;
    }
}

/* 详情 */
/* 详情 */
/* 详情 */


.ny_newspost {
    padding: 3vw;
}

.ny_newspost .title {
    display: block;
    width: 100%;
    line-height: 28px;
    color: #222222;
    font-size: 28px;
    margin-bottom: 35px;
    text-align: center;
}

.ny_newspost .desc {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #e6e6e6;
}

.ny_newspost .desc span {
    margin: 0 15px;
    color: #999;
    font-size: 18px;
    line-height: 2;
    text-align: center;
}

.ny_newspost .ny_xiangqing {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ny_newspost .ny_xiangqing p {
    margin: 0;
}

.newspostbottom {
    border-top: 1px solid #e6e6e6;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.newspostbottom a {
    color: #333;
    line-height: 1;
    font-size: 16px;
}

.newspostbottom a:first-child {
    width: 40%;
    text-align: left;
}

.newspostbottom a:last-child {
    width: 40%;
    text-align: right;
}

@media screen and (max-width: 640px) and (min-width: 0px) {
    .newspostbottom {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }

    .ny_newspost .title {
        line-height: 1.5;
        font-size: 24px;
    }

    .newspostbottom a {
        width: 100% !important;
        text-align: left !important;
        margin: 10px 0;
        line-height: 1.5;
        font-size: 12px;
    }

    .ny_newspost .desc span {
        font-size: 12px;
    }
}