.article-list[data-v-5376e543] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
  max-width: 1440px;
  margin: 0 auto;
}
.article-card[data-v-5376e543] {
  display: flex;
  gap: 24px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.article-card[data-v-5376e543]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.article-card:hover .article-img[data-v-5376e543] {
  transform: scale(1.05);
}
.img-wrapper[data-v-5376e543] {
  flex-shrink: 0;
  width: 250px;
  height: 100%;
  overflow: hidden;
}
.img-wrapper .article-img[data-v-5376e543] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-info[data-v-5376e543] {
  flex: 1;
  padding: 20px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-info .article-title[data-v-5376e543] {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.article-info .article-desc[data-v-5376e543] {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.article-info .stats[data-v-5376e543] {
  margin-top: 12px;
  font-size: 14px;
  color: #999;
  display: flex;
  gap: 10px;
  align-items: center;
}
.article-info .stats .divider[data-v-5376e543] {
  color: #ddd;
}
.footer-pagination[data-v-5376e543] {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.footer-pagination .page-link[data-v-5376e543] {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-pagination .page-link[data-v-5376e543]:hover {
  background: #f5f5f5;
}
.footer-pagination .page-link.active[data-v-5376e543] {
  background: #409eff;
  color: #fff;
  border-color: #409eff;
}
@media (max-width: 1600px) {
.article-list[data-v-5376e543] {
    gap: 50px;
}
.article-card[data-v-5376e543] {
    width: 1185px;
}
}.content[data-v-c02fc764] {
  min-width: 1260px;
  min-height: calc(100vh - 90px);
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
}