/* 新闻详情页样式 */
/* 页面标题 */
.page-banner {
  height: 324px;
  background-image: url('../images/about_bg.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
}

.page-banner h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
  font-size: 18px;
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.news-detail {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.news-meta {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.news-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.news-body {
  border-radius: 5px;
  text-indent: 2em;
  line-height: 30px;
}

.news-body img {
  display: block;
  margin: 0 auto;
}

.news-image {
  margin-bottom: 30px;
  text-align: center;
}

.news-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.news-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-indent: 2em;
  font-size: 16px;
}

/* 相关阅读 */
.related-news {
  margin-top: 40px;
}

.related-news h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.related-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.related-item {
  width: 32%;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-item a {
  display: block;
  color: #333;
  text-decoration: none;
}

.related-image {
  height: 160px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-item:hover .related-image img {
  transform: scale(1.05);
}

.related-title {
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.related-date {
  padding: 0 15px 15px;
  color: #999;
  font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news-title {
      font-size: 24px;
  }
  
  .related-item {
      width: 48%;
  }
}

@media (max-width: 576px) {
  .news-content {
      padding: 20px;
  }
  
  .news-title {
      font-size: 20px;
  }
  
  .related-item {
      width: 100%;
  }
} 