.team-wrap{
    width: 100%;
    height: auto;
}
.team-box{
    max-width: 1200px;
    width: 90%;
    margin: 50px auto;
}
/* 团队头部 */
.teamContent{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 团队成员圆列表 */
.teamContent .team-img{
    width: 753px;
    height: 418px;
    overflow: hidden;
}
.teamContent .team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-Text{
    width: 447px;
    height: 418px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 33px 0 30px;
    align-content: center;
    background-color: #F4F4F4;
    justify-content: space-between;
}
.team-Text .teamText-title{
    font-size: 18px;
    color: #333333;
    font-weight: bold;
}
.team-Text .teamText-text{
    font-size: 14px;
    color: #666666;
    margin-top: 14px;
    line-height: 28px;
    letter-spacing: 1.2px;
    padding-bottom: 20px;
    position: relative;
}
.team-Text .teamText-text::after{
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #999999;
    position: absolute;
    left: 0;
    bottom: 0;
}
.person-list{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.person-item{
    width: 280px;
    height: auto;
    margin-top: 30px;
    margin-right: calc(80px / 3);
    overflow: hidden;
}
.person-img{
    overflow: hidden;
}
.person-item:hover img{
    transform:scale(1.2);
}
.person-item:hover .personName{
    font-size: 18px;
    font-weight: 600;
}
.person-item:hover .perosonPosition{
    font-size: 16px;
}
.person-item:nth-child(4n){
    margin-right: 0;
}
.personName{
    width: 100%;
    height: auto;
    text-align: center;
}
.perosonPosition{
    width: 100%;
    height: auto;
    text-align: center;
}
/* 手机端 */
@media screen and (max-width:768px){
    .teamContent{
        flex-wrap: wrap;
    }
    .teamContent .team-img{
        width: 100%;
    }
    .team-Text{
        width: 100%;
        height: auto;
        padding: 50px 33px;
    }
    .person-list{
        justify-content: space-between;
    }
    .person-item{
        width: calc((100% - 20px) / 2);
        margin-right: 0;
    }
    .person-img{
        width: 100%;
    }
    .person-img img{
        width: 100%;
    }
}