@charset "utf-8";

/* ========== 与 reset 协同：全站主色与正文 ========== */
body {
    background: #fff;
    color: #333;
    font-size: 0.16rem;
    line-height: 1.5;
    font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
}

.flex-w {
    flex-wrap: wrap;
}

/* 文本超出省略 */
.text-ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.text-ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* 主色 */
:root {
    --seie-blue: #003366;
    --seie-blue-2: #0a4a7a;
    --seie-accent: #1e6bb8;
    --seie-arrow-blue: #2d8bc9;
    --seie-gray: #666;
    --seie-border: #e8e8e8;
    --seie-sec-bg: #f8f8f8;
    --seie-nav-text: #2b2b2b;
    --seie-nav-hover: #0b4f7f;
}

/* ========== 顶栏 ========== */
.seie-header {
    background: #0a3f73 url("../images/topbg.png") no-repeat center top;
    background-size: cover;
}

.seie-header-inner{
    background:  url("../images/xm.png") no-repeat calc(100% - 1rem) top;
    background-size: contain;
    padding: 0.25rem 0 0.25rem;
}
.seie-brand {
    color: #fff;
    text-decoration: none;
    gap: 0.14rem;
    align-items: center;
    transition: opacity 0.2s;
}

.seie-brand:hover {
    opacity: 0.95;
    color: #fff;
}

.seie-brand-logo {
    width: auto;
    height: 0.82rem;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.seie-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0.2rem;
    padding: 0 0.1rem 0 0.2rem;
    box-shadow: inset 0 0 0 0.01rem rgba(0, 0, 0, 0.06);
}

.seie-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 0.14rem;
    color: #333;
    line-height: 1.4;
    padding: 0.04rem 0;
}

.seie-search-input::placeholder {
    color: #999;
}

.seie-search-btn {
    width: 0.36rem;
    height: 0.36rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0.1rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.seie-search-btn:hover {
    background: rgba(0, 51, 102, 0.08);
}

.seie-search-btn img {
    display: block;
    width: 0.16rem;
    height: 0.16rem;
    object-fit: contain;
}

/* ========== 主导航 ========== */
.seie-nav {
    background: #fff;
    padding: 0;
}

.seie-nav-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    min-height: 0.56rem;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    position: relative;
}

.seie-nav-item {
    position: relative;
}

.seie-nav-item > a {
    display: block;
    padding: 0.18rem 0.26rem;
    font-size: 0.18rem;
    color: #1e1d1d;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s, background 0.2s;
    font-weight: 600;
}

.seie-nav-item > a:hover,
.seie-nav-item > a.is-active {
    color: var(--seie-nav-hover);
    font-weight: 600;
}

.seie-nav-item > a.is-active::after,
.seie-nav-item > a:hover::after {
    width: 60%;
}

/* 二级下拉 */
.seie-nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 0.05rem solid transparent;
    border-right: 0.05rem solid transparent;
    border-top: 0.06rem solid currentColor;
    margin-left: 0.08rem;
    opacity: 0.65;
    transform: translateY(-0.01rem);
}

.seie-nav-sub {
    list-style: none;
    margin: 0;
    padding: 0.1rem 0;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(0.06rem);
    min-width: 1.9rem;
    background: #fff;
    border: 0.01rem solid rgba(0, 0, 0, 0.08);
    border-top: 0.02rem solid var(--seie-nav-hover);
    border-radius: 0.04rem;
    box-shadow: 0 0.12rem 0.28rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 50;
}

.seie-nav-sub a {
    display: block;
    padding: 0.12rem 0.2rem;
    font-size: 0.16rem;
    color: #333;
    text-align: center;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.seie-nav-sub a:hover {
    background: rgba(11, 79, 127, 0.08);
    color: var(--seie-nav-hover);
}

.seie-nav-item.has-sub:hover .seie-nav-sub,
.seie-nav-item.has-sub:focus-within .seie-nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ========== 轮播 ========== */
.seie-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.seie-hero-swiper {
    width: 100%;
    height: 4.83rem;
}

.seie-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.seie-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.seie-hero .swiper-pagination-bullets.seie-hero-dots,
.seie-hero .seie-hero-dots {
    bottom: 0.24rem !important;
    left: 0;
    right: 0;
    text-align: center;
}

.seie-hero .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 0.05rem !important;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    border-radius: 50%;
    vertical-align: middle;
}

