﻿/* 解决方案页面样式 */

.industry-intro {
  text-align: center;
  margin: 40px 0 24px 0;
}

.industry-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.industry-desc {
  color: #666;
  font-size: 1.1rem;
}

.solutions-section {
  max-width: 1100px;
  margin: 0 auto 48px auto;
  padding: 0 16px;
}

.solutions-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: center;
}

.solution-card {
  width: 39%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s;
  height: 300px;
}

.solution-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.solution-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.solution-name {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 16px 0;
}