/* =========================
   Banner 区域
   ========================= */
.banner-section {
    width: 100%;
}

.banner {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    max-width: 1200px;
    padding: 0 20px;
}

.banner h1 {
    font-size: 42px;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 
        0 1px 0 rgba(0,0,0,0.3),
        0 2px 0 rgba(0,0,0,0.25),
        0 3px 0 rgba(0,0,0,0.2),
        0 4px 0 rgba(0,0,0,0.15),
        0 5px 10px rgba(0,0,0,0.3),
        0 10px 20px rgba(0,0,0,0.2);
    font-weight: 700;
    letter-spacing: 2px;
}

/* ID 选择器 - 最高优先级 */
#solutions-title {
    font-size: 42px !important;
    color: #ffffff !important;
    text-shadow: 
        0 1px 0 rgba(0,0,0,0.3),
        0 2px 0 rgba(0,0,0,0.25),
        0 3px 0 rgba(0,0,0,0.2),
        0 4px 0 rgba(0,0,0,0.15),
        0 5px 10px rgba(0,0,0,0.3),
        0 10px 20px rgba(0,0,0,0.2) !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
}

.banner p {
    font-size: 14px;
    color: #ccd3e0;
    margin: 0;
}

/* 卡片容器区域 */
.solution-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.solution-card-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* 卡片样式 */
.solution-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(26, 43, 72, 0.12);
}

/* 图片占位（你可换成自己的图） */
.card-icon {
  width: 70px;
  height: 70px;
  background: #e8f0fe;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 26px;
}

.solution-card h3 {
  font-size: 18px;
  color: #1a2b48;
  margin-bottom: 12px;
}
.solution-card .desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.solution-card .tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.solution-card .btn-detail {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s ease;
  margin-top: auto;
  align-self: center;
}

.solution-card .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, .4);
}
.solution-card .tags span {
  font-size: 12px;
  padding: 4px 8px;
  background: #f1f5fe;
  color: #2563eb;
  border-radius: 4px;
}
.solution-card .btn {
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  color: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.solution-card .btn:hover {
  background: #2563eb;
  color: #fff;
}

/* =========================
   查看详情按钮
   ========================= */

/* ======================================
   解决方案页响应式媒体查询
   ====================================== */

/* 平板适配 */
@media (max-width: 1024px) {
    .solution-card-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banner h1,
    #solutions-title {
        font-size: 36px !important;
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    /* Banner缩小 */
    .banner {
        height: 140px;
    }
    
    .banner h1,
    #solutions-title {
        font-size: 28px !important;
    }
    
    .banner p {
        font-size: 13px;
    }
    
    /* 卡片单列布局 */
    .solution-card-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-section {
        padding: 40px 20px;
    }
    
    .solution-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .solution-card h3 {
        font-size: 17px;
    }
    
    .solution-card .desc {
        font-size: 13px;
    }
    
    .solution-card .btn-detail {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .banner {
        height: 120px;
    }
    
    .banner h1,
    #solutions-title {
        font-size: 24px !important;
    }
    
    .solution-card {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .solution-card h3 {
        font-size: 16px;
    }
}