/* PC 新闻资讯页面样式 */

.pc-news-page {
  max-width: 1200px;
  margin: 0 auto;
}

/* Banner 区域 */
.pc-news-banner {
  background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pc-news-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.pc-news-banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}

.pc-news-banner-tag {
  display: inline-block;
  background: #fff;
  color: #3b82f6;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pc-news-banner-desc {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
  text-align: justify;
}

/* 新闻列表 */
.pc-news-container {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px;
}

.pc-news-list-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* 新闻项 */
.pc-news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: all 0.2s;
}

.pc-news-item:hover {
  background: #fafafa;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}

.pc-news-item:last-child {
  border-bottom: none;
}

.pc-news-cover {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.pc-news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-news-no-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
}

.pc-news-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pc-news-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-news-intro {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-news-date {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
}

/* 加载更多 */
.pc-load-more {
  text-align: center;
  padding: 16px 0;
  font-size: 13px;
  color: #9ca3af;
}

/* 响应式 */
@media (max-width: 768px) {
  .pc-news-item {
    flex-direction: column;
  }

  .pc-news-cover {
    width: 100%;
    height: 180px;
  }

  .pc-news-banner h2 {
    font-size: 24px;
  }
}
