/** 列表页专用样式，避免影响首页 */
:root {
    --list-theme: #07699c;
    --list-theme-dark: #055a85;
    --list-theme-light: rgba(7, 105, 156, 0.12);
    --list-header-gradient: linear-gradient(
        180deg,
        rgba(5, 90, 133, 0.92) 0%,
        rgba(7, 105, 156, 0.78) 42%,
        rgba(7, 105, 156, 0.38) 72%,
        rgba(7, 105, 156, 0) 100%
    );
}

/* 列表页：顶栏叠在大图上层，渐变透明 */
body.list-page {
    padding-top: 0 !important;
}
body.list-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: transparent;
    padding-top: 0; /* 覆盖 .home .header 的 padding-top，避免 navbtn 错位 */
    min-height: 1.3rem;
}
body.list-page .header:before {
    top: 0;
    height: 100%;
    background: var(--list-header-gradient);
    background-image: var(--list-header-gradient);
    background-size: 100% 100%;
}
body.list-page .header .wp,
body.list-page .header .wp1600 {
    position: relative;
    z-index: 2;
}
body.list-page .header .navbtn {
    position: absolute;
    top: 3px;
    right: 0;
    z-index: 10;
    width: 1.1rem;
    height: 1.04rem;
    line-height: 1.04rem;
}
/* 折叠菜单：层级与顶栏对齐（与全站 navShow 行为一致） */
body.list-page .big-nav {
    z-index: 9999;
}
body.list-page.navShow .header:before {
    height: 1.3rem;
    background: linear-gradient(120deg, #0a8ec4 0%, #07699c 52%, #055a85 100%);
    background-image: linear-gradient(120deg, #0a8ec4 0%, #07699c 52%, #055a85 100%);
}
body.list-page.navShow .header .navbtn {
    z-index: 10001;
}
body.list-page .headerm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: transparent;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 4%;
}
body.list-page .headerm:before {
    top: 0;
    height: 100%;
    background: var(--list-header-gradient);
    background-image: var(--list-header-gradient);
    background-size: 100% 100%;
}
body.list-page .headerm .logo {
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}
body.list-page .headerm .logo img {
    display: block;
    height: .5rem;
    width: auto;
}
body.list-page .headerm .serbtnm {
    position: absolute;
    right: .92rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
}
body.list-page .headerm .navbtnm {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}
body.list-page.navShow .headerm:before {
    background: #07699c;
    background-image: none;
}
body.list-page.navShow .headerm {
    z-index: 100;
}

/* 大图 Hero 区 */
body.list-page .list-hero {
    position: relative;
    z-index: 1;
}
body.list-page .list-main {
    position: relative;
    padding: 0 0 60px;
    background: #f7f9fb;
    z-index: 2;
}
body.list-page .list-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
body.list-page .list-wrap .clear {
    clear: both;
}

/* 横向栏目图标（内容区宽度） */
body.list-page .list-chan-icons {
    width: 100%;
    margin-bottom: 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}
body.list-page .list-chan-icons ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}
body.list-page .list-chan-icons li {
    flex: 1;
    min-width: 0;
    list-style: none;
    border-right: 1px solid rgba(7, 105, 156, 0.1);
}
body.list-page .list-chan-icons li:last-child {
    border-right: none;
}
body.list-page .list-chan-icons a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 8px 16px;
    color: #555;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
