/* ===================================== */
/* 最近发表文章列表模块（高级版） */
/* ===================================== */
.w-article-list {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 20px;
  padding: 20px 18px;
}
.w-article-list:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* 顶部标题栏（和热搜/万年历风格统一） */
.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f4f8;
  position: relative;
}
.article-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #3688FF, #00B4FF);
}
.article-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: linear-gradient(135deg, #3688FF, #00B4FF);
  border-radius: 2px;
}
/* 状态圆点（和热搜模块动效一致） */
.article-status {
  display: flex;
  gap: 4px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}
.status-dot:nth-child(1) {
  background: #ff4d4f;
  animation-delay: 0s;
}
.status-dot:nth-child(2) {
  background: #faad14;
  animation-delay: 0.6s;
}
.status-dot:nth-child(3) {
  background: #52c41a;
  animation-delay: 1.2s;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* 文章列表容器 */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 文章条目 */
.article-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
}
.article-item:last-child {
  border-bottom: none;
}
.article-item:hover {
  background: #f0f7ff;
  padding-left: 8px;
  border-radius: 10px;
  margin-left: -8px;
}

/* 左侧圆形标记 */
.article-marker {
  width: 12px;
  height: 12px;
  border: 2px solid #3688FF;
  border-radius: 50%;
  background: #fff;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.article-item:hover .article-marker {
  background: #3688FF;
  transform: scale(1.2);
}

/* 文章内容区域 */
.article-content {
  flex: 1;
}
/* 文章标题 */
.article-name {
  font-size: 14px;
  color: #1e293b;
  line-height: 1.5;
  margin: 0 0 6px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}
.article-item:hover .article-name {
  color: #3688FF;
}
/* 文章标签+日期 */
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #94a3b8;
}
/* 文章分类标签 */
.article-tag {
  padding: 2px 8px;
  background: #f0f7ff;
  color: #3688FF;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.article-item:hover .article-tag {
  background: #3688FF;
  color: #fff;
}
/* 文章日期 */
.article-date {
  transition: color 0.2s ease;
}
.article-item:hover .article-date {
  color: #3688FF;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .w-article-list {
    padding: 16px 14px;
  }
  .article-title {
    font-size: 16px;
  }
  .article-item {
    padding: 10px 0;
  }
  .article-name {
    font-size: 13px;
  }
  .article-meta {
    font-size: 11px;
    gap: 8px;
  }
}