body {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
}
a {
text-decoration: none;
color: inherit;
cursor: pointer;
margin: 0;
padding: 0;
}
.team-web{
  width: 100%;
}
.team-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.main-first{
  width: 100%;
  padding-top: 133px;
  padding-bottom: 158px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
}
.team-main .first-left{
  width: 540px;
  height: auto;
}
.first-left-out{
    width: 540px;
  height: auto;
  overflow: hidden;
}
.team-main .first-right{
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 21px;

}
.team-main .first-right .right-title{
height: auto;
font-size: 40px;
font-family: Microsoft YaHei, Microsoft YaHei-Bold;
font-weight: 700;
text-align: left;
color: #000000;
line-height: 34px;
}
.team-main .first-right .right-intro{
height: 26px;
font-size: 20px;
font-family: Microsoft YaHei, Microsoft YaHei-Regular;
font-weight: 400;
text-align: left;
color: #9f9f9f;
line-height: 34px;
margin-top: 40px;
}
.team-main .first-right .right-text{
  width: 900px;
font-size: 16px;
font-family: Microsoft YaHei, Microsoft YaHei-Light;
font-weight: 300;
text-align: left;
color: #343434;
line-height: 50px;
margin-top: 61px;
}
.team-main  .main-second{
  display: flex;
  justify-content: center;
  padding-top: 155px;
  padding-bottom: 158px;
  width: 100%;
  background: #f6f6f6;
  flex-wrap: wrap;
  gap: 4.4375rem;
}
.team-main  .second-peoples{
  display: flex;
  flex-direction: column;
}
.team-main  .second-peoples .people-pic{
  width: 540px;
height: 650px;
} 
.team-main  .second-peoples .people-name{
height: 52px;
font-size: 40px;
font-family: Microsoft YaHei, Microsoft YaHei-Bold;
font-weight: 700;
text-align: left;
color: #000000;
line-height: 34px;
margin-top: 61px;
}
.team-main  .second-peoples .people-job{
height: 26px;
font-size: 20px;
font-family: Microsoft YaHei, Microsoft YaHei-Regular;
font-weight: 400;
text-align: left;
color: #9f9f9f;
line-height: 34px;
margin-top: 26px;
}
/* 响应式媒体查询 */
@media (max-width: 1200px) {

}

@media (max-width: 992px) {
  .team-main .first-right{
    margin-top: 0;
  }
  .team-main .first-right .right-text{
    width: 80%;
  }
}

@media (max-width: 768px) {
.team-main .main-first{
  display: flex;
  flex-direction: column;
  align-items: center;
    padding-top: 80px;
  padding-bottom: 80px;
  gap: 1.25rem;
}
.team-main .first-left-out{
  width: 80%;
  height: auto;
    display: flex;
  justify-content: center;
  align-items: flex-start;
}
.team-main .first-left{
  width: 100%;
  height: auto;

}
.team-main .right-text{
  text-align: center;
}
.team-main .first-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0;
}
  .team-main  .second-peoples .people-pic{
    width: 80%;
    height: auto;
  }
  .team-main .main-second{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    padding-top: 20px;
  padding-bottom: 50px;
  }
  .team-main .second-peoples{
    align-items: center;
    gap: .625rem;
  }
  .team-main  .second-peoples .people-name{
    margin-top: .625rem;
    font-size: 1.875rem;
  }
  .team-main  .second-peoples .people-job{
    margin-top: .9375rem;
  }
  .team-main .first-right .right-title{
    font-size: 1.5625rem;
  }
}

@media (max-width: 480px) {

}
.team-main .first-left img {
  transition: transform 0.5s;
}

.team-main .first-right {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.team-main .second-peoples {
  transition: opacity 2s, transform 0.5s;
}

.team-main .first-left img:hover {
  transform: scale(1.1);
}

.team-main .first-right.show {
  opacity: 1;
  transform: translateY(0);
}

.team-main .second-peoples.show {
  opacity: 1;
  transform: translateY(0);
}
.team-main .second-peoples {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s, transform 2s;
}

.team-main .second-peoples:hover {
  transform: scale(1.1);
}

.team-main .second-peoples.show {
  opacity: 1;
  transform: translateY(0);
}