/* ============ 栏目页专属样式 (pages.css) ============ */

/* 页面 Hero（栏目页顶部横幅） */
.lk-page-hero {
    background:
        radial-gradient(ellipse 80% 120% at 85% -20%, rgba(212, 175, 55, .18), transparent 55%),
        linear-gradient(135deg, #081a35 0%, #0a1f3d 55%, #0d2a52 100%);
    color: #fff;
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}
.lk-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 28px);
    pointer-events: none;
}
.lk-page-hero__crumbs {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.lk-page-hero__crumbs a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.lk-page-hero__crumbs a:hover { color: var(--brand-gold); }
.lk-page-hero__title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -.01em;
    position: relative;
    z-index: 1;
}
.lk-page-hero__title em {
    font-style: normal;
    color: var(--brand-gold);
}
.lk-page-hero__desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
    max-width: 720px;
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
}
.lk-page-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.lk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .4);
    color: var(--brand-gold);
}

/* 财经数据表 */
.lk-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    background: #fff;
}
.lk-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 560px;
}
.lk-data-table th {
    background: linear-gradient(135deg, #0a1f3d, #12325e);
    color: #fff;
    text-align: left;
    padding: 13px 16px;
    font-weight: 600;
    white-space: nowrap;
}
.lk-data-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #eef1f6;
    color: var(--text-dark);
}
.lk-data-table tbody tr:hover { background: #f7f9fc; }
.lk-data-table tbody tr:last-child td { border-bottom: none; }
.lk-num { font-variant-numeric: tabular-nums; font-weight: 600; }
.is-up { color: var(--up); }
.is-dn { color: var(--down); }

/* 直播流程步骤 */
.lk-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.lk-step {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--brand-gold);
    position: relative;
}
.lk-step__no {
    font-size: 30px;
    font-weight: 800;
    color: rgba(212, 175, 55, .35);
    line-height: 1;
    margin-bottom: 10px;
}
.lk-step__time {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-navy);
    background: rgba(10, 31, 61, .07);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 10px;
}
.lk-step__title { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: var(--text-dark); }
.lk-step__desc { font-size: 13.5px; line-height: 1.7; color: var(--text-mid); margin: 0; }

/* 喊单记录表状态标签 */
.lk-pill {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
}
.lk-pill--win { background: rgba(220, 38, 38, .09); color: var(--up); }
.lk-pill--loss { background: rgba(22, 163, 74, .09); color: var(--down); }
.lk-pill--run { background: rgba(212, 175, 55, .12); color: #9a7b1f; }

/* 统计卡 */
.lk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.lk-stat {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--brand-gold);
}
.lk-stat__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-navy);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}
.lk-stat__num small { font-size: 16px; font-weight: 700; }
.lk-stat__label { font-size: 13px; color: var(--text-mid); margin-top: 6px; }

/* 图文特性块 */
.lk-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lk-feature {
    background: #fff;
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
}
.lk-feature__icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0a1f3d, #12325e);
    color: var(--brand-gold);
    margin-bottom: 14px;
}
.lk-feature__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--text-dark); }
.lk-feature__desc { font-size: 13.5px; line-height: 1.75; color: var(--text-mid); margin: 0; }

/* 关于我们 - 时间线 */
.lk-timeline { position: relative; padding-left: 26px; }
.lk-timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-gold), rgba(212, 175, 55, .15));
}
.lk-timeline__item { position: relative; padding: 0 0 22px 16px; }
.lk-timeline__item:last-child { padding-bottom: 0; }
.lk-timeline__item::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .18);
}
.lk-timeline__year { font-size: 15px; font-weight: 800; color: var(--brand-navy); }
.lk-timeline__text { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; margin-top: 4px; }

/* 文章列表页（栏目） */
.lk-list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.lk-list-count { font-size: 13px; color: var(--text-mid); }

/* 提示横幅 */
.lk-note {
    display: flex;
    gap: 12px;
    background: rgba(212, 175, 55, .07);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #6b5a1e;
}
.lk-note strong { color: #55470f; }

/* 通用两栏（主内容 + 侧栏） */
.lk-cols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
}

@media (max-width: 900px) {
    .lk-steps { grid-template-columns: repeat(2, 1fr); }
    .lk-stats { grid-template-columns: repeat(2, 1fr); }
    .lk-features { grid-template-columns: 1fr; }
    .lk-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .lk-steps { grid-template-columns: 1fr; }
    .lk-page-hero__title { font-size: 26px; }
}

/* FAQ 模块（GEO：可见 Q&A，便于 AI/搜索引擎引用） */
.lk-section__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.lk-faq {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lk-faq__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 31, 61, .08);
    overflow: hidden;
}
.lk-faq__q {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-navy);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}
.lk-faq__q::-webkit-details-marker { display: none; }
.lk-faq__q::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .12);
    color: var(--brand-gold);
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}
.lk-faq__item[open] .lk-faq__q::after { content: "−"; }
.lk-faq__a {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
}
.lk-faq__a p { margin: 0; }
.lk-faq__a p + p { margin-top: 10px; }
