.info16_wrapper {
    padding: 120px 0;
}

.info16_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
    grid-template-areas:
        "item1Area item1Area item1Area"
        "item2Area item3Area item4Area";
}
.info16_item_1 {
    grid-area: item1Area;
}
.info16_item_2 {
    grid-area: item2Area;
}
.info16_item_3 {
    grid-area: item3Area;
}
.info16_item_4 {
    grid-area: item4Area;
}

.info16_item_img {
    height: 100%;
    transition: all 0.5s;
    object-fit: cover;
}
.info16_item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info16_item_title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    font-size: 26px;
    transition: all 0.5s;
    z-index: 99;
}
.info16_item_hide {
    position: absolute;
    left: -600px;
    bottom: 40px;
    max-width: 600px;
    transition: all 0.5s;
    z-index: 99;
}
.info16_item_hide > p {
    color: #fff;
    font-size: 14px;
    word-break: break-all;
    line-height: 30px;
}
.info16_item_arrow {
    display: flex;
    align-items: center;
}
.info16_item_arrow > p {
    color: #fff;
    font-size: 14px;
}
.info16_item_arrow > div {
    overflow: hidden;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.info16_item_arrow > div > img {
    width: 24px;
    height: 24px;
    animation: identifier 1s linear infinite;
}
.info16_item_1:hover .info16_item_title_1 {
    bottom: 208px;
}
.info16_item_1:hover .info16_item_hide_1 {
    left: 40px;
}
@keyframes identifier {
    0% {
        transform: translate(-28px, 0);
    }
    50% {
        transform: translate(0px, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
.info16_item_2:hover .info16_item_title_2 {
    bottom: 138px;
}
.info16_item_2:hover .info16_item_hide_2 {
    left: 40px;
}
.info16_item_3:hover .info16_item_title_3 {
    bottom: 138px;
}
.info16_item_3:hover .info16_item_hide_3 {
    left: 40px;
}
.info16_item_4:hover .info16_item_title_4 {
    bottom: 138px;
}
.info16_item_4:hover .info16_item_hide_4 {
    left: 40px;
}
.info16_item_1:hover .info16_item_mask_1,
.info16_item_2:hover .info16_item_mask_2,
.info16_item_3:hover .info16_item_mask_3,
.info16_item_4:hover .info16_item_mask_4 {
    background: linear-gradient(
        0deg,
        rgba(15, 21, 29, 0.65) 0%,
        rgba(12, 13, 17, 0.44) 100%
    );
}

.info16_item_1:hover .info16_item_img_1,
.info16_item_2:hover .info16_item_img_2,
.info16_item_3:hover .info16_item_img_3,
.info16_item_4:hover .info16_item_img_4 {
    transform: scale(1.05);
}
.info16_item_mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transition: all 0.5s;
}
@media (max-width: 768px) {
    .info16_container {
        display: grid;
        gap: 10px;
        grid-template-areas:
            "item1Area"
            "item2Area"
            "item3Area"
            "item4Area";
    }
    .info16_item_1 .info16_item_title_1,
    .info16_item_2 .info16_item_title_2,
    .info16_item_3 .info16_item_title_3,
    .info16_item_4 .info16_item_title_4 {
        bottom: 148px;
    }
    .info16_item_1 .info16_item_hide_1,
    .info16_item_2 .info16_item_hide_2,
    .info16_item_3 .info16_item_hide_3,
    .info16_item_4 .info16_item_hide_4 {
        left: 40px;
    }
    .info16_item_mask {
        background: rgba(0, 0, 0, 0.44);
    }
    .info16_item_img {
        width: 100%;
        object-fit: cover;
        min-height: 200px;
    }
    .info16_item_1 > a > img {
        height: 300px;
    }
    .info16_item_title {
        font-size: 16px;
    }
    .info16_item_1 .info16_item_title_1 {
        bottom: 188px;
    }
}
