/* ============================================
   Help Center Page - flowertocn.com
   ============================================ */

   .help-page {
    padding: 30px 0 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 面包屑导航 ========== */
.breadcrumb {
    padding: 10px 0 20px;
    font-size: 13px;
    color: #888;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #DD302D;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* ========== 页面标题 ========== */
.page-header {
    text-align: center;
    margin-bottom: 35px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== 内容区 ========== */
.content {
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

/* ========== 文章列表 ========== */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 24px 0;
    transition: all 0.2s ease;
}

.article-item:first-child {
    padding-top: 0;
}

.article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.article-item:hover {
    padding-left: 10px;
}

.article-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.article-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.article-title a:hover {
    color: #DD302D;
}

/* ========== 文章元信息 ========== */
.article-meta {
    font-size: 13px;
    color: #888;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meta-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.meta-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ========== 文章摘要 ========== */
.article-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.read-more {
    color: #DD302D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    margin-left: 6px;
}

.read-more:hover {
    color: #c62828;
    text-decoration: underline;
}

/* ========== 分页样式 ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.page-link:hover {
    background: #f5f5f5;
    border-color: #DD302D;
    color: #DD302D;
}

.page-link.current {
    background: #DD302D;
    border-color: #DD302D;
    color: white;
    cursor: default;
}

.page-link.current:hover {
    background: #DD302D;
    color: white;
}

.page-link.prev,
.page-link.next {
    font-weight: 500;
}

.page-dots {
    color: #999;
    padding: 0 4px;
}

/* ========== 无文章 ========== */
.no-articles {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .content {
        padding: 24px 28px;
    }
}

@media (max-width: 768px) {
    .help-page {
        padding: 20px 0 40px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .content {
        padding: 20px 18px;
    }
    
    .article-title {
        font-size: 17px;
    }
    
    .article-meta {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .article-summary {
        font-size: 13px;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .page-link {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 8px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 20px;
    }
    
    .content {
        padding: 16px 14px;
    }
    
    .article-title {
        font-size: 15px;
    }
    
    .article-meta {
        font-size: 11px;
        gap: 8px;
        flex-direction: column;
    }
    
    .article-item:hover {
        padding-left: 0;
    }
    
    .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 6px;
    }
    
    .page-link.prev,
    .page-link.next {
        padding: 0 10px;
        font-size: 12px;
    }
}