    .CaseBigBox {
        position: relative;
        overflow: hidden;
    }

    /* 列表 */
    .ItemBox {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 54px 90px;
    }

    .Item {
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
        border: 1px solid #E9E9E9;
        position: relative;
    }

    .Item .text {
        position: relative;
        z-index: 2;
        padding: 45px;
        padding-bottom: 0;
    }

    .Item .text h1 {
        color: #2E2E2E;
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
    }

    .Item .text span {
        display: block;
        width: 40px;
        height: 4px;
        background: var(--color);
    }

    .Item .img {
        width: 100%;
        padding: 120px 0;
    }

    .Item .img img {
        position: relative;
        z-index: 2;
        width: 100%;
        transition: 0.5s;
    }

    .Item:hover .img img {
        transform: scale(1.05);
    }

    .Item .bj {
        position: absolute;
        inset: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .Item .text h1 {
        font-size: 26px;
        line-height: 1.5;
        color: #4B4B4B;
        margin-bottom: 15px;
    }

    .Item .text h2 {
        font-size: 16px;
        line-height: 1.5;
        color: #787878;
    }

    @media (max-width: 1440px) {
        .ItemBox {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 45px 60px;
        }

        .Item .img {
            width: 100%;
            padding: 90px 0;
        }
    }

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

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

        .ItemBox {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 15px;
        }

        .Item .img {
            width: 100%;
            padding: 45px 0;
        }
    }

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

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

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


    }