/* 一站式助贷解决方案模块（首页 / CRM页共用） */
.slc {
  background: #fff;
  padding: 70px 0 80px;
  overflow: hidden;
}

.slc-inner {
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.slc-head {
  text-align: center;
  margin-bottom: 46px;
}

.slc-title {
  font-size: 34px;
  color: #1a2b4c;
  margin: 0 0 12px;
  font-weight: 700;
}

.slc-subtitle {
  font-size: 16px;
  color: #5a6a85;
  margin: 0;
}

.slc-line {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2f7bf6, #5ea0ff);
  margin: 18px auto 0;
}

.slc-cards {
  display: flex;
  gap: 30px;
}

.slc-card {
  flex: 1;
  display: block;
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
  border: 1px solid #e3edfb;
  border-radius: 14px;
  padding: 36px 34px 30px;
  text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease;
}

.slc-card:hover {
  box-shadow: 0 12px 32px rgba(47, 123, 246, .14);
  transform: translateY(-4px);
}

.slc-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.slc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #2f7bf6, #5ea0ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slc-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.slc-card-title {
  font-size: 22px;
  color: #1a2b4c;
  margin: 0;
  font-weight: 700;
}

.slc-card-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6a85;
  margin: 0 0 20px;
  min-height: 54px;
}

.slc-points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  gap: 10px;
}

.slc-points li {
  flex: 1;
  background: #ffffff;
  border: 1px solid #dce9fb;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 12px;
  color: #5a6a85;
  line-height: 1.5;
}

.slc-points strong {
  display: block;
  font-size: 16px;
  color: #2f7bf6;
  font-weight: 700;
}

.slc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #2f7bf6;
}

.slc-card:hover .slc-more {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .slc {
    padding: 46px 0 52px;
  }

  .slc-title {
    font-size: 24px;
  }

  .slc-subtitle {
    font-size: 14px;
  }

  .slc-cards {
    flex-direction: column;
    gap: 18px;
  }

  .slc-card {
    padding: 26px 22px 22px;
  }

  .slc-card-desc {
    min-height: 0;
  }
}
