/* 成功案例模块样式 */
.success-cases-section {
  background: #f7fafd;
}
.section-title{
	padding-top: 40px;
}
/* 案例卡片采用产品卡片风格 */
.case-grid {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-sizing: border-box;
}
.case-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(35,140,255,0.07);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 340px;
  width: 100%;
  margin: 0;
}
.case-item:hover {
  transform: translateY(-5px);
}
.case-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.case-item:hover .case-image img {
  transform: scale(1.05);
}
.case-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 12px 16px 12px;
  text-align: center;
  min-height: 80px;
}
.case-info h3 {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 0.2rem;
  font-weight: 700;
  word-break: break-word;
}

@media (min-width: 1600px) {
  .case-grid { width: 85%; }
}
@media (min-width: 2000px) {
  .case-grid { width: 80%; max-width: 2000px; }
}
@media (max-width: 1200px) {
  .case-grid { width: 100%; padding-left: 16px; padding-right: 16px; gap: 18px; }
  .case-item { height: 300px; }
  .case-image { height: 140px; }
}
@media (max-width: 992px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .case-item { height: 260px; }
  .case-image { height: 110px; }
}
@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; padding-left: 8px; padding-right: 8px; gap: 8px; }
  .case-item { height: auto; }
  .case-image { height: 180px; }
}

/* 移除极简风格样式 */
/* .case-simple, .case-simple-img, .case-simple-title, .case-simple-desc { display: none !important; } */

/* 成功案例模块样式 */
.success-cases-section {
  background: #f7fafd;
}
.case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.case-card:hover {
  box-shadow: 0 8px 32px rgba(35,140,255,0.13);
}
.case-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #e6f0fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.case-card:hover .case-img {
  transform: scale(1.05);
}
.case-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.case-desc {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.btn-case-detail {
  background: #238cff;
  color: #fff;
  border-radius: 6px;
  padding: 0.4rem 1.2rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  display: inline-block;
}
.btn-case-detail:hover {
  background: #1766c2;
  color: #fff;
}
@media (max-width: 992px) {
  .case-img-wrap { height: 140px; }
}
@media (max-width: 576px) {
  .case-img-wrap { height: 100px; }
}

/* 极简风格成功案例展示，样式与新闻列表一致 */
.case-simple {
  text-align: center;
  margin-bottom: 32px;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.case-simple:hover {
  box-shadow: 0 4px 16px rgba(35,140,255,0.08);
}
.case-simple-img {
  width: 100%;
  aspect-ratio: 1.2/1;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 18px;
  background: #bdbdbd;
  box-shadow: none;
}
.case-simple-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.2rem;
}
.case-simple-desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
  min-height: 2.5em;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .case-simple-img { aspect-ratio: 16/9; }
  .case-simple-title { font-size: 1.1rem; }
  .case-simple-desc { font-size: 0.95rem; }
}
@media (max-width: 576px) {
  .case-simple-img { aspect-ratio: 1.2/1; }
  .case-simple-title { font-size: 1rem; }
  .case-simple-desc { font-size: 0.9rem; }
} 