
/* 团结拓展 */
.event-box {
    padding-bottom: 50px;
    min-width: 1280px;
    width: 100%;
    /* height: 1466px; */
    background-image: url("../image/team/team-box.png");
    background-size: cover;
}
.event-icon{
    flex-direction: column
}


.event-img {
    width: 80px;
    transition: all 0.5s ease;
}

.event-img:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.event-title {
    text-align: center;
    margin-top: 10px;
}

.event-item {
    width: 406px;
    height: 286px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    color: #fff;
    margin: 20px 0;
    cursor: pointer;

}

.event-item-img {
    display: block;
    position: absolute;
    width: 406px;
    height: 286px;
    object-fit: cover;
    transition: all 0.8s ease;
}

.event-item-title {
    position: absolute;
    z-index: 1;
    width: 268px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity 0.8s ease;
    /* 添加过渡动画 */
    font-size: 22px;
}

.event-item-text {
    position: absolute;
    z-index: 1;
    width: 302px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    top: 116px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity 0.8s ease;
    /* 添加过渡动画 */
    font-size: 20px;
}

.event-item-more {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 30px;
    opacity: 0;
    transition: opacity 0.8s ease;
    /* 添加过渡动画 */
}

.event-item:hover .event-item-title,
.event-item:hover .event-item-more,
.event-item:hover .event-item-text {
    opacity: 1;

}

.event-item:hover .event-item-img {
    filter: blur(5px);
    transform: scale(1.1);
    filter: brightness(0.7);
}

.event-item:nth-child(1){
    margin-right: 31px;
}
.event-item:nth-child(2){
    margin-right: 31px;
}
.event-item:nth-child(4){
    margin-right: 31px;
}
.event-item:nth-child(5){
    margin-right: 31px;
}
.event-item:nth-child(7){
    margin-right: 31px;
}
.event-item:nth-child(8){
    margin-right: 31px;
}