.Ny_News {
    padding: 0 15px;
    min-height: 600px;
    margin-left: -25px;
    margin-right: -25px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}

.NewsList:nth-child(1) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.NewsList:nth-child(1) img {
    width: 50%;
}

.NewsList:nth-child(1) .text {
    width: 50%;
    padding: 0 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.NewsList:nth-child(1) .text .time {
    color: #C9242A;
    font-size: 16px;
    line-height: 1;
}

.NewsList:nth-child(1) .text h1 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 60px;
}

.NewsList:nth-child(1) .text span {
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 1;
    /* 150% */
}


.NewsList {
    width: calc(33.333% - 50px);
    margin: 0 25px 30px;
    transition: 1s;
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.NewsList img {
    width: 100%;
    transition: 0.5s;
}

.NewsList img:hover {
    transform: scale(1.08);
}

.NewsList .text {
    padding: 45px;
}

.NewsList .text .time {
    color: #C9242A;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 15px;
}

.NewsList h1 {
    color: #333;
    font-size: 18px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.NewsList .text span {
    display: none;
}

@media screen and (max-width: 992px) and (min-width:0px) {
    .Ny_News {
        margin-left: -15px;
        margin-right: -15px;
    }

    .NewsList {
        width: calc(33.333% - 30px);
        margin: 15px 15px;
    }

    .NewsList:nth-child(1) .text h1 {
        font-size: 24px;
    }

    .NewsList .text {
        padding: 30px 20px;
    }
}


@media screen and (max-width: 640px) and (min-width:0px) {

    .NewsList:nth-child(1),
    .NewsList {
        width: calc(50% - 20px);
        margin: 15px 10px;
    }

    .NewsList:nth-child(1) img {
        width: 100%;
    }

    .NewsList .text,
    .NewsList:nth-child(1) .text {
        width: 100%;
        padding: 20px 15px !important;
    }


    .NewsList:nth-child(1) .text h1 {
        font-size: 18px !important;
        font-weight: 700 !important;
        margin: 0;
    }

    .NewsList:nth-child(1) .text span {
        display: none;
    }
}

/* 详情 */
/* 详情 */
/* 详情 */
.Ny_NewsPost {
    padding: 0 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%;
    align-items: center;
}

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

.Ny_NewsPost .xiangqing {
    margin-top: 30px;
    margin-bottom: 30px;
}

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