    .NyNavBox {
        background-color: #f2f2f2;
        padding: 0px var(--w1600);
    }

    .NavListBox {
        display: flex;
        flex-wrap: wrap;
    }

    .NavListBox a {
        height: 100%;
        font-size: 16px;
        line-height: 20px;
        padding: 30px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .NavListBox a::after {
        content: "";
        position: absolute;
        width: 1px;
        height: 15px;
        display: block;
        background: #ccc;
        right: 0px;
    }

    .NavListBox a::before {
        position: absolute;
        content: '';
        bottom: 0px;
        width: 0%;
        height: 3px;
        background: #124299;
        transition: all .3s;
    }

    .NavListBox a:hover::before {
        width: 80%;
    }

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

    .NewsItem {
        background: #eeeeee;
        width: 100%;
        position: relative;
        overflow: hidden;
        transition: 0.5s;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .NewsItem .text {
        display: flex;
        background: #eeeeee;
        padding: 30px;
    }

    .NewsItem .time b {
        font-weight: 500;
        color: var(--color);
        font-size: 60px;
        line-height: 1;
    }

    .NewsItem .time p {
        color: var(--color);
        font-size: 16px;
    }

    .NewsItem .desc {
        padding-left: 45px;
        margin-left: 45px;
        border-left: 1px solid #70707033;
    }

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


    .NewsItem h2 {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.5;
        color: #898989;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .NewsItem span {
        border: 1px solid #ccc;
        padding: 5px 20px;
        font-size: 14px;
        line-height: 1.5;
    }

    @media (max-width: 1440px) {
        .NewsItem .desc {
            padding-left: 15px;
            margin-left: 15px;
            border-left: 1px solid #70707033;
        }

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

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

    @media (max-width: 720px) {
        .NewsItem .text {
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
        }

        .NewsItem .desc {
            width: 100%;
            margin: 0;
            padding: 0;
            border: 0px;
        }

        .NewsItem .time b {
            font-size: 24px;
            font-weight: bold;
        }

        .NewsItem h1 {
            margin-top: 15px;
        }
    }

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


    }