/* 联系我们页面样式 */
.contact-content {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-content h2 {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.contact-content h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #e63946;
  margin: 15px auto 0;
}

.contact-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  padding-right: 1460px;
}

.contact-section h1 {
  letter-spacing: -1px;
  margin: 20px 0;
}

/* 联系方式部分 */
.contact-info {
  position: relative;
}

.contact-info::before {
  content: '';
  display: block;
  width: 4px;
  height: 46px;
  position: absolute;
  top: 8%;
  left: -10px;
  background-color: #e63946;
}

.contact-info::after {
  content: '';
  display: block;
  width: 4px;
  height: 46px;
  position: absolute;
  top: 108%;
  left: -10px;
  background-color: #e63946;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
}

.contact-info li strong {
  color: #333;
  width: 80px;
  display: inline-block;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .contact-content {
    padding: 40px 0;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .contact-section {
    padding: 20px;
  }

  .service-network ul {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    align-self: stretch;
  }
}