/**
 * 动态详情页样式 - V2 全新设计
 * 浅色系 · 社交动态风格
 */

/* ==================== 页面布局 ==================== */
.wd-page {
    display: flex;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px;
}

.wd-main {
    flex: 1;
    min-width: 0;
    max-width: 824px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 没有侧边栏时内容居中 */
.wd-page:not(:has(.ls-sidebar-right)) {
    justify-content: center;
}

/* ==================== 通用卡片 ==================== */
.wd-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==================== 内容卡片 ==================== */
.wd-content-card {
    padding: 24px;
}

/* ==================== 作者信息 ==================== */
.wd-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wd-author-avatar {
    position: relative;
    flex-shrink: 0;
}

.wd-author-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.wd-avatar-verify {
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: flex;
}

.wd-avatar-verify img,
.wd-avatar-verify svg {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
}

.wd-online-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
}

.wd-author-body {
    flex: 1;
    min-width: 0;
}

.wd-author-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
}

.wd-author-name a {
    color: #1a1a2e;
    text-decoration: none;
}

.wd-author-name a:hover {
    color: var(--jinsom-color, #5b7ff5);
}

.wd-badge {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
}

.wd-badge-lv {
    background: #eef2ff;
    color: #5b7ff5;
}

.wd-badge-vip {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.wd-author-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 12px;
    color: #94a3b8;
}

.wd-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cbd5e1;
}

.wd-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ls-post-more {
    cursor: pointer;
}

/* ==================== 关注按钮 ==================== */
.wd-follow-btn {
    padding: 5px 16px;
    border-radius: 20px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--jinsom-color, #5b7ff5);
    color: #fff;
    white-space: nowrap;
}

.wd-follow-btn:hover {
    opacity: 0.88;
}

.wd-follow-btn.had,
.wd-follow-btn.followed {
    background: #f1f5f9;
    color: #94a3b8;
}

.wd-follow-btn.had:hover,
.wd-follow-btn.followed:hover {
    background: #e2e8f0;
    color: #64748b;
}

/* ==================== 板块卡片（底部） ==================== */
.wd-bbs-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all 0.15s;
    margin-bottom: 16px;
}

.wd-bbs-card:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.wd-bbs-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.wd-bbs-card-body {
    flex: 1;
    min-width: 0;
}

.wd-bbs-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.wd-bbs-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 11px;
    color: #94a3b8;
}

.wd-bbs-card-arrow {
    font-size: 18px;
    color: #cbd5e1;
    flex-shrink: 0;
}

.wd-bbs-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #f1f5f9;
    font-size: 12px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
}

.wd-bbs-tag:hover {
    background: #e2e8f0;
    color: #475569;
}

.wd-bbs-tag img {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* ==================== 徽章行 ==================== */
.wd-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.wd-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.wd-label i {
    font-size: 12px;
}

.wd-label-sticky {
    background: #fff7ed;
    color: #ea580c;
}

.wd-label-recommend {
    background: #f0fdf4;
    color: #16a34a;
}

.wd-label-hot {
    background: #fef2f2;
    color: #dc2626;
}

.wd-label-view {
    background: #f8fafc;
    color: #94a3b8;
}

/* ==================== 正文 ==================== */
.wd-body {
    margin-bottom: 16px;
}

.wd-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.wd-at-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.wd-at-link {
    color: #5b7ff5;
    font-size: 14px;
    text-decoration: none;
}

.wd-at-link:hover {
    text-decoration: underline;
}

.wd-text {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
    word-break: break-word;
}

.wd-text a {
    color: #5b7ff5;
}

/* ==================== 图片区域 ==================== */
.wd-images {
    margin-bottom: 16px;
}

.wd-img-switch {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    margin-bottom: 8px;
}

.wd-img-switch i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.15s;
}

.wd-img-switch i:hover {
    background: #f1f5f9;
    color: #64748b;
}

.wd-img-switch i.ls-on {
    color: #5b7ff5;
    background: #eef2ff;
}

