body {
    padding-top: 90px;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 290px);
}

.card {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.article-header {
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e8e8e8;
}

.article-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.article-meta {
    color: #8c8c8c;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-meta i {
    font-size: 16px;
}

.view-defense-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.view-defense-notice.is-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
}

.view-defense-notice.is-risk {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.view-defense-captcha {
    margin-top: 14px;
    max-width: 420px;
}

.article-thumb {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 32px;
    background: #f5f5f5;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.article-thumb.loaded {
    opacity: 1;
}

.article-content {
    margin-top: 8px;
    min-height: 40px;
    line-height: 1.8;
    font-size: 16px;
    color: #262626;
    letter-spacing: 0.3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.article-content > * {
    max-width: 100%;
}

/* 图片样式 */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px auto;
    display: block;
}

.article-content__previewable-image {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-content__previewable-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.article-content__previewable-image:focus-visible {
    outline: 3px solid rgba(255, 43, 130, 0.35);
    outline-offset: 4px;
}

/* 段落样式 */
.article-content p {
    margin-bottom: 18px;
    text-align: justify;
}

/* 一级标题 */
.article-content h1 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 20px 0;
    padding: 0 0 12px 0;
    border: none;
    border-bottom: 2px solid #1890ff;
    background: transparent;
}

/* 二级标题 */
.article-content h2 {
    position: relative;
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 16px 0;
    padding: 0 0 10px;
    background: transparent;
    border: none;
    line-height: 1.45;
}

.article-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.4em;
    height: 5px;
    background: #1677ff;
    border-radius: 999px;
}

/* 三级标题 - 与编辑器完全一致 */
.article-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #262626;
    margin: 24px 0 14px 0;
    padding-left: 20px;
    position: relative;
}

.article-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #1890ff;
    border-radius: 50%;
}

/* 四级标题 - 与编辑器完全一致 */
.article-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: #595959;
    margin: 20px 0 12px 0;
    padding-left: 12px;
    border-left: 2px solid #d9d9d9;
}

/* 引用块 */
.article-content blockquote {
    border-left: 4px solid #1890ff;
    padding: 16px 20px;
    margin: 20px 0;
    color: #595959;
    background: rgba(24, 144, 255, 0.05);
    border-radius: 0 4px 4px 0;
    font-style: italic;
}

/* 行内代码 */
.article-content code {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    color: #e83e8c;
    border: 1px solid #e8e8e8;
}

/* 代码块 */
.article-content pre {
    background: #282c34;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.article-content pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #21252b;
    border-radius: 8px 8px 0 0;
}

.article-content pre::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #abb2bf;
    font-size: 14px;
    line-height: 1.6;
    border: none;
    display: block;
    margin-top: 36px;
}

/* 无序列表 */
.article-content ul {
    margin: 16px 0;
    padding-left: 28px;
}

.article-content ul li {
    margin: 8px 0;
    line-height: 1.8;
}

/* 有序列表 */
.article-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.article-content ol li {
    margin: 8px 0;
    line-height: 1.8;
}

/* 链接 */
.article-content a {
    color: #1890ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.article-content a:hover {
    border-bottom-color: #1890ff;
}

/* 表格 */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-content table th,
.article-content table td {
    border: 1px solid #e8e8e8;
    padding: 12px 16px;
    text-align: left;
}

.article-content table th {
    background: #fafafa;
    font-weight: 600;
    color: #262626;
    border-bottom: 2px solid #1890ff;
}

.article-content table tbody tr:hover {
    background: rgba(24, 144, 255, 0.05);
}

.article-content table tbody tr:nth-child(even) {
    background: #fafafa;
}

.article-content table tbody tr:nth-child(even):hover {
    background: rgba(24, 144, 255, 0.05);
}

/* 分隔线 */
.article-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d9d9d9, transparent);
    margin: 32px 0;
}

/* 文章资源区域 */
.article-detail-card {
    margin-bottom: 18px;
}

.article-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.article-nav__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.article-nav__item:hover {
    border-color: #93c5fd;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.article-nav__empty {
    background: #f8fafc;
    color: #94a3b8;
}

.article-nav__empty:hover {
    border-color: #dbe7ff;
    box-shadow: none;
    transform: none;
}

.article-nav__next {
    text-align: right;
    align-items: flex-end;
}

.article-nav__label {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 700;
}

.article-nav__title {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.6;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-card {
    margin-top: 2px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.resource-card .resource-section-title {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.25;
}

.resource-card .resource-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resource-card .resource-item {
    border: 1px solid #e6ebf1;
    border-radius: 12px;
    background: #ffffff;
    padding: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.resource-card .resource-item:hover {
    border-color: #cfd8e3;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.resource-card .resource-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.resource-card .resource-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}

.resource-card .resource-desc {
    margin-top: 6px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
}

.resource-card .resource-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #d2d8e1;
    background: #f8fafc;
    color: #334155;
    white-space: nowrap;
}

.resource-card .resource-badge-paid {
    border-color: #8fb6ff;
    color: #1d4ed8;
    background: #f5f9ff;
}

.resource-card .resource-badge-free {
    border-color: #b8e6c9;
    color: #166534;
    background: #f0fdf4;
}

.resource-card .resource-link-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.resource-card .resource-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #eef2f7;
}

.resource-card .resource-link-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.resource-card .resource-link-name {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
    word-break: break-all;
}

.resource-card .resource-extract-code {
    font-size: 12px;
    color: #64748b;
}

.resource-card .resource-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #91b4ff;
    color: #1d4ed8;
    background: #f5f9ff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.resource-card .resource-download-btn:hover {
    background: #e8f1ff;
    border-color: #6a98f7;
    color: #1e3a8a;
}

.resource-card .resource-lock-box {
    margin-top: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e6ebf2;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 13px;
}

.resource-card .resource-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #d1d8e3;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.resource-card .resource-action-btn:hover {
    background: #f8fafc;
    border-color: #aeb8c7;
}

