/* 员工风采样式 */
.staff-intro {
  text-align: center;
  padding: 80px 0 60px;
}

.staff-intro h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
  letter-spacing: 2px;
}

.staff-intro .desc {
  font-size: 16px;
  line-height: 2;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* 图片集样式 */
.staff-gallery {
  margin-bottom: 100px;
}

.staff-gallery .gallery-item {
  margin-bottom: 30px;
  padding: 0 15px;
}

.staff-gallery .gallery-box {
  position: relative;
  overflow: hidden;
  background: #000;
  transition: all 0.4s ease;
}

.staff-gallery .gallery-box:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.staff-gallery .gallery-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.staff-gallery .gallery-box:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.staff-gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  padding: 30px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.staff-gallery .gallery-box:hover .gallery-overlay {
  transform: translateY(0);
}

.staff-gallery .gallery-text {
  text-align: left;
  color: #fff;
}

.staff-gallery .gallery-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.staff-gallery .gallery-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .staff-intro {
    padding: 60px 0 40px;
  }
  
  .staff-intro h2 {
    font-size: 32px;
  }
  
  .staff-gallery {
    margin-bottom: 60px;
  }
  
  .staff-gallery .gallery-box img {
    height: 280px;
  }
  
  .staff-gallery .gallery-text h4 {
    font-size: 20px;
  }
  
  .staff-gallery .gallery-overlay {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .staff-intro {
    padding: 40px 0 30px;
  }
  
  .staff-intro h2 {
    font-size: 26px;
    letter-spacing: 1px;
  }
  
  .staff-intro .desc {
    font-size: 14px;
  }
  
  .staff-gallery {
    margin-bottom: 40px;
  }
  
  .staff-gallery .gallery-box img {
    height: 220px;
  }
  
  .staff-gallery .gallery-text h4 {
    font-size: 18px;
  }
  
  .staff-gallery .gallery-text p {
    font-size: 13px;
  }
  
  .staff-gallery .gallery-overlay {
    padding: 15px;
  }
}