.wd-img-grid {
    display: grid;
    gap: 4px;
    border-radius: 12px;
    overflow: hidden;
}

.wd-img-grid.one { grid-template-columns: 1fr; }
.wd-img-grid.two { grid-template-columns: 1fr 1fr; }
.wd-img-grid.three { grid-template-columns: 1fr 1fr 1fr; }

.wd-img-item {
    position: relative;
    overflow: hidden;
}

.wd-img-item a {
    display: block;
}

.wd-img-grid.one {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wd-img-grid.one .wd-img-item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.wd-img-grid.one .wd-img-item img {
    max-width: 100%;
    width: auto;
    max-height: none;
    height: auto;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 12px;
}

.wd-img-grid:not(.one) .wd-img-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.2s;
}

.wd-img-grid:not(.one) .wd-img-item:hover img {
    transform: scale(1.03);
}

.wd-gif-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==================== 代码块 ==================== */
.wd-code {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.wd-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
}

.wd-code-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-weight: 500;
}

.wd-code-lang i {
    font-size: 15px;
}

.wd-code-copy {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.15s;
}

.wd-code-copy:hover {
    background: #e2e8f0;
    color: #475569;
}

.wd-code-copy i {
    font-size: 14px;
}

.wd-code-body {
    padding: 14px 16px;
    overflow-x: auto;
    background: #fafbfc;
}

.wd-code-body pre {
    margin: 0;
}

.wd-code-body code {
    font-size: 13px;
    line-height: 1.7;
    font-family: 'Fira Code', 'SF Mono', Consolas, monospace;
    color: #334155;
}

/* ==================== 附件 ==================== */
.wd-files {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 16px;
}

.wd-files-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.wd-files-header i {
    font-size: 15px;
}

.wd-files-header em {
    font-style: normal;
    margin-left: auto;
    color: #94a3b8;
    font-weight: 400;
    font-size: 12px;
}

.wd-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #334155;
    transition: background 0.15s;
    border-bottom: 1px solid #f1f5f9;
}

.wd-file-item:last-child {
    border-bottom: none;
}

.wd-file-item:hover {
    background: #f8fafc;
}

.wd-file-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f5f9;
    flex-shrink: 0;
}

.wd-file-icon i {
    font-size: 18px;
}

.wd-file-info {
    flex: 1;
    min-width: 0;
}

.wd-file-name {
    display: block;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #334155;
}

.wd-file-meta {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.wd-file-dl {
    font-size: 17px;
    color: #5b7ff5;
    flex-shrink: 0;
    transition: transform 0.15s;
}

.wd-file-item:hover .wd-file-dl {
    transform: translateY(1px);
}

.wd-file-lock {
    font-size: 15px;
    color: #94a3b8;
    flex-shrink: 0;
}

.wd-file-locked {
    opacity: 0.55;
    cursor: not-allowed;
}

.wd-file-locked:hover {
    background: transparent;
}

/* ==================== 权限遮罩 ==================== */
.wd-power {
    padding: 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    text-align: center;
    margin-bottom: 16px;
}

.wd-power-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #64748b;
}

.wd-power-header i {
    font-size: 16px;
}

.wd-power-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wd-power-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 280px;
}

.wd-power-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 2px 8px rgba(91, 127, 245, 0.08);
}

.wd-power-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.wd-power-card-text {
    flex: 1;
    font-size: 13px;
    color: #475569;
    text-align: left;
}

.wd-power-card-btn {
    flex-shrink: 0;
    padding: 5px 14px;
    border-radius: 16px;
    border: none;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
    transition: all 0.15s;
    white-space: nowrap;
}

