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

.NewsList {
    display: block;
    margin: 30px 15px;
}

.NewsList:hover {
    border-radius: 4px;
    box-shadow: 0 0 22px rgba(0, 0, 0, .12);
}

.NewsList .text {
    display: flex;
    flex-direction: column;
    padding: 20px 45px;
    background: #f2f2f2;
}

.NewsList .text h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2.5px;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


.NewsList .text span {
    color: #2a62ae;
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
}

.NewsList p {
    color: #999;
    font-size: 16px;
    margin-bottom: 0;
    opacity: .75;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.NewsList:hover .text {
    background: #2a62ae;
}

.NewsList:hover .text h1,
.NewsList:hover .text span,
.NewsList:hover .text p {
    color: #fff;
}

@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%;
    font-size: 24px;
    line-height: 2;
    font-weight: bold;
    text-align: center;
}

.Ny_NewsPost .desc {
    display: flex;
    justify-content: center;
    width: 100%;
}

.Ny_NewsPost .desc span {
    margin: 0 5px;
    color: #999;
    font-size: 14px;
    line-height: 3;
    text-align: center;
}

.Ny_NewsPost .Ny_xiangqing {
    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;
}