.NyBigBox {
    padding-top: 60px !important;
}

.Ny_photoList {
    margin-bottom: 15px;
}

.Ny_photoList a {
    color: #2C2C2C;
    display: block;
    border-radius: 5px;
    background: #E9F0F6;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
    transition: 1s;
}

.Ny_photoList a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/163/20230907201116_4oCqOg7c.png);
    z-index: -1;
    opacity: 0;
    transition: 1s;
}

.Ny_photoList a:hover {
    background: #fff0;
}

.Ny_photoList a:hover::after {
    opacity: 1;
}

.Ny_photoList a .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Ny_photoList a .text h1 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 15px;
}

.Ny_photoList a .text span p {
    color: #2C2C2C;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 0;
}

.Ny_photoList a .img {
    width: 100%;
    max-width: 350px;
}

@media screen and (max-width:1440px) and (min-width:0px) {
    .Ny_photoList a {
        padding: 0 5%;
    }

    .Ny_photoList a .img {
        max-width: 250px;
    }

    .Ny_photoList a .text span p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 992px) and (min-width:0px) {
    .Ny_photoList a {
        color: #2C2C2C;
        display: block;
        border-radius: 5px;
        padding: 10%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }

    .Ny_photoList a .text h1,
    .Ny_photoList a .text span p {
        text-align: center;
    }
}