/* 列表 */
.NyItem {
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 45px;
}

.ItemList {
    width: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.ItemList a {
    display: block;
    position: relative;
    background: #fff;
    height: 500px;
}

.ItemList a .img {
    width: 100%;
    height: 300px;
    transition: 1s;
    position: relative;
}


.ItemList a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ItemList a .text {
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    padding: 30px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ItemList a .text h1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #000000;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


.ItemList a .text h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #757575;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ItemList a .text span {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #757575;
}


@media screen and (max-width: 992px) {
    .NyItem {
        padding: 60px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 45px;
    }
}

@media screen and (max-width: 640px) {
    .NyItem {

        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 15px;
        grid-row-gap: 30px;
    }

    .ItemList a {
        height: 310px;
    }

    .ItemList:hover a .img {
        height: 260px;
    }

    .ItemList a .img {
        height: 150px;
    }

    .ItemList a .text {
        padding: 10px 20px;
        height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .ItemList a .text h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .ItemList a .text h2 {
        font-size: 14px;
    }

    .ItemList {
        border-radius: 0 0 10px 10px;
    }
}







/* 详情 */
.Ny_Post {
    position: relative;
    padding-bottom: 60px;
}



.Ny_Post .title {
    display: block;
    width: 100%;
    font-size: 24px;
    line-height: 2;
    font-weight: bold;
    text-align: center;
}

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

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

.Ny_Post .Ny_xiangqing {
    margin-top: 30px;
    margin-bottom: 30px;
    min-height: 300px;
}

.Ny_Post .Ny_xiangqing p {
    margin: 0;
}


video {
    display: block;
    margin: 0 auto;
}


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

@media (max-width: 720px) {
    .NewsPostBottom {
        display: flex;
        flex-wrap: wrap;
    }

    .NewsPostBottom a {
        width: 100%;
        margin: 5px 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
}