/* 服务内容页面样式 */

/* 页面标题 */
.page-title {
  background-color: var(--light-color);
  padding: 2rem 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  display: none;
}

.page-title h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--primary-color);
  transition: all 0.3s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #999;
}

.breadcrumb .current {
  color: var(--dark-color);
}

/* 全宽Banner样式已移至styles.css */

/* 服务概述 */
.overview-content {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3rem;
  align-items: center;
}

.overview-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.overview-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.overview-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  flex: 0 0 calc(50% - 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* 服务内容区块 */
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-content.reverse .service-text {
  direction: ltr;
}

.service-content.reverse .service-image {
  direction: ltr;
}

.service-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s;
}

.service-image img:hover {
  transform: scale(1.03);
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.service-text h4 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}

.service-text h4:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.service-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.feature-list {
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  gap: 0.8rem;
}

.feature-list li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 1.5rem;
  text-align: center;
}

.service-text .btn {
  margin-top: 1.5rem;
}

/* 定制流程 */
.process-steps {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-content h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9rem;
  color: #666;
}

/* 服务支持区块 */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.support-item {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s;
}

.support-item:hover {
  transform: translateY(-10px);
}

.support-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.support-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.support-item p {
  color: #666;
}

/* 客户证言 */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  padding: 2rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: rgba(0, 116, 217, 0.1);
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.author-info span {
  font-size: 0.9rem;
  color: #666;
}

/* FAQ区域 */
.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
  padding-right: 2rem;
}

.faq-toggle {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  line-height: 1.8;
}

.faq-item.active .faq-question {
  border-bottom: 1px solid #eee;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .overview-content,
  .service-content,
  .service-content.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-content.reverse {
    direction: ltr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  
  .highlight-item {
    flex: 0 0 100%;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .overview-content,
  .service-content,
  .service-content.reverse {
    gap: 1.5rem;
  }
  
  .service-text h3 {
    font-size: 1.5rem;
  }
  
  .service-text h4 {
    font-size: 1.2rem;
  }
  
  .author-image {
    width: 50px;
    height: 50px;
  }
} 