/* index.html 首页专用样式 */

.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-top: -74px;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-swiper .swiper-slide {
  width: 100vw;
  height: 100vh;
}
.hero-swiper .swiper-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  pointer-events: none;
}
.hero-content > * {
  pointer-events: auto;
}
.hero-content .hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-buttons .btn {
  padding: 10px 28px;
  font-size: 1rem;
  text-transform: none;
  font-weight: 500;
  border-radius: 25px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}
.hero-stats .stat-item {
  text-align: center;
  min-width: 120px;
}
.hero-stats .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 5px;
}
.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.features-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.feature-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}
.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0ebf9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.feature-icon-wrapper i {
  font-size: 1.8rem;
  color: #6f42c1;
}
.feature-content-wrapper {
  flex-grow: 1;
  text-align: left;
}
.feature-card .feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.feature-card .feature-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.services-section {
  background-color: #f8f9fa;
  padding-top: 80px;
  padding-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service-card-image-container img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.service-card-content {
  padding: 20px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card .service-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.service-card .service-description {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-card .service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.service-card .service-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}
.service-card .service-footer .btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.team-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.team-card {
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(31, 38, 135, 0.08);
  border: none;
  text-align: left;
  overflow: hidden;
}
.team-card .team-avatar {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: block;
}
.team-card .team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}
.team-card .team-specialty {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.team-card .team-experience {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.team-card .team-intro {
  height: 3.2em;
  overflow: hidden;
  display: -webkit-box;
}
.team-intro .team-intro-ellipsis {
  font-size: 0.98rem;
  color: #444;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
}
.team-card .team-rating {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  text-align: left;
  gap: 5px;
}

.team-card .team-rating h6 {
  margin-bottom: 0;
}

.team-card .fa-star {
  color: #ffc107;
  font-size: 1rem;
  margin-right: 2px;
}
.team-card:hover {
  border-color: #ddd;
  transform: translateY(-3px);
}
.team-card-image-container img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
  border: none;
}
.team-card .team-member-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}
.team-card .team-member-specialty {
  font-size: 0.85rem;
  color: #6f42c1;
  margin-bottom: 4px;
  font-weight: 500;
}
.team-card .team-member-experience {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 10px;
}
.team-card .team-member-rating {
  margin-top: 5px;
}
.team-card .team-member-rating .fa-star {
  color: #ffc107;
  font-size: 0.9rem;
  margin: 0 1px;
}
.team-card .team-member-rating .far.fa-star {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin: 0 1px;
}
.testimonials-section {
  background-color: #f8f9fa;
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.testimonial-quote-icon {
  font-size: 3rem;
  color: #6f42c1;
  margin-bottom: 15px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: normal;
  flex-grow: 1;
}
.testimonial-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.testimonial-author {
  display: inline;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}
.testimonial-rating .fa-star {
  color: #ffc107;
  font-size: 0.95rem;
  margin-left: 2px;
}
.testimonial-rating .far.fa-star {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-left: 2px;
}
.booking-process-section {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.booking-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: start;
}
.process-step-card {
  background-color: transparent;
  padding: 15px;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  transition: none;
}
.process-step-card:hover {
  transform: none;
  box-shadow: none;
}
.process-step-card .process-step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #6f42c1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.process-step-card .process-step-icon i {
  font-size: 1.8rem;
  color: #fff;
}
.process-step-card .process-step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.process-step-card .process-step-description {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}
.team-card-content {
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  height: 180px; /* 固定内容区高度，可根据实际调整 */
}




