.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;
    }
}