/* 解决方案页面样式 */

/* 解决方案英雄区样式 */
.solutions-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.solutions-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.solutions-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 导航区样式 */
.solution-nav {
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.solution-nav ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-nav li {
  margin: 0;
}

.solution-nav a {
  display: block;
  padding: 20px 30px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.solution-nav a:hover,
.solution-nav a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
/* 解决方案内容区样式 */
.solution-section {
  padding: 30px 0;
}

.solution-section:nth-child(even) {
  background-color: #f8fafc;
}

/* 解决方案容器样式 */
.solution-container,
.solution-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.solution-text {
  flex: 1;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
  position: relative;
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--text-color);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--primary-color);
}

.text-center {
  text-align: center;
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* 功能特性样式 */
.solution-features {
  margin-top: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(22, 93, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.feature-content p {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-light);
  margin: 0;
}

/* 美妆和服装解决方案特定样式 */
.key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.point {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.point i {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.point h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.point p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.bg-light {
  background-color: #f8fafc !important;
}

/* 行业通用优势样式 */
.common-benefits {
  padding: 60px 0;
  background-color: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: #f8fafc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecf1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.benefit-card .icon {
  width: 70px;
  height: 70px;
  background-color: rgba(22, 93, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA区域样式 */
.solution-cta {
  margin-top: 40px;
}

.solution-cta .btn {
  margin-right: 15px;
}

.cta-section {
  background-color: #f0f7ff;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-secondary {
  background-color: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background-color: #eaf1fe;
  border-color: #165dff;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .solution-container,
  .solution-content {
    flex-direction: column;
  }

  .key-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .solutions-hero h1 {
    font-size: 2.5rem;
  }

  .solution-nav ul {
    flex-wrap: wrap;
  }

  .solution-nav a {
    padding: 15px 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}
