/* 新闻详情页样式 */
.news-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem;
}

.news-detail-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.news-detail-header .chip {
  margin-bottom: 0;
}

.news-detail-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.news-date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-detail-content {
  line-height: 1.9;
}

.news-summary {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(48, 215, 255, 0.15) 0%, rgba(123, 93, 255, 0.15) 100%);
  border-radius: 16px;
  border: 1px solid rgba(48, 215, 255, 0.3);
  box-shadow: 0 4px 20px rgba(48, 215, 255, 0.1);
}

.news-body {
  color: var(--text);
  font-size: 1.1rem;
}

.news-body p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.news-detail-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.news-detail-footer .btn {
  min-width: 140px;
}

@media (max-width: 768px) {
  .news-detail {
    padding: 1.5rem;
  }
  
  .news-detail-header h1 {
    font-size: 1.75rem;
  }
  
  .news-summary {
    font-size: 1rem;
    padding: 1.5rem;
  }
  
  .news-body {
    font-size: 1rem;
  }
}

