    /* 新闻列表 */
    .NeweList {
        margin-top: 60px;
        margin-bottom: 45px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px 20px;
    }

    .NewsItem {
        width: 100%;
        border-bottom: 2px solid #D9D9D9;
        position: relative;
    }

    .NewsItem::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0%;
        height: 2px;
        z-index: 1;
        background: var(--color);
        transition: 0.5s;
    }

    .NewsItem:hover::after {
        width: 100%;
    }

    .NewsItem .img {
        width: 100%;
        position: relative;
    }

    .NewsItem .img i {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 75px;
        height: 75px;
        background: var(--color2);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        color: #fff;
        opacity: 0;
        transition: 0.5s;
    }

    .NewsItem:hover .img i {
        opacity: 1;
    }

    .NeweList .text {
        padding: 30px 0 15px;
        display: flex;
        flex-direction: column;
        grid-gap: 25px;
    }

    .NeweList .text h1 {
        color: #141414;
        font-size: 24px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        transition: 0.5s;
    }

    .NewsItem:hover .text h1 {
        color: var(--color);
    }

    .NeweList .text h2 {
        color: #6E6E6E;
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .NeweList .text h3 {
        color: #323232;
        font-size: 14px;
    }

    @media (max-width: 1200px) {
        .NeweList .text h1 {
            font-size: 18px;
        }

        .NeweList .text {
            padding: 15px 0 15px;
            display: flex;
            flex-direction: column;
            grid-gap: 15px;
        }
    }

    @media (max-width: 900px) {
        .NeweList {
            margin-top: 30px;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .NeweList {
            grid-gap: 30px 10px;
        }

        .NeweList .text {
            grid-gap: 5px;
        }

        .NewsItem .text h1 {
            font-size: 16px;
        }

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

    @media (max-width: 380px) {
        .NeweList {
                grid-template-columns: repeat(1, 1fr);
            }
    }

    /* 详情 */
    /* 详情 */
    /* 详情 */
    .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%;
    }

    .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;
        min-height: 500px;
    }

    .Ny_NewsPost .Ny_xiangqing p {
        margin: 0;
    }


    @media (max-width: 720px) {

        .Ny_NewsPost .title {
            margin-top: 15px;
            margin-bottom: 10px;
            font-size: 18px;
            line-height: 1.5;
        }


    }