/* ========== 内容页专属样式 ========== */

/* 面包屑导航 */
.breadcrumb-bar {
    background: #0d1520;
    border-bottom: 1px solid #1e2a3a;
    padding: 12px 0;
}
.breadcrumb {
    font-size: 13px;
    color: #6b8299;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumb a {
    color: #8fa4b8;
}
.breadcrumb a:hover {
    color: #4dabf7;
}
.breadcrumb .separator {
    color: #3a506b;
    margin: 0 2px;
}
.breadcrumb .current {
    color: #4dabf7;
    font-weight: 500;
}

/* 文章详情容器 */
.article-detail {
    background: #111b27;
    border: 1px solid #1e2a3a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* 文章头部 */
.article-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #1e2a3a;
}
.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #e0e8f0;
    line-height: 1.4;
    margin-bottom: 18px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b8299;
}
.meta-item svg {
    flex-shrink: 0;
    color: #4dabf7;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-link {
    display: inline-block;
    padding: 3px 12px;
    background: #1a2738;
    border-radius: 15px;
    font-size: 12px;
    color: #74c0fc;
    border: 1px solid #2c3e50;
    transition: all 0.3s;
}
.tag-link:hover {
    background: #4dabf7;
    color: #0a0e17;
    border-color: #4dabf7;
}

/* 文章摘要 */
.article-abstract {
    margin: 20px 30px;
    padding: 16px 20px;
    background: #1a2738;
    border-left: 3px solid #4dabf7;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #b0c4d8;
    line-height: 1.7;
}
.article-abstract strong {
    color: #4dabf7;
}

/* 文章正文 */
.article-body {
    padding: 25px 30px 30px;
    font-size: 16px;
    line-height: 1.9;
    color: #c8d6e5;
}
.article-body h2 {
    font-size: 22px;
    color: #e0e8f0;
    margin: 30px 0 15px;
    padding-left: 12px;
    border-left: 3px solid #4dabf7;
}
.article-body h3 {
    font-size: 18px;
    color: #d0dce8;
    margin: 25px 0 12px;
}
.article-body p {
    margin-bottom: 16px;
}
.article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #2c3e50;
}
.article-body ul,
.article-body ol {
    margin: 12px 0 16px 20px;
}
.article-body li {
    margin-bottom: 6px;
}
.article-body blockquote {
    margin: 16px 0;
    padding: 14px 20px;
    background: #1a2738;
    border-left: 3px solid #f0a500;
    border-radius: 0 6px 6px 0;
    color: #b0c4d8;
    font-style: italic;
}
.article-body code {
    background: #0d1520;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #74c0fc;
    border: 1px solid #2c3e50;
}
.article-body pre {
    background: #0d1520;
    padding: 16px 20px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #2c3e50;
    margin: 16px 0;
}
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.article-body th {
    background: #1a2738;
    color: #4dabf7;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #2c3e50;
}
.article-body td {
    padding: 10px 14px;
    border: 1px solid #2c3e50;
    color: #b0c4d8;
}
.article-body a {
    color: #4dabf7;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-body a:hover {
    color: #74c0fc;
}

/* 文章底部信息 */
.article-footer-info {
    margin: 0 30px 25px;
    padding: 15px 20px;
    background: #0d1520;
    border-radius: 8px;
    font-size: 13px;
    color: #5c7a99;
    line-height: 1.8;
}
.article-footer-info a {
    color: #4dabf7;
    word-break: break-all;
}

/* 上一篇/下一篇导航 */
.post-navigation {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.prev-post,
.next-post {
    flex: 1;
    background: #111b27;
    border: 1px solid #1e2a3a;
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.3s;
}
.prev-post:hover,
.next-post:hover {
    border-color: #4dabf7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.nav-label {
    display: block;
    font-size: 12px;
    color: #5c7a99;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.prev-post a,
.next-post a {
    font-size: 15px;
    color: #b0c4d8;
    font-weight: 500;
}
.prev-post a:hover,
.next-post a:hover {
    color: #4dabf7;
}
.next-post {
    text-align: right;
}

/* 相关攻略推荐 */
.related-section {
    margin-bottom: 30px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.related-card {
    background: #111b27;
    border: 1px solid #1e2a3a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.related-card:hover {
    transform: translateY(-3px);
    border-color: #4dabf7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.related-thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.related-info {
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.related-info h3 {
    font-size: 14px;
    flex: 1;
    min-width: 0;
}
.related-info h3 a {
    color: #b0c4d8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-info h3 a:hover {
    color: #4dabf7;
}
.related-click {
    font-size: 12px;
    color: #5c7a99;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.related-click svg {
    color: #6b8299;
}

/* 评论区 */
.comment-section {
    margin-bottom: 30px;
}
.comment-box {
    background: #111b27;
    border: 1px solid #1e2a3a;
