    .NyProList {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 75px;
        margin-bottom: 45px;
    }

    .PostItem {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .PostItem:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .PostItem .dian {
        position: absolute;
    }

    .PostItem .img {
        width: 50%;
        position: relative;
    }

    .PostItem .img img {
        width: 100%;
        position: relative;
    }

    .PostItem .img h1 {
        position: absolute;
        z-index: 3;
        left: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(90deg, var(--color) 0%, rgba(255, 255, 255, 0.00) 100%);
        padding: 30px 45px;
        color: #FFF;
        font-size: 16px;
    }

    .PostItem .text {
        width: calc(50% - 60px);
        display: flex;
        flex-direction: column;
        grid-gap: 45px;
    }

    .PostItem .text h1 {
        color: #000;
        font-size: 40px;
        font-weight: 700;
    }

    .PostItem .text .line {
        width: 100%;
        height: 1px;
        background: #8A8F99;
    }

    .PostItem .text .desc {
        color: #333;
        font-size: 16px;
    }


    @media (max-width: 1200px) {


        .PostItem .text {
            grid-gap: 15px;
        }

        .PostItem .text h1 {
            font-size: 34px;
        }

        .PostItem .text .desc {
            font-size: 14px;
        }
    }

    @media (max-width: 900px) {
        .PostItem {
            display: flex;
            flex-direction: column-reverse !important;
            grid-gap: 30px;
        }

        .PostItem .img h1 {
            padding: 10px 20px;
            font-size: 14px;
        }

        .PostItem .img,
        .PostItem .text {
            width: 100%;
        }

        .PostItem .text h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 600px) {
        .PostItem .img h1 {
            position: relative;
            padding: 15px 10px;
            background: linear-gradient(90deg, #004d9d 0%, rgb(0 77 157 / 20%) 100%);
        }
    }

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