/* ============================================
   全站通用样式
   ============================================ */

:root {
    /* 主题色：靛蓝紫（区别于同类小说/小说站常见的橙红系） */
    --primary: #5A67F2;
    --primary-light: #828DF7;
    --primary-dark: #4453D9;
    --bg-page: #F5F6FA;
    --bg-soft: #F1F3FF;
    --bg-card: #FFFFFF;
    --text-main: #2A2F3A;
    --text-sub: #5F6675;
    --text-light: #9AA1AF;
    --border: #EDF0F7;
    /* 更柔和、更有层次的阴影 */
    --shadow: 0 2px 10px rgba(31, 45, 61, 0.05);
    --shadow-hover: 0 8px 24px rgba(31, 45, 61, 0.1);
    --gradient: linear-gradient(135deg, #7C86F6 0%, #5A67F2 100%);
    --gradient-soft: linear-gradient(135deg, #F1F3FF 0%, #E0E5FE 100%);
    /* 更大的圆角，整体更现代 */
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 16px;
}

/* ============ 通用容器 ============ */

.n_cf435b_scone8 {
    width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
}

.n_cf435b_sfsec {
    background: #F5F6FA;
    min-height: 60vh;
    padding: 28px 0;
}

.n_cf435b_pwra {
    width: 1200px;
    margin: 0 auto;
}

.n_cf435b_mrow {
    display: flex;
    gap: 28px;
}

.n_cf435b_mlef {
    flex: 1;
    min-width: 0;
}

.n_cf435b_mrig {
    width: 300px;
    flex-shrink: 0;
}

/* ============ 面包屑 ============ */

.n_cf435b_bread {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-sub);
}

.n_cf435b_bread a {
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_bread a:hover {
    color: var(--primary);
}

.n_cf435b_bsep {
    margin: 0 6px;
    color: #ccc;
}

.n_cf435b_bcur {
    color: var(--text-main);
    font-weight: 500;
}

/* ============ 页面标题 ============ */

.n_cf435b_phea {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_ptit {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-main);
    margin: 10px 0;
}

.n_cf435b_psub {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============ 区块标题 ============ */

.n_cf435b_shea66 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* 区块标题下的渐变短条，替代整条实色下划线 */
.n_cf435b_shea66::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 64px;
    height: 3px;
    border-radius: 2px;
    background: var(--gradient);
}

.n_cf435b_stit {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0;
}

.n_cf435b_sico0d {
    margin-right: 6px;
    font-size: 15px;
}

.n_cf435b_smor {
    color: var(--text-light);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_smor:hover {
    color: var(--primary);
}

/* ============ 游戏列表项（列表式） ============ */

.n_cf435b_glis {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 10px 15px;
    border: 1px solid var(--border);
}

.n_cf435b_gite {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: background 0.2s ease;
}

.n_cf435b_gite:last-child {
    border-bottom: none;
}

.n_cf435b_gite:hover {
    background: #fafafa;
}

.n_cf435b_gnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 12px;
    color: #999;
    margin-right: 12px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_gite:nth-child(1) .n_cf435b_gnum,
.n_cf435b_gite:nth-child(2) .n_cf435b_gnum,
.n_cf435b_gite:nth-child(3) .n_cf435b_gnum {
    background: var(--primary);
    color: #fff;
}

.n_cf435b_gcov {
    width: 50px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.n_cf435b_gcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_cf435b_ginf {
    flex: 1;
    min-width: 0;
}

.n_cf435b_gtit {
    font-size: 14px;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.n_cf435b_gtit a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_gtit a:hover {
    color: var(--primary);
}

.n_cf435b_gmet {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.n_cf435b_gmet .n_cf435b_score {
    color: #FF9F43;
    font-weight: 600;
}

.n_cf435b_gdes {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* ============ 分类筛选条 ============ */

.n_cf435b_fbar {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_frow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 0;
}

.n_cf435b_frow + .n_cf435b_frow {
    border-top: 1px dashed var(--border);
    margin-top: 6px;
    padding-top: 12px;
}

.n_cf435b_flab {
    font-size: 13px;
    color: var(--text-sub);
    margin-right: 8px;
    flex-shrink: 0;
}

.n_cf435b_ftag {
    display: inline-block;
    padding: 4px 14px;
    background: #f5f5f5;
    color: var(--text-sub);
    font-size: 12px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.n_cf435b_ftag:hover {
    background: var(--primary-light);
    color: #fff;
}

.n_cf435b_ftag.n_cf435b_activ {
    background: var(--gradient);
    color: #fff;
}

/* ============ 列表页小说网格卡片（52pkvr风格） ============ */

.n_cf435b_mglis {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px 15px 10px 15px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.n_cf435b_mglis::after {
    content: '';
    display: block;
    clear: both;
}

.n_cf435b_mcar {
    float: left;
    width: 174px;
    /* 封面改 3:4 后高度变大（154 → 205），卡片高度交由内容决定，避免底部文字被裁 */
    height: auto;
    margin: 0 10px 20px 10px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
    overflow: hidden;
}

.n_cf435b_mcar:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(90, 103, 242, 0.15);
    transform: translateY(-2px);
}

.n_cf435b_mclin {
    display: block;
    text-decoration: none;
    padding: 10px;
}

.n_cf435b_mccov {
    /* 书本封面统一比例 3:4 */
    width: 154px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 0 auto 8px auto;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.n_cf435b_mccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.n_cf435b_mcsta {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    color: #fff;
    font-size: 11px;
    border-radius: 3px;
    z-index: 2;
    font-weight: 500;
    line-height: 1.3;
}

.n_cf435b_mcsta.n_cf435b_song {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary);
}

.n_cf435b_mcsta.n_cf435b_send {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.n_cf435b_mcsco {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.6);
    color: #C7CFFF;
    font-size: 10px;
    border-radius: 3px;
    z-index: 2;
    font-weight: 600;
}

.n_cf435b_mcbod {
    padding: 0 4px;
}

.n_cf435b_mctit {
    font-size: 13px;
    color: var(--text-main);
    text-align: left;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 18px;
    margin-bottom: 4px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.n_cf435b_mcar:hover .n_cf435b_mctit {
    color: var(--primary);
}

.n_cf435b_mcaut {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 6px;
}

.n_cf435b_mctag {
    display: inline-block;
    padding: 1px 6px;
    background: var(--bg-soft);
    color: var(--primary);
    font-size: 10px;
    border-radius: 3px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============ 小说卡片网格 ============ */

.n_cf435b_ngri {
    display: grid;
    /* 书本卡片统一宽度 174px，按容器自动排布列数（与列表页 .n_cf435b_mcar 一致） */
    grid-template-columns: repeat(auto-fill, 174px);
    justify-content: space-between;
    gap: 20px 0;
}

.n_cf435b_ncar {
    min-height: 256px;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
}

.n_cf435b_ncar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.n_cf435b_ncar .n_cf435b_ccov {
    position: relative;
    display: block;
    overflow: hidden;
    /* 与列表页 .n_cf435b_mccov 统一：154 宽，比例 3:4 */
    width: 154px;
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 10px auto 8px auto;
    border-radius: 6px;
    background: #f5f5f5;
}

.n_cf435b_ncar .n_cf435b_cimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.n_cf435b_ncar:hover .n_cf435b_cimg {
    transform: scale(1.08);
}

.n_cf435b_ncar .n_cf435b_cbad {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 6px;
    background: var(--gradient);
    color: #fff;
    font-size: 10px;
    border-radius: 8px;
    z-index: 2;
}

.n_cf435b_ncar .n_cf435b_cinf {
    padding: 10px 12px;
}

.n_cf435b_ncar .n_cf435b_ctit {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.n_cf435b_ncar .n_cf435b_ctit a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_ncar .n_cf435b_ctit a:hover {
    color: var(--primary);
}

.n_cf435b_ncar .n_cf435b_cmet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-light);
}

.n_cf435b_ncar .n_cf435b_cmet .n_cf435b_score {
    color: #FF9F43;
    font-weight: 600;
}

/* ============ 资讯卡片（用于 news 列表 / topic / tags） ============ */

.n_cf435b_iclis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.n_cf435b_icar {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.n_cf435b_icar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.n_cf435b_iccov {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.n_cf435b_iccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.n_cf435b_icar:hover .n_cf435b_iccov img {
    transform: scale(1.08);
}

.n_cf435b_icbod {
    padding: 12px 15px;
}

.n_cf435b_ictit {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.n_cf435b_ictit a {
    color: var(--text-main);
    text-decoration: none;
}

.n_cf435b_ictit a:hover {
    color: var(--primary);
}

.n_cf435b_icdes {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ============ 标签页 / 专题页的卡片网格 ============ */

.n_cf435b_tgri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.n_cf435b_tcar {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
}

.n_cf435b_tcar:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.n_cf435b_tccov {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.n_cf435b_tccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.n_cf435b_tcar:hover .n_cf435b_tccov img {
    transform: scale(1.08);
}

.n_cf435b_tccov::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.n_cf435b_tctit {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    z-index: 2;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_tcbod {
    padding: 12px 15px;
}

.n_cf435b_tcdes {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.5;
    margin: 0 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.n_cf435b_tclin {
    color: var(--primary);
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.n_cf435b_tclin:hover {
    color: var(--primary-dark);
}

/* ============ 分页 ============ */

.n_cf435b_pagin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.n_cf435b_pagin a,
.n_cf435b_pagin span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    background: var(--bg-card);
    color: var(--text-sub);
    font-size: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.n_cf435b_pagin a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.n_cf435b_pagin .n_cf435b_pinf {
    display: inline-block;
    line-height: 30px; /* 与你的 .page-num 高度保持一致 */
    font-size: 14px;
    color: #666;
    background: none;
    border: none;
    width: auto;
    min-width: auto;
    padding: 0;
}

.n_cf435b_pagin .n_cf435b_pinf:after {
    content: '|';
    margin-left: 5px;
}

.n_cf435b_pagin .n_cf435b_curre,
.n_cf435b_pagin .n_cf435b_activ {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    cursor: default;
}

.n_cf435b_pagin .n_cf435b_disab,
.n_cf435b_pagin .n_cf435b_nocli {
    color: var(--text-light);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.n_cf435b_pagin .n_cf435b_inde {
    padding: 0 12px;
}

/* ============ 详情页通用 ============ */

.n_cf435b_dlay {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.n_cf435b_dmai {
    flex: 1;
    min-width: 0;
}

.n_cf435b_dsid {
    width: 300px;
    flex-shrink: 0;
}

.n_cf435b_dcar {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

/* ============ 书库主页样式 ============ */

.n_cf435b_mhsec {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_shrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.n_cf435b_strow {
    display: flex;
    align-items: center;
    gap: 15px;
}

.n_cf435b_strow .n_cf435b_stit {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.n_cf435b_stab7d {
    display: flex;
    gap: 10px;
}

.n_cf435b_stab7d .n_cf435b_tite {
    padding: 5px 15px;
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.n_cf435b_stab7d .n_cf435b_tite:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.n_cf435b_stab7d .n_cf435b_tite.n_cf435b_activ {
    color: #fff;
    background: var(--gradient);
}

.n_cf435b_smor {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.n_cf435b_smor:hover {
    color: var(--primary-dark);
}

.n_cf435b_mhgri {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.n_cf435b_mgcon {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
}

.n_cf435b_mscon {
    display: flex;
    gap: 20px;
}

.n_cf435b_mhsid {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.n_cf435b_sheab5 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 12px;
}

.n_cf435b_sicob4 {
    font-size: 16px;
}

.n_cf435b_stit5d {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.n_cf435b_shlis {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n_cf435b_hite {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.2s;
}

.n_cf435b_hite:last-child {
    border-bottom: none;
}

.n_cf435b_hite:hover {
    background: rgba(90, 103, 242, 0.05);
    padding-left: 5px;
}

.n_cf435b_hnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #999;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.n_cf435b_hite:nth-child(1) .n_cf435b_hnum {
    background: #FF4757;
}

.n_cf435b_hite:nth-child(2) .n_cf435b_hnum {
    background: #FF6B81;
}

.n_cf435b_hite:nth-child(3) .n_cf435b_hnum {
    background: #FFA502;
}

.n_cf435b_hite:nth-child(n+4) .n_cf435b_hnum {
    background: #999;
}

.n_cf435b_hite a {
    flex: 1;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s;
}

.n_cf435b_hite a:hover {
    color: var(--primary);
}

.n_cf435b_mhcar {
    /* /novel/ 列表：每行 5 个（容器 860，卡片约 156，间距 20），两行共 10 个 */
    width: calc(20% - 16px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.n_cf435b_mhcar:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.n_cf435b_mhcar .n_cf435b_ccov {
    position: relative;
    display: block;
    text-decoration: none;
    /* 宽度随卡片自适应（左右各留 10px），比例固定 3:4 */
    width: calc(100% - 20px);
    height: auto;
    aspect-ratio: 3 / 4;
    margin: 10px auto 8px auto;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.n_cf435b_mhcar .n_cf435b_ccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.n_cf435b_mhcar .n_cf435b_csta {
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 3px;
    font-weight: 500;
    line-height: 1.3;
}

.n_cf435b_mhcar .n_cf435b_csta.n_cf435b_song {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary);
}

.n_cf435b_mhcar .n_cf435b_csta.n_cf435b_send {
    color: #fff;
    background: var(--primary);
}

.n_cf435b_mhcar .n_cf435b_cinf {
    padding: 8px 10px;
}

.n_cf435b_mhcar .n_cf435b_ctit {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_mhcar .n_cf435b_ctit a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.n_cf435b_mhcar .n_cf435b_ctit a:hover {
    color: var(--primary);
}

.n_cf435b_mhcar .n_cf435b_caut {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 书库主页热门排行 */
.n_cf435b_stopbe .n_cf435b_tlis9a {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n_cf435b_stopbe .n_cf435b_tite0e {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    transition: all 0.2s;
}

.n_cf435b_stopbe .n_cf435b_tite0e:last-child {
    border-bottom: none;
}

.n_cf435b_stopbe .n_cf435b_tite0e:hover {
    background: rgba(90, 103, 242, 0.05);
    padding-left: 5px;
}

.n_cf435b_stopbe .n_cf435b_tnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #999;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.n_cf435b_stopbe .n_cf435b_tite0e:nth-child(1) .n_cf435b_tnum {
    background: #FF4757;
}

.n_cf435b_stopbe .n_cf435b_tite0e:nth-child(2) .n_cf435b_tnum {
    background: #FF6B81;
}

.n_cf435b_stopbe .n_cf435b_tite0e:nth-child(3) .n_cf435b_tnum {
    background: #FFA502;
}

.n_cf435b_stopbe .n_cf435b_tite0e:nth-child(n+4) .n_cf435b_tnum {
    background: #999;
}

.n_cf435b_stopbe .n_cf435b_tite0e a {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s;
}

.n_cf435b_stopbe .n_cf435b_tite0e a:hover {
    color: var(--primary);
}

/* ============ 小说详情头部 ============ */

.n_cf435b_mhea {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.n_cf435b_mhea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.n_cf435b_mcov {
    width: 180px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

.n_cf435b_mcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_cf435b_minf {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.n_cf435b_mtitea {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0 0 10px 0;
}

.n_cf435b_mtag92 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.n_cf435b_mtag {
    padding: 2px 8px;
    background: var(--bg-soft);
    color: var(--primary);
    font-size: 11px;
    border-radius: 8px;
    text-decoration: none;
}

.n_cf435b_mirow {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px dashed #eee;
}

.n_cf435b_mirow:last-child {
    border-bottom: none;
}

.n_cf435b_milab {
    width: 60px;
    color: var(--text-light);
    flex-shrink: 0;
}

.n_cf435b_mival {
    color: var(--text-main);
    flex: 1;
}

.n_cf435b_mdes {
    margin-top: 12px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: var(--radius-sm);
    color: var(--text-sub);
    font-size: 12px;
    line-height: 1.6;
    max-height: 80px;
    overflow: hidden;
    position: relative;
}

.n_cf435b_mdes::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25px;
    background: linear-gradient(to bottom, transparent, #f8f8f8);
}

.n_cf435b_mact {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* 评分星星 */

.n_cf435b_stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.n_cf435b_star {
    width: 14px;
    height: 14px;
    /*background: url('../images/star.png') center no-repeat;*/
    background-size: contain;
    display: inline-block;
}

.n_cf435b_star.n_cf435b_empty {
    background: url('../images/star2.png') center no-repeat;
    background-size: contain;
    opacity: 0.5;
}

/* 按钮 */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    line-height: 1;
}

.n_cf435b_bpri {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 3px 10px rgba(90, 103, 242, 0.25);
}

.n_cf435b_bpri:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 103, 242, 0.35);
    color: #fff;
}

.n_cf435b_bsec {
    background: var(--bg-card);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.n_cf435b_bsec:hover {
    background: var(--primary);
    color: #fff;
}

/* 资讯列表 */

.n_cf435b_csec {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_clis {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.n_cf435b_citeb1 {
    padding: 8px 10px;
    background: #f5f5f5;
    color: var(--text-sub);
    border-radius: var(--radius-sm);
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_citeb1:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* 资讯详情 */

.n_cf435b_adet {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 25px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_adtit {
    font-size: 22px;
    font-weight: bold;
    color: var(--text-main);
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: center;
}

.n_cf435b_admet {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border);
}

.n_cf435b_admet span {
    margin: 0 10px;
}

.n_cf435b_adbod {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.8;
    word-break: break-word;
}

.n_cf435b_adbod img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 10px 0;
}

.n_cf435b_adbod p {
    margin: 0 0 12px 0;
}

/* 相关推荐卡片 */

.n_cf435b_rcar {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--gradient-soft);
    border-radius: var(--radius);
    margin-top: 25px;
    gap: 15px;
}

.n_cf435b_rccov {
    width: 80px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_rccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_cf435b_rcinf {
    flex: 1;
    min-width: 0;
}

.n_cf435b_rcnam {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0 0 6px 0;
}

.n_cf435b_rcnam a {
    color: var(--text-main);
    text-decoration: none;
}

.n_cf435b_rcnam a:hover {
    color: var(--primary);
}

.n_cf435b_rcmet {
    font-size: 11px;
    color: var(--text-sub);
    margin-bottom: 6px;
}

.n_cf435b_rcmet span {
    margin-right: 10px;
}

.n_cf435b_rcdes {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.n_cf435b_rcact {
    flex-shrink: 0;
}

/* 专题头部 */

.n_cf435b_fhea {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: #1a1a1a;
}

.n_cf435b_fhcov {
    width: 100%;
    /* aspect-ratio: 16/9; */
    height: 420px;
    overflow: hidden;
    position: relative;
}

.n_cf435b_fhcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.n_cf435b_fhcov::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 30%);
    pointer-events: none;
}

.n_cf435b_fhbod {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 28px 22px;
    z-index: 2;
}

.n_cf435b_fhtit {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.n_cf435b_fhmet {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
}

.n_cf435b_fhmet .n_cf435b_mite {
    display: inline-flex;
    align-items: center;
}

.n_cf435b_fhmet .n_cf435b_mite em {
    font-style: normal;
    opacity: 0.85;
    margin-right: 4px;
}

.n_cf435b_fhmet .n_cf435b_mite strong {
    font-weight: 600;
    color: #C7CFFF;
}

.n_cf435b_fhmet .n_cf435b_mdiv {
    margin: 0 12px;
    opacity: 0.45;
    color: #fff;
}

.n_cf435b_fhdes {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 6px 0 0 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 侧边栏通用 */

.n_cf435b_scard5 {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    border: 1px solid var(--border);
}

.n_cf435b_sctit1b {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0 0 12px 0;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}

/* 推荐列表 */

.n_cf435b_rlis {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n_cf435b_ritee9 {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.n_cf435b_ritee9:last-child {
    border-bottom: none;
}

.n_cf435b_rcov {
    width: 50px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 8px;
    flex-shrink: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

.n_cf435b_rcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_cf435b_rinf {
    flex: 1;
    min-width: 0;
}

.n_cf435b_rtitfb {
    font-size: 12px;
    color: var(--text-main);
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_rtitfb a {
    color: var(--text-main);
    text-decoration: none;
}

.n_cf435b_rtitfb a:hover {
    color: var(--primary);
}

.n_cf435b_rmet88 {
    font-size: 11px;
    color: var(--text-light);
}

.n_cf435b_rgri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.n_cf435b_rcar {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.n_cf435b_rcar:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(90, 103, 242, 0.12);
    transform: translateY(-2px);
}

.n_cf435b_rccov {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    text-decoration: none;
}

.n_cf435b_rccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.n_cf435b_rcar:hover .n_cf435b_rccov img {
    transform: scale(1.06);
}

.n_cf435b_rcsta {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    color: #fff;
    font-size: 11px;
    border-radius: 3px;
    z-index: 2;
    font-weight: 500;
    line-height: 1.3;
}

.n_cf435b_rcsta.n_cf435b_song {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary);
}

.n_cf435b_rcsta.n_cf435b_send {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.n_cf435b_rcsco {
    position: absolute;
    bottom: 6px;
    right: 6px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.6);
    color: #C7CFFF;
    font-size: 10px;
    border-radius: 3px;
    z-index: 2;
    font-weight: 600;
}

.n_cf435b_rcbod {
    padding: 10px 12px 12px;
}

.n_cf435b_rctit {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 20px;
}

.n_cf435b_rctit a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_rctit a:hover {
    color: var(--primary);
}

.n_cf435b_rcaut {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_rcsou {
    display: inline-block;
    font-size: 11px;
    color: var(--text-sub);
    padding: 1px 6px;
    background: #f5f5f5;
    border-radius: 3px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 排行列表 */

.n_cf435b_rlis69 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n_cf435b_rite {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.n_cf435b_rite:last-child {
    border-bottom: none;
}

.n_cf435b_rnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    color: var(--text-light);
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.n_cf435b_rite:nth-child(1) .n_cf435b_rnum {
    background: #FF6B9D;
    color: #fff;
}

.n_cf435b_rite:nth-child(2) .n_cf435b_rnum {
    background: #828DF7;
    color: #fff;
}

.n_cf435b_rite:nth-child(3) .n_cf435b_rnum {
    background: #5A67F2;
    color: #fff;
}

.n_cf435b_rlin {
    flex: 1;
    color: var(--text-sub);
    font-size: 12px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.n_cf435b_rlin:hover {
    color: var(--primary);
}

/* 标签云 */

.n_cf435b_tclo {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.n_cf435b_tclo a {
    padding: 3px 10px;
    background: var(--bg-soft);
    color: var(--text-sub);
    font-size: 11px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.n_cf435b_tclo a:hover {
    background: var(--gradient);
    color: #fff;
}

/* 搜索页标签 */

.n_cf435b_stab2f {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 4px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    width: fit-content;
    border: 1px solid var(--border);
}

.n_cf435b_stab {
    padding: 6px 20px;
    color: var(--text-sub);
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.n_cf435b_stab.n_cf435b_activ {
    background: var(--gradient);
    color: #fff;
}

/* 专题/标签 详情页 - 小说行列表 */

.n_cf435b_mrow41 {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border);
}

.n_cf435b_mrow41:last-child {
    border-bottom: none;
}

.n_cf435b_mrcov {
    width: 110px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

.n_cf435b_mrcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_cf435b_mrinf {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.n_cf435b_mrtit {
    font-size: 15px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.n_cf435b_mrtit .n_cf435b_rnum7e {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.n_cf435b_mrtit a {
    color: var(--text-main);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_mrtit a:hover {
    color: var(--primary);
}

.n_cf435b_mrmet {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: var(--text-sub);
    margin-bottom: 8px;
}

.n_cf435b_mrmet span {
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 8px;
}

.n_cf435b_mrdes {
    font-size: 12px;
    color: var(--text-sub);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 10px 0;
}

.n_cf435b_mract {
    margin-top: auto;
}

/* ============ 右侧栏通用区块 ============ */

.n_cf435b_stag,
.n_cf435b_stopbe,
.n_cf435b_snew {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_stag .n_cf435b_shea66,
.n_cf435b_stopbe .n_cf435b_shea66,
.n_cf435b_snew .n_cf435b_shea66 {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
    padding-bottom: 8px;
}

.n_cf435b_stag .n_cf435b_stit,
.n_cf435b_stopbe .n_cf435b_stit,
.n_cf435b_snew .n_cf435b_stit {
    font-size: 14px;
}

.n_cf435b_tclo7a {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.n_cf435b_tite0f {
    padding: 3px 10px;
    background: #f5f5f5;
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-sub);
    text-decoration: none;
    transition: all 0.2s ease;
}

.n_cf435b_tite0f:hover {
    background: var(--primary);
    color: #fff;
}

.n_cf435b_tlis9a {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n_cf435b_tite0e {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: background 0.2s ease;
}

.n_cf435b_tite0e:last-child {
    border-bottom: none;
}

.n_cf435b_tite0e:hover {
    background: #fafafa;
}

.n_cf435b_tnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 11px;
    color: #999;
    margin-right: 8px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_tite0e:nth-child(1) .n_cf435b_tnum,
.n_cf435b_tite0e:nth-child(2) .n_cf435b_tnum,
.n_cf435b_tite0e:nth-child(3) .n_cf435b_tnum {
    background: var(--primary);
    color: #fff;
}

.n_cf435b_tite0e a {
    flex: 1;
    color: var(--text-main);
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.n_cf435b_tite0e a:hover {
    color: var(--primary);
}

.n_cf435b_nlis {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n_cf435b_niteb4 {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: background 0.2s ease;
}

.n_cf435b_niteb4:last-child {
    border-bottom: none;
}

.n_cf435b_niteb4:hover {
    background: #fafafa;
}

.n_cf435b_nnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 11px;
    color: #999;
    margin-right: 8px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_niteb4:nth-child(1) .n_cf435b_nnum,
.n_cf435b_niteb4:nth-child(2) .n_cf435b_nnum,
.n_cf435b_niteb4:nth-child(3) .n_cf435b_nnum {
    background: var(--primary);
    color: #fff;
}

.n_cf435b_ntit1f {
    flex: 1;
    color: var(--text-main);
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.n_cf435b_ntit1f:hover {
    color: var(--primary);
}

/* ============ 分类标签列表 ============ */

.n_cf435b_csec34 {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.n_cf435b_cheac4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.n_cf435b_ctit53 {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0;
    display: flex;
    align-items: center;
}

.n_cf435b_cico6e {
    color: var(--primary);
    margin-right: 5px;
}

.n_cf435b_ctit53 a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_ctit53 a:hover {
    color: var(--primary);
}

.n_cf435b_cmor {
    color: #999;
    font-size: 11px;
    text-decoration: none;
}

.n_cf435b_cmor:hover {
    color: var(--primary);
}

.n_cf435b_cglis {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.n_cf435b_cgite {
    padding: 3px 10px;
    background: #f5f5f5;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-sub);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.n_cf435b_cgite:hover {
    background: var(--primary);
    color: #fff;
}

/* ============ 响应式 ============ */

@media (max-width: 1200px) {
    .n_cf435b_scone8,
    .n_cf435b_pwra,
    .n_cf435b_bread,
    .n_cf435b_alis,
    .n_cf435b_glis,
    .n_cf435b_mglis {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .n_cf435b_ngri {
        grid-template-columns: repeat(auto-fill, 174px);
    }

    .n_cf435b_iclis,
    .n_cf435b_tgri {
        grid-template-columns: repeat(2, 1fr);
    }

    .n_cf435b_mcar {
        width: calc(20% - 20px);
        margin: 0 10px 20px 10px;
    }

    /* 窄屏下书本卡片宽度自适应，封面统一保持 3:4 比例 */
    .n_cf435b_mhcar {
        width: calc(20% - 16px);
        min-height: 0;
    }

    .n_cf435b_ncar {
        min-height: 0;
    }

    .n_cf435b_mccov,
    .n_cf435b_mhcar .n_cf435b_ccov,
    .n_cf435b_ncar .n_cf435b_ccov {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        margin: 0 0 8px 0;
    }
}

@media (max-width: 768px) {
    .n_cf435b_ngri {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .n_cf435b_iclis,
    .n_cf435b_tgri {
        grid-template-columns: 1fr;
    }

    .n_cf435b_dlay,
    .n_cf435b_mrow {
        flex-direction: column;
    }

    .n_cf435b_dsid,
    .n_cf435b_mrig {
        width: 100%;
    }

    .n_cf435b_mhea {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .n_cf435b_fhbod {
        padding: 14px 16px 16px;
    }

    .n_cf435b_fhtit {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .n_cf435b_fhmet {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .n_cf435b_fhmet .n_cf435b_mdiv {
        margin: 0 8px;
    }

    .n_cf435b_fhdes {
        font-size: 12px;
        line-height: 1.6;
    }

    .n_cf435b_alis {
        padding: 10px 15px;
    }

    .n_cf435b_aite {
        flex-wrap: wrap;
    }

    .n_cf435b_acov {
        width: 80px;
        height: 60px;
    }

    .n_cf435b_clis {
        grid-template-columns: repeat(3, 1fr);
    }

    .n_cf435b_gite {
        flex-wrap: wrap;
    }

    .n_cf435b_gite .btn {
        margin-top: 8px;
        width: 100%;
    }

    .n_cf435b_mcar {
        width: calc(33.33% - 20px);
        height: auto;
        min-height: 220px;
    }

    .n_cf435b_mhcar {
        width: calc(33.33% - 10px);
        min-height: 0;
    }

    .n_cf435b_ncar {
        min-height: 0;
    }

    .n_cf435b_mccov,
    .n_cf435b_mhcar .n_cf435b_ccov,
    .n_cf435b_ncar .n_cf435b_ccov {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        border-radius: 4px;
        margin: 0 0 8px 0;
    }
}

/* ============================================
   52pkvr风格 - 专题相关样式
   ============================================ */

/* ---------- 面包屑导航 ---------- */
.n_cf435b_pbre {
    padding: 12px 0;
    font-size: 13px;
    color: #666;
}

.n_cf435b_pbre a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_pbre a:hover {
    color: #5A67F2;
}

.n_cf435b_pbsep {
    margin: 0 8px;
    color: #ccc;
}

.n_cf435b_pbcur {
    color: #333;
    font-weight: 500;
}

/* ---------- 主布局 ---------- */
.n_cf435b_pmlay {
    display: flex;
    gap: 20px;
}

.n_cf435b_pmcon {
    flex: 1;
    min-width: 0;
}

.n_cf435b_psid {
    width: 280px;
    flex-shrink: 0;
}

/* ---------- 区块标题 - 左侧橙色装饰条 ---------- */
.n_cf435b_psec {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.n_cf435b_pshea {
    padding: 0 15px;
    border-bottom: 2px solid #5A67F2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.n_cf435b_pstit {
    margin: 0;
    padding: 12px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-left: 12px;
}

.n_cf435b_pstit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: #5A67F2;
    border-radius: 2px;
}

/* ---------- 专题列表网格卡片 ---------- */
.n_cf435b_ptgri {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
}

.n_cf435b_ptcar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.n_cf435b_ptcar:hover {
    border-color: #5A67F2;
    box-shadow: 0 4px 12px rgba(90, 103, 242, 0.15);
    transform: translateY(-2px);
}

.n_cf435b_ptclin {
    display: block;
    text-decoration: none;
}

.n_cf435b_ptccov {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.n_cf435b_ptccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.n_cf435b_ptcar:hover .n_cf435b_ptccov img {
    transform: scale(1.08);
}

.n_cf435b_ptcinf {
    padding: 12px 14px;
}

.n_cf435b_ptctit {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.n_cf435b_ptcar:hover .n_cf435b_ptctit {
    color: #5A67F2;
}

.n_cf435b_ptcdes {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 36px;
}

/* ---------- 分页 ---------- */
.n_cf435b_ppag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.n_cf435b_ppag a,
.n_cf435b_ppag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 10px;
    background: #fff;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.n_cf435b_ppag a:hover {
    border-color: #5A67F2;
    color: #5A67F2;
}

.n_cf435b_ppag .n_cf435b_curre,
.n_cf435b_ppag .n_cf435b_activ {
    background: #5A67F2;
    color: #fff;
    border-color: #5A67F2;
    cursor: default;
}

.n_cf435b_ppag .n_cf435b_disab,
.n_cf435b_ppag .n_cf435b_nocli {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.n_cf435b_ppag .n_cf435b_inde {
    padding: 0 12px;
}

/* ---------- 专题详情页横幅 ---------- */
.n_cf435b_ptban {
    position: relative;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background: #1a1a1a;
}

/* 整块区域：原图高虚化铺底 */
.n_cf435b_ptbbg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.n_cf435b_ptbbg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* 放大后再虚化，避免边缘透明 */
    filter: blur(38px) saturate(1.25);
    transform: scale(1.25);
}

.n_cf435b_ptbbg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: /* 两侧渐变遮罩：中间偏亮、两侧压暗，突出中间人物 */ linear-gradient(90deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.86) 16%,
    rgba(0, 0, 0, 0.62) 32%,
    rgba(0, 0, 0, 0.34) 50%,
    rgba(0, 0, 0, 0.62) 68%,
    rgba(0, 0, 0, 0.86) 84%,
    rgba(0, 0, 0, 0.94) 100%),
        /* 整体基础压暗，制造电影感 */ rgba(0, 0, 0, 0.30);
    pointer-events: none;
}

/* 中间：清晰原图（缩小并上下留白） */
.n_cf435b_ptbshd {
    position: absolute;
    top: 26px;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    z-index: 1;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.n_cf435b_ptbshd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.03) saturate(1.05);
}

.n_cf435b_ptbove {
    display: none;
}

/* 文字可读性蒙版（覆盖在虚化与清晰图之上） */
.n_cf435b_ptbmsk {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.6) 78%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 32%);
}

.n_cf435b_ptbcon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 28px 22px;
    z-index: 3;
}

.n_cf435b_ptbtit {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.n_cf435b_ptbmet {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
}

.n_cf435b_ptbmet .n_cf435b_mite {
    display: inline-flex;
    align-items: center;
}

.n_cf435b_ptbmet .n_cf435b_mite em {
    font-style: normal;
    opacity: 0.85;
    margin-right: 4px;
}

.n_cf435b_ptbmet .n_cf435b_mite strong {
    font-weight: 600;
    color: #C7CFFF;
}

.n_cf435b_ptbmet .n_cf435b_mdiv {
    margin: 0 12px;
    opacity: 0.45;
    color: #fff;
}

.n_cf435b_ptbmet .n_cf435b_mico {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
}

.n_cf435b_mitim {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z'/%3E%3C/svg%3E");
}

.n_cf435b_miboo {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z'/%3E%3C/svg%3E");
}

.n_cf435b_mitag {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M21.41 11.58L12.43 2.6c-.37-.37-.88-.58-1.42-.58H4c-1.1 0-2 .9-2 2v7.01c0 .53.21 1.04.59 1.41l8.98 8.99c.78.78 2.05.78 2.83 0l7.01-7.01c.78-.78.78-2.04 0-2.83z'/%3E%3C/svg%3E");
}

.n_cf435b_ptbdes {
    font-size: 13px;
    line-height: 1.7;
    margin: 6px 0 0 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---------- 小说列表（专题详情页） ---------- */
.n_cf435b_pmlis {
    padding: 10px 15px;
}

.n_cf435b_pmite {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: background 0.2s ease;
}

.n_cf435b_pmite:last-child {
    border-bottom: none;
}

.n_cf435b_pmite:hover {
    background: #fafafa;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.n_cf435b_pmran {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    color: #999;
    margin-right: 12px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_pmite:nth-child(1) .n_cf435b_pmran,
.n_cf435b_pmite:nth-child(2) .n_cf435b_pmran,
.n_cf435b_pmite:nth-child(3) .n_cf435b_pmran {
    background: #5A67F2;
    color: #fff;
}

.n_cf435b_pmcov {
    width: 55px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1px solid #eee;
    display: block;
    text-decoration: none;
}

.n_cf435b_pmcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_cf435b_pminf {
    flex: 1;
    min-width: 0;
}

.n_cf435b_pmtit {
    font-size: 14px;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.n_cf435b_pmtit a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_pmtit a:hover {
    color: #5A67F2;
}

.n_cf435b_pmmet {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
    align-items: center;
}

.n_cf435b_pmsta {
    display: inline-block;
    padding: 2px 7px;
    font-size: 11px;
    border-radius: 3px;
    font-weight: 500;
    line-height: 1.3;
    border: 1px solid var(--primary);
}

.n_cf435b_pmsta.n_cf435b_song {
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--primary);
}

.n_cf435b_pmsta.n_cf435b_send {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.n_cf435b_pmdes {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.n_cf435b_pmbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: #5A67F2;
    color: #fff;
    font-size: 12px;
    border-radius: 15px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.n_cf435b_pmbtn:hover {
    background: #4453D9;
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- 侧边栏区块 ---------- */
.n_cf435b_pssec {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.n_cf435b_psheac9 {
    padding: 0 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.n_cf435b_pstit73 {
    margin: 0;
    padding: 12px 0;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-left: 10px;
}

.n_cf435b_pstit73::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    background: #5A67F2;
    border-radius: 2px;
}

.n_cf435b_psmor {
    color: #999;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_psmor:hover {
    color: #5A67F2;
}

/* ---------- 侧边栏标签云 ---------- */
.n_cf435b_ptclo {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 15px;
}

.n_cf435b_ptite {
    padding: 4px 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.n_cf435b_ptite:hover {
    background: #5A67F2;
    color: #fff;
}

/* ---------- 侧边栏专题列表 ---------- */
.n_cf435b_pstlis {
    padding: 8px 15px;
    margin: 0;
    list-style: none;
}

.n_cf435b_pstite {
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: background 0.2s ease;
}

.n_cf435b_pstite:last-child {
    border-bottom: none;
}

.n_cf435b_pstite:hover {
    background: #fafafa;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.n_cf435b_pstnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 11px;
    color: #999;
    margin-right: 8px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_pstite:nth-child(1) .n_cf435b_pstnum,
.n_cf435b_pstite:nth-child(2) .n_cf435b_pstnum,
.n_cf435b_pstite:nth-child(3) .n_cf435b_pstnum {
    background: #5A67F2;
    color: #fff;
}

.n_cf435b_pstite a {
    flex: 1;
    color: #333;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.n_cf435b_pstite a:hover {
    color: #5A67F2;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1200px) {
    .n_cf435b_pmlay {
        flex-direction: column;
    }

    .n_cf435b_psid {
        width: 100%;
    }

    .n_cf435b_ptgri {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .n_cf435b_ptgri {
        grid-template-columns: 1fr;
    }

    .n_cf435b_ptban {
        height: 260px;
    }

    .n_cf435b_ptbshd {
        top: 16px;
        bottom: 16px;
        width: 72%;
    }

    .n_cf435b_ptbcon {
        padding: 14px 16px 16px;
    }

    .n_cf435b_ptbtit {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .n_cf435b_ptbmet {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .n_cf435b_ptbmet .n_cf435b_mdiv {
        margin: 0 8px;
    }

    .n_cf435b_ptbdes {
        font-size: 12px;
        line-height: 1.6;
    }

    .n_cf435b_pmite {
        flex-wrap: wrap;
    }

    .n_cf435b_pmbtn {
        margin-top: 10px;
        width: 100%;
    }
}

/* ============================================
   资讯详情页 - 52pkvr风格
   ============================================ */

.n_cf435b_nbre {
    padding: 15px 0;
    font-size: 13px;
    color: #666;
}

.n_cf435b_nbre a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_nbre a:hover {
    color: #5A67F2;
}

.n_cf435b_nbre .n_cf435b_bsep {
    margin: 0 6px;
    color: #ccc;
}

.n_cf435b_nbre .n_cf435b_bcur {
    color: #333;
}

.n_cf435b_nmrow {
    display: flex;
    gap: 20px;
}

.n_cf435b_nmlef {
    flex: 1;
    min-width: 0;
}

.n_cf435b_nmrig {
    width: 300px;
    flex-shrink: 0;
}

/* ============================================
   统一面包屑导航 .crumb-bar
   用于所有内页（列表/详情/搜索/专题/标签/资讯/小说详情）
   ============================================ */
.n_cf435b_cbar1b {
    padding: 16px 0;
    font-size: 13px;
    color: #888;
    line-height: 22px;
}

.n_cf435b_cbinn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.n_cf435b_cbico {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235A67F2'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.n_cf435b_cbar1b a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_cbar1b a:hover {
    color: #5A67F2;
}

.n_cf435b_cbsep {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cccccc'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
    font-style: normal;
}

.n_cf435b_cbcur {
    color: #333;
    font-weight: 500;
    max-width: 480px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .n_cf435b_cbar1b {
        padding: 12px 0;
        font-size: 12px;
    }

    .n_cf435b_cbcur {
        max-width: 60vw;
    }
}

.n_cf435b_nadet {
    background: #fff;
    border-radius: 6px;
    padding: 25px 30px;
    border: 1px solid #e5e5e5;
}

.n_cf435b_natit {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: left;
}

.n_cf435b_namet {
    text-align: left;
    font-size: 12px;
    color: #999;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.n_cf435b_namet span {
    margin-right: 20px;
}

.n_cf435b_nabod {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    word-break: break-word;
}

.n_cf435b_nabod img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 15px 0;
    display: block;
}

.n_cf435b_nabod p {
    margin: 0 0 15px 0;
    text-indent: 2em;
}

.n_cf435b_nabod h1,
.n_cf435b_nabod h2,
.n_cf435b_nabod h3,
.n_cf435b_nabod h4,
.n_cf435b_nabod h5,
.n_cf435b_nabod h6 {
    margin: 20px 0 15px 0;
    font-weight: bold;
    color: #333;
}

.n_cf435b_nabod h1 {
    font-size: 22px;
}

.n_cf435b_nabod h2 {
    font-size: 20px;
}

.n_cf435b_nabod h3 {
    font-size: 18px;
}

.n_cf435b_nabod h4 {
    font-size: 16px;
}

.n_cf435b_nabod ul,
.n_cf435b_nabod ol {
    margin: 15px 0;
    padding-left: 2em;
}

.n_cf435b_nabod li {
    margin: 8px 0;
}

.n_cf435b_nabod blockquote {
    margin: 15px 0;
    padding: 10px 15px;
    background: #f5f5f5;
    border-left: 3px solid #5A67F2;
    color: #666;
}

.n_cf435b_nabod a {
    color: #5A67F2;
    text-decoration: none;
}

.n_cf435b_nabod a:hover {
    text-decoration: underline;
}

.n_cf435b_nbtit {
    display: flex;
    align-items: center;
    height: 36px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.n_cf435b_nbtit .n_cf435b_tbar {
    width: 4px;
    height: 16px;
    background: #5A67F2;
    margin-right: 10px;
    border-radius: 2px;
}

.n_cf435b_nbtit h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
    flex: 1;
}

.n_cf435b_nbmor {
    color: #999;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_nbmor:hover {
    color: #5A67F2;
}

.n_cf435b_nrman {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.n_cf435b_nrcar {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #fafafa;
    border-radius: 6px;
    gap: 15px;
    border: 1px solid #eee;
}

.n_cf435b_nrcov {
    width: 90px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
}

.n_cf435b_nrcov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.n_cf435b_nrinf {
    flex: 1;
    min-width: 0;
}

.n_cf435b_nrnam {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px 0;
}

.n_cf435b_nrnam a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_nrnam a:hover {
    color: #5A67F2;
}

.n_cf435b_nrmet {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.n_cf435b_nrmet span {
    margin-right: 15px;
}

.n_cf435b_nrdes {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.n_cf435b_nract {
    flex-shrink: 0;
    align-self: center;
}

.n_cf435b_nrnew {
    background: #fff;
    border-radius: 6px;
    padding: 20px 25px;
    margin-top: 20px;
    border: 1px solid #e5e5e5;
}

.n_cf435b_nrnew .n_cf435b_nbtit {
    margin-bottom: 10px;
}

.n_cf435b_nrnew .n_cf435b_nlis {
    padding: 0;
    margin: 0;
    list-style: none;
}

.n_cf435b_nrnew .n_cf435b_niteb4 {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dotted #eee;
    transition: background 0.2s ease;
}

.n_cf435b_nrnew .n_cf435b_niteb4:last-child {
    border-bottom: none;
}

.n_cf435b_nrnew .n_cf435b_niteb4:hover {
    background: #fafafa;
}

.n_cf435b_nrnew .n_cf435b_ninum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 11px;
    color: #999;
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_nrnew .n_cf435b_niteb4:nth-child(1) .n_cf435b_ninum,
.n_cf435b_nrnew .n_cf435b_niteb4:nth-child(2) .n_cf435b_ninum,
.n_cf435b_nrnew .n_cf435b_niteb4:nth-child(3) .n_cf435b_ninum {
    background: #5A67F2;
    color: #fff;
}

.n_cf435b_nrnew .n_cf435b_niteb4 a {
    flex: 1;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.n_cf435b_nrnew .n_cf435b_niteb4 a:hover {
    color: #5A67F2;
}

.n_cf435b_nrnew .n_cf435b_nidat {
    color: #bbb;
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 10px;
}

@media (max-width: 1200px) {
    .n_cf435b_nbre {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .n_cf435b_nmrow {
        flex-direction: column;
    }

    .n_cf435b_nmrig {
        width: 100%;
    }

    .n_cf435b_nadet {
        padding: 15px 20px;
    }

    .n_cf435b_natit {
        font-size: 20px;
    }

    .n_cf435b_nrcar {
        flex-wrap: wrap;
    }

    .n_cf435b_nract {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   右侧边栏 - 52pkvr风格
   ============================================ */

.n_cf435b_scar {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e5e5e5;
}

.n_cf435b_sctit {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0 0 12px 0;
    padding-left: 10px;
    border-left: 4px solid #5A67F2;
    height: 16px;
    line-height: 16px;
}

.n_cf435b_sclis {
    list-style: none;
    padding: 0;
    margin: 0;
}

.n_cf435b_scite {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.n_cf435b_scite:last-child {
    border-bottom: none;
}

.n_cf435b_sccov {
    width: 50px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
}

.n_cf435b_sccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.n_cf435b_scinf {
    flex: 1;
    min-width: 0;
}

.n_cf435b_sctite {
    font-size: 13px;
    color: #333;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_sctite a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.n_cf435b_sctite a:hover {
    color: #5A67F2;
}

.n_cf435b_scmet {
    font-size: 11px;
    color: #999;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.n_cf435b_srlis {
    list-style: none;
    padding: 0;
    margin: 0;
}

.n_cf435b_srite {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.n_cf435b_srite:last-child {
    border-bottom: none;
}

.n_cf435b_srnum {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #f0f0f0;
    border-radius: 3px;
    font-size: 11px;
    color: #999;
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: bold;
}

.n_cf435b_srite:nth-child(1) .n_cf435b_srnum,
.n_cf435b_srite:nth-child(2) .n_cf435b_srnum,
.n_cf435b_srite:nth-child(3) .n_cf435b_srnum {
    background: #5A67F2;
    color: #fff;
}

.n_cf435b_srlin {
    flex: 1;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.n_cf435b_srlin:hover {
    color: #5A67F2;
}

.n_cf435b_stlis {
    margin-bottom: 0;
}

/* ============ 资讯主页样式 ============ */

.n_cf435b_nhcon {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.n_cf435b_nhgri {
    width: 100%;
}

.n_cf435b_nhcar {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.n_cf435b_nhcar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #5A67F2;
}

.n_cf435b_nhcar .n_cf435b_ccov {
    display: block;
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    text-decoration: none;
}

.n_cf435b_nhcar .n_cf435b_ccov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.n_cf435b_nhcar:hover .n_cf435b_ccov img {
    transform: scale(1.05);
}

.n_cf435b_nhcar .n_cf435b_cinf {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.n_cf435b_nhcar .n_cf435b_ctit {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_cf435b_nhcar .n_cf435b_ctit a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.n_cf435b_nhcar .n_cf435b_ctit a:hover {
    color: #5A67F2;
}

.n_cf435b_nhcar .n_cf435b_cdes {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.n_cf435b_nhcar .n_cf435b_cmet {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.n_cf435b_btop {
    position: fixed;
    right: 30px;
    bottom: 80px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #5A67F2 0%, #4453D9 100%);
    border-radius: 12px;
    text-align: center;
    line-height: 52px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(90, 103, 242, 0.35);
    border: none;
}

.n_cf435b_btop:hover {
    background: linear-gradient(135deg, #5A67F2 0%, #4453D9 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(90, 103, 242, 0.5);
}

.n_cf435b_btop.n_cf435b_show {
    opacity: 1;
    visibility: visible;
}

.n_cf435b_btop::before {
    content: '▲';
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

/* 资讯阅读页 */
.n_cf435b_rhea {
    text-align: center;
    padding: 20px 0 15px;
    border-bottom: 1px solid #e8e8e8;
}

.n_cf435b_rtit {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px;
}

.n_cf435b_rmet {
    font-size: 14px;
    color: #999;
}

.n_cf435b_rmite em {
    font-style: normal;
    color: #aaa;
}

.n_cf435b_rmite a {
    color: #666;
    text-decoration: none;
}

.n_cf435b_rmite a:hover {
    color: var(--primary);
}

.n_cf435b_rmdiv {
    margin: 0 10px;
    color: #ddd;
}

.n_cf435b_rnav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.n_cf435b_rnpre,
.n_cf435b_rnnex,
.n_cf435b_rnbac {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 20px;
    font-size: 15px;
    color: #fff;
    background: var(--primary);
    border-radius: 4px;
    text-decoration: none;
    transition: opacity .2s;
}

.n_cf435b_rnpre:hover,
.n_cf435b_rnnex:hover,
.n_cf435b_rnbac:hover {
    opacity: .85;
    color: #fff;
}

.n_cf435b_rnpre.n_cf435b_disab,
.n_cf435b_rnnex.n_cf435b_disab {
    background: #ccc;
    color: #fff;
    cursor: not-allowed;
}

.n_cf435b_rnsel {
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    max-width: 200px;
}

.n_cf435b_rcon {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    font-size: 18px;
    line-height: 2;
    color: #333;
    word-break: break-all;
}

.n_cf435b_rcon p {
    margin: 0 0 1.2em;
    text-indent: 2em;
}

.n_cf435b_rnbot {
    border-bottom: none;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.n_cf435b_rclis {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.n_cf435b_rclis .n_cf435b_loadtf2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.n_cf435b_rclis .n_cf435b_loadtf2 h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.n_cf435b_rclis .n_cf435b_lrc8 {
    font-size: 14px;
    color: #999;
}

.n_cf435b_rclis .n_cf435b_clis {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.n_cf435b_rclis .n_cf435b_citeb1 {
    display: inline-block;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s;
}

.n_cf435b_rclis .n_cf435b_citeb1:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.n_cf435b_rclis .n_cf435b_citeb1.n_cf435b_activ {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

/* 章节页书本信息块（简洁形式） */
.n_cf435b_rbook {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
}

.n_cf435b_rbook .n_cf435b_rbkx {
    margin: 0 0 15px;
    padding: 12px 15px;
    background: #f7f8fa;
    border-radius: 6px;
    text-align: left;
    font-size: 14px;
    line-height: 1.9;
    color: #333;
}

.n_cf435b_rbook .n_cf435b_rbkc {
    display: inline-block;
    margin: 6px auto 0;
    transform: perspective(900px) rotateY(-14deg);
    transform-origin: center center;
    transition: transform .25s ease;
}

.n_cf435b_rbook .n_cf435b_rbkc:hover {
    transform: perspective(900px) rotateY(-5deg);
}

.n_cf435b_rbook .n_cf435b_rbkc img {
    display: block;
    width: 200px;
    height: 266px;
    object-fit: cover;
    border-radius: 2px 5px 5px 2px;
    border-left: 6px solid #d5d9e0;
    box-shadow: 7px 0 0 #eff1f5,
    8px 2px 0 #d3d7de,
    9px 4px 0 #e7eaef,
    10px 5px 0 #c9cdd4,
    18px 12px 22px rgba(0, 0, 0, .22);
}

.n_cf435b_rbook .n_cf435b_rbkt {
    display: block;
    margin-top: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color .2s;
}

.n_cf435b_rbook .n_cf435b_rbkt:hover {
    color: var(--primary);
}

.n_cf435b_rbook .n_cf435b_rbkl {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    color: var(--primary);
    text-decoration: underline;
    transition: opacity .2s;
    font-weight: bolder;
}

.n_cf435b_rbook .n_cf435b_rbkl:hover {
    opacity: .8;
    color: var(--primary);
}

/* 章节页底部书本信息卡片 */
.n_cf435b_rbkcard {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px;
    max-width: 800px;
    margin: 20px auto 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.n_cf435b_rbkcard .n_cf435b_rkbc {
    flex-shrink: 0;
}

.n_cf435b_rbkcard .n_cf435b_rkbc img {
    display: block;
    width: 90px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.n_cf435b_rbkcard .n_cf435b_rkbi {
    flex: 1;
    min-width: 0;
}

.n_cf435b_rbkcard .n_cf435b_rkbt {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color .2s;
}

.n_cf435b_rbkcard .n_cf435b_rkbt:hover {
    color: var(--primary);
}

.n_cf435b_rbkcard .n_cf435b_rkbm {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.n_cf435b_rbkcard .n_cf435b_rkbm em {
    font-style: normal;
    color: #999;
}

.n_cf435b_rbkcard .n_cf435b_rbkd {
    margin: 0;
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.n_cf435b_rbkcard .n_cf435b_rbkb {
    flex-shrink: 0;
    align-self: center;
    padding: 8px 18px;
    font-size: 14px;
    color: #fff;
    background: var(--primary);
    border-radius: 20px;
    text-decoration: none;
    transition: opacity .2s;
}

.n_cf435b_rbkcard .n_cf435b_rbkb:hover {
    opacity: .85;
    color: #fff;
}

.n_cf435b_rbkcard .n_cf435b_rbkbtn {
    flex: 0 0 100%;
    margin-top: 15px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 22px;
    text-decoration: none;
    transition: opacity .2s;
}

.n_cf435b_rbkcard .n_cf435b_rbkbtn .ic {
    font-size: 15px;
    margin-right: 6px;
}

.n_cf435b_rbkcard .n_cf435b_rbkbtn:hover {
    opacity: .85;
    color: #fff;
}

/* 阅读按钮图标 */
.n_cf435b_pread .ic {
    margin-right: 6px;
}

/* 资讯列表（章节页相关资讯、书本详情目录与最新资讯共用） */
.n_cf435b_zxlis {
    padding: 0;
    text-align: left;
}

.n_cf435b_zxite {
    border-bottom: 1px solid #f1f2f5;
}

.n_cf435b_zxite:last-child {
    border-bottom: none;
}

.n_cf435b_zxlin {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s ease;
}

.n_cf435b_zxlin:hover {
    background: #f7f8ff;
}

.n_cf435b_zxdot {
    flex: none;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9cdd8;
    transition: background .2s ease;
}

.n_cf435b_zxlin:hover .n_cf435b_zxdot {
    background: var(--primary);
}

.n_cf435b_zxtit {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    line-height: 22px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s ease;
}

.n_cf435b_zxlin:hover .n_cf435b_zxtit {
    color: var(--primary);
}

.n_cf435b_zxbk {
    font-weight: normal;
    color: #9096a1;
}

.n_cf435b_zxlin.n_cf435b_activ .n_cf435b_zxtit {
    color: var(--primary);
    font-weight: 600;
}

.n_cf435b_zxdat {
    flex: none;
    font-size: 13px;
    color: #a3a8b3;
    font-variant-numeric: tabular-nums;
}

.n_cf435b_loadb .n_cf435b_lz {
    color: var(--primary);
}