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

    .NewsItem {
        width: 100%;
        padding: 10px;
        background-color: #f5f5f5;
        border-radius: 8px;
        position: relative;
        transition: 0.5s;
        display: flex;
        flex-direction: column;
        grid-gap: 10px;
    }

    .NewsItem .text {
        width: 50%;
        padding-left: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

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


    .NewsItem h2 {
        font-size: 16px;
        color: #999;
    }

    .NewsItem span {
        height: 1px;
        width: 100%;
        position: relative;
        background-color: #e6e6e6;
    }

    .NewsItem span::before {
        position: absolute;
        content: "";
        display: block;
        height: 1px;
        width: 0%;
        top: 0;
        left: 0px;
        background-color: var(--color);
        transition: all .5s;
    }

    .NewsItem:hover span::before {
        width: 100%;
    }

    .NewsItem h3 {
        font-size: 16px;
        color: #999;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    @media (max-width: 1200px) {}

    @media (max-width: 720px) {}



    /* 详情 */
    /* 详情 */
    /* 详情 */
    .Ny_NewsPost {
        padding: 0;
    }

    .Ny_NewsPost .title {
        display: block;
        width: 100%;
        font-size: 24px;
        line-height: 2;
        font-weight: bold;
        padding-left: 10px;
        border-left: 4px solid var(--color);
    }

    .Ny_NewsPost .desc {
        display: flex;
        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;
        }


    }