body.list-page .list-chan-icons .list-chan-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--list-theme-light);
    transition: background 0.25s, transform 0.25s;
}
body.list-page .list-chan-icons .list-chan-ico i {
    font-size: 22px;
    color: var(--list-theme);
    line-height: 1;
}
body.list-page .list-chan-icons .list-chan-txt {
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
body.list-page .list-chan-icons li:hover a,
body.list-page .list-chan-icons li.on a {
    color: var(--list-theme);
    background: rgba(7, 105, 156, 0.06);
}
body.list-page .list-chan-icons li:hover .list-chan-ico,
body.list-page .list-chan-icons li.on .list-chan-ico {
    background: var(--list-theme);
    transform: translateY(-2px);
}
body.list-page .list-chan-icons li:hover .list-chan-ico i,
body.list-page .list-chan-icons li.on .list-chan-ico i {
    color: #fff;
}
body.list-page .list-chan-icons li.on .list-chan-txt {
    font-weight: 600;
}

/* 栏目横图（位于顶栏下方叠层） */
body.list-page .list-chan-banner {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}
body.list-page .list-chan-banner-inner {
    position: relative;
    overflow: hidden;
    line-height: 0;
    border-radius: 0;
}
body.list-page .list-chan-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px;
}
body.list-page .list-chan-banner-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
body.list-page .list-chan-banner-deco::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 105, 156, 0.35) 0%, rgba(7, 105, 156, 0.08) 38%, rgba(7, 105, 156, 0.02) 100%),
        linear-gradient(120deg, rgba(7, 105, 156, 0.28) 0%, rgba(7, 105, 156, 0.08) 42%, rgba(255, 255, 255, 0.04) 100%);
}

/* 右侧内容区 */
body.list-page .list-main .ny-right {
    float: none;
    width: 100%;
    min-height: 400px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0 24px 30px;
}

/* 位置栏 */
body.list-page .list-main .position > div {
    position: relative;
    text-align: right;
    font-size: 0;
    line-height: 66px;
    border-bottom: 1px solid #d2d2d2;
}
body.list-page .list-main .position h3 {
    position: absolute;
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    bottom: 0;
    left: 0;
    margin: 0;
    color: var(--list-theme);
}
body.list-page .list-main .position h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--list-theme);
    margin-top: 8px;
}
body.list-page .list-main .position span,
body.list-page .list-main .position a {
    font-size: 14px;
    color: #888;
    margin: 0 5px;
    vertical-align: middle;
}
body.list-page .list-main .position a:hover {
    color: var(--list-theme);
}

