/* 新闻详情页专属样式 */
.news-detail-banner {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-color);
}
.news-detail-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.news-detail-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(15, 41, 102, 0.92));
  z-index: 1;
}
.news-detail-banner .banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}
.news-detail-banner .banner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-detail-banner .banner-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 600px;
}
.news-detail-banner .breadcrumb {
  font-size: 14px;
  opacity: 0.85;
}
.news-detail-banner .breadcrumb a {
  color: #ffffff;
  transition: all 0.2s ease;
}
.news-detail-banner .breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}
.news-detail-banner .breadcrumb .separator {
  margin: 0 8px;
  opacity: 0.7;
}
/* 文章正文链接样式 */
.article-detail .article-body a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.article-detail .article-body a:hover {
  color: var(--accent-color);
}
/* 移动端适配 */
@media (max-width: 768px) {
  .news-detail-banner {
    height: 240px;
  }
  .news-detail-banner .banner-title {
    font-size: 24px;
  }
  .news-detail-banner .banner-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .news-detail-banner .breadcrumb {
    font-size: 13px;
  }
}