/* ========================================
   因博科技 - 全站公共样式 (common.css)
   提取自150个页面的重复内联样式
   ======================================== */

/* ===== 联系CTA区域 ===== */
.news-contact-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}
.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-text h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.cta-text p { font-size: 16px; opacity: 0.8; margin: 0; }
.cta-action { display: flex; align-items: center; gap: 16px; }
.cta-phone { font-size: 22px; font-weight: 900; color: #fff; text-decoration: none; }
.cta-btn { 
  padding: 12px 24px; 
  background: #1677ff; 
  color: #fff; 
  border-radius: 8px; 
  font-weight: 700; 
  text-decoration: none; 
  transition: all 0.3s; 
}
.cta-btn:hover { 
  background: #4096ff; 
  transform: translateY(-2px); 
}

/* ===== SEO页脚 ===== */
.news-seo-footer { 
  background: #f8fafc; 
  padding: 50px 20px 30px; 
  border-top: 1px solid #e2e8f0; 
}
.seo-content { max-width: 1200px; margin: 0 auto; }
.seo-content h2 { 
  font-size: 18px; 
  color: #0f172a; 
  margin-bottom: 16px; 
  font-weight: 800; 
}
.seo-content p { 
  font-size: 14px; 
  color: #64748b; 
  line-height: 1.8; 
  margin-bottom: 24px; 
}
.seo-links { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
  margin-bottom: 30px; 
}
.seo-links a { 
  color: #1677ff; 
  text-decoration: none; 
  font-size: 13px; 
  font-weight: 600; 
}
.seo-links a:hover { text-decoration: underline; }
.seo-divider { 
  border-top: 1px solid #e2e8f0; 
  margin-bottom: 24px; 
}
.seo-bottom { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between; 
  align-items: flex-end; 
  gap: 20px; 
  font-size: 12px; 
  color: #94a3b8; 
}
.seo-address { line-height: 1.6; }

/* ===== 行业网格 ===== */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* ===== 公司页脚信息 ===== */
.footer-corp-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0 20px;
  margin-top: 40px;
}
.fci-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.fci-label {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  min-width: 80px;
}
.fci-tel {
  color: #4096ff;
  text-decoration: none;
}
.fci-tel:hover {
  color: #69b1ff;
  text-decoration: underline;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .cta-container { 
    flex-direction: column; 
    text-align: center; 
  }
  .cta-action { 
    flex-direction: column; 
    width: 100%; 
  }
  .seo-bottom { 
    flex-direction: column; 
    text-align: center; 
    align-items: center; 
  }
}
