/* ============================================================
   行业推广页专用样式 - zt_hy.css
   哇鸥网络 · 小红书行业解决方案
   色彩体系：
     餐饮 #E85D3A (火辣橙红)
     美妆 #D4446A (玫瑰粉红)
     母婴 #4A9E8E (薄荷青绿)
     旅游 #3B82C4 (天空湛蓝)
   ============================================================ */

/* ---- 通用行业页组件 ---- */

/* 行业Hero区 */
.hy-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.hy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hy-hero-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hy-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hy-hero-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hy-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hy-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* 行业色装饰 */
.hy-accent-bar {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 0 auto 16px;
}

/* 区块标题 */
.hy-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.hy-section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
}
.hy-section-title p {
  font-size: 15px;
  color: #888;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* 通用区块间距 */
.hy-section {
  padding: 60px 0;
}
.hy-section-alt {
  background: #f8f9fa;
}

/* ---- 必要性区块 ---- */
.hy-why {
  padding: 60px 0;
}
.hy-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hy-why-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 16px;
}
.hy-why-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 12px;
}
.hy-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hy-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}
.hy-stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.hy-stat-label {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* ---- 服务卡片 ---- */
.hy-services {
  padding: 60px 0;
}
.hy-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hy-service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hy-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.hy-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #fff;
}
.hy-service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
}
.hy-service-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ---- 预算表 ---- */
.hy-pricing {
  padding: 60px 0;
}
.hy-pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hy-pricing-table thead th {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.hy-pricing-table tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: #444;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.hy-pricing-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.hy-pricing-table tbody tr:hover {
  background: #f5f5f5;
}

/* ---- 案例区块 ---- */
.hy-cases {
  padding: 60px 0;
}
.hy-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hy-case-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  border-left: 4px solid;
}
.hy-case-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px;
}
.hy-case-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.hy-case-card .hy-case-note {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
  font-style: italic;
}

/* ---- 流程区块 ---- */
.hy-process {
  padding: 60px 0;
}
.hy-process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hy-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}
.hy-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.hy-step-text {
  font-size: 14px;
  color: #444;
  white-space: nowrap;
}
.hy-step-arrow {
  font-size: 18px;
  color: #ccc;
}

/* ---- FAQ区块 ---- */
.hy-faq {
  padding: 60px 0;
}
.hy-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.hy-faq-item {
  border-bottom: 1px solid #eee;
  padding: 16px 0;
}
.hy-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hy-faq-q::after {
  content: '+';
  font-size: 20px;
  color: #ccc;
  transition: transform 0.2s;
}
.hy-faq-item.open .hy-faq-q::after {
  content: '−';
}
.hy-faq-a {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  display: none;
}
.hy-faq-item.open .hy-faq-a {
  display: block;
}

/* ---- CTA区块 ---- */
.hy-cta {
  padding: 60px 0;
  text-align: center;
}
.hy-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  color: #fff;
}
.hy-cta-inner h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}
.hy-cta-inner p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0 0 20px;
  line-height: 1.6;
}
.hy-cta-contact {
  font-size: 16px;
  margin: 0 0 4px;
}
.hy-cta-contact strong {
  font-size: 20px;
}
.hy-cta-btn {
  display: inline-block;
  padding: 12px 36px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  margin-top: 16px;
}
.hy-cta-btn:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
}

/* ---- 相关推荐 ---- */
.hy-links {
  padding: 40px 0;
}
.hy-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hy-links-group h4 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
}
.hy-links-group a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  line-height: 2;
  margin-right: 8px;
}
.hy-links-group a:hover {
  color: inherit;
  text-decoration: underline;
}

/* ============================================================
   行业色彩体系
   ============================================================ */

