@charset "utf-8";

:root {
    --color-nav: #0a2856;
    --color-title: #0c2b5c;
    --color-sub: #3d7ccc;
    --color-accent: #1e6fd9;
    --color-muted: #999;
    --color-line: #2b6cb0;
}

.top-header {
    background: #086da2;
}

.top-header-inner {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.top-header-logo {
    flex-shrink: 0;
}

.top-header-logo img {
    display: block;
    max-height: 0.61rem;
    width: auto;
}

.top-header-right {
    flex: 1;
    min-width: 0;
    margin-left: 0.28rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.18rem;
}

.top-header-toolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.14rem;
    width: 100%;
    max-width: 100%;
}

.top-header-motto {
    display: block;
    max-height: 0.52rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
    opacity: 0.92;
}

.top-header-search {
    flex-shrink: 0;
    margin-left: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.06rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-header-search img {
    display: block;
    width: 0.2rem;
    height: 0.2rem;
}

/* 全屏站内搜索（PC 基础样式，移动端见 mobile.css 覆盖） */
body.site-search-open {
    overflow: hidden;
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.2rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-search.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-search-inner {
    position: relative;
    width: 100%;
    max-width: 9rem;
    margin: 0 auto;
}

.site-search-close {
    position: absolute;
    top: -0.56rem;
    right: 0;
    width: 0.44rem;
    height: 0.44rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.4rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.site-search-close:hover {
    opacity: 1;
}

.site-search-form {
    display: flex;
    align-items: stretch;
    gap: 0.12rem;
    width: 100%;
}

.site-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-search-input {
    flex: 1;
    min-width: 0;
    height: 0.56rem;
    padding: 0 0.2rem;
    border: 0;
    border-radius: 0.02rem;
    font-size: 0.18rem;
    color: #333;
    background: #fff;
    box-sizing: border-box;
}

.site-search-input::placeholder {
    color: #999;
}

.site-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 0.02rem rgba(255, 255, 255, 0.35);
}

.site-search-submit {
    flex-shrink: 0;
    min-width: 1.2rem;
    height: 0.56rem;
    padding: 0 0.28rem;
    border: 0;
    border-radius: 0.02rem;
    font-size: 0.18rem;
    color: #fff;
    background: var(--color-accent);
    cursor: pointer;
    transition: background 0.2s ease;
}

.site-search-submit:hover {
    background: #155eb8;
}

.main-nav {
    width: 100%;
    padding-top: 0.02rem;
    background: transparent;
    box-shadow: none;
}

.main-nav-list {
    gap: 0;
}

.main-nav-item {
    position: relative;
}

.main-nav-item + .main-nav-item {
    margin-left: 0.36rem;
}

.main-nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.06rem;
    color: #fff;
    font-size: 0.19rem;
    line-height: 0.4rem;
    padding: 0 0.04rem;
    letter-spacing: 0.02em;
}

.main-nav-item.has-sub > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.04rem solid transparent;
    border-right: 0.04rem solid transparent;
    border-top: 0.05rem solid rgba(255, 255, 255, 0.75);
    margin-top: 0.02rem;
}

.main-nav-item > a:hover,
.main-nav-item:focus-within > a {
    opacity: 0.95;
    text-decoration: underline;
    text-underline-offset: 0.06rem;
}

.main-nav-sub {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(0.04rem);
    top: 100%;
    min-width: 1.86rem;
    padding: 0.08rem 0;
    background: #fff;
    border-radius: 0.02rem;
    box-shadow: 0 0.04rem 0.14rem rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 200;
    text-align: center;
}

.main-nav-item.has-sub:hover .main-nav-sub,
.main-nav-item.has-sub:focus-within .main-nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.main-nav-sub li {
    border-bottom: 0.01rem solid #f0f0f0;
}

.main-nav-sub li:last-child {
    border-bottom: 0;
}

.main-nav-sub a {
    display: block;
    color: #333;
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.42rem;
    padding: 0.02rem 0.2rem;
    white-space: nowrap;
}

.main-nav-sub a:hover {
    background: #eef4fb;
    color: var(--color-accent);
    text-decoration: none;
    opacity: 1;
}

.hero {
    background: #000;
}

