/* 服务团队页面样式 */

/* 团队介绍部分 */
.team-intro-section {
  padding: 60px 0;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.team-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* 团队统计数据 */
.team-stats {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.stat-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background-color: #e0e0e0;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-number span {
  font-size: 30px;
}

.stat-label {
  font-size: 16px;
  color: #666;
}

/* 行业专家部分 */
.experts-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.expert-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.expert-image {
  height: 250px;
  overflow: hidden;
}

.expert-image .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.expert-card:hover .expert-image .img-placeholder {
  transform: scale(1.1);
}

.expert-info {
  padding: 20px;
}

.expert-info h3 {
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-size: 20px;
}

.expert-title {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 15px;
}

.expert-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.expert-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expert-specialties span {
  background-color: #f0f0f0;
  color: #666;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* 核心团队部分 */
.core-team-section {
  padding: 60px 0;
}

.team-departments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.department {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.department:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.department-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.department h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 18px;
}

.department p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-count {
  display: inline-block;
  background-color: var(--light-gray);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--secondary-color);
}

/* 企业荣誉部分 */
.honors-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.honor-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.honor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.honor-image {
  height: 200px;
  overflow: hidden;
}

.honor-image .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.honor-card:hover .honor-image .img-placeholder {
  transform: scale(1.1);
}

.honor-info {
  padding: 20px;
}

.honor-info h3 {
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-size: 18px;
}

.honor-date {
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.honor-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 加入我们部分 */
.join-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
}

.join-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.join-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.join-content .btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.join-content .btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 992px) {
  .stat-item {
    padding: 0 30px;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .team-intro-section,
  .experts-section,
  .core-team-section,
  .honors-section,
  .join-section {
    padding: 40px 0;
  }
  
  .team-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    padding: 15px 0;
  }
  
  .stat-item:not(:last-child):after {
    display: none;
  }
  
  .experts-grid,
  .team-departments,
  .honors-grid {
    grid-template-columns: 1fr;
  }
  
  .join-content h2 {
    font-size: 28px;
  }
}