.teamRoleCard{
  display: flex;
  margin: 80px 0;
}
.teamRoleCardImg{
  width: 480px;
  height: 576px;
  overflow: hidden;
}
.teamRoleCardImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.teamContentRole{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teamRoleCardInfoName{
  font-family: PingFangSC-Semibold;
  font-size: 32px;
  color: #151F41;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.teamRoleCardInfoText01{
  width: fit-content;
  height: auto;
  margin-bottom: 32px;
}
.teamRoleCardInfoText01 div{
  font-family: PingFangSC-Light;
  font-size: 15px;
  color: #151F41;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 200;
}
.teamRoleCardInfo{
  margin-left: 98.71px;
  margin-top: 28px;
}
.teamRoleCardLine{
  width: 100%;
  height: 1px;
  border: 1px solid rgba(237,237,237,1);
  margin-bottom: 38px;
}
.teamRoleCardInfoText02{
  width: 530px;
  white-space: wrap;
  font-family: PingFangSC-Regular;
  font-size: 14px;
  color: #696A6C;
  letter-spacing: 0;
  text-align: justify;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 20px;
}
.teamContentTitleBox{
  width: 100%;
  height: 125px;
  background-image: linear-gradient(180deg, #F4F4F4 0%, #FFFFFF 100%);
  display: flex;
  justify-content: center;
  margin-bottom: 62px;
}
.teamContent01 .teamContentTitleBox .teamContentTitle{
  width: fit-content;
  height: 45px;
  margin-top: 66px;
  font-family: PingFangSC-Semibold;
  font-size: 32px;
  color: #151F41;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
}
.teamContent02 .teamContentTitle{
  width: fit-content;
  height: 45px;
  font-family: PingFangSC-Semibold;
  font-size: 32px;
  color: #151F41;
  letter-spacing: 0;
  text-align: center;
  font-weight: 600;
  margin-top: 26px;
  margin-bottom: 76px;
}
.teamCardList{
  display: grid;
  grid-template-columns: repeat(3, 334px);
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  gap:94px;
}
.teamCard{
  width: 334px;
  height: 215px;
  border-bottom: 1px solid rgba(228,228,228,1);
  display: flex;
}
.teamCardImg{
  width: 155px;
  height: 167px;
  background-color: #86888B;
  
  overflow:hidden;
  border-radius:6px;
}
.teamCardImg img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.teamCardInfo{
  margin-left: 29px;
  margin-top: 5px;
}
.teamCardInfoName{
  font-family: PingFangSC-Medium;
  font-size: 20px;
  color: #343434;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 19px;
}
.teamCardInfoText{
  margin-bottom: 44px;
}
.teamCardInfoText div{
  font-family: PingFangSC-Light;
  font-size: 15px;
  color: #4D4D4D;
  letter-spacing: 0;
  line-height: 26px;
  font-weight: 200;
}
.teamCardInco{
  width: 20px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
}
.teamCardInco img{
  width: 100%;
  height: 100%;
  object-fit: contain
}
.teamContent02{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.teamContainer>.teamContent02:last-child{
  margin-bottom: 100px;
}
    /* 弹出层样式 */
    .popup {
      display: none; /* 默认隐藏 */
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 300px;
      background-color: #fff;
      border: 1px solid #ccc;
      z-index: 9999;
      overflow: hidden;
      border-radius: 5px;
      transition: transform 0.3s ease; /* 添加过渡效果 */
    }
    .popup-image,.popup-text{
      margin-top: 20px;
    }
    /* 左侧图片样式 */
    .popup-image {
      float: left;
      width: 200px;
      height: 200px;
      overflow: hidden;
      background-color: #86888B;
      margin-left: 40px;
      border-radius: 6px;
    }
  
    .popup-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  
    /* 右侧文字样式 */
    .popup-text {
      width: fit-content;
      height: 100%;
      padding: 20px;
      box-sizing: border-box;
      overflow-y: auto;
    }
  
    /* 第一层文字样式 */
    .popup-text .layer1 {
      margin-bottom: 20px;
    }
  
    /* 第二层文字样式 */
    .popup-text .layer2 {
      margin-top: 20px;
    }
    .layer1>div:nth-child(1){
      font-size: 20px;
      color: #343434;
      letter-spacing: 0;
      line-height: 24px;
      font-weight: 500;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .layer1>div:nth-child(2) div{
      font-family: PingFangSC-Light;
      font-size: 15px;
      color: #4D4D4D;
      letter-spacing: 0;
      line-height: 26px;
      font-weight: 200;
    }
    .layer2{
      color: #828282;
      font-size: 13px;
    }
    .closeButtonBox{
      display: flex;
      justify-content: space-between;
    }
    .closeButtonBox>div:nth-child(2){
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 30px;
      font-size: 16px;
      cursor: pointer;
    }
    .teamCardInco-0{
      width: 20px;
      height: 18px;
      overflow: hidden;
      cursor: pointer;
    }

    .teamCardInco-0 img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .teamCardInco-1 {
        width: 20px;
        height: 18px;
        overflow: hidden;
        cursor: pointer;
    }

    .teamCardInco-1 img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .teamCardInco-2 {
        width: 20px;
        height: 18px;
        overflow: hidden;
        cursor: pointer;
    }

    .teamCardInco-2 img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }
    @media(max-width:1024px){
      .teamRoleCardInfoText02 {width: 340px;}
      .teamCardList {grid-template-columns: repeat(2, 334px);}
    }
    @media(max-width:990px){
      .teamCardList {grid-template-columns: repeat(1, 334px);gap:44px;}
      .teamRoleCard {flex-direction: column;width:100%;align-items: center;}
      .teamRoleCardImg {width: 380px;height: 376px;}
      .teamRoleCardInfo{margin-left: 0;}
      .teamRoleCardInfoText01 {width: 100%;}
      .teamRoleCardInfoName,.teamRoleCardInfoText01 div{text-align:center;}
      .popup{width:370px}
      .popup-image{width:160px;height:auto;}
      .popup-image, .popup-text { margin-top: 20px;}
    }