.seie-hero .swiper-pagination-bullet-active {
    background: #fff;
    width: 0.12rem;
    height: 0.12rem;
    box-shadow: 0 0 0.06rem rgba(0, 0, 0, 0.25);
}

/* ========== 区块标题 ========== */
.seie-block {
    padding: 0.36rem 0 0.55rem;
}

.seie-block-hd {
    margin-bottom: 0.24rem;
    min-height: 0.4rem;
}

.seie-sec-title {
    gap: 0.1rem;
    align-items: center;
}

.seie-sec-ico {
    display: block;
    width: 0.39rem;
    height: 0.3rem;
    flex-shrink: 0;
    line-height: 0;
}

.seie-sec-ico img {
    width: 0.39rem;
    height: 0.3rem;
    object-fit: contain;
    display: block;
}

.seie-sec-name {
    margin: 0;
    font-size: 0.28rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.seie-more img{
    width: 0.72rem;
}


/* ========== 学院动态 ========== */
.seie-block--news {
    background: #fff;
}

.seie-news-body {
    align-items: stretch;
    gap: 0.28rem;
    display: flex;
    justify-content: space-between;
}

.seie-news-feature {
    width: 7.35rem;
    flex-shrink: 0;
    min-width: 0;
    position: relative;
}

.seie-news-swiper {
    width: 100%;
    height: 4.66rem;
    overflow: hidden;
    box-shadow: 0 0.04rem 0.2rem rgba(0, 0, 0, 0.08);
}

.seie-news-swiper .swiper-wrapper {
    height: 100%;
}

.seie-news-slide {
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
    width: 100%;
    height: 100%;
}

.seie-news-slide-imgwrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.seie-news-slide-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.seie-news-slide:hover .seie-news-slide-imgwrap img {
    transform: scale(1.04);
}

.seie-news-slide-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: auto;
}

.seie-news-bar {
    width: 100%;
    min-height: 0.56rem;
    padding: 0.12rem 0.14rem 0.12rem 0.16rem;
    gap: 0.14rem;
    align-items: center;
}

.seie-news-bar-date {
    font-size: 0.22rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.seie-news-bar-tit {
    min-width: 0;
    font-size: 0.18rem;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.35;
    width: 75%;
}

.seie-news-swiper .seie-news-dots {
    position: absolute !important;
    z-index: 3;
    width: auto !important;
    transform: none !important;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.08rem;
    bottom: 0.25rem;
    right: 0.2rem;
}

.seie-news-swiper .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 !important;
    background: #fff;
    opacity: 1;
    border-radius: 0.01rem;
}

.seie-news-swiper .swiper-pagination-bullet-active {
    background:#415ca2;
    opacity: 1;
}