.wd-power-card-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* 权限卡片配色 */
.wd-power-pay .wd-power-card-icon { background: #fff7ed; color: #ea580c; }
.wd-power-pay .wd-power-card-btn { background: #ea580c; }
.wd-power-follow .wd-power-card-icon { background: #fef2f2; color: #dc2626; }
.wd-power-follow .wd-power-card-btn { background: #dc2626; }
.wd-power-vip .wd-power-card-icon { background: #fffbeb; color: #d97706; }
.wd-power-login .wd-power-card-icon { background: #f5f3ff; color: #7c3aed; }
.wd-power-comment .wd-power-card-icon { background: #ecfeff; color: #0891b2; }
.wd-power-comment .wd-power-card-btn { background: #0891b2; }
.wd-power-password .wd-power-card-icon { background: #f8fafc; color: #475569; }
.wd-power-password .wd-power-card-btn { background: #475569; }
.wd-power-exp .wd-power-card-icon { background: #f0fdf4; color: #16a34a; }

.wd-power-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
    font-size: 12px;
    color: #94a3b8;
}

.wd-power-footer i {
    font-size: 14px;
}

/* ==================== 隐藏内容 ==================== */
.wd-hidden {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.wd-hidden-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
}

.wd-hidden-bar i {
    font-size: 15px;
}

.wd-hidden-bar em {
    font-style: normal;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    margin-left: auto;
}

.wd-hidden-unlocked {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
}

.wd-hidden-unlocked .wd-hidden-bar {
    color: #16a34a;
}

.wd-hidden-tag-ok {
    background: #dcfce7;
    color: #16a34a;
}

.wd-hidden-body {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    border-top: 1px solid #bbf7d0;
}

.wd-hidden-locked {
    border: 1px dashed #cbd5e1;
    background: #f8fafc;
}

.wd-hidden-locked .wd-hidden-bar {
    color: #94a3b8;
}

.wd-hidden-tag-no {
    background: #f1f5f9;
    color: #94a3b8;
}

.wd-hidden-tip {
    padding: 0 16px 10px;
    font-size: 12px;
    color: #94a3b8;
}

/* ==================== 位置 ==================== */
.wd-location-wrap {
    margin-bottom: 12px;
}

.wd-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #f1f5f9;
    font-size: 12px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.15s;
}

.wd-location:hover {
    background: #e2e8f0;
    color: #475569;
}

.wd-location i {
    font-size: 14px;
    color: #ef4444;
}

/* ==================== 标签 ==================== */
.wd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.wd-tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 6px;
    background: #eef2ff;
    color: #5b7ff5;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.15s;
    font-weight: 500;
}

.wd-tag:hover {
    background: #dbeafe;
    color: #4f46e5;
}

/* ==================== 互动栏 ==================== */
.wd-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid #f1f5f9;
}

.wd-act-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

.wd-act-btn:hover {
    background: #f1f5f9;
    color: #475569;
}

.wd-act-btn i {
    font-size: 18px;
}

/* 喜欢激活 */
.wd-act-like.ls-liked {
    color: #ef4444;
    background: #fef2f2;
}

.wd-act-like.ls-liked:hover {
    background: #fee2e2;
}

/* 点赞弹跳 */
.wd-act-like.ls-like-bounce {
    animation: ls-like-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 收藏激活 */
.wd-act-collect.ls-on {
    color: #f59e0b;
    background: #fffbeb;
}

.wd-act-collect.ls-on:hover {
    background: #fef3c7;
}

/* ==================== 互动详情 Tab ==================== */
.wd-interact {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.wd-interact-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.wd-interact-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}

.wd-interact-tab:hover {
    background: #f8fafc;
    color: #64748b;
}

.wd-interact-tab.ls-on {
    background: #f1f5f9;
    color: #334155;
    font-weight: 500;
}

.wd-interact-tab i {
    font-size: 14px;
}

.wd-interact-tab[data-tab="likes"] i { color: #ef4444; }
.wd-interact-tab[data-tab="gifts"] i { color: #f59e0b; }
.wd-interact-tab[data-tab="rewards"] i { color: #8b5cf6; }

.wd-interact-tab em {
    font-style: normal;
    font-size: 11px;
    color: #94a3b8;
}

.wd-interact-tab.ls-on em {
    color: #64748b;
}

.wd-interact-panel {
    display: none;
}

.wd-interact-panel.ls-on {
    display: block;
}

/* 赞面板 */
.wd-interact-panel[data-panel="likes"] {
    display: none;
}

.wd-interact-panel[data-panel="likes"].ls-on {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wd-interact-panel .wd-likes-faces {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.wd-interact-panel .wd-likes-faces a {
    display: inline-block;
    margin-left: -6px;
    transition: transform 0.15s;
}

.wd-interact-panel .wd-likes-faces a:first-child {
    margin-left: 0;
}

.wd-interact-panel .wd-likes-faces a:hover {
    transform: scale(1.15);
    z-index: 1;
}

.wd-interact-panel .wd-likes-faces img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.wd-interact-panel .wd-likes-text {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

/* 礼物面板 */
.wd-gifts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wd-gift-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wd-gift-user {
    flex-shrink: 0;
}

.wd-gift-user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.wd-gift-info {
    flex: 1;
    min-width: 0;
}

.wd-gift-name {
    font-size: 12px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.wd-gift-name:hover {
    color: var(--jinsom-color, #5b7ff5);
}

.wd-gift-time {
    font-size: 11px;
    color: #cbd5e1;
    flex-shrink: 0;
    white-space: nowrap;
}

.wd-gift-detail {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    font-size: 11px;
    color: #94a3b8;
}

.wd-gift-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.wd-gift-detail em {
    font-style: normal;
    color: #f59e0b;
    font-weight: 500;
}

.wd-gift-svga-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    transition: all 0.15s;
}

.wd-gift-svga-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.35);
}

.wd-gift-svga-btn i {
    font-size: 14px;
}

/* ==================== 评论区 ==================== */
.wd-comments {
    min-height: 100px;
    padding: 20px;
}

/* ==================== 侧边栏：相关推荐 ==================== */
.wd-related-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: opacity 0.15s;
}

.wd-related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wd-related-item:first-of-type {
    padding-top: 0;
}

.wd-related-item:hover {
    opacity: 0.8;
}

.wd-ri-text {
    flex: 1;
    min-width: 0;
}

.wd-ri-title {
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.wd-ri-meta {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #94a3b8;
}

.wd-ri-meta i {
    font-size: 12px;
}

.wd-ri-cover {
    width: 72px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ==================== 状态提示 ==================== */
.wd-status-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin: 16px auto 0;
    max-width: 1140px;
    border-radius: 12px;
    font-size: 14px;
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.wd-status-tip i {
    font-size: 18px;
}

/* ==================== 代码锁定 ==================== */
.wd-code-locked {
    min-height: 80px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-code-locked-mask {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    color: #94a3b8;
}

.wd-code-locked-mask i {
    font-size: 24px;
}

.wd-code-locked-mask span {
    font-size: 13px;
}

/* ==================== 板块权限拦截 ==================== */
.wd-bbs-locked-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.wd-bbs-locked-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wd-bbs-locked-icon i {
    font-size: 26px;
    color: #94a3b8;
}

.wd-bbs-locked-msg {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.wd-bbs-locked-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--jinsom-color, #5b7ff5);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}

.wd-bbs-locked-btn:hover {
    opacity: 0.88;
}

.wd-bbs-locked-btn i {
    font-size: 16px;
}

.wd-bbs-locked-footer {
    padding-top: 0;
    border-top: 1px solid #f1f5f9;
}

.wd-bbs-locked-footer .wd-bbs-card {
    margin-bottom: 0;
    border: none;
    background: transparent;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
    .wd-page > .ls-sidebar-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .wd-page {
        padding: 8px;
    }

    .wd-content-card {
        padding: 16px;
    }

    .wd-title {
        font-size: 16px;
    }

    .wd-act-btn {
        padding: 6px 12px;
    }

    .wd-act-btn i {
        font-size: 16px;
    }
}
