/* ========================================
   post.css - 文章详情页专用样式
   ======================================== */

/* 文章正文内容区 */
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.post-content,
.post-content:hover,
.post-content *:hover {
    cursor: default !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    transition: none !important;
    border-color: transparent !important;
}

.post-content a,
.post-content a:hover {
    cursor: pointer !important;
}

.post-content p { margin-bottom: 16px; }

.post-content h2,
.post-content h3 {
    margin: 24px 0 16px 0;
    color: #333;
}

.post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

/* 面包屑 */
.breadcrumb {
    margin-bottom: 20px;
    padding: 12px 20px;
    background: #f8f9fc;
    border-radius: 8px;
    font-size: 14px;
}

.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb span { margin: 0 10px; color: #999; }

/* 评论区 */
.comments-section {
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comments-header h3 { font-size: 20px; color: #1a1a2e; }

.comments-sort a {
    color: #e94560;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

.comment-form {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 12px;
}

.comment-login-tip {
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fc;
    border-radius: 12px;
    text-align: center;
}

.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.reply-item {
    padding: 12px;
    background: #f8f9fc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.replies {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 3px solid #e0e0e0;
}

/* 分享栏 */
.post-share {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 12px;
    text-align: center;
}

/* 伪评论区（旧版兼容） */
.fake-comment-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e8eaf6;
}

.fake-comment-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.fake-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fake-comment {
    padding: 14px;
    background: #f8f9fc;
    border-radius: 10px;
    border: 1px solid #e8eaf6;
}

/* 提示框 */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error { color: #c33; background: #fee; border: 1px solid #fcc; }
.alert-success { color: #3c3; background: #efe; border: 1px solid #cfc; }