:root {
    --color-primary: #8e1537;
    --header-bg: rgba(142, 21, 55, 0.9);
    --text-muted: #888;
    --gray-bg: #f6f7f9;
    --color-dynamic-month: #385e68;
}

body {
    background: #fff;
    padding-top: 0;
}

.hero-stack {
    position: relative;
    width: 100%;
}

.hero-stack .site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: var(--color-primary);
}

.header-bar {
    display: flex;
    align-items: center;
    gap: .28rem;
    min-height: .88rem;
    padding-top: .3rem;
    padding-bottom: .3rem;
    background: url("../image/topbg.png") right top no-repeat;
    background-size: auto;
}

.header-bar-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-bar-brand img {
    display: block;
    height: .52rem;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.main-nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: .25rem;
}

.main-nav-item {
    position: relative;
}

.main-nav-link {
    display: block;
    color: #fff;
    padding: .2rem .2rem .22rem;
    font-size: .2rem;
    white-space: nowrap;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.main-nav-link:hover {
    opacity: 0.92;
    background: rgba(255, 255, 255, 0.06);
}

.main-nav-sub {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(.04rem);
    min-width: 1.6rem;
    background: #fff;
    box-shadow: 0 .08rem .2rem rgba(0, 0, 0, 0.14);
    border-top: .03rem solid var(--color-primary);
    padding: .1rem 0;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.main-nav-sub a {
    display: block;
    padding: .1rem .2rem;
    color: #333;
    font-size: .16rem;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
}

.main-nav-sub a:hover {
    background: rgba(142, 21, 55, 0.08);
    color: var(--color-primary);
}

.main-nav-item:hover .main-nav-sub,
.main-nav-item:focus-within .main-nav-sub,
.main-nav-item.main-nav-item--open .main-nav-sub {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.header-bar-search {
    flex: 0 0 auto;
    width: .44rem;
    height: .44rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .06rem;
}

.header-bar-search img {
    width: .25rem;
    height: .23rem;
    display: block;
    filter: brightness(0) invert(1);
}

.header-bar-menu {
    display: none;
    flex: 0 0 auto;
    width: .44rem;
    height: .44rem;
    border: none;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: .06rem;
}

.header-bar-menu img {
    display: block;
    width: .28rem;
    height: auto;
    filter: brightness(0) invert(1);
}

body.no-scroll {
    overflow: hidden;
}

/* 全屏搜索 */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 8, 12, 0.92);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22vh;
}

.search-overlay.search-overlay--open {
    display: flex;
}

.search-overlay-close {
    position: absolute;
    top: .36rem;
    right: .4rem;
    width: .56rem;
    height: .56rem;
    border-radius: 50%;
    border: .02rem solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    font-size: .36rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.search-overlay-close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-overlay-inner {
    width: 85%;
    max-width: 7.2rem;
}

.search-overlay-form {
    display: flex;
    gap: .12rem;
    border-bottom: .02rem solid rgba(255, 255, 255, 0.35);
    padding-bottom: .12rem;
}

.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: .22rem;
    color: #fff;
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.search-overlay-submit {
    flex: 0 0 auto;
    padding: .08rem .28rem;
    border-radius: .04rem;
    border: none;
    background: var(--color-primary);
    color: #fff;
    font-size: .16rem;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.search-overlay-submit:hover {
    filter: brightness(1.06);
}

/* Hero：顶栏下方全宽轮播 */
.hero {
    padding: 0;
    margin: 0;
    width: 100%;
    background: #000;
}

.hero .hero-swiper {
    width: 100%;
    height: 4.2rem;
    overflow: hidden;
    position: relative;
}

.hero .hero-swiper .swiper-wrapper,
.hero .hero-swiper .swiper-slide {
    height: 100%;
}

.hero-slide {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-pagination-bar {
    position: absolute;
    right: 1.5rem;
    bottom: .28rem;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: .18rem;
}

.hero-swiper-pagination {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: .2rem;
    flex-wrap: nowrap;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: auto;
    min-width: .2rem;
    height: auto;
    opacity: 1;
    padding: 0 .02rem;
    border-radius: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: .14rem;
    font-weight: 400;
    line-height: 1;
    transition: font-size 0.25s ease, font-weight 0.25s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    font-size: .22rem;
    font-weight: 700;
    position: relative;
    padding-right: .38rem;
    margin-right: .02rem;
}

.hero-swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    right: -0.04rem;
    top: 50%;
    transform: translateY(-50%);
    width: .4rem;
    height: .02rem;
    background: #fff;
    border-radius: .02rem;
}

.hero-pagination-next {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .06rem;
    margin: 0 0 0 .04rem;
    border: none;
    background: transparent;
    cursor: pointer;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.hero-pagination-next:hover {
    opacity: 0.85;
}

.hero-pagination-next img {
    display: block;
    height: .35rem;
    width: auto;
}

/* ========== 首页中间内容 ========== */
.home-main {
    background: #fff;
}

.home-section {
    padding: .5rem 0;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .18rem;
    margin-bottom: .28rem;
    border-bottom: .01rem solid #e5e5e5;
}

.section-head-title {
    display: flex;
    align-items: center;
    gap: .12rem;
    min-width: 0;
}

.section-head-icon {
    flex: 0 0 auto;
    width: .28rem;
    height: .28rem;
    object-fit: contain;
}

.section-head-text {
    font-size: .28rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.section-head-sub {
    font-weight: 400;
    font-size: .2rem;
    color: #333;
}

.section-head-more {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
    opacity: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.section-head-more:hover {
    opacity: 0.8;
    transform: translateX(.04rem);
}

.section-head-more img {
    display: block;
    height: .27rem;
    width: auto;
}

.home-news .section-head-icon {
    width: .32rem;
    height: .32rem;
}

.home-news .section-head-text {
    font-size: .28rem;
    letter-spacing: .01rem;
}

.home-news .section-head-sub {
    font-size: .24rem;
    font-weight: 400;
    color: #222;
}

/* 学工动态 */
.home-news {
    padding-top: .48rem;
    padding-bottom: .48rem;
}

.home-news .section-head {
    border-bottom: none;
    margin-bottom: .24rem;
    padding-bottom: 0;
}

.home-news-body {
    display: flex;
    gap: .45rem;
    align-items: stretch;
}

.home-news-slider {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
}

.news-swiper {
    width: 100%;
    height: 5rem;
    position: relative;
    overflow: hidden;
    --swiper-pagination-bullet-size: .12rem;
    --swiper-pagination-bullet-width: .12rem;
    --swiper-pagination-bullet-height: .12rem;
    --swiper-pagination-bullet-border-radius: 0;
    --swiper-pagination-color: var(--color-primary);
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: .05rem;
}

.news-swiper .swiper-wrapper,
.news-swiper .swiper-slide {
    height: 100%;
}

.news-slide-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-slide-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-slide-link:hover img {
    transform: scale(1.05);
}

.news-slide-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .2rem;
    padding: .11rem .16rem;
    background: rgba(0, 0, 0, 0.58);
}

.news-slide-caption {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .1rem;
    background: transparent;
    color: #fff;
    font-size: .15rem;
    line-height: 1.4;
    padding-bottom: 0.4rem;
    padding-top: 0.2rem;
}

.news-slide-date {
    flex: 0 0 auto;
    font-size: .24rem;
    font-weight: 400;
    white-space: nowrap;
}

.news-slide-title {
    flex: 1;
    min-width: 0;
    font-size: .2rem;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-swiper-pagination {
    flex: 0 0 auto;
    width: auto !important;
    display: flex !important;
    align-items: center;
    gap: .05rem;
    padding: 0;
    right: 0.25rem;
    bottom: 0.17rem !important;
    top: unset !important;
    left: unset !important;
}

.news-swiper-pagination .swiper-pagination-bullet {
    margin: 0 !important;
    width: .12rem;
    height: .12rem;
    border-radius: 0;
    background: #fff;
    opacity: 1;
    transition: background 0.25s ease;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.home-news-list {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.home-news-list-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .08rem;
    padding: 0 .1rem;
    margin: 0 -.1rem;
    border-bottom: .01rem solid #eee;
    border-radius: .04rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.home-news-list-item:hover {
}

.home-news-list-title {
    font-size: .18rem;
    color: #333;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease;
}

.home-news-list-item:hover .home-news-list-title {
    color: var(--color-primary);
    transform: translateX(.04rem);
}

.home-news-list-date {
    font-size: .16rem;
    color: var(--color-primary);
    line-height: 1.2;
    transition: opacity 0.25s ease;
}

.home-news-list-item:hover .home-news-list-date {
    opacity: 0.85;
}

/* 思政教育 / 学生发展 */
.home-columns {
    background: #f8f8f8 url("../image/bannerbg.png") left calc(100% + 2rem) no-repeat;
    padding: .4rem 0 1.2rem;
}

.home-columns-inner {
    display: flex;
    gap: .4rem;
    align-items: stretch;
}

.home-column {
    flex: 1;
    min-width: 0;
    background: #fff;
    padding: .32rem .36rem .36rem;
    border-bottom: .06rem solid var(--color-primary);
}

.home-ideology .section-head {
    border-bottom: .01rem solid #eee;
    margin-bottom: .2rem;
    padding-bottom: .14rem;
}

.home-ideology .section-head-title {
    position: relative;
    padding-bottom: .1rem;
}

.home-ideology .section-head-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.15rem;
    width: 100%;
    height: .04rem;
    background: var(--color-primary);
}

.ideology-list {
    display: flex;
    flex-direction: column;
}

.ideology-list-item {
    display: flex;
    align-items: center;
    gap: .22rem;
    padding-top: .2rem;
    color: #333;
    transition: color 0.25s ease;
}

.ideology-date {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: .66rem;
    height: .56rem;
    border: .01rem solid var(--color-primary);
    color: var(--color-primary);
    text-align: center;
    border-radius: 0.05rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ideology-list-item:hover .ideology-date {
    background: var(--color-primary);
    color: #fff;
}

.ideology-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    border-bottom: .01rem solid #eee;
    height: 0.46rem;
    padding-bottom: 0.12rem;
    transition: border-color 0.25s ease;
}

.ideology-list-item:hover .ideology-content {
    border-bottom-color: rgba(142, 21, 55, 0.22);
}

.ideology-day {
    display: block;
    font-size: .2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.ideology-ym {
    display: block;
    font-size: .14rem;
    line-height: 1.4;
    margin-top: .02rem;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.ideology-list-item:hover .ideology-day,
.ideology-list-item:hover .ideology-ym {
    color: #fff;
}

.ideology-title {
    min-width: 0;
    font-size: .18rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease;
}

.ideology-list-item:hover .ideology-title {
    color: var(--color-primary);
    transform: translateX(.04rem);
}

.home-develop .section-head {
    border-bottom: .01rem solid #eee;
    margin-bottom: .2rem;
    padding-bottom: .14rem;
}

.home-develop .section-head-title {
    position: relative;
    padding-bottom: .1rem;
}

.home-develop .section-head-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.15rem;
    width: 100%;
    height: .04rem;
    background: var(--color-primary);
}

.develop-list {
    display: flex;
    flex-direction: column;
}

.develop-list-item {
    display: block;
    padding: .21rem .1rem 0;
    margin: 0 -.1rem;
    border-radius: .04rem;
    color: #333;
    transition: background 0.25s ease, color 0.25s ease;
}

.develop-list-item:hover {

}

.develop-head {
    display: flex;
    align-items: flex-start;
    gap: .1rem;
}

.develop-bullet {
    flex: 0 0 auto;
    width: .08rem;
    height: .08rem;
    margin-top: .1rem;
    background: var(--color-primary);
    transition: transform 0.25s ease;
}

.develop-list-item:hover .develop-bullet {
    transform: scale(1.2);
}

.develop-title {
    flex: 1;
    min-width: 0;
    font-size: .18rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease;
}

.develop-list-item:hover .develop-title {
    color: var(--color-primary);
    transform: translateX(.04rem);
}

.develop-meta {
    display: flex;
    align-items: center;
    gap: .12rem;
    margin-top: .08rem;
    padding-left: .18rem;
}

.develop-date {
    flex: 0 0 auto;
    font-size: .16rem;
    color: var(--color-primary);
    line-height: 1.2;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.develop-list-item:hover .develop-date {
    opacity: 0.85;
}

.develop-line {
    flex: 1;
    height: .01rem;
    background: #eee;
    transition: background 0.25s ease;
}

.develop-list-item:hover .develop-line {
    background: rgba(142, 21, 55, 0.25);
}

/* ========== 页脚 ========== */
.site-footer {
    background: var(--color-primary);
    color: #fff;
}

.site-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: .4rem;
    padding: .3rem 0 .3rem;
}

.site-footer-links {
    flex: 1;
    min-width: 0;
}

.site-footer-title {
    font-size: .24rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.site-footer-title-line {
    width: .48rem;
    height: .02rem;
    margin: .1rem 0 .14rem;
    background: #fff;
}

.site-footer-link-list {
    font-size: .18rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer-link-list a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.site-footer-link-list a:hover {
    color: #fff;
}

.site-footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: .32rem;
}

.site-footer-info {
    text-align: right;
    font-size: .18rem;
    line-height: 1.85;
    color: rgba(255, 255, 255,1);
    white-space: nowrap;
}

.site-footer-info p + p {
    margin-top: .02rem;
}

.site-footer-qrcodes {
    display: flex;
    gap: .18rem;
    flex-shrink: 0;
}

.site-footer-qrcode {
    text-align: center;
}

.site-footer-qrcode img {
    display: block;
    width: .95rem;
    height: .95rem;
    padding: .04rem;
    background: #fff;
    object-fit: contain;
}

.site-footer-qrcode span {
    display: block;
    margin-top: .08rem;
    font-size: .14rem;
    color: #fff;
    line-height: 1.2;
}

/* ========== 右下角统一身份认证浮窗 ========== */
.auth-float {
    position: fixed;
    right: .24rem;
    bottom: 2.24rem;
    z-index: 1500;

}

.auth-float-trigger {
    display: none;
    width: .72rem;
    height: .72rem;
    padding: .08rem;
    border-radius: .12rem;
    background: var(--color-primary);
    box-shadow: 0 .08rem .24rem rgba(142, 21, 55, 0.28);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.auth-float-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-float-trigger:hover {
    transform: translateY(-.04rem);
    box-shadow: 0 .12rem .28rem rgba(142, 21, 55, 0.34);
}

.auth-float-panel {
    position: relative;
    width: 2.4rem;
    padding: .28rem .24rem .24rem;
    border-radius: .16rem;
    background: var(--color-primary);
    box-shadow: 0 .1rem .32rem rgba(142, 21, 55, 0.32);
    text-align: center;
    border: 0.05rem solid #fff;
}

.auth-float-close {
    position: absolute;
    top: .12rem;
    right: .12rem;
    width: .28rem;
    height: .28rem;
    border: .01rem solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: .16rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.auth-float-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.auth-float-pic {
    width: 0.95rem;
    margin: 0 auto .12rem;
}

.auth-float-pic img {
    display: block;
    width: 100%;
    height: auto;
}

.auth-float-title {
    font-size: .22rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.auth-float-subtitle {
    margin-top: .04rem;
    font-size: .22rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.auth-float-text {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.auth-float-btn {
    display: block;
    margin-top: .2rem;
    padding: .12rem .24rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff 0%, #f8ecef 100%);
    color: #333;
    font-size: .18rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 .04rem .1rem rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-float-btn:hover {
    color: var(--color-primary);
    transform: translateY(-.02rem);
    box-shadow: 0 .06rem .14rem rgba(0, 0, 0, 0.12);
}

.auth-float.auth-float--collapsed .auth-float-panel {
    display: none;
}

.auth-float.auth-float--collapsed .auth-float-trigger {
    display: block;
}

/* 移动端底部统一身份认证（PC 隐藏） */
.auth-mobile {
    display: none;
}

#nav_slide {
    display: none;
}
/* ========== 新闻网列表页 .n_container（侧栏 + 面包屑 + 卡片列表） ========== */
.n_container {
    padding: 0 0 0.6rem;


}

.n_container > .w15.flex {
    align-items: flex-start;
    gap: 0.36rem;
}

.n_left {
    flex: 0 0 3.05rem;
    width: 3.05rem;
    max-width: 100%;
}

.n_left .con {
    position: relative;
}

.n_left .con h1 {
    margin: -0.56rem 0 0;
    width: 3.05rem;
    height: 1.21rem;
    background: #8e1537;
    color: #fff;
    font-size: 0.3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    border-radius: 0.04rem 0.04rem 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.n_left .con h1 span {
    display: inline-block;
}

.n_left .con h1 span::after {
    content: "";
    display: block;
    width: 0.42rem;
    height: 0.03rem;
    background: #fff;
    margin: 0.1rem auto 0;
    opacity: 0.95;
}

.n_left .ulCon {
    background: #eef1f4;
    border: 1px solid #e0e4e8;
    border-top: none;
}

.n_left .ulCon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n_left .ulCon > ul > li {
    border-bottom: 1px solid #dde2e6;
}

.n_left .ulCon > ul > li:last-child {
    border-bottom: none;
}

.n_left .ulCon > ul > li > a {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0.18rem 0.4rem;
    color: #000;
    font-size: 0.18rem;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.45;
    word-break: break-word;
    text-align: center;
}

.n_left .ulCon > ul > li > a:hover {
    color: #8e1537;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #8e1537;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a::before,
.n_left .ulCon > ul > li > a:hover::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.18rem;
    height: 0.18rem;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 1;
}

.n_left .ulCon li > i {
    display: none;
}

.n_right {
    flex: 1;
    min-width: 0;
    padding: 0.08rem 0 0.4rem;
}

.n_right .mianbao {
    font-size: 0.15rem;
    color: #888;
    padding: 0.12rem 0 0.14rem;
    border-bottom: 0.02rem solid #2c2c2c;
    margin-bottom: 0.22rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.04rem;
}

.n_right .mianbao > a:first-of-type {
    position: relative;
    padding-left: 0.25rem;
}

.n_right .mianbao > a:first-of-type::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.16rem;
    height: 0.16rem;
    background: url("../image/home.png") center / contain no-repeat;
}

.n_right .mianbao a {
    color: #888;
    text-decoration: none;
}

.n_right .mianbao a:hover {
    color: #3c5a64;
}

.n_right .mianbao i {
    font-style: normal;
    color: #bbb;
}

.n_titu ul {
    list-style: none;
    margin: 0;
    padding: 0.08rem 0.12rem;
    border-radius: 0.06rem;
}

.n_titu > ul > li {
    margin-bottom: 0;
    border-bottom: 1px dashed #d8d8d8;
}


.n_titu .flex-center-noCenter {
    width: 100%;
}

.n_titu a.clearfix {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.12rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.14rem 0.06rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.n_titu a.clearfix:hover {
    box-shadow: none;
    background: rgba(51, 94, 105, 0.06);
}

.n_titu .text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.12rem;
    text-align: left;
}

.n_titu h5.line1 {
    position: relative;
    margin: 0;
    padding-left: 0.2rem;
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.n_titu h5.line1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background: #8e1537;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #8e1537;
}

.n_titu .text > i {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    margin-top: 0;
    padding-top: 0;
    font-style: normal;
    font-size: 0.16rem;
    color: #777;
    white-space: nowrap;
}

.n_right .show {
    margin-top: 0.4rem
}

.show01 {
    margin-bottom: 0.35rem
}

.show01 .show01-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.12rem 0.16rem;
    margin: 0;
    padding: 0 0 0.22rem;
    list-style: none;
    border-bottom: 1px solid #e2e8eb;
}

.show01 .show01-ul li {
    margin: 0;
    list-style: none;
}

.show01 .show01-ul li div {
    display: inline-flex;
    align-items: center;
    gap: 0.06rem;
    box-sizing: border-box;
    padding: 0.08rem 0.16rem;
    font-size: 0.16rem;
    line-height: 1.45;
    color: #000;
    border-radius: 0.08rem;
}

.show01 .show01-ul li div img {
    width: 0.16rem;
    height: 0.16rem;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.88;
}


.show01 h5 {
    font-size: 0.22rem;
    line-height: 0.32rem;
    text-align: center;
    margin-bottom: 0.2rem;
    font-weight: bold;
    color: #323232;
    height: 0.32rem
}

.show01 p {
    padding-bottom: 0.2rem;
    text-align: center;
    font-size: 0.14rem;
    color: #666666;
    border-bottom: 1px solid #dcdcdc;
    word-break: break-all
}

.show02 p {

    color: #323232;
    line-height: 0.36rem!important;
    margin-bottom: 0.14rem;

    background: none !important;
    word-break: break-all
}

.show02 p strong {
    background: none !important
}

.show02 p iframe {
    border: 0px solid #DDDDDD !important
}

.show02 p audio {
    margin: 0 auto
}

.show02 table {
    margin: 0 auto !important;
    overflow-x: scroll
}

.show02 table p {
    text-indent: 0em
}

.show02 ol {
    padding-left: 1em
}

.show02 li p {
    text-indent: 0em
}

.show02 img,.show04 img{
    display: inherit;
    margin: 0 auto;
    max-width: 86%;
    height: auto!important;
    border: none !important;
    margin-bottom: 0.16rem
}
.show02 table,.show04 table{
   width:100% !important;
}
/* ========== 图片/视频列表 piclist-grid（每行四列） ========== */
.piclist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem 0.65rem;
    margin: 0;
    padding: 0;
}

.piclist-card {
    display: block;
    position: relative;
    grid-column: span 1;
    min-width: 0;
    width: 100%;
    max-width: 1.68rem;
    justify-self: center;
    border-radius: 0.08rem;
    overflow: hidden;
    box-shadow: 0 0.04rem 0.14rem rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.piclist-card:hover {
    box-shadow: 0 0.14rem 0.32rem rgba(0, 0, 0, 0.24);
    transform: translateY(-0.03rem);
}

.piclist-card:focus-visible {
    outline: 2px solid #335e69;
    outline-offset: 2px;
}

.piclist-card-media {
    display: block;
    aspect-ratio: 5 / 7; /* 一寸照 25mm×35mm */
    overflow: hidden;
    background: #e8ecee;
    border-radius: 0.08rem;
}

.piclist-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.piclist-card:hover .piclist-card-media img {
    transform: scale(1.04);
}

.piclist-card-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.06rem 0.08rem;
    font-size: 0.12rem;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_container .n_right .TextList {
    padding-top: 0;
    margin-top: 0.4rem;
    min-height: 4.5rem
}

.TextList ul li {
    padding-bottom: 0rem;
    position: relative;
    transition: 0.6s all;
    padding-left: 0.16rem
}

.TextList ul li a {
    display: flex;
    position: relative;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    transition: 0.4s all;
    align-items: center;
    padding: 0.2rem 0 0.1rem 0.09rem;
    border-bottom: 0.01rem solid rgba(7, 45, 155, 0.12);
    box-sizing: border-box
}


.TextList ul li a p {
    transition: 0.6s all;
    line-height: 0.28rem;
    font-size: 0.18rem;
    color: #323232;
    position: relative;
    padding-left: 0.2rem;
    transition: 0.4s all;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.TextList ul li a span {
    font-size: 0.18rem !important;

    font-weight: normal;

}

.TextList ul li a .data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}