/* 文章列表页样式 */
.article-list { display: flex; flex-direction: column; gap: 20px; }
.article-item { background: #fff; border-radius: 10px; padding: 20px; display: flex; gap: 20px; transition: all 0.3s; }
.article-item:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
.article-item img { width: 240px; height: 160px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.article-item .info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.article-item .title { font-size: 18px; font-weight: bold; color: #2c3e50; margin-bottom: 10px; }
.article-item .desc { color: #7f8c8d; font-size: 14px; line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.article-item .meta { color: #95a5a6; font-size: 13px; display: flex; gap: 20px; }
