/* 团队页面专用样式 */
.team-header {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 48px 0 32px 0;
}

.team-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.our-village-arrow {
  width: 60px;
  height: 60px;
  color: #fbbf24;
}

.team-intro-text {
  font-size: 1.2rem;
  color: #333;
  max-width: 600px;
  line-height: 1.8;
}

.team-section {
  margin: 48px 0;
}

.team-section h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.team-member {
  width: 220px;
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 24px 12px 16px 12px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.team-member:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.member-img-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  overflow: hidden;
  background: #fbbf24;
  position: relative;
}
.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.member-role {
  font-size: 0.95rem;
  color: #666;
}

.collab-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 1.1rem;
  color: #333;
  line-height: 2;
}

@media (max-width: 900px) {
  .team-list {
    gap: 24px 12px;
  }
  .team-member {
    width: 45vw;
    min-width: 160px;
    max-width: 240px;
  }
}
@media (max-width: 600px) {
  .team-header {
    font-size: 1.5rem;
  }
  .team-section h2 {
    font-size: 1.2rem;
  }
  /* 团队页移动端左右留白与居中 */
  .page-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .team-intro,
  .team-section,
  .collab-list {
    padding-left: 8px;
    padding-right: 8px;
    margin-left: auto;
    margin-right: auto;
  }
  .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .team-member {
    width: 90vw;
    min-width: 120px;
    max-width: 98vw;
    padding: 16px 4px 12px 4px;
  }
  .member-img-container {
    width: 80px;
    height: 80px;
  }
} 

