.team-icon1 {
    width: 90px;
    height: 90px;
  
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    
}

.team-icon1 i {
    font-size: 2.8rem;
    color: white;
}

/* 修改后的图片样式 */
.team-icon1 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
   
    overflow: hidden; /* 确保图片不会超出圆形区域 */
    background: white; /* 添加白色背景 */
    
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填充整个区域 */
    border-radius: 50%;
}

/* 或者如果希望图片有背景渐变 */
.team-icon1.with-gradient {

    padding: 10px; /* 添加内边距让图片看起来小一些 */
}

.team-icon1.with-gradient .team-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 包含整个图片 */
    border-radius: 0; /* 去掉圆形 */
}