/* 餐饮 - 火辣橙红 #E85D3A */
.hy-canyin .hy-accent-bar,
.hy-canyin .hy-stat-number { background: #E85D3A; color: #E85D3A; }
.hy-canyin .hy-service-icon { background: #E85D3A; }
.hy-canyin .hy-pricing-table thead th { background: #E85D3A; }
.hy-canyin .hy-case-card { border-left-color: #E85D3A; }
.hy-canyin .hy-step-num { background: #E85D3A; }
.hy-canyin .hy-cta-inner { background: linear-gradient(135deg, #E85D3A 0%, #D94A2A 100%); }
.hy-canyin .hy-links-group a:hover { color: #E85D3A; }
.hy-canyin .hy-faq-q:hover { color: #E85D3A; }

/* 美妆 - 玫瑰粉红 #D4446A */
.hy-meizhuang .hy-accent-bar,
.hy-meizhuang .hy-stat-number { background: #D4446A; color: #D4446A; }
.hy-meizhuang .hy-service-icon { background: #D4446A; }
.hy-meizhuang .hy-pricing-table thead th { background: #D4446A; }
.hy-meizhuang .hy-case-card { border-left-color: #D4446A; }
.hy-meizhuang .hy-step-num { background: #D4446A; }
.hy-meizhuang .hy-cta-inner { background: linear-gradient(135deg, #D4446A 0%, #C23456 100%); }
.hy-meizhuang .hy-links-group a:hover { color: #D4446A; }
.hy-meizhuang .hy-faq-q:hover { color: #D4446A; }

/* 母婴 - 薄荷青绿 #4A9E8E */
.hy-muying .hy-accent-bar,
.hy-muying .hy-stat-number { background: #4A9E8E; color: #4A9E8E; }
.hy-muying .hy-service-icon { background: #4A9E8E; }
.hy-muying .hy-pricing-table thead th { background: #4A9E8E; }
.hy-muying .hy-case-card { border-left-color: #4A9E8E; }
.hy-muying .hy-step-num { background: #4A9E8E; }
.hy-muying .hy-cta-inner { background: linear-gradient(135deg, #4A9E8E 0%, #3A8A7A 100%); }
.hy-muying .hy-links-group a:hover { color: #4A9E8E; }
.hy-muying .hy-faq-q:hover { color: #4A9E8E; }

/* 旅游 - 天空湛蓝 #3B82C4 */
.hy-lvyou .hy-accent-bar,
.hy-lvyou .hy-stat-number { background: #3B82C4; color: #3B82C4; }
.hy-lvyou .hy-service-icon { background: #3B82C4; }
.hy-lvyou .hy-pricing-table thead th { background: #3B82C4; }
.hy-lvyou .hy-case-card { border-left-color: #3B82C4; }
.hy-lvyou .hy-step-num { background: #3B82C4; }
.hy-lvyou .hy-cta-inner { background: linear-gradient(135deg, #3B82C4 0%, #2A6DA8 100%); }
.hy-lvyou .hy-links-group a:hover { color: #3B82C4; }
.hy-lvyou .hy-faq-q:hover { color: #3B82C4; }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 991px) {
  .hy-why-grid { grid-template-columns: 1fr; }
  .hy-why-stats { grid-template-columns: 1fr 1fr; }
  .hy-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hy-cases-grid { grid-template-columns: 1fr; }
  .hy-links-grid { grid-template-columns: 1fr 1fr; }
  .hy-hero-content h1 { font-size: 28px; }
  .hy-process-steps { flex-direction: column; align-items: center; }
  .hy-step-arrow { transform: rotate(90deg); }
}
@media (max-width: 767px) {
  .hy-hero { min-height: 240px; padding: 40px 16px; }
  .hy-hero-content h1 { font-size: 24px; }
  .hy-hero-content p { font-size: 15px; }
  .hy-services-grid { grid-template-columns: 1fr; }
  .hy-why-stats { grid-template-columns: 1fr; }
  .hy-links-grid { grid-template-columns: 1fr; }
  .hy-section-title h2 { font-size: 22px; }
  .hy-section { padding: 40px 0; }
  .hy-cta-inner { padding: 28px 20px; }
  .hy-pricing-table { font-size: 13px; }
  .hy-pricing-table thead th,
  .hy-pricing-table tbody td { padding: 10px 8px; }
}