/* 图文列表 */
body.list-page .list-main .tw ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
body.list-page .list-main .tw ul li {
    list-style: none;
}
/* 默认每页显示 6 条 */
body.list-page .list-main .tw ul li:nth-child(n+7) {
    display: none;
}
body.list-page .list-main .tw ul li a {
    display: block;
    overflow: hidden;
    padding: 30px 10px;
    border-bottom: 1px solid rgba(7, 105, 156, 0.15);
    transition: all 0.3s;
}
body.list-page .list-main .tw ul li a .pic {
    float: left;
    width: 260px;
    height: 163px;
    overflow: hidden;
    border-radius: 4px;
    background: #e8f2f8;
}
body.list-page .list-main .tw ul li a .pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
body.list-page .list-main .tw ul li a .tw-meta .date-m {
    display: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--img {
    position: relative;
    display: block;
    background: url(../images/list-no-cover-pc.svg) center center / cover no-repeat #07699c;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--img::before,
body.list-page .list-main .tw ul li a .pic.pic-no-cover--img::after {
    display: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--img > img {
    display: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco,
body.list-page .list-main .tw ul li a .pic.pic-no-cover:not(.pic-no-cover--img) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0a8ec4 0%, #07699c 52%, #055a85 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -62%;
    right: -38%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    bottom: -48%;
    left: -28%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco > img,
body.list-page .list-main .tw ul li a .pic.pic-no-cover:not(.pic-no-cover--img) > img {
    display: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder,
body.list-page .list-main .tw ul li a .pic.pic-no-cover:not(.pic-no-cover--img) .pic-placeholder {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    pointer-events: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-watermark {
    position: absolute;
    background: url(../images/logo.png) no-repeat center;
    background-size: contain;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-watermark--1 {
    width: 110px;
    height: 36px;
    top: 10px;
    right: -8px;
    transform: rotate(-10deg);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-watermark--2 {
    width: 96px;
    height: 32px;
    bottom: 8px;
    left: -10px;
    transform: rotate(8deg);
    opacity: 0.08;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-emblem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-ring-outer,
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-ring-inner {
    position: absolute;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-ring-outer {
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-ring-inner {
    inset: 9px;
    border: 1px dashed rgba(255, 255, 255, 0.24);
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder-logo,
body.list-page .list-main .tw ul li a .pic.pic-no-cover:not(.pic-no-cover--img) .pic-placeholder-logo {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    opacity: 0.96;
}
body.list-page .list-main .tw ul li a .pic.pic-no-cover--deco .pic-placeholder em {
    position: relative;
    z-index: 1;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.16em;
    opacity: 0.88;
}
body.list-page .list-main .tw ul li a .tw-tx {
    overflow: hidden;
    padding-left: 30px;
}
body.list-page .list-main .tw ul li a .tw-tx .date {
    margin-top: 6px;
    font-size: 14px;
    color: rgba(7, 105, 156, 0.75);
}
body.list-page .list-main .tw ul li a .tw-tx .date span {
    font-size: 28px;
    font-weight: bold;
    color: var(--list-theme);
    padding-right: 6px;
}
body.list-page .list-main .tw ul li a .tw-tx h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 8px 0 0;
    color: #333;
    transition: color 0.3s;
}
body.list-page .list-main .tw ul li a .tw-tx p {
    font-size: 15px;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    color: #999;
    transition: color 0.3s;
}
body.list-page .list-main .tw ul li:hover a {
    background-color: var(--list-theme);
}
body.list-page .list-main .tw ul li:hover a .pic img {
    transform: scale(1.05);
}
body.list-page .list-main .tw ul li:hover a .pic.pic-no-cover--deco {
    background: linear-gradient(145deg, #1298d0 0%, #0880b5 52%, #066a96 100%);
}
body.list-page .list-main .tw ul li:hover a .pic.pic-no-cover--deco .pic-placeholder-logo {
    opacity: 1;
    transform: scale(1.06);
    transition: transform 0.3s, opacity 0.3s;
}
body.list-page .list-main .tw ul li:hover a .pic.pic-no-cover--deco .pic-placeholder-ring-outer {
    border-color: rgba(255, 255, 255, 0.52);
}
body.list-page .list-main .tw ul li:hover a .date,
body.list-page .list-main .tw ul li:hover a .date span {
    color: #fff;
}
body.list-page .list-main .tw ul li:hover a .tw-tx h3 {
    color: #fff;
}
body.list-page .list-main .tw ul li:hover a .tw-tx p {
    color: rgba(255, 255, 255, 0.75);
}

/* 分页（主题色 #07699c） */
body.list-page .list-main .pages {
    padding-top: 30px;
    text-align: center;
}
body.list-page .list-main .pb_sys_common .p_pages {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
body.list-page .list-main .pb_sys_common .p_fun a,
body.list-page .list-main .pb_sys_common .p_no a,
body.list-page .list-main .pb_sys_common .p_no_d,
body.list-page .list-main .pb_sys_common .p_fun_d,
body.list-page .list-main .pb_sys_common .p_t {
    display: inline-block;
    border: 1px solid #07699c;
    padding: 0 12px;
    height: 35px;
    font-size: 14px;
    line-height: 33px;
    text-align: center;
    color: #07699c;
    margin: 0;
    border-radius: 3px;
    background: #fff;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
body.list-page .list-main .pb_sys_common .p_t {
    border-color: transparent;
    background: transparent;
    color: #888;
    padding: 0 8px;
}
body.list-page .list-main .pb_sys_common .p_no_d {
    background: #07699c;
    color: #fff;
    border-color: #07699c;
    font-weight: 600;
}
body.list-page .list-main .pb_sys_common .p_fun_d {
    color: #bbb;
    border-color: #e0e0e0;
    background: #f7f7f7;
    cursor: default;
}
body.list-page .list-main .pb_sys_common .p_no a {
    color: #07699c;
}
body.list-page .list-main .pb_sys_common .p_fun a,
body.list-page .list-main .pb_sys_common .p_no a {
    text-decoration: none;
}
body.list-page .list-main .pb_sys_common .p_fun a:hover,
body.list-page .list-main .pb_sys_common .p_no a:hover {
    background: #07699c;
    color: #fff;
    border-color: #07699c;
}
body.list-page .list-main .pb_sys_common .p_dot {
    border: none;
    background: transparent;
    color: #07699c;
    padding: 0 4px;
    min-width: auto;
    height: auto;
    line-height: 1;
}

@media screen and (max-width: 980px) {
    body.list-page .list-main {
        padding: 0 0 32px;
        background: #f7f9fb;
    }
    /* 移动版：菜单在顶栏下方，关闭按钮（navbtnm）保持可点击 */
    body.list-page .big-nav {
        z-index: 98;
    }
    body.list-page .list-wrap {
        max-width: none;
        padding: 0;
    }
    body.list-page .list-chan-icons ul {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }
    body.list-page .list-chan-icons ul::-webkit-scrollbar {
        display: none;
    }
    body.list-page .list-chan-icons li {
        flex: 0 0 auto;
        min-width: 88px;
        border-right: none;
        scroll-snap-align: start;
    }
    body.list-page .list-chan-icons a {
        padding: 14px 10px 12px;
        gap: 6px;
    }
    body.list-page .list-chan-icons .list-chan-ico {
        width: 42px;
        height: 42px;
    }
    body.list-page .list-chan-icons .list-chan-ico i {
        font-size: 20px;
    }
    body.list-page .list-chan-icons .list-chan-txt {
        font-size: 12px;
    }
    body.list-page .list-chan-banner {
        margin: 0;
        overflow: hidden;
        line-height: 0;
    }
    body.list-page .list-chan-banner img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        min-height: 0;
        aspect-ratio: 750 / 280;
    }
    body.list-page .list-main .ny-right {
        float: none;
        width: 100%;
        box-sizing: border-box;
        padding: 0 6px 16px;
        box-shadow: none;
        background: #fff;
    }
    body.list-page .list-main .position h3 {
        display: none;
    }
    body.list-page .list-main .position > div {
        line-height: 1.6;
        text-align: left;
        font-size: 12px;
        border-bottom: 1px solid #e5e5e5;
        padding: 10px 2px;
    }
    /* 移动端：显示 10 条，无摘要，左图 / 右标题+时间 */
    body.list-page .list-main .tw ul {
        padding: 4px 10px 0;
    }
    body.list-page .list-main .tw ul li:nth-child(n+7) {
        display: list-item;
    }
    body.list-page .list-main .tw ul li:nth-child(n+11) {
        display: none !important;
    }
    body.list-page .list-main .tw ul li a {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 4px;
        border-bottom: 1px dashed rgba(7, 105, 156, 0.18);
    }
    body.list-page .list-main .tw ul li:last-child a {
        border-bottom: none;
    }
    body.list-page .list-main .tw ul li a .tw-meta {
        display: block;
        width: 100px;
        flex-shrink: 0;
        align-self: flex-start;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic {
        display: block !important;
        float: none;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(7, 105, 156, 0.08);
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco::before,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco::after,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover:not(.pic-no-cover--img)::before,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover:not(.pic-no-cover--img)::after {
        width: auto;
        height: auto;
        border-radius: 0;
        background: none;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.32);
        box-sizing: border-box;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco::before {
        top: 12%;
        left: 10%;
        right: 58%;
        bottom: 58%;
        border-width: 1px 0 0 1px;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco::after {
        top: 58%;
        left: 58%;
        right: 10%;
        bottom: 12%;
        border-width: 0 1px 1px 0;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder {
        gap: 0;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-watermark,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-ring-outer,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-ring-inner,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder em {
        display: none !important;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-emblem {
        width: auto;
        height: auto;
        border-radius: 0;
        overflow: visible;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-logo,
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover:not(.pic-no-cover--img) .pic-placeholder-logo {
        width: 44px;
        height: 44px;
        object-fit: contain;
        display: block !important;
        filter: brightness(0) invert(1);
        opacity: 0.92;
    }
    body.list-page .list-main .tw ul li a .tw-meta .pic.pic-no-cover--img {
        background: url(../images/list-no-cover-pc.svg) center center / cover no-repeat #07699c;
    }
    body.list-page .list-main .tw ul li:hover a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-logo {
        opacity: 1;
        transform: scale(1.04);
        transition: transform 0.3s, opacity 0.3s;
    }
    body.list-page .list-main .tw ul li:hover a .tw-meta .pic.pic-no-cover--deco .pic-placeholder-ring-outer {
        border-color: transparent;
    }
    body.list-page .list-main .tw ul li a .tw-tx {
        flex: 1;
        min-width: 0;
        padding: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    body.list-page .list-main .tw ul li a .tw-tx h3 {
        font-size: 16px;
        line-height: 1.5;
        font-weight: bold;
        margin: 0;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #333;
    }
    body.list-page .list-main .tw ul li a .tw-tx .date-m {
        display: block;
        margin-top: 6px;
        padding: 0;
        font-size: 14px;
        line-height: 1.4;
        color: #07699c;
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
    }
    body.list-page .list-main .tw ul li a .tw-tx p {
        display: none !important;
    }
    body.list-page .list-main .tw ul li:hover a {
        background-color: transparent;
    }
    body.list-page .list-main .tw ul li:hover a .tw-tx .date-m {
        color: #055a85;
    }
    body.list-page .list-main .tw ul li:hover a .tw-tx h3 {
        color: var(--list-theme);
    }
    /* 移动端简化翻页 */
    body.list-page .list-main .pages-m {
        padding-top: 20px;
    }
    body.list-page .list-main .pb_sys_simple .p_pages {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    body.list-page .list-main .pb_sys_simple .p_fun a,
    body.list-page .list-main .pb_sys_simple .p_fun_d {
        display: inline-block;
        border: 1px solid #07699c;
        padding: 0 16px;
        height: 36px;
        font-size: 14px;
        line-height: 34px;
        text-align: center;
        border-radius: 3px;
        min-width: 64px;
        transition: background 0.25s, color 0.25s, border-color 0.25s;
    }
    body.list-page .list-main .pb_sys_simple .p_fun a {
        color: #07699c;
        background: #fff;
        text-decoration: none;
    }
    body.list-page .list-main .pb_sys_simple .p_fun a:hover {
        background: #07699c;
        color: #fff;
        border-color: #07699c;
    }
    body.list-page .list-main .pb_sys_simple .p_fun_d {
        color: #bbb;
        border-color: #e0e0e0;
        background: #f7f7f7;
        cursor: default;
    }

    /* 移动版页脚：仅保留版权区，隐藏 foot-main */
    body.list-page .footer.ind .foot-main {
        display: none !important;
    }
}

@media screen and (max-width: 640px) {
    body.list-page .list-main .ny-right {
        padding: 0 6px 12px;
    }
    body.list-page .list-main .tw ul {
        padding: 2px 6px 0;
    }
    body.list-page .list-main .tw ul li a {
        gap: 10px;
        padding: 12px 2px;
    }
    body.list-page .list-main .tw ul li a .tw-meta {
        width: 88px;
    }
    body.list-page .list-main .tw ul li a .tw-tx .date-m {
        margin-top: 5px;
        font-size: 13px;
    }
    body.list-page .list-main .tw ul li a .tw-tx h3 {
        font-size: 15px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    body.list-page .list-main .position > div {
        font-size: 12px;
        line-height: 1.8;
    }
    body.list-page .list-main .pages.pc-show {
        padding: 0 8px;
    }
    body.list-page .list-main .pb_sys_common.pb_sys_normal .p_dot {
        display: none;
    }
}

/* 返回顶部（与内容页移动版一致：圆形按钮 + 向上箭头） */
body.list-page .totop {
    width: .4rem;
    height: .4rem;
    background: #07699c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: .2rem;
    bottom: 20%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s, visibility 0.8s, background 0.3s;
    z-index: 9998;
    cursor: pointer;
    border-radius: 50%;
}
body.list-page .totop.active {
    opacity: 1;
    visibility: visible;
}
body.list-page .totop:hover {
    background: #055a85;
}
body.list-page .totop img {
    display: none;
}
body.list-page .totop .totop-arrow {
    display: block;
    width: .12rem;
    height: .12rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: .04rem;
    flex-shrink: 0;
    box-sizing: border-box;
}
