/* ===== 移动端文章详情页样式 ===== */

.mobile-note-page {
    padding-bottom: 20px;
    min-height: 100vh;
    background: #f5f5f5;
}

.note-card-mobile {
    background: #fff;
    padding: 20px 16px;
}

.note-title-mobile {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.note-meta-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.meta-item-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.meta-item-mobile i {
    font-size: 12px;
}

.note-content-mobile {
    color: #454d64;
    line-height: 1.8;
    font-size: 15px;
    word-wrap: break-word;
}

.note-content-mobile img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin: 12px 0;
}

.note-content-mobile p {
    margin-bottom: 12px;
}

.note-content-mobile h1,
.note-content-mobile h2,
.note-content-mobile h3,
.note-content-mobile h4,
.note-content-mobile h5,
.note-content-mobile h6 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.note-content-mobile ul,
.note-content-mobile ol {
    margin: 12px 0;
    padding-left: 24px;
}

.note-content-mobile li {
    margin-bottom: 8px;
}

.note-content-mobile a {
    color: #2B57A5;
    text-decoration: none;
}

.note-content-mobile a:hover {
    text-decoration: underline;
}

.note-content-mobile blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 4px solid #2B57A5;
    border-radius: var(--border-radius-sm);
}

.note-content-mobile code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    color: #e83e8c;
}

.note-content-mobile pre {
    background: #f8f9fa;
    padding: 12px;
    border-radius: var(--border-radius-md);
    overflow-x: auto;
    margin: 12px 0;
}

.note-content-mobile pre code {
    background: transparent;
    padding: 0;
    color: #333;
}

