/* ========================================
   因博科技 - 新闻详情页面样式 (news-detail.css)
   适用于 /news-detail/*.html
   ======================================== */

body { background: #f4f6f9; }

.detail-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1677ff;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid #bae0ff;
  border-radius: 20px;
  background: #e6f4ff;
  transition: all 0.2s;
}
.detail-back:hover { background: #1677ff; color: #fff; border-color: #1677ff; }
.detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(22,119,255,0.08);
}
.detail-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.45;
  margin-bottom: 16px;
}
.detail-meta {
  font-size: 13px;
  color: #8c8c8c;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}
.detail-content p {
  font-size: 15px;
  color: #434343;
  line-height: 1.9;
  margin-bottom: 16px;
}
.detail-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1677ff;
  margin: 28px 0 12px;
}

@media (max-width: 992px) {
  .detail-card { padding: 28px 20px; }
  .detail-title { font-size: 20px; }
}
