@charset "utf-8";

/* Article list — same palette as home / article detail */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
    --ls-ink: #152029;
    --ls-ink-soft: #2a3a45;
    --ls-brass: #a67c3d;
    --ls-brass-deep: #8a6430;
    --ls-sage: #5f7368;
    --ls-paper: #eef1ef;
    --ls-panel: #ffffff;
    --ls-line: rgba(21, 32, 41, 0.1);
    --ls-muted: #6b7a82;
    --ls-max: 1180px;
}

body.page-list {
    background:
        radial-gradient(900px 420px at 0% 0%, rgba(166, 124, 61, 0.09), transparent 55%),
        radial-gradient(800px 480px at 100% 10%, rgba(95, 115, 104, 0.11), transparent 50%),
        linear-gradient(180deg, #e7ece9 0%, var(--ls-paper) 40%, #e4e8e5 100%) !important;
    color: var(--ls-ink);
    font-family: "Source Sans 3", "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1.65;
}

/* —— Chrome —— */
body.page-list .hy_top {
    display: none !important;
}
body.page-list .head {
    position: relative;
    background: rgba(255,255,255,.92) !important;
    border-bottom: 1px solid var(--ls-line);
}
body.page-list .head_cnt {
    width: 100% !important;
    max-width: var(--ls-max) !important;
    margin: 0 auto !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body.page-list .search-keyword {
    border-color: var(--ls-line) !important;
}
body.page-list .search-but {
    background: var(--ls-ink) !important;
    border-color: var(--ls-ink) !important;
    color: #fff !important;
}
/* Primary nav chrome lives in chrome.css */
body.page-list .nav-box .tab,
body.page-list .breadcrumbs,
body.page-list .main,
body.page-list .link {
    display: none !important;
}

body.page-list .head_cnt .btn-menu {
    display: none;
    position: absolute;
    right: 12px;
    top: 50%;
    width: 36px;
    height: 32px;
    margin-top: -16px;
    border: 0;
    background: var(--ls-ink) url(../images/h.png) center / 22px no-repeat;
    text-indent: -999px;
    overflow: hidden;
    cursor: pointer;
    z-index: 20;
}
body.page-list .ls-mobile-nav {
    display: none;
    background: var(--ls-ink);
    padding: 8px 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
body.page-list .ls-mobile-nav.is-open {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
body.page-list .ls-mobile-nav a {
    display: inline-block;
    padding: 10px 14px;
    color: rgba(255,255,255,.9) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}
body.page-list .ls-mobile-nav a:hover,
body.page-list .ls-mobile-nav a.active {
    background: rgba(166, 124, 61, 0.35);
    color: #fff !important;
}

body.page-list .footer {
    background: var(--ls-ink) !important;
    color: rgba(255,255,255,.7);
    margin-top: 40px;
}
body.page-list .footer a {
    color: #e8d5b0 !important;
}
body.page-list .footer .site-footer-inner,
body.page-list .footer table {
    width: 100% !important;
    max-width: var(--ls-max) !important;
}

/* —— Shell —— */
.ls-shell {
    width: 100%;
    max-width: var(--ls-max);
    margin: 0 auto;
    padding: 0 20px 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ls-crumb {
    padding: 18px 0 12px;
    font-size: 13px;
    color: var(--ls-muted);
}

.ls-crumb a {
    color: var(--ls-sage);
    text-decoration: none;
}

.ls-crumb a:hover {
    color: var(--ls-brass-deep);
}

.ls-hero {
    margin-bottom: 18px;
    background:
        linear-gradient(135deg, rgba(21, 32, 41, 0.96) 0%, #1e3340 55%, #243f3a 100%);
    color: #f4f1ea;
    overflow: hidden;
    position: relative;
    -webkit-animation: lsRise .55s ease both;
    animation: lsRise .55s ease both;
}

.ls-hero::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 124, 61, 0.32), transparent 70%);
    pointer-events: none;
}

.ls-hero-inner {
    position: relative;
    z-index: 1;
    padding: 34px 32px 30px;
}

.ls-brand {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #e8d5b0;
}

.ls-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(30px, 4.5vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
}

.ls-lead {
    margin: 14px 0 0;
    max-width: 42em;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(244, 241, 234, 0.78);
}

.ls-subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.ls-subnav a {
    display: inline-block;
    padding: 8px 14px;
    background: var(--ls-panel);
    border: 1px solid var(--ls-line);
    color: var(--ls-ink-soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    -webkit-transition: border-color .2s ease, color .2s ease, background .2s ease;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.ls-subnav a:hover,
.ls-subnav a.is-active,
.ls-subnav a.active {
    border-color: rgba(166, 124, 61, 0.55);
    color: var(--ls-brass-deep);
    background: #fff;
}

.ls-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.ls-main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
}

.ls-side {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
    width: 300px;
}

.ls-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
}

.ls-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    background: var(--ls-panel);
    border: 1px solid var(--ls-line);
    padding: 16px;
    -webkit-box-shadow: 0 12px 30px rgba(21, 32, 41, 0.05);
    box-shadow: 0 12px 30px rgba(21, 32, 41, 0.05);
    -webkit-animation: lsRise .55s ease both;
    animation: lsRise .55s ease both;
}

.ls-thumb {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
    background: #dfe5e2;
    display: block;
}

.ls-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    -webkit-transition: -webkit-transform .35s ease;
    transition: transform .35s ease;
}

.ls-item:hover .ls-thumb img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.ls-body {
    min-width: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ls-title {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.ls-title a {
    color: var(--ls-ink);
    text-decoration: none;
}

.ls-title a:hover {
    color: var(--ls-brass-deep);
}

.ls-excerpt {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ls-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ls-meta {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
    color: var(--ls-sage);
}

.ls-pager {
    margin-top: 22px;
    padding: 16px 18px;
    background: var(--ls-panel);
    border: 1px solid var(--ls-line);
}

.ls-pager ul,
.ls-pager {
    list-style: none;
}

.ls-pager ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ls-pager li {
    display: inline-block;
}

.ls-pager a,
.ls-pager span,
.ls-pager li > a,
.ls-pager .thisclass a {
    display: inline-block;
    min-width: 36px;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--ls-ink-soft);
    background: #f7f8f7;
    border: 1px solid var(--ls-line);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ls-pager a:hover {
    border-color: rgba(166, 124, 61, 0.45);
    color: var(--ls-brass-deep);
    background: #fff;
}

.ls-pager .thisclass a,
.ls-pager li.thisclass a {
    background: var(--ls-ink);
    border-color: var(--ls-ink);
    color: #fff !important;
}

.ls-widget {
    background: var(--ls-panel);
    border: 1px solid var(--ls-line);
    padding: 18px 18px 14px;
    margin-bottom: 16px;
    -webkit-box-shadow: 0 10px 28px rgba(21, 32, 41, 0.05);
    box-shadow: 0 10px 28px rgba(21, 32, 41, 0.05);
}

.ls-widget h3 {
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--ls-line);
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: var(--ls-ink);
    position: relative;
}

.ls-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 42px;
    height: 2px;
    background: var(--ls-brass);
}

.ls-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ls-widget li {
    border-bottom: 1px dashed rgba(21, 32, 41, 0.08);
}

.ls-widget li:last-child {
    border-bottom: none;
}

.ls-widget li a {
    display: block;
    padding: 10px 0;
    color: var(--ls-ink-soft);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
}

.ls-widget li a:hover {
    color: var(--ls-brass-deep);
}

.ls-widget .qr img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@-webkit-keyframes lsRise {
    from { opacity: 0; -webkit-transform: translateY(12px); transform: translateY(12px); }
    to { opacity: 1; -webkit-transform: none; transform: none; }
}
@keyframes lsRise {
    from { opacity: 0; -webkit-transform: translateY(12px); transform: translateY(12px); }
    to { opacity: 1; -webkit-transform: none; transform: none; }
}

@media (max-width: 980px) {
    .ls-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .ls-side {
        width: 100%;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    body.page-list .nav-box > .nav {
        display: none !important;
    }
    body.page-list .head_cnt .btn-menu {
        display: block;
    }
    body.page-list .head .search {
        margin-right: 44px;
    }
    body.page-list .head .logo img {
        max-width: 220px;
        height: auto;
    }
}

@media (max-width: 640px) {
    .ls-shell {
        padding: 0 14px 32px;
    }
    .ls-hero-inner {
        padding: 26px 16px 22px;
    }
    .ls-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px;
    }
    .ls-thumb {
        width: 100%;
        height: 160px;
    }
    .ls-title {
        font-size: 20px;
    }
    body.page-list .head_cnt {
        padding: 10px 12px !important;
    }
    body.page-list .head .logo img {
        max-width: 170px;
    }
}
