:root {
    --color-primary: #305e69;
    --color-primary-dark: #164555;
    --color-primary-light: #2a6b7e;
    --color-nav-bg: #2a6b7e;
    --color-text: #333;
    --color-muted: #999;
    --color-border: #e5e5e5;
}

body {
    background: #fff;
    color: var(--color-text);
}

/* ========== 顶部 ========== */
.site-header {
    position: relative;
    z-index: 100;
}

.header-top {
    background: var(--color-primary);
    background-size: auto 100%;
}

.header-top-inner {
    min-height: .88rem;
    background: url("../images/topbg.png") calc(100% - 1.2rem) top no-repeat;
    padding: .25rem 0;
}

.site-logo {
    display: block;
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    height: .62rem;
    width: auto;
}

.site-search {
    position: relative;
    width: 2.4rem;
    flex-shrink: 0;
}

.site-search input {
    width: 100%;
    height: .36rem;
    padding: 0 .42rem 0 .16rem;
    border: 0;
    border-radius: .18rem;
    font-size: .14rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.25s ease;
}

.site-search input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.site-search input:focus {
    background: rgba(255, 255, 255, 0.35);
}

.site-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: .38rem;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.site-search-btn img {
    display: block;
    width: .16rem;
    height: .16rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.header-menu-btn {
    display: none;
    flex-shrink: 0;
    width: .44rem;
    height: .44rem;
    padding: .08rem;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-menu-btn img {
    display: block;
    width: .33rem;
    height: auto;
    margin: 0 auto;
}

.main-nav-head {
    display: none;
}

/* ========== 主导航 ========== */
.main-nav {
    background: #456e78;
}

.main-nav-list {
    flex-wrap: nowrap;
}

.main-nav-item {
    position: relative;
    flex: 1;
    text-align: center;
}

.main-nav-link {
    display: block;
    color: #fff;
    font-size: .2rem;
    line-height: 1.2;
    padding: .16rem .1rem;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
    font-weight: 600;
}

.main-nav-link:hover {
    color: #fff;
}


.main-nav-sub {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(.04rem);
    min-width: 1.8rem;
    background: #fff;
    box-shadow: 0 .08rem .2rem rgba(0, 0, 0, 0.14);
    border-top: .03rem solid var(--color-primary);
    padding: .08rem 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 .24rem;
    color: var(--color-text);
    font-size: .16rem;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav-sub a:hover {
    background: rgba(29, 85, 102, 0.08);
    color: var(--color-primary);
}

.main-nav-item.has-sub:hover .main-nav-sub,
.main-nav-item.has-sub:focus-within .main-nav-sub {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========== Banner ========== */
.hero-banner {
    line-height: 0;
    overflow: hidden;
}

.hero-swiper {
    position: relative;
    width: 100%;
    height: 4.99rem;
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    height: 4.99rem;
}

.hero-slide {
    display: block;
    height: 100%;
    overflow: hidden;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-swiper-pagination {
    position: absolute;
    left: 0 !important;
    right: 0;
    bottom: .24rem;
    width: 100% !important;
    z-index: 2;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: .1rem;
    transform: none !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: .08rem;
    height: .08rem;
    margin: 0 !important;
    border-radius: .04rem;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: width 0.3s ease, background 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: .24rem;
    background: #fff;
}

/* ========== 通用区块 ========== */
.site-main {
    overflow: hidden;
}

.home-section {
    padding: .45rem 0;
}

.section-head {
    margin-bottom: .18rem;
}

.section-head-title {
    display: flex;
    align-items: center;
    gap: .02rem;
}

.section-title-cn {
    font-size: .3rem;
    font-weight: 600;
    color: #141414;
    line-height: 1.2;
}

.section-title-en {
    font-size: .5rem;
    color: rgba(48,94,105,0.1);
    font-weight: 400;
    text-transform: capitalize;
}

.section-more {
    display: inline-flex;
    align-items: center;
    gap: .06rem;
    flex-shrink: 0;
    color: #7a8a94;
    font-size: .14rem;
    font-weight: 400;
    letter-spacing: .01rem;
    line-height: 1;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.section-more:hover {
    color: var(--color-primary);
    opacity: 0.85;
}

.section-more span {
    flex-shrink: 0;
}

.section-more img {
    display: block;
    height: .05rem;
    width: auto;
}

/* ========== 新闻列表通用 ========== */
.news-link {
    gap: .1rem;
    padding: .12rem .1rem;
    margin: 0 -.1rem;
    border-bottom: 1px dashed var(--color-border);
    border-radius: .04rem;
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.news-link:hover {
    color: var(--color-primary);
    background: rgba(48, 94, 105, 0.06);
    padding-left: .16rem;
}

.news-link:hover .news-title {
    color: var(--color-primary);
}

.news-link:hover .news-dot {
    transform: scale(1.15);
}

.news-dot {
    flex-shrink: 0;
    width: .1rem;
    height: .1rem;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.news-title {
    flex: 1;
    min-width: 0;
    font-size: .18rem;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text);
    transition: color 0.2s ease;
}

.news-date {
    flex-shrink: 0;
    font-size: .16rem;
    color: var(--color-muted);
    margin-left: .12rem;
}

/* ========== 工作动态 ========== */
.section-dynamic {
    background: #fff;
}

.dynamic-body {
    align-items: stretch;
    gap: .45rem;
}

.dynamic-slider {
    flex: 1;
    min-width: 0;
}

.dynamic-swiper {
    width: 100%;
    height: 100%;
    min-height: 4.8rem;
    overflow: hidden;
    position: relative;
}

.dynamic-swiper .swiper-slide {
    height: 4.8rem;
}

.dynamic-slide-link {
    display: block;
    height: 100%;
    overflow: hidden;
}

.dynamic-slide-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dynamic-slide-link:hover img {
    transform: scale(1.03);
}

.dynamic-slide-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .2rem;
    padding: .14rem .16rem;
    background: rgba(0, 0, 0, 0.5);
}

.dynamic-slide-caption {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: #fff;
    font-size: .18rem;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dynamic-slide-ctrl {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .1rem;
}

.dynamic-swiper-prev,
.dynamic-swiper-next {
    flex-shrink: 0;
    width: .18rem;
    height: .18rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.dynamic-swiper-prev::before,
.dynamic-swiper-next::before {
    content: "";
    display: block;
    width: .08rem;
    height: .08rem;
    border-top: .02rem solid #fff;
    border-left: .02rem solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

.dynamic-swiper-prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.dynamic-swiper-next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.dynamic-swiper-prev:hover::before,
.dynamic-swiper-next:hover::before {
    opacity: 0.75;
}

.dynamic-swiper-pagination {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: .06rem;
}

.dynamic-swiper-pagination .swiper-pagination-bullet {
    width: .1rem;
    height: .1rem;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: background 0.25s ease;
}

.dynamic-swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: .14rem;
    height: .14rem;
}

.dynamic-news-list {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-dynamic .news-link {
    padding: .135rem 0;
}

/* ========== 中间区块 ========== */
.section-middle {
    padding: .4rem 0 .6rem;
    background: #f9fafa url("../images/bannerbg.png") center calc(100% + 1.2rem) no-repeat;
    background-size: contain;
}

.middle-body {
    align-items: flex-start;
    gap: .5rem;
}

.middle-col {
    min-width: 0;
}

.notice-col {
    flex: 0 0 6.8rem;
    width: 6.8rem;
}

.right-col {
    flex: 1;
}

/* 通知公告 */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: .29rem;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: .16rem;
    min-width: 0;
    padding: .06rem .1rem;
    margin: 0 -.1rem;
    border-radius: .04rem;
    transition: background 0.25s ease;
}

.notice-item:hover {
    background: rgba(48, 94, 105, 0.06);
}

.notice-item:hover .notice-title {
    color: var(--color-primary);
    padding-left: .04rem;
}

.notice-date {
    flex-shrink: 0;
    padding: .06rem .1rem;
    background: #3a5a63;
    color: #fff;
    font-size: .14rem;
    line-height: 1.2;
    white-space: nowrap;
}

.notice-title {
    flex: 1;
    min-width: 0;
    font-size: .18rem;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text);
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.notice-title:hover {
    color: var(--color-primary);
}

/* 办事流程 */
.process-block {
    margin-bottom: .24rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .14rem .18rem;
}

.process-item {
    min-width: 0;
}

.process-link {
    display: flex;
    align-items: center;
    gap: .12rem;
    height: 100%;
    padding: .14rem .16rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: var(--color-text);
    transition: border-color 0.25s ease, color 0.25s ease;
}

.process-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.process-icon {
    flex-shrink: 0;
    width: .17rem;
    height: .17rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    display: block;
    width: .17rem;
    height: .17rem;
    object-fit: contain;
}

.process-text {
    flex: 1;
    min-width: 0;
    font-size: .18rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 公示公开 */
.public-list {
    display: flex;
    flex-direction: column;
    gap: .18rem;
}

.public-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .16rem;
    min-width: 0;
    padding: .08rem .1rem;
    margin: 0 -.1rem;
    border-radius: .04rem;
    transition: background 0.25s ease;
}

.public-item:hover {
    background: rgba(48, 94, 105, 0.06);
}

.public-link {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .1rem;
    color: var(--color-text);
    transition: color 0.25s ease;
}

.public-link::before {
    content: "";
    flex-shrink: 0;
    width: .06rem;
    height: .06rem;
    background: var(--color-primary);
    transition: transform 0.25s ease;
}

.public-item:hover .public-link::before {
    transform: scale(1.2);
}

.public-link:hover .public-title,
.public-item:hover .public-title {
    color: var(--color-primary);
    padding-left: .04rem;
}

.public-title {
    flex: 1;
    min-width: 0;
    font-size: .18rem;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.public-date {
    flex-shrink: 0;
    font-size: .16rem;
    color: var(--color-muted);
}

/* ========== 快捷入口 ========== */
.icons-band {
    position: relative;
    padding: .55rem 0 .65rem;
    margin-top: .5rem;
}

.icons-line {
    position: absolute;
    left: 0;
    top: calc(.55rem + .7rem);
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(
        90deg,
        #b0b0b0 0,
        #b0b0b0 .06rem,
        transparent .06rem,
        transparent .14rem
    );
    background-size: .14rem 1px;
    animation: iconsLineMove 0.4s linear infinite;
    pointer-events: none;
}

@keyframes iconsLineMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: .14rem 0;
    }
}

.icons-swiper {
    overflow: visible;
}

.icons-row {
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.icons-row .icon-item {
    flex: 1;
    text-align: center;
    height: auto;
}

.icon-link {
    display: flex;
    color: var(--color-text);
    transition: color 0.25s ease;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.icon-link:hover {
    color: #305e69;
}

.icon-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #fff;
    transition: background 0.3s ease;
}

.icon-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed #b0b0b0;
    animation: iconCircleDash 12s linear infinite;
    pointer-events: none;
}

.icon-link:hover .icon-circle {
    background: #305e69;
}

.icon-link:hover .icon-circle::before {
    opacity: 0;
}

@keyframes iconCircleDash {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.icon-circle img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: .48rem;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.icon-link:hover .icon-circle img {
    filter: brightness(0) invert(1);
}

.icon-label {
    display: block;
    font-size: .18rem;
    line-height: 1.4;
}

/* ========== 页脚 ========== */
.site-footer {
    color: #fff;
}

.footer-main {
    background: var(--color-primary);
    padding: .45rem 0 .4rem;
}

.footer-body {
    align-items: stretch;
}

.footer-col {
    flex: 1;
    min-width: 0;
    padding: 0 .4rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-col:first-child {
    padding-left: 0;
    border-left: none;
}

.footer-col:last-child {
    padding-right: 0;
}

.footer-title {
    font-size: .2rem;
    font-weight: 600;
    margin-bottom: .2rem;
    line-height: 1.2;
    padding-bottom: .1rem;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: .28rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.footer-links {
    flex: 1.2;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .1rem .24rem;
    margin-bottom: .16rem;
}

.footer-link-grid a {
    color: rgba(255, 255, 255, 0.85);
    font-size: .16rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-link-grid a:hover {
    color: #fff;
}

.footer-select select {
    width: 100%;
    max-width: 3.2rem;
    height: .36rem;
    padding: 0 .12rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: .04rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    font-size: .14rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .1rem center;
    background-size: .1rem auto;
}

.footer-select select option {
    color: #333;
    background: #fff;
}

.footer-contact {
    flex: unset;
}

.footer-contact-item {
    gap: .1rem;
    margin-bottom: .14rem;
    font-size: .16rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item img {
    flex-shrink: 0;
    width: .18rem;
    height: .18rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand {
    flex: unset;
    gap: 0.3rem;
    align-items: center;
}

.footer-slogan {
    flex: 1;
    min-width: 0;
}

.footer-slogan img {
    display: block;
    height: 0.39rem;
    width: auto;
    mix-blend-mode: screen;
}

.footer-qrcode {
    flex-shrink: 0;
    text-align: center;
}

.footer-qrcode img {
    display: block;
    width: 1.16rem;
    height: 1.16rem;
    object-fit: contain;
    margin: 0 auto .08rem;
    background: #fff;
    padding: .04rem;
}

.footer-qrcode p {
    font-size: .16rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
    background: var(--color-primary-dark);
    padding: .14rem 0;
    text-align: center;
}

.footer-copy p {
    font-size: .16rem;
    color: rgba(255, 255, 255, 0.75);
}

#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: #305e69;
    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: #305e69;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #305e69;
    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: #305e69;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #305e69;
}

.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
}

/* ========== 图片/视频列表 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 #305e69;
    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
}