.hero-swiper {
    width: 100%;
    height: 5.6rem;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-swiper-pagination.swiper-pagination-bullets {
    bottom: 0.22rem;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 0.15rem;
    height: 0.1rem;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    border-radius: 0.05rem;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #086da2;
    width: 0.3rem;
    border-radius: 0.05rem;
}

.section {
    padding-top: 0.48rem;
    padding-bottom: 0.48rem;
    background: #fff;
}
.section--news{
    background: url("../imgs/banner1bg.png") left top no-repeat;
    background-size: 100% 100%;
}
.section--dual {
    padding-top: 0.4rem;
    padding-bottom: 0.1rem;
}

.section--dual-last {
    padding-bottom: 0.48rem;
}

.section-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.12rem;
    row-gap: 0.06rem;
    align-items: start;
    position: relative;
    margin-bottom: 0.28rem;
    width: 100%;
    min-width: 0;
}

.section-head-bar {
    grid-column: 1;
    grid-row: 1 / -1;
    flex-shrink: 0;
    background: #086da2;
    border-radius: 0.01rem;
    align-self: stretch;
    min-height: 0.52rem;
    width: 0.05rem;
}

.section-head-zh {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.32rem;
    font-weight: 400;
    color: #086da2;
    line-height: 1.15;
    min-width: 0;
    margin-top: -0.04rem;
}

.section-head-sub {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    position: absolute;
    width: 100%;
    bottom: -0.24rem;
}

.section-head-en {
    font-size: 0.14rem;
    color: #086da2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    flex-shrink: 0;
}

.section-head-en-line {
    display: inline-block;
    width: 0.22rem;
    height: 0.03rem;
    background: #086da2;
    flex-shrink: 0;
    align-self: center;
    margin-left: 0.05rem;
    margin-top: 0.01rem;
}

.section-head-rule-wrap {
    flex: 1 1 0.6rem;
    min-width: 0.2rem;
    display: flex;
    align-items: center;
    align-self: center;
    min-height: 0.22rem;
}

.section-head-rule {
    flex: 1;
    width: 100%;
    height: 0;
    border-top: 0.01rem solid #d5dde4;
    position: relative;
    align-self: center;
}

.section-head-more {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: center;
}

.section-head-more-img {
    height: 0.58rem;
    width: auto;
    display: block;
    margin-top: -0.01rem;
}

.section-head-panel {
    min-width: 0;
}

.news-grid {
    display: flex;
    gap: 0.36rem;
    align-items: stretch;
    margin-top: 0.55rem;
}

.news-feature {
    width: 7.8rem;
    min-width: 0;
}

.news-feature-swiper {
    position: relative;
    width: 100%;
    height: 4.67rem;
    overflow: hidden;
}

.news-feature-swiper .swiper-slide {
    height: 4.67rem;
}

.news-feature-link {
    display: block;
    color: inherit;
    height: 100%;
}

.news-feature-pic {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.news-feature-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-feature-mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

.news-feature-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.2rem 0.7rem 0.2rem 0.22rem;
    color: #fff;
    z-index: 2;
    max-width: 100%;
    box-sizing: border-box;
}

.news-feature-cap time {
    display: block;
    font-size: 0.18rem;
    font-weight: 700;
    color: #fff;
    opacity: 1;
    margin-bottom: 0.06rem;
    letter-spacing: 0.02em;
}

.news-feature-title {
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-feature-swiper-pagination.swiper-pagination-bullets {
    position: absolute;
    left: auto;
    right: 0.2rem;
    bottom: 0.2rem;
    top: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.1rem;
    z-index: 3;
}

.news-feature-swiper-pagination .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
    margin: 0;
    background: #fff;
    opacity: 0.45;
    border-radius: 50%;
}

.news-feature-swiper-pagination .swiper-pagination-bullet-active {
    width: 0.11rem;
    height: 0.11rem;
    opacity: 1;
    background: #fff;
    border-radius: 50%;
}