/* 右侧列表 */
.seie-news-side {
   width: 7.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.seie-news-side > a {
    display: flex;
    margin-bottom: 0.29rem;
}

.seie-news-side > a:last-child {
    margin-bottom: 0;
}

.seie-news-side-item {
    text-decoration: none;
    color: #333;
    width: 100%;
    gap: 0.22rem;
    align-items: flex-start;
    transition: background 0.2s, transform 0.2s;
    position: relative;
}
.seie-news-side-item::after{
    content: "";
    display: block;
    width: 100%;
    height: 0.01rem;
    border-bottom: 0.01rem dashed #d1d5e3;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.seie-news-side-item:hover {
    background: rgba(65, 92, 162, 0.04);
}

.seie-news-side-item:hover .seie-news-side-tit {
    color: var(--seie-blue);
}

.seie-datebox {
    flex-shrink: 0;
    width: 0.84rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    line-height: 1.1;
    border-radius: 0;
    overflow: hidden;
}

.seie-datebox--solid {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.seie-datebox-ym {
    font-size: 0.16rem;
    display: flex;
    margin: 0;
    letter-spacing: 0.02em;
    width: 0.84rem;
    height: 0.3rem;
    background: #415ca2;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.seie-datebox-d {
    width: 100%;
    font-size: 0.24rem;
    font-weight: 600;
    display: flex;
    line-height: 1.15;
    height: 0.4rem;
    background: #fff;
    color: #3e55a0;
    border-bottom: 0.03rem solid #3c529f;
    justify-content: center;
    align-items: center;
}

.seie-news-side-tit {
    font-size: 0.18rem;
    line-height: 1.7;
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    color: #1a1a1a;
    padding-top: 0.01rem;
}

/* ========== 双列：浅底 ========== */
.seie-block--light {
    background: #f9f8f8;
    padding-top: 0.32rem;
    padding-bottom: 0.36rem;
}

.seie-block--bt {
    padding-bottom: 2rem;
    background: url("../images/bannerbg.png") left calc(100% + 1.5rem) no-repeat;
    background-size: cover;
}

.seie-row2 {
    align-items: stretch;
    gap: 0.4rem;
    justify-content: space-between;
}

.seie-col {
    width: 7.35rem;
}

/* 通知 / 学生工作 列表（div + a） */
.seie-anno-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.seie-anno-item {
    text-decoration: none;
    color: inherit;
    padding: 0.15rem 0.06rem 0.15rem 0;
    gap: 0.16rem;
    align-items: center;
    transition: background 0.18s ease;
}

.seie-anno-item:hover {
    background: rgba(65, 92, 162, 0.05);
}

.seie-anno-item:hover .seie-anno-tit {
    color: #415ca2;
}

.seie-anno-ico {
    flex-shrink: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #c8d6e3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -2;
}

.seie-anno-ico::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.2rem;
    height: 0.2rem;
    background: #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    z-index: -1;
    border-radius: 50%;
}

.seie-anno-ico img{
    width: 0.14rem;
}
.seie-anno-txt {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
}

.seie-anno-time {
    display: block;
    color: #3c529f;
    font-size: 0.14rem;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-weight: 600;
}

.seie-anno-tit {
    display: block;
    font-size: 0.18rem;
    font-weight: 400;
    color: #171616;
    line-height: 1.55;
}

/* 教育教学（div + a，首条与列表同容器） */
.seie-edu-stack {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.seie-edu-top {
    text-decoration: none;
    color: inherit;
    gap: 0.2rem;
    align-items: flex-start;
    padding-bottom: 0.12rem;
    margin-bottom: 0.02rem;
    transition: background 0.2s;
}


.seie-edu-pic {
    height: 1.77rem;
    width: 2.95rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.1rem;
}

.seie-edu-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.seie-edu-top:hover .seie-edu-pic img {
    transform: scale(1.04);
}

.seie-edu-intro {
    flex: 1;
    min-width: 0;
    padding-top: 0.02rem;
}

.seie-edu-htit {
    margin: 0 0 0.12rem;
    font-size: 0.18rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.45;
    transition: color 0.2s;
    height: 0.5rem;
}

.seie-edu-top:hover .seie-edu-htit {
    color: #415ca2;
}

.seie-edu-desc {
    margin: 0;
    font-size: 0.16rem;
    color: #737171;
    line-height: 1.65;
}

.seie-edu-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #111;
    font-size: 0.16rem;
    padding: 0.11rem 0;
    border-bottom: 0.01rem solid #ebebeb;
    transition: background 0.15s ease;
}


.seie-edu-line:hover {
    background: rgba(0, 0, 0, 0.02);
}

.seie-edu-line:hover .seie-edu-line-tit {
    color: #415ca2;
}

.seie-edu-line-left {
    flex: 1;
    min-width: 0;
    gap: 0.1rem;
}

.seie-edu-line-ico {

}
.seie-edu-line-ico img{
    width: 0.08rem;
}
.seie-edu-line-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    color: #171616;
}

