@charset "utf-8";


/* 文本超出省略号公共样式 */
.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;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.text-ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
body {
    min-width: 0;
    color: #333333;
    background: #ffffff;
    overflow-x: hidden;
}

:root {
    --g0: #3a4a9d;
    --g1: #2eb6aa;
    --nav-grad: linear-gradient(to right, #3a4a9d 0%, #2eb6aa 100%);
    --text: #333333;
    --text-mid: #666666;
    --text-light: #999999;
    --line: #e8e8e8;
    --search-bg: rgba(255, 255, 255, 0.2);
    --footer-bg: #252f69;
    --shadow-header: 0 0.02rem 0.12rem rgba(0, 0, 0, 0.08);
    --shadow-dropdown: 0 0.06rem 0.2rem rgba(58, 74, 157, 0.18);
}

.visually-hidden {
    position: absolute;
    width: 0.01rem;
    height: 0.01rem;
    padding: 0;
    margin: -0.01rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== 顶栏：白底 + 深字（与稿一致） ========== */
.site-header {
    background: var(--nav-grad);
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.18rem 0 0.16rem;
    gap: 0.4rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.brand-logo {
    height: 0.82rem;
    display: block;
    flex-shrink: 0;
}

/* 搜索：浅灰底 + 放大镜 */
.header-search {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 3rem;
    background: var(--search-bg);
    border-radius: 0.5rem;
    padding: 0.06rem 0.1rem 0.06rem 0.18rem;
}

.header-search-input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.16rem;
    min-width: 0;
    line-height: 1.4;
}

.header-search-input::placeholder {
    color: #ffffff;
}

.header-search-btn {
    width: 0.32rem;
    height: 0.32rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.04rem;
    flex-shrink: 0;
    opacity: 0.95;
}

.header-search-btn:hover {
    opacity: 1;
}

.header-search-btn img {
    width: 0.16rem;
    height: 0.16rem;
    display: block;
}

/* ========== 主导航：整宽蓝→青渐变 ========== */
.nav-wrap {
    background: var(--nav-grad);
    box-shadow: 0 0.02rem 0.08rem rgba(58, 74, 157, 0.25);
    border-top: 0.01rem solid rgba(255, 255, 255, 0.12);
}

.nav-inner {
    position: relative;
}

.nav-main {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.nav-main-item {
    position: relative;
    flex: 1;
    text-align: center;
}

/* 一级栏目之间：浅白竖线，略短于导航条高度、垂直居中（与效果图一致） */
.nav-main-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.01rem;
    height: 0.24rem;
    background: rgba(255, 255, 255, 0.48);
    pointer-events: none;
    z-index: 5;
}

.nav-main-link {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.17rem 0.08rem;
    color: #ffffff;
    font-size: 0.16rem;
    letter-spacing: 0.03em;
    transition: background 0.2s ease;
}

.nav-main-item:hover > .nav-main-link,
.nav-main-item:focus-within > .nav-main-link {
    background: rgba(255, 255, 255, 0.12);
}

.nav-sub {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    box-sizing: border-box;
    transform: translateY(0.06rem);
    background: #ffffff;
    border-top: 0.03rem solid var(--g1);
    border-radius: 0 0 0.08rem 0.08rem;
    box-shadow: 0 0.12rem 0.28rem rgba(36, 48, 102, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 300;
    padding: 0.08rem 0;
    min-width: 0;
}

.nav-sub li {
    border-bottom: 0.01rem solid #f0f2f5;
}

.nav-sub li:last-child {
    border-bottom: none;
}

.nav-sub a {
    display: block;
    padding: 0.14rem 0.2rem;
    font-size: 0.15rem;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.4;
    transition: color 0.15s ease, background 0.15s ease;
}

.nav-sub a:hover {
    color: var(--g0);
    background: linear-gradient(180deg, rgba(46, 182, 170, 0.12) 0%, rgba(58, 74, 157, 0.06) 100%);
}

.nav-main-item.has-sub:hover .nav-sub,
.nav-main-item.has-sub:focus-within .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== Banner ========== */
.hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.hero-swiper {
    width: 100%;
    height: 4.85rem;
    max-width: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-swiper .swiper-pagination {
    bottom: 0.18rem !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 0.06rem !important;
    background: #ffffff;
    opacity: 0.55;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #2eb6aa;
}

/* ========== 区块间距 ========== */
.section {
    padding: 0.4rem 0 0.45rem;
}

.section--news {
    background: linear-gradient(to bottom, #f1f7fd 0%, #eff7fd 100%);
    padding-top: 0.36rem;
    max-width: 100%;
    overflow-x: hidden;
}

/* 栏目标题：titbg + 底部分割线 */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.12rem;
    margin-bottom: 0.2rem;
    padding-bottom: 0.1rem;
    min-width: 0;
}
.section-head-title {
    position: relative;
    font-size: 0.36rem;
    font-weight: 700;
    color: #000000;
    padding-bottom: 0.08rem;
    margin-bottom: -0.11rem;
}

.section-head-title::after{
    content: "";
    display: block;
    width: 0.72rem;
    height: 0.72rem;
    background: url("../images/titbg.png") right bottom no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.section-head-more {
    font-size: 0.16rem;
    color: #777777;
    padding-bottom: 0.04rem;
    flex-shrink: 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.section-head-more:hover {
    color: var(--g0);
    transform: translateX(0.04rem);
}

.section-head--plain .section-head-title {
    margin-bottom: -0.11rem;
}

/* ========== 评建动态 + 通知 ========== */
.news-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.17rem;
    box-sizing: border-box;
}

.news-col {
    flex: 0 0 7.84rem;
    width: 7.84rem;
    min-width: 0;
    box-sizing: border-box;
}

.news-col1 {
    flex: 0 0 7.62rem;
    width: 7.62rem;
    min-width: 0;
    box-sizing: border-box;
}

.eval-carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.eval-carousel-viewport {
    overflow: hidden;
    border-radius: 0.02rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.eval-carousel-track {
    display: flex;
    min-width: 0;
    transition: transform 0.48s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.eval-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.eval-carousel-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 0.02rem;
}

.eval-carousel-media img {
    width: 100%;
    max-width: 100%;
    height: 4.4rem;
    object-fit: cover;
    display: block;
    vertical-align: top;
}

/* 日期角标：大字在上，年月在下方（与稿一致） */
.eval-carousel-date {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0.76rem;
    padding: 0.12rem 0.14rem 0.1rem;
    background: var(--g0);
    color: #fff;
    line-height: 1.15;
    box-shadow: 0.03rem 0.03rem 0.1rem rgba(0, 0, 0, 0.12);
}

.eval-carousel-day {
    font-size: 0.32rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.eval-carousel-ym {
    font-size: 0.13rem;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 0.02rem;
}

.eval-carousel-caption {
    margin-top: 0.14rem;
    font-size: 0.2rem;
    line-height: 1.55;
    color: var(--text);
    font-weight: 700;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.eval-carousel-controls {
    margin-top: 0.2rem;
    max-width: 100%;
    min-width: 0;
}

.eval-cctrl {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.06rem;
    width: 100%;
    min-width: 0;
}

/* 左：短线 + 实心圆点 */
.eval-c-lcap {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.eval-c-lcap-line {
    display: block;
    width: 0.2rem;
    height: 0.01rem;
    background: var(--g0);
    flex-shrink: 0;
}

.eval-c-lcap-dot {
    display: block;
    width: 0.07rem;
    height: 0.07rem;
    margin-left: -0.01rem;
    background: var(--g0);
    border-radius: 50%;
    flex-shrink: 0;
}

/* 数字 01~05 */
.eval-carousel-dots {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.06rem 0.1rem;
    flex: 0 0 auto;
    min-width: 0;
}

.eval-carousel-dots button {
    border: none;
    background: none;
    padding: 0 0.02rem;
    min-width: auto;
    height: auto;
    font-size: 0.14rem;
    color: #9aa8c4;
    cursor: pointer;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1;
    transition: color 0.15s ease, font-size 0.15s ease, transform 0.15s ease;
}

.eval-carousel-dots button:hover {
    color: var(--g0);
}

.eval-carousel-dots button.is-active {
    font-family: "FZDBSJW", "Microsoft YaHei", sans-serif;
    font-size: 0.26rem;
    font-weight: 700;
    color: var(--g0);
    padding: 0 0.04rem;
}

/* 中：空心圆 + 长连线接到左箭头 */
.eval-c-connector {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0.15rem;
    height: 0.14rem;
}

.eval-c-connector-hollow {
    display: block;
    width: 0.07rem;
    height: 0.07rem;
    border: 0.01rem solid var(--g0);
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
    flex-shrink: 0;
}

.eval-c-connector-line {
    flex: 1 1 auto;
    min-width: 0.08rem;
    height: 0.01rem;
    background: var(--g0);
    margin-left: 0.02rem;
    align-self: center;
}

/* 右：短连线 + 空心圆 */
.eval-c-rcap {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.eval-c-rcap-line {
    display: block;
    width: 0.18rem;
    height: 0.01rem;
    background: var(--g0);
    margin-right: 0.02rem;
    flex-shrink: 0;
}

.eval-c-rcap-hollow {
    display: block;
    width: 0.07rem;
    height: 0.07rem;
    border: 0.01rem solid var(--g0);
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
    flex-shrink: 0;
}

.eval-carousel-arrows {
    display: flex;
    gap: 0.1rem;
    flex-shrink: 0;
}

.eval-carousel-arrow {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eval-carousel-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 0.04rem 0.14rem rgba(0, 0, 0, 0.18);
}

.eval-carousel-arrow--prev {
    background: var(--g0);
}

.eval-carousel-arrow--next {
    background: var(--g1);
}

.eval-carousel-arrow img {
    width: 0.14rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.eval-carousel-arrow--next img {
    transform: rotate(180deg);
}

.line-list {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-top: -0.1rem;
}

.line-list-link {
    display: flex;
    gap: 0.12rem;
    padding: 0.2rem 0;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    transition: background 0.25s ease, transform 0.28s ease, box-shadow 0.28s ease;
    border-bottom: 1px solid #cbd3e9;
    position: relative;
    width: 98%;
    margin: 0 auto;
}

.line-list-link:hover {
    transform: translateY(-0.03rem);
    z-index: 1;
}

.line-list-link:hover .line-list-text {
    color: var(--g0);
}

.line-list-date {
    width: 0.6rem;
    font-size: 0.18rem;
    line-height: 1.4;
    color: #3a4d9e;
}

.line-list-text {
    min-width: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #202020;
    font-family: "FZDBSJW", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
    grid-column: 2;
    grid-row: 1;
    font-size: 0.18rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.line-list-deco {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.line-list-deco::before {
    content: "";
    display: block;
    width: 0.6rem;
    height: 0.04rem;
    flex-shrink: 0;
    align-self: center;
    border-radius: 0.01rem;
    background: var(--g0);
    position: absolute;
    left: 0;
    bottom: -0.03rem;
}

.line-list-deco::after {
    content: "";
   position: absolute;
    right: 0;
    bottom: -0.04rem;
    display: block;
    width: 0.07rem;
    height: 0.07rem;
    box-sizing: border-box;
    flex-shrink: 0;
    border: 0.01rem solid var(--g0);
    border-radius: 50%;
    background: rgb(255, 255, 255);
}

/* ========== 快捷入口：白底 + 虚线穿心 ========== */
.section--quick {
    padding: 0.42rem 0 0.4rem;
    background: #ffffff;
    position: relative;
}
/* 虚线连接线 - 向右移动动画 */
.quick-line {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    width: 100%;
    height: 0.02rem;
    transform: translateY(-50%);
    background: rgba(58, 74, 157, 1);
    z-index: 1;
    overflow: hidden;
}

.quick-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
            to right,
            transparent 0,
            transparent 0.08rem,
            rgba(245, 246, 255, 1) 0.08rem,
            rgba(245, 246, 255, 1) 0.15rem
    );
    background-size: 0.3rem 100%;
    animation: lineMove 80s linear infinite;
}

@keyframes lineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 0%;
    }
}



.quick-links-swiper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0.2rem 0.04rem;
}

.quick-links-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    box-sizing: border-box;
}

@media screen and (min-width: 1025px) {
    .quick-links-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.12rem;
        transform: none !important;
        transition-duration: 0ms !important;
    }

    .quick-links-swiper .swiper-slide {
        flex: 1 1 0;
        width: auto !important;
        margin-right: 0 !important;
    }
}

.quick-links-item {
    position: relative;
    z-index: 1;
    flex: none;
    width: 100%;
    max-width: 2.18rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.14rem;
    transition: transform 0.35s ease;
}

.quick-links-item:hover {
    transform: translateY(-0.1rem);
}

.quick-links-item:hover .quick-links-item-icon img {
    transform: scale(1.1);
}

/* 圆圈容器 - 虚线边框旋转 */
.quick-links-item-circle {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.quick-links-item-circle::before {
    content: "";
    position: absolute;
    top: -0.02rem;
    left: -0.02rem;
    right: -0.02rem;
    bottom: -0.02rem;
    border-radius: 50%;
    border: 0.02rem dashed rgba(58, 74, 157, 0.9);
    animation: circleRotate 40s linear infinite;
}

@keyframes circleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 图标 */
.quick-links-item-icon {
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #e2e4f0;
    border-radius: 50%;
}

.quick-links-item-icon img {
    height: 0.45rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.quick-links-label{
    font-size: 0.18rem;
    color: #000202;
}



/* ========== 渐变区 + 底部与下区块衔接的白弧（纯 CSS 椭圆弧，无图） ========== */
.section--gradient {
    position: relative;
    background: url("../images/bannerbg.png")  no-repeat;
    color: #ffffff;
    padding: 0.44rem 0 1.2rem;
    overflow: visible;
    z-index: 2;
    background-size: 100% 100%;
}


.section--gradient a {
    color: #ffffff;
}

.section--gradient .section-head-title {
    color: #ffffff;
}
.section--gradient .section-head-title::after{
    background: url(../images/titbg1.png) right bottom no-repeat;
    background-size: contain;
}
.section--gradient .section-head-more {
    color: rgba(255, 255, 255, 0.9);
}

.section--gradient .section-head-more:hover {
    color: #ffffff;
    transform: translateX(0.04rem);
}

.gradient-inner {
    position: relative;
    z-index: 2;
    display: flex;
  justify-content: space-between;
    gap: 0.52rem;
    padding-top: 0.04rem;
}

.gradient-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0.18rem;
    padding-bottom: 0.1rem;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.35);
}

.gradient-title {
    font-size: 0.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0;
}

.gradient-more {
    font-size: 0.14rem;
    color: rgba(255, 255, 255, 0.95) !important;
    flex-shrink: 0;
}

.gradient-more:hover {
    text-decoration: underline;
}

/* 质量监控：左圆点 + 标题 + 右日期（.gradient-list 内直接 a） */
.gradient-col{
    flex: 1 1 50%;
    width: 50%;
}
.gradient-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gradient-list > a {
    border-bottom: 0.01rem dashed #7181b4;
}

.gradient-list a {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.2rem 0;
    line-height: 1.45;
    transition: transform 0.28s ease, opacity 0.28s ease;
    border-radius: 0.04rem;
}

.gradient-list a:hover {
    transform: translateX(0.04rem);
    opacity: 0.98;
    text-decoration: underline;
}

.gradient-list-dot {
    flex-shrink: 0;
    width: 0.06rem;
    height: 0.06rem;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.95;
}

.gradient-list-t {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    color: #fff;
}

.gradient-list time {
    flex-shrink: 0;
    font-size: 0.16rem;
   color: #ffffff;
    font-variant-numeric: tabular-nums;
}

/* 政策文件：半透明白底卡片（.policy-grid 内直接 a） */
.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem;
}

.policy-grid a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.08rem;
    padding: 0.16rem 0.16rem 0.22rem;
    min-height: 0.98rem;
    border: 0.01rem solid rgba(255, 255, 255, 0.45);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.policy-grid a:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-0.05rem);
    box-shadow: 0 0.08rem 0.2rem rgba(0, 0, 0, 0.12);
}

.policy-card-date {
    font-size: 0.16rem;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.policy-card-t {
    font-size: 0.18rem;
    font-weight: 500;
    height: 0.5rem;
    line-height: 0.25rem;
}

/* ========== 教师发展 / 专业认证：高亮淡化底图 ========== */
.section--dual {
    position: relative;
    z-index: 0;
    margin-top: -1.2rem;
    padding-top: 1.5rem;
    padding-bottom: 0.75rem;
    background-color: #f9fafb;
    background-image: url("../images/bannerbg2.png");
    background-size: cover;
    background-position: center center;
}

.dual-grid {
    display: flex;
    justify-content: space-between;
    gap: 0.52rem;
}
.dual-grid .dual-col{
    flex: 1 1 50%;
    width: 50%;
}
/* ========== 页脚 ========== */
.site-footer {
    background: linear-gradient(to right, #2eb6aa 0%, #3a4a9d 100%);;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.32rem 0 0.36rem;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.36rem;
}

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    flex-shrink: 0;
}

.site-footer-logo {
    height: 0.54rem;
    display: block;
}

.site-footer-line {
    margin: 0;
    font-size: 0.17rem;
    line-height: 1.6;
    text-align: right;
    flex: 1;
}

.site-footer-sep {
    display: inline-block;
    margin: 0 0.16rem;
    opacity: 0.55;
    font-weight: 300;
}

.site-footer-num {
    font-weight: 700;
    margin: 0 0.03rem;
    color: #ffffff;
}


#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: #3a4a9d;
    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: #3a4a9d;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #3a4a9d;
    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("../images/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: #3a4a9d;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #3a4a9d;
}

.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 {
    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 #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;
}