.news-aside {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.news-list-feature {
    position: relative;
    margin-bottom: 0.14rem;
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-list-feature:hover .news-spotlight-title {
    color: var(--color-accent);
}

.news-list-feature-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 0.98rem;
    height: 0.98rem;
    background: #29609a;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0.12rem 0 0 0.08rem;
    box-sizing: border-box;
}

.news-list-feature-badge img {
    display: block;
    width: 0.4rem;
    height: auto;
    transform: rotate(0);
    transform-origin: center center;
    margin: 0.06rem 0 0 0.02rem;
}

.news-spotlight-card {
    background: #fff;
    box-shadow: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.08);
    border-radius: 0.04rem;
    padding: 0.28rem 0.2rem 0.2rem 0.78rem;
}

.news-list-feature .news-spotlight-card {
    position: relative;
    z-index: 1;
}

.news-spotlight-title {
    margin: 0;
    font-size: 0.18rem;
    font-weight: 700;
    line-height: 1.5;
    color: #222;
}

.news-spotlight-divider {
    height: 0;
    border-bottom: 0.01rem solid #e8e8e8;
    margin: 0.14rem 0 0.16rem;
}

.news-spotlight-foot {
    display: flex;
    gap: 0.18rem;
    align-items: flex-start;
}

.news-spotlight-foot .news-spotlight-date {
    width: 0.72rem;
    flex-shrink: 0;
    background: transparent;
    color: #29609a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.15;
    height: auto;
}

.news-spotlight-foot .news-spotlight-day {
    font-size: 0.3rem;
    font-weight: 700;
    color: #29609a;
}

.news-spotlight-foot .news-spotlight-ym {
    font-size: 0.14rem;
    font-weight: 400;
    color: #29609a;
    opacity: 1;
    margin-top: 0.04rem;
}

.news-spotlight-summary {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: 0.16rem;
    line-height: 1.65;
    color: #525252;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 0.528rem;


}

.news-list > .news-list-link {
    border-bottom: 0.01rem solid #eee;
}

.news-list > .news-list-link:last-child {
    border-bottom: 0;
}

.news-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.2rem;
    padding: 0.11rem 0;
    font-size: 0.18rem;
    color: #333;
}

.news-list-link:hover {
    color: var(--color-accent);
}

.news-list-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    color: #191919;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-list > .news-list-link:first-child .news-list-tit {
    font-weight: 700;
    color: #086da2;
    font-size: 0.2rem;
}

.news-list-link:hover .news-list-tit {
    color: var(--color-accent);
}

.news-list-date {
    flex-shrink: 0;
    color: #4c4c4c;
    font-size: 0.16rem;
}

.news-list-link:hover .news-list-date {
    color: #999;
}

.dual-grid {
    display: flex;
    gap: 0.55rem;
}

.dual-grid .panel {
    flex: 1;
    min-width: 0;
}

.notice-list-link {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.15rem 0;
    border-bottom: 0.01rem solid #eee;
    text-decoration: none;
    color: inherit;
}

.notice-list > .notice-list-link:last-child {
    border-bottom: 0;
}

.notice-list-date {
    flex-shrink: 0;
    color: #4c4c4c;
    font-size: 0.16rem;
}

.notice-list-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    color: #191919;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.notice-list-link:hover .notice-list-tit {
    color: var(--color-accent);
}

.dot-list-link {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.15rem 0;
    text-decoration: none;
    color: inherit;
}

.dot-list-link:last-child {
    border-bottom: 0;
}

.dot-list-ico {
    width: 0.16rem;
    height: 0.17rem;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.dot-list-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    color: #191919;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dot-list-date {
    flex-shrink: 0;
    font-size: 0.16rem;
    color: #868585;
}

.dot-list-link:hover .dot-list-tit {
    color: var(--color-accent);
}

.dot-list-link:hover .dot-list-date {
    color: #868585;
}

.slogan-band {
    padding: 0.42rem 0 0;
    width: 100%;
    overflow: hidden;
}
.slogan-band  img{max-width:100%;}
.slogan-band-inner {
    text-align: center;
}

.slogan-band-text {
    width: 100%;
}

.site-footer {
    background: #086da2;
    color: rgba(255, 255, 255, 0.88);
    padding: 0.36rem 0;
}

.site-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 0.36rem;
}
.site-footer-brand img{
    height:0.61rem;
}
.site-footer-logo img {
    display: block;
    max-height: 0.72rem;
    width: auto;
}
.site-footer-meta-sep{margin:0 0.1rem;}
.site-footer-info {
    flex: 1;
    font-size: 0.13rem;
    line-height: 1.75;
    padding: 0 0.2rem;
}