.seie-edu-line-date {
    flex-shrink: 0;
    color: #a8a8a8;
    font-size: 0.16rem;
    font-style: normal;
    white-space: nowrap;
}

/* 学术科研 日期外框 */
.seie-research-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.seie-research-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    padding: 0.2rem 0;
    gap: 0.22rem;
    border-bottom: 0.01rem solid #eeeeee;
    transition: background 0.18s ease;
}

.seie-research-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.seie-research-item:hover .seie-research-tit {
    color: #415ca2;
}

.seie-research-tit {
    font-size: 0.18rem;
    line-height: 1.65;
    flex: 1;
    min-width: 0;
}

.seie-research-datebox {
    width: 0.7rem;
    flex-shrink: 0;
    border: 0.01rem solid #b9c3dd;
    background: #fff;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

.seie-research-day {
    display: flex;
    font-size: 0.26rem;
    font-weight: 600;
    line-height: 1.05;
   height: 0.34rem;
    color: #5069a9;
    align-items: center;
    justify-content: center;
}

.seie-research-ym {
    display: flex;
    font-size: 0.13rem;
    line-height: 1.2;
    background: rgba(65, 92, 162, 0.18);
    color: #415ca2;
    height: 0.21rem;
    align-items: center;
    justify-content: center;
}

/* ========== 页脚 ========== */
.seie-footer {
    position: relative;
    overflow: hidden;
}


.seie-footer-bar {
    background: linear-gradient(to right, #3a6da3, #3a539f);
    padding: 0.3rem 0.24rem;
    text-align: center;
    border-top: 0.01rem solid rgba(255, 255, 255, 0.08);
}

.seie-copyright {
    margin: 0;
    font-size: 0.18rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* AOS 修复：不遮挡主内容 */
[data-aos] {
    pointer-events: auto;
}



/* ========== 新闻网列表页 .n_container（侧栏 + 面包屑 + 卡片列表） ========== */
.n_container {
    padding: 0 0 0.6rem;

}

.n_container > .w1520.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: #3c529f;
    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: #3a3f45;
    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: #3c529f;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #3c529f;
    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 dd {
    margin: 0;
    border-top: 1px solid #dde2e6;
}

.n_left .ulCon dd a {
    display: block;
    padding: 0.12rem 0.18rem 0.12rem 0.42rem;
    font-size: 0.14rem;
    color: #3c529f;
    text-decoration: none;
}

.n_left .ulCon dd a:hover {
    color: #3c529f;
}

.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("../images/home.png") center / contain no-repeat;
}

.n_right .mianbao a {
    color: #888;
    text-decoration: none;
}

.n_right .mianbao a:hover {
    color: #3c529f;
}

.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: 600;
    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: #3c529f;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #3c529f;
}

.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: #000000;
    border-radius: 0.08rem;
}

.show01 .show01-ul li div img {
    width: 0.18rem;
    height: 0.18rem;
    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 #vsb_content_2 li p {
    text-indent: 0em
}



.show02 img {
    display: inherit;
    margin: 0 auto;
    max-width: 86%;
    height: auto!important;
    border: none !important;
    margin-bottom: 0.16rem
}

/* 人员照片列表（一寸照 5:7） */
.pic-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
   gap: 0.35rem 0.5rem;
    padding: 0.2rem 0.12rem;
}

.pic-list-item {
    text-align: center;
}

.pic-list-item > a {
    display: block;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.pic-list-item > a:hover {
    color: #3c529f;
}

.pic-list-photo {
    aspect-ratio: 5 / 7;
    overflow: hidden;
    background: #e8eef5;
}

.pic-list-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.pic-list-name {
    margin-top: 0.1rem;
    font-size: 0.16rem;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 992px) {
    .pic-list-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .pic-list-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.2rem 0.16rem;
    }
}

@media (max-width: 480px) {
    .pic-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}