/* 推广工具页面特定样式 */
.feature-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
  background-color: white;
}

.feature-table tr:last-child td {
  border-bottom: none;
}

.feature-table tr:hover td {
  background-color: #f9f9f9;
}

.table-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
  margin-top: 3rem;
}

.section-subtitle h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* 特色应用卡片样式增强 */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color) 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .feature-table th,
  .feature-table td {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-content h3 {
    font-size: 1.1rem;
  }
}

/* 动画效果增强 */
.animate-on-scroll {
  /* opacity: 0; */
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* 交错动画效果 */
.features-grid .feature-card:nth-child(odd) {
  transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(even) {
  transition-delay: 0.2s;
}

/* CTA区域增强 */
.cta-section {
  /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); */
  color: white;
  padding: 4rem 0;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
}


.cta-section .btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
