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

    .NewsItem {
        width: 100%;
        border: 1px solid #E6E7E8;
        position: relative;
        overflow: hidden;
        transition: 0.5s;
    }

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

    .NewsItem h1 {
        color: #000;
        font-family: Montserrat;
        font-size: 24px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

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

    .NewsItem .line {
        width: 50px;
        height: 4px;
        background: linear-gradient(90deg, #FFF1BA 0%, #76450F 100%);
        transition: 0.5s;
    }

    .NewsItem h2 {
        color: #434343;
        font-size: 14px;
        line-height: 1.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .NewsItem h3 {
        color: #434343;
        font-size: 12px;
    }

    @media (max-width: 1440px) {
        .NewsItem .text {
            padding: 30px;
        }

        .NewsItem h1 {
            font-size: 20px;
        }
    }

    @media (max-width: 1200px) {
        .NewsItem .text {
            padding: 30px 20px;
        }

        .NewsItem h1 {
            font-size: 18px;
        }
    }

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

    @media (max-width: 600px) {
        .NewsItem .text {
            padding: 20px 10px;
        }
    }

    @media (max-width: 400px) {
        .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;
        }


    }