/* ========================================
   文章列表页样式
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-top: 70px;
}

/* ========================================
   导航栏样式（与全局保持一致）
   ======================================== */





/* ========================================
   页面主内容
   ======================================== */
.articles-list-page {
    min-height: calc(100vh - 70px);
    padding: 40px 0 60px;
}

/* 页面头部 */
.page-header {
    text-align: center;
    margin-bottom: 20px;
}


.page-description {
    font-size: 16px;
    color: #666;
}

/* 文章列表容器 */
.articles-container {
    max-width: 900px;
    margin: 0 auto;
	
}

/* ========================================
   文章列表样式
   ======================================== */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 文章卡片 */
.article-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
	margin-bottom:10px;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* 封面图片区域 */
.article-cover {
    flex-shrink: 0;
    width: 200px;
	
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-cover.has-cover {
    background-color: #f0f2f5;
}

/* 文章内容区域 */
.article-content {
    flex: 1;
    padding: 20px 24px;
}

/* 文章标题 */
.article-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card:hover .article-title {
    color: #1890ff;
}

/* 企业信息 */
.article-enterprise {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: #999;
    margin-bottom: -2px;
}

.article-enterprise i {
    font-size: 14px;
    width: 16px;
}

.enterprise-name {
    color: #666;
}

/* 发布时间 */
.fa-calendar-alt {
    margin-left:16px;
}

.article-time i {
    font-size: 12px;
}

/* ========================================
   加载状态样式
   ======================================== */
.loading-state,
.empty-state,
.no-more-state {
    text-align: center;
    padding: 30px 20px;
   
    border-radius: 16px;
}

.loading-spinner i {
    color: #1890ff;
    margin-bottom: 16px;
}

.loading-spinner p {
    color: #999;
    font-size: 14px;
}

/* 空状态 */
.empty-state i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
}

.empty-state span {
    font-size: 14px;
    color: #999;
}

/* 无更多文章 */
.no-more-state i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 12px;
}

.no-more-state p {
    font-size: 14px;
    color: #999;
}

/* 加载更多 */
.loading-more-state {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

.loading-more-state i {
    margin-right: 8px;
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .articles-list-page {
        padding: 20px 0 40px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .page-description {
        font-size: 14px;
    }
    
    .article-card {
        flex-direction: column;
    }
    
    .article-cover {
        width: 100%;
        height: 160px;
    }
    
    .article-content {
        padding: 16px;
    }
    
    .article-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .article-cover {
        height: 140px;
    }
    
    .article-content {
        padding: 14px;
    }
}