/* ============================================
   Help Detail Page - flowertocn.com
   ============================================ */

   .help-detail-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;
}

/* ========== 内容区 ========== */
.content {
    background: #fff;
    border-radius: 12px;
    padding: 40px 45px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

/* ========== 文章头部 ========== */
.article-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.article-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-meta {
    font-size: 13px;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.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-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    padding: 0 0 20px;
}

.article-content p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 16px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 0 14px;
}

.article-content ul,
.article-content ol {
    margin: 0 0 18px 24px;
}

.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid #eee;
}

.article-content a {
    color: #DD302D;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid #DD302D;
    padding: 12px 20px;
    margin: 16px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.article-content table th,
.article-content table td {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    text-align: left;
}

.article-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* ========== 文章底部 ========== */
.article-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.back-link:hover {
    color: #DD302D;
    border-color: #DD302D;
    background: #fff5f5;
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .content {
        padding: 30px 30px;
    }
}

@media (max-width: 768px) {
    .help-detail-page {
        padding: 20px 0 40px;
    }
    
    .content {
        padding: 24px 20px;
    }
    
    .article-header h1 {
        font-size: 24px;
    }
    
    .article-meta {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .article-content p {
        font-size: 15px;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    .article-content h3 {
        font-size: 17px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 18px 14px;
    }
    
    .article-header h1 {
        font-size: 20px;
    }
    
    .article-meta {
        font-size: 11px;
        flex-direction: column;
        gap: 6px;
    }
    
    .article-content {
        font-size: 14px;
    }
    
    .article-content p {
        font-size: 14px;
    }
    
    .article-content h2 {
        font-size: 18px;
    }
    
    .article-content h3 {
        font-size: 16px;
    }
    
    .article-content ul,
    .article-content ol {
        margin-left: 16px;
    }
    
    .back-link {
        width: 100%;
        justify-content: center;
    }
}