.page-article-list .plan-page {
  min-height: 100vh;
  background: #fff;
}

/* 文章内容区域样式 */
.page-article-list .article-content {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.page-article-list .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.page-article-list .content-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #a52a2a;
}

/* 文章列表样式 */
.page-article-list .article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.page-article-list .article-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.page-article-list .article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.page-article-list .article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.page-article-list .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-article-list .article-item:hover .article-image img {
  transform: scale(1.05);
}

.page-article-list .article-content-text {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-article-list .article-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 44px;
}

.page-article-list .article-date {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* 分页样式 */
.page-article-list .pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-article-list .related-news {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  margin-top: 40px;
  padding: 0 24px 20px;
}

.page-article-list .related-news-header {
  border-bottom: 1px solid #efefef;
  margin: 0 -24px 16px;
}

.page-article-list .related-news-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff5c62, #ff2d3f);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 36px;
  position: relative;
}

.page-article-list .related-news-badge::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 22px solid #ff2d3f;
}

.page-article-list .related-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 36px;
}

.page-article-list .related-news-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e5e5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-article-list .related-news-item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.page-article-list .related-news-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 50%;
  background: #ff2d3f;
  position: relative;
}

.page-article-list .related-news-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.page-article-list .related-news-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-article-list .related-news-item:hover {
  color: #ff2d3f;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .page-article-list .container {
    padding: 0 20px;
  }

  .page-article-list .article-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .page-article-list .article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-article-list .article-image {
    height: 180px;
  }

  .page-article-list .article-content-text {
    padding: 15px;
  }

  .page-article-list .related-news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-article-list .container {
    padding: 0 15px;
  }

  .page-article-list .article-image {
    height: 160px;
  }
}


