/* 独立于全局的“其他服务”页面样式，确保内容正常显示且美观 */

.services-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 80px 0 120px 0;
  /* header/footer 避免遮挡 */
  box-sizing: border-box;
}

.services-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.services-page h1 {
  text-align: center;
  font-size: 2.2em;
  color: #1976d2;
  margin-bottom: 2em;
  font-weight: 700;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(40,60,120,0.07);
  padding: 2em 1.5em 1.7em 1.5em;
  min-width: 260px;
  max-width: 330px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  cursor: pointer;
  position: relative;
}

.service-card h3 {
  font-size: 1.23em;
  color: #1976d2;
  margin-bottom: 0.7em;
  font-weight: 600;
}

.service-card p, .service-card ol {
  color: #444;
  font-size: 1em;
  line-height: 1.7;
  margin: 0 0 0.5em 0;
}

.service-card ol {
  padding-left: 1.3em;
  margin-top: 0.3em;
}

.service-card li {
  margin-bottom: 0.32em;
}

.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,60,120,0.13);
  border-color: #1976d2;
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 1.2em;
    align-items: center;
  }
  .service-card {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
    padding: 1.3em 1em 1.2em 1em;
  }
}