.site-footer-copy {
    margin-top: 0.06rem;
    opacity: 0.85;
}

.site-footer-qr {
    text-align: center;
    flex-shrink: 0;
}

.site-footer-qr-box {
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 0.02rem;
}
.site-footer-qr-box img{
    width:100%;
}
.site-footer-qr-cap {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.12rem;
    color: #fff;
}
#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: #086da2;
    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: #086da2;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #086da2;
    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_left .ulCon ul.sidebar-sub-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #dde2e6;
    background: rgba(255, 255, 255, 0.45);
 display: none;
}

.n_left .ulCon > ul > li.is-sub-open > ul.sidebar-sub-nav {
    display: block;
}

.n_left .ulCon > ul > li.has-sidebar-sub > a {
    cursor: pointer;
}

.n_left .ulCon > ul > li.has-sidebar-sub > a::after {
    content: "";
    position: absolute;
    right: 0.2rem;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 0.05rem solid transparent;
    border-right: 0.05rem solid transparent;
    border-top: 0.06rem solid #888;
    transform: translateY(-50%);
    transition: transform 0.2s ease, border-top-color 0.2s ease;
    pointer-events: none;
}

.n_left .ulCon > ul > li.has-sidebar-sub > a:hover::after,
.n_left .ulCon > ul > li.has-sidebar-sub.on > a::after,
.n_left .ulCon > ul > li.has-sidebar-sub.is-sub-open > a::after {
    border-top-color: #086da2;
}

.n_left .ulCon > ul > li.has-sidebar-sub.is-sub-open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.n_left .ulCon > ul > li > ul.sidebar-sub-nav > li {
    border-bottom: 1px solid rgba(221, 226, 230, 0.9);
}

.n_left .ulCon > ul > li > ul.sidebar-sub-nav > li:last-child {
    border-bottom: none;
}

.n_left .ulCon > ul > li > ul.sidebar-sub-nav > li > a {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0.14rem 0;
    color: #353535;
    font-size: 0.16rem;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.5;
    text-align: center;
    word-break: break-word;
    transition: color 0.2s;
}

.n_left .ulCon > ul > li > ul.sidebar-sub-nav > li > a:hover {
    color: #086da2;
    font-weight: 600;
}

.n_left .ulCon > ul > li > ul.sidebar-sub-nav > li.on > a {
    color: #086da2;
    font-weight: 600;
}

.n_left .ulCon > ul > li > ul.sidebar-sub-nav > li.on > a::before {
    background: #086da2;
}

.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.01rem 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("../imgs/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: #086da2;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #086da2;
}

.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;
    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;
}

/* ========== 图片/视频列表 piclist-grid（每行四列） ========== */
.piclist-grid {
    display: grid;
    grid-template-columns: repeat(5, 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;

    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.piclist-card:hover {

    transform: translateY(-0.03rem);
}

.piclist-card:focus-visible {
    outline: 2px solid #086da2;
    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 {
    display: block;
    width: 100%;
    padding: 0.06rem 0.08rem;
    font-size: 0.16rem;
    font-weight: 600;
    line-height: 1.45;
    color: #000;
    text-align: center;
    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;
    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 {
    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
}

/* ========== 教师名录 .faculty-dir ========== */
.faculty-dir {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    padding: 0 0.24rem;
}

.faculty-dir-group {
    padding: 0 0 0.04rem;
}

.faculty-dir-title {
    margin: 0 0 0.16rem;
    padding-left: 0.14rem;
    border-left: 0.04rem solid #086da2;
    font-size: 0.18rem;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
    letter-spacing: 0.02em;
}

.faculty-dir-list {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.1rem 0.12rem;
}

.faculty-dir-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.06rem;
    padding: 0.04rem 0;
    font-size: 0.18rem;
    line-height: 1.4;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faculty-dir-list a::before {
    content: "";
    flex-shrink: 0;
    width: 0.07rem;
    height: 0.07rem;
    border: 0.015rem solid #086da2;
    box-sizing: border-box;
    opacity: 0.75;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.faculty-dir-list a:hover {
    color: #000;
}

.faculty-dir-list a:hover::before {
    background: #086da2;
    border-color: #086da2;
    opacity: 1;
}