.ver_pos {
    position: relative;
}
.ver_abs {
    position: absolute;
    top: 16.9vw;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: LeagueGothicRegular;
    color: #fff;
    font-size: 7.55vw;
    line-height: 7.55vw;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ver_abs.animate-slide-up {
    opacity: 1;
    transform: translate(-50%, 0);
}
.ver_at {
    background-color: #ff1d63;
    display: flex;
    align-items: center;
    font-family: LeagueGothicRegular;
    color: #fff;
    padding: 7.03vw 18.95vw;
    gap: 4.94vw;
}
.ver_atTit {
    font-size: 4.16vw;
    line-height: 4.16vw;
}
.ver_atCon {
    font-family: RobotoCondensedSemiBold;
    font-size: 1.22vw;
    line-height: 1.48vw;
}
.ver_pad {
    padding: 1.9vw 0 2.08vw 0;
}

.ver_ul {
    padding: 6.5vw 18.95vw;
    display: -webkit-flex;
    display: flex;
    margin: 0;
}

.ver_ul li {
    list-style: none;
    width: 25%;
    transition: width 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.ver_ul li img {
    width: 100%;
    cursor: pointer;
    height: 749px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-origin: center center;
}

/* 悬停状态 - 被悬停的li */
.ver_ul li.hovered {
    width: 62.5%;
}

/* 悬停状态 - 其他li */
.ver_ul li.shrunk {
    width: 12.5%;
}

/* 悬停时图片的扩展效果 */
.ver_ul li.hovered img {
    transform: scale(1.1);
}

.ver_atTit, .ver_atCon {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.ver_atTit.animate-fade-in,
.ver_atCon.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* 为不同元素设置不同的延迟 */
.ver_atCon.ver_pad.animate-fade-in {
    transition-delay: 0.3s;
}

.ver_atCon:not(.ver_pad).animate-fade-in {
    transition-delay: 0.6s;
}

@media only screen and (max-width: 767px) {
    .ver_abs {
        top: 55vw;
        font-size: 13vw;
        line-height: 12vw;
        white-space: nowrap;
        transform: translateX(-50%);
    }
    .ver_at {
        padding: 7vw 5vw;
        gap: 4vw;
        flex-direction: column;
        align-items: flex-start;
    }
    .ver_atTit {
        font-size: 11vw;
        line-height: 10.5vw;
    }
    .ver_atCon {
        font-size: 4.3vw;
        line-height: 6vw;
        text-align: justify;
    }
    .ver_pad {
        padding: 2.5vw 0 3vw 0;
    }
    .ver_img {
        padding: 5vw;
    }
    .ver_atTit, .ver_atCon {
        transform: translateY(15px);
    }
    .ver_ul {
        padding: 5vw;
        margin: 0;
        display: flex;
        gap: 2vw;
    }
    .ver_ul li {
        width: 25%;
        margin-bottom: 0;
        transition: width 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    .ver_ul li img {
        height: 48vw;
        min-height: 150px;
        max-height: 230px;
        width: 100%;
        object-fit: cover;
    }
    .ver_ul li.hovered {
        width: 62.5%;
    }
    .ver_ul li.shrunk {
        width: 12.5%;
    }
    .ver_ul li.hovered img {
        transform: scale(1.05);
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .ver_abs {
        top: 20vw;
        font-size: 9.6vw;
        line-height: 9.2vw;
        white-space: nowrap;
        transform: translateX(-50%);
    }
    .ver_at {
        padding: 6vw 8vw;
        gap: 3.5vw;
        align-items: flex-start;
        flex-direction: column;
    }
    .ver_atTit {
        font-size: 6.8vw;
        line-height: 6.6vw;
    }
    .ver_atCon {
        font-size: 2.6vw;
        line-height: 3.4vw;
    }
    .ver_pad {
        padding: 1.8vw 0 2.4vw 0;
    }
    .ver_ul {
        padding: 6vw 8vw;
        margin: 0;
        gap: 1.4vw;
    }
    .ver_ul li img {
        height: 56vw;
        min-height: 360px;
        max-height: 560px;
    }
}