.resource-card .resource-action-login {
    border-color: #8fb6ff;
    color: #1d4ed8;
    background: #f5f9ff;
}

.resource-card .resource-action-login:hover {
    background: #e8f1ff;
    border-color: #6697f4;
    color: #1e40af;
}

.resource-card .resource-action-pay {
    border-color: #8fb6ff;
    color: #1d4ed8;
    background: #f5f9ff;
}

.resource-card .resource-action-pay:hover {
    background: #e8f1ff;
    border-color: #6697f4;
    color: #1e40af;
}

/* 面包屑 */
.article-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    font-size: 14px;
}

.article-breadcrumb__link,
.article-breadcrumb__current {
    min-width: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-breadcrumb__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 1 auto;
    max-width: 5.5em;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-breadcrumb__link:hover {
    color: #2563eb;
}

.article-breadcrumb__separator {
    flex: 0 0 auto;
    margin: 0 1px;
    color: #cbd5e1;
}

.article-breadcrumb__current {
    flex: 1 1 0;
    max-width: none;
    color: #0f172a;
    font-weight: 600;
}

/* 作者卡片 */
.article-author-card {
    margin-top: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.article-author-card__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 22px;
}

.article-author-card__info {
    min-width: 0;
}

.article-author-card__body {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.article-author-card__avatar-wrap {
    width: 118px;
    height: 118px;
    flex-shrink: 0;
    padding: 2px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f1f5f9 0%, #dbeafe 100%);
}

.article-author-card__avatar {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: #f8fafc;
}

.article-author-card__main {
    min-width: 0;
    flex: 1;
}

.article-author-card__name-row {
    min-width: 0;
}

.article-author-card__name {
    max-width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-author-card__stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.article-author-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.article-author-card__badge i {
    font-size: 15px;
}

.article-author-card__badge--blue {
    color: #2563eb;
    background: #eff6ff;
}

.article-author-card__badge--green {
    color: #16a34a;
    background: #f0fdf4;
}

.article-author-card__desc {
    margin-top: 14px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.article-author-hot {
    position: relative;
    min-width: 0;
    z-index: 1;
}

.article-author-hot__actions {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.article-author-card:hover .article-author-hot__actions {
    opacity: 1;
}

.article-author-hot__actions[hidden] {
    display: none;
}

.article-author-hot__nav {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.58);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease;
}

.article-author-hot__nav:hover:not(:disabled) {
    background: rgba(15, 23, 42, 0.76);
    transform: scale(1.04);
}

.article-author-hot__nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.article-author-hot__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.article-author-hot__viewport::-webkit-scrollbar {
    display: none;
}

.article-author-hot__track {
    display: flex;
    gap: 14px;
}

.article-author-hot__item {
    flex: 0 0 calc((100% - 28px) / 3);
    min-width: 190px;
    text-decoration: none;
    color: inherit;
}

.article-author-hot__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #e2e8f0;
}

.article-author-hot__thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.article-author-hot__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.article-author-hot__item:hover .article-author-hot__thumb img {
    transform: scale(1.04);
}

.article-author-hot__title {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 1;
    font-size: 14px;
    line-height: 1.45;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 移动端适配 */
body.article-image-viewer-open {
    overflow: hidden;
}

.article-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px 88px;
    background: rgba(15, 23, 42, 0.86);
}

.article-image-viewer.is-active {
    display: flex;
}

.article-image-viewer__stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.article-image-viewer__image {
    max-width: min(1100px, 100%);
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    background: #fff;
}

.article-image-viewer__nav,
.article-image-viewer__close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.article-image-viewer__nav:hover,
.article-image-viewer__close:hover {
    background: rgba(255, 255, 255, 0.26);
}

.article-image-viewer__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 34px;
    transform: translateY(-50%);
}

.article-image-viewer__nav--prev {
    left: 24px;
}

.article-image-viewer__nav--next {
    right: 24px;
}

.article-image-viewer__close {
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.article-image-viewer__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .container {
        padding: 15px;
    }

    .card {
        padding: 18px 14px;
        border-radius: 10px;
    }

    .article-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .article-meta {
        font-size: 13px;
        gap: 12px;
    }

    .article-content {
        font-size: 15px;
        line-height: 1.75;
    }

    .article-thumb {
        max-height: 280px;
        border-radius: 6px;
        margin-bottom: 24px;
    }

    .article-content img {
        margin: 16px auto;
    }

    .article-content__previewable-image:hover {
        transform: none;
        box-shadow: none;
    }

    .article-content h1 {
        font-size: 20px;
        padding: 0 0 10px 0;
        margin: 24px 0 16px 0;
        border: none;
        border-bottom: 2px solid #1890ff;
        background: transparent;
    }

    .article-content h2 {
        display: inline-block;
        font-size: 18px;
        margin: 20px 0 12px 0;
        padding: 0 0 8px;
    }

    .article-content h2::after {
        width: 2.25em;
        height: 4px;
    }

    .article-content h3 {
        font-size: 16px;
        padding-left: 16px;
        margin: 16px 0 10px 0;
    }

    .article-content h3::before {
        width: 6px;
        height: 6px;
    }

    .article-content h4 {
        font-size: 15px;
        padding-left: 10px;
        margin: 16px 0 10px 0;
    }

    .article-content pre {
        padding: 16px 12px;
        font-size: 12px;
        margin: 20px -8px;
        border-radius: 6px;
    }

    .article-content pre::before {
        height: 32px;
    }

    .article-content pre::after {
        top: 10px;
        left: 10px;
        width: 10px;
        height: 10px;
        box-shadow: 18px 0 0 #ffbd2e, 36px 0 0 #27c93f;
    }

    .article-content pre code {
        font-size: 12px;
        margin-top: 32px;
    }

    .article-content table {
        font-size: 12px;
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-collapse: separate;
    }

    .article-content table thead,
    .article-content table tbody,
    .article-content table tr {
        white-space: nowrap;
    }

    .article-content table th,
    .article-content table td {
        padding: 8px 10px;
        white-space: nowrap;
        min-width: 88px;
    }

    .article-content blockquote {
        padding: 12px 16px;
        margin: 16px 0;
        font-size: 14px;
    }

    .article-detail-card {
        margin-bottom: 12px;
    }

    .article-nav {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .article-nav__item {
        padding: 12px;
        border-radius: 10px;
    }

    .article-nav__title {
        font-size: 14px;
    }

    .resource-card {
        padding: 14px 12px;
        border-radius: 10px;
    }

    .resource-card .resource-section-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .resource-card .resource-item {
        padding: 12px;
    }

    .resource-card .resource-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-card .resource-link-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .resource-card .resource-download-btn,
    .resource-card .resource-action-btn {
        width: 100%;
        justify-content: center;
    }

    .resource-card .resource-lock-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-breadcrumb {
        gap: 3px;
        padding: 9px 12px;
        border-radius: 10px;
        margin-bottom: 12px;
        font-size: 13px;
        align-items: center;
    }

    .article-breadcrumb__link {
        gap: 3px;
        max-width: 4.5em;
    }

    .article-breadcrumb__separator {
        margin: 0;
    }

    .article-breadcrumb__current {
        flex: 1 1 0;
        max-width: none;
    }

    .article-author-card {
        padding: 12px;
        border-radius: 12px;
        margin-top: 12px;
    }

    .article-author-card__inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-author-card__body {
        align-items: center;
        gap: 10px;
    }

    .article-author-card__avatar-wrap {
        width: 60px;
        height: 60px;
    }

    .article-author-card__main {
        min-width: 0;
    }

    .article-author-card__name {
        font-size: 15px;
        line-height: 1.25;
    }

    .article-author-card__stats-inline {
        margin-top: 8px;
        gap: 6px;
    }

    .article-author-card__badge {
        padding: 4px 7px;
        border-radius: 8px;
        font-size: 12px;
    }

    .article-author-card__badge i {
        font-size: 13px;
    }

    .article-author-card__desc {
        font-size: 12px;
        margin-top: 8px;
        line-height: 1.4;
    }

    .article-author-hot__actions {
        display: none;
    }

    .article-author-hot__track {
        gap: 10px;
    }

    .article-author-hot__item {
        flex: 0 0 48%;
        min-width: 0;
    }

    .article-author-hot__thumb {
        aspect-ratio: 1.55 / 1;
        border-radius: 10px;
    }

    .article-author-hot__title {
        left: 8px;
        right: 8px;
        bottom: 6px;
        font-size: 12px;
        line-height: 1.35;
    }

    .article-image-viewer {
        padding: 20px 12px 56px;
    }

    .article-image-viewer__image {
        max-width: 100%;
        max-height: 76vh;
        border-radius: 8px;
    }

    .article-image-viewer__nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .article-image-viewer__nav--prev {
        left: calc(50% - 64px);
    }

    .article-image-viewer__nav--next {
        right: calc(50% - 64px);
    }

    .article-image-viewer__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .article-image-viewer__counter {
        bottom: 18px;
        font-size: 13px;
        padding: 7px 12px;
    }
}

/* 访问量冷却提示 */
.view-cooldown-notice {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: #ff9800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.3s ease-out;
}

.view-cooldown-notice i {
    font-size: 18px;
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .view-cooldown-notice {
        font-size: 13px;
        padding: 10px 14px;
    }

    .view-cooldown-notice i {
        font-size: 16px;
    }
}