    /* 新闻列表 */
    .NeweList {
        margin: 45px 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 40px;
    }

    .NewsLine {
        display: block;
        width: 100%;
        height: 1px;
        background: #D9D9D9;
    }

    .NewsLine:last-child {
        display: none;
    }

    .NewsItem {
        width: 100%;
        display: flex;
    }

    .NewsItem .img {
        width: 400px;
    }

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

    .NewsItem .text {
        width: calc(100% - 400px);
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding-left: 120px;
    }

    .NewsItem .text h1 {
        font-weight: 700;
        font-size: 24px;
        color: #000000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

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

    .NewsItem .text .time {
        display: flex;
        align-items: center;
        grid-gap: 10px;
        font-size: 14px;
        color: var(--color);
    }

    .NewsItem .text .More {
        display: none;
    }

    @media (min-width: 1200px) {
        .NewsItem:first-child {
            background: #fff;
            display: flex;
            flex-direction: row-reverse;
        }

        .NewsItem:first-child .img {
            width: 50%;
        }

        .NewsItem:first-child .text {
            width: 50%;
            padding: 0 90px;
        }

        .NewsItem:first-child .text h1 {
            font-size: 32px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }

        .NewsItem:first-child .text .time {
            display: none;
        }

        .NewsItem:first-child .text .More {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            font-size: 16px;
            color: #FFFFFF;
            width: 145px;
            height: 45px;
            background: #9C381E;
            border-radius: 4px;
        }
    }

    @media (max-width: 1200px) {
        .NewsItem .img {
            width: 300px;
        }

        .NewsItem .text {
            width: calc(100% - 300px);
            padding-left: 30px;
        }
    }

    @media (max-width: 720px) {
        .NeweList {
            grid-gap: 20px;
        }

        .NewsItem .img {
            width: 200px;
        }

        .NewsItem .text {
            width: calc(100% - 200px);
            padding-left: 30px;
        }

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

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

    @media (max-width: 460px) {
        .NewsItem {
            flex-wrap: wrap;
        }

        .NewsItem .img {
            width: 100%;
        }

        .NewsItem .text {
            width: 100%;
            padding: 0;
            padding-top: 15px;
            grid-gap: 15px;
        }
    }

    /* 视频 */
    .VideoList {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        grid-gap: 60px 30px;
        margin: 45px 0;
    }

    .VideoItem {
        background: #F8F8F8;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .VideoItem video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .VideoItem .text {
        padding: 30px;
    }

    .VideoItem .text h1 {
        font-size: 18px;
        line-height: 1.5;
        color: #2F2F2F;
        margin-bottom: 30px;
    }

    .VideoItem .text .tubiao {
        display: flex;
        align-items: center;
        grid-gap: 30px;
    }

    .VideoItem .text .tubiao span {
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

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

    @media (max-width: 720px) {
        .VideoItem .text {
            padding: 20px;
        }

        .VideoItem .text h1 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .VideoItem .text .tubiao span {
            font-size: 14px;
        }

        .VideoItem .text .tubiao {
            grid-gap: 15px;
        }
    }

    @media (max-width: 460px) {
        .VideoList {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 20px;
        }
    }

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


    }