@charset "utf-8";

:root {
    --green: #218755;
    --green-dark: #1a6b44;
    --green-light: #e8f5ee;
    --text: #333;
    --text-light: #666;
    --text-gray: #858080;
    --white: #fff;
    --border: #e5e5e5;
}

body {
    min-width: 16.8rem;
    background: var(--white);
    overflow-x: hidden;
}

a:hover {
    color: var(--green);
}

.header a:hover,
.header .nav-item > a:hover {
    color: var(--white);
}

/* ========== Hero Banner + Header ========== */
.hero {
    position: relative;
    width: 100%;
    height: 6.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    object-fit: cover;
}

.hero-pagination {
    bottom: 0.3rem !important;
    z-index: 5;
}

.hero-pagination .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 0.06rem !important;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 0.24rem;
    border-radius: 0.05rem;
}

.hero-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(33, 135, 85, 0.95) 0%,
        rgba(33, 135, 85, 0.75) 8%,
        rgba(33, 135, 85, 0.45) 20%,
        rgba(33, 135, 85, 0.15) 40%,
        transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0.3rem 0;
    background: transparent;
}

.header-inner {
    height: 0.7rem;
}

.logo {
    display: block;
    height: 0.7rem;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
}

.nav-list {
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 0 0.24rem;
    line-height: 0.7rem;
    color: var(--white);
    font-size: 0.18rem;
    font-weight: bold;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.nav-item > a:hover {
    color: var(--white);
    opacity: 0.8;
}

.nav-item.active > a {
    color: var(--white);
}

.header-right {
    gap: 0.15rem;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.4rem;
    height: 0.4rem;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.search-btn:hover {
    opacity: 0.8;
}

.search-btn img {
    width: 0.22rem;
    height: 0.22rem;
    filter: brightness(10);
}

/* 二级菜单 */
.sub-menu {
    position: absolute;
    top: calc(100% + 0.06rem);
    left: 50%;
    transform: translateX(-50%) translateY(0.08rem);
    min-width: 1.6rem;
    background: var(--white);
    border-radius: 0.04rem;
    box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 100;
}

.sub-menu::before {
    content: '';
    display: block;
    height: 0.03rem;
    background: var(--green);
}

.sub-menu a {
    display: block;
    padding: 0.12rem 0.28rem;
    font-size: 0.15rem;
    color: var(--text);
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
}

.sub-menu a + a {
    border-top: 1px solid #f0f0f0;
}

.sub-menu a:hover {
    background: var(--green);
    color: var(--white);
}

.header .sub-menu a:hover {
    color: var(--white);
}

.nav-item.has-sub:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ========== 全屏搜索 ========== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 8rem;
    position: relative;
    transform: translateY(0.3rem);
    transition: transform 0.4s;
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: -1rem;
    right: 0;
    font-size: 0.5rem;
    color: var(--white);
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.search-close:hover {
    color: var(--white);
    opacity: 1;
    transform: rotate(90deg);
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 0.06rem;
    overflow: hidden;
    box-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.15);
}

.search-input {
    flex: 1;
    height: 0.6rem;
    padding: 0 0.25rem;
    font-size: 0.18rem;
    color: var(--text);
    border: none;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-submit {
    width: 0.8rem;
    height: 0.6rem;
    background: var(--green);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.search-submit:hover {
    background: var(--green-dark);
}

.search-submit img {
    width: 0.24rem;
    height: 0.24rem;
    filter: brightness(10);
}

body.search-open {
    overflow: hidden;
}

/* ========== Section Common ========== */
.section {
    padding: 0.6rem 0;
}

.section-hd {
    margin-bottom: 0.4rem;
}

.section-tit {
    text-align: center;
    flex: 1;
}

.section-tit h2 {
    font-size: 0.36rem;
    color: var(--green);
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.12rem;
}

.section-tit h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.03rem;
    background: var(--green);
}

.en-tit {
    font-size: 0.14rem;
    color: var(--text-gray);
    letter-spacing: 0.02rem;
    margin-top: 0.08rem;
}

.more-link {
    font-size: 0.16rem;
    color: var(--text-gray);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s;
}

.more-link:hover {
    color: var(--green);
}

.more-wrap .more-link {
    display: none;
}

.more-wrap .more-link.active {
    display: block;
}

/* Tab Nav */
.tab-nav {
    gap: 0.4rem;
    justify-content: center;
}

.notice-section .section-hd,
.focus-section .section-hd {
    position: relative;
}

.notice-section .tab-nav,
.focus-section .tab-nav {
    flex: 1;
    justify-content: center;
}

.tab-item {
    font-size: 0.24rem;
    color: var(--text);
    cursor: pointer;
    position: relative;
    padding-bottom: 0.1rem;
    transition: color 0.3s;
}

.tab-item.active {
    color: var(--green);
    font-weight: bold;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.03rem;
    background: var(--green);
}

.tab-item:hover {
    color: var(--green);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========== 新闻速递 ========== */
.news-section .section-hd {
    position: relative;
    margin-bottom: 0.5rem;
}

.news-section .section-tit {
    width: 100%;
    position: relative;
    padding: 0.15rem 0;
}

.news-section .section-tit h2 {
    color: var(--text);
    font-size: 0.36rem;
    position: relative;
    z-index: 1;
    padding-bottom: 0.15rem;

}

.news-section .section-tit h2::after {
    width: 0.4rem;
    height: 0.04rem;
}

.news-section .en-tit {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 0.36rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.05);
    letter-spacing: 0.04rem;
    margin: 0;
    white-space: nowrap;
    z-index: 0;
}

.news-section .more-link {
    position: absolute;
    right: 0;
    bottom: 0.15rem;
}

.news-wrap {
    gap: 0.22rem;
    align-items: flex-start;
}

.news-slider {
    width: 8.68rem;
    flex-shrink: 0;
}

.news-swiper {
    width: 8.68rem;
    height: 5.29rem;
    overflow: hidden;
}

.news-swiper .swiper-slide {
    width: 8.68rem;
    height: 5.29rem;
}

.news-swiper .swiper-slide a {
    display: block;
    width: 8.68rem;
    height: 5.29rem;
    position: relative;
}

.slide-img {
    width: 8.68rem;
    height: 5.29rem;
    overflow: hidden;
}

.slide-img img {
    width: 8.68rem;
    height: 5.29rem;
    display: block;
    transition: transform 0.5s;
}

.news-swiper .swiper-slide a:hover .slide-img img {
    transform: scale(1.05);
}

.news-swiper .swiper-slide a:hover .slide-tit {
    color: #c8f0dc;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.2rem 1rem 0.2rem 0.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: var(--white);
    width:100%;
}

.slide-date {
    display: block;
    font-size: 0.2rem;
    margin-bottom: 0.06rem;
}

.slide-tit {
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-pagination {
    bottom: 0.24rem !important;
    right: 0.2rem !important;
    left: auto !important;
    width: auto !important;
}

.news-pagination .swiper-pagination-bullet {
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
    margin: 0 0.04rem !important;
}

.news-pagination .swiper-pagination-bullet-active {
    background: var(--green);
}

.news-list {
    flex: 1;
    height: 5.29rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.15rem;
}

.news-item {
    background: #f5f6f7;
    padding: 0.2rem 0.22rem;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.news-item:hover {
    background: var(--white);
    box-shadow: 0 0.04rem 0.15rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.02rem);
}

.news-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item-tit {
    font-size: 0.18rem;
    font-weight: bold;
    color: #434343;
    line-height: 1.5;
    margin-bottom: 0.15rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
    height: 0.55rem;
}

.news-item:hover .news-item-tit {
    color: var(--green);
}

.news-item-desc {
    font-size: 0.16rem;
    color: #737171;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-ft {
    margin-top: auto;
}

.news-section .detail-btn {
    display: inline-block;
    padding: 0.03rem 0.14rem;
    font-size: 0.12rem;
    color: var(--text-light);
    border: 1px solid #ccc;
    border-radius: 0.2rem;
    transition: border-color 0.3s, color 0.3s;
}

.news-item:hover .detail-btn {
    border-color: var(--green);
    color: var(--green);
    background: transparent;
}

.news-item-date {
    font-size: 0.16rem;
    color: #616262;
}

/* ========== 通知公告 ========== */
.notice-section {
    position: relative;
    padding: 0.5rem 0 1.3rem;
    background: #e8e8e8;
}

.notice-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.notice-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.notice-section .w1680 {
    position: relative;
    z-index: 1;
}

.notice-section .section-hd {
    position: relative;
    margin-bottom: 0.6rem;
    min-height: 0.45rem;
}

.notice-section .tab-nav {
    flex: 1;
    justify-content: center;
    gap: 0.6rem;
}

.notice-section .tab-item {
    font-size: 0.24rem;
    color: #333333;
    font-weight: normal;
    padding: 0.04rem 0.12rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.notice-section .tab-item::after {
    display: none;
}

.notice-section .tab-item.active {
    color: var(--green);
    font-weight: bold;
}

.notice-section .tab-item.active::after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.04rem;
    transform: translateX(-50%);
    width: calc(100% + 0.08rem);
    height: 0.1rem;
    background: rgba(33, 135, 85, 0.5);
    z-index: -1;
}

.notice-section .more-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem 0.36rem;
}

.notice-card {
    display: flex;
    align-items: center;
    min-height: 0.95rem;
    padding: 0.15rem 0.28rem 0.15rem 0.18rem;
    background: var(--white);
    border-radius: 0.4rem 0 0.4rem 0;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 0.05rem solid rgba(255,255,255,0.43);
}

.notice-card:hover {
    box-shadow: 0 0.06rem 0.2rem rgba(33, 135, 85, 0.15);
    transform: translateY(-0.03rem);
}

.notice-date {
    flex-shrink: 0;
    width: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.notice-section .date-day {
    display: block;
    text-align: center;
    font-size: 0.26rem;
    font-weight: bold;
    color: var(--green);
    line-height: 1.2;
    padding: 0.06rem 0 0.08rem;
}

.notice-section .date-year {
    display: block;
    text-align: center;
    background: var(--green);
    color: var(--white);
    font-size: 0.13rem;
    padding: 0.05rem 0;
    line-height: 1.2;
}

.notice-line {
    flex-shrink: 0;
    width: 1px;
    height: 0.62rem;
    background: #ddd;
    margin: 0 0.18rem;
}

.notice-tit {
    flex: 1;
    font-size: 0.15rem;
    color: #333;
    line-height: 1.55;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.notice-card:hover .notice-tit {
    color: var(--green);
}

/* ========== 师生风采 ========== */
.focus-section {
    background: var(--white);
}

.focus-section .section-hd {
    position: relative;
    margin-bottom: 0.6rem;
}

.focus-section .tab-nav {
    flex: 1;
    justify-content: center;
    gap: 0.6rem;
}

.focus-section .tab-item {
    font-size: 0.24rem;
    color: #333333;
    font-weight: normal;
    padding: 0.04rem 0.12rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.focus-section .tab-item::after {
    display: none;
}

.focus-section .tab-item.active {
    color: var(--green);
    font-weight: bold;
    background: none;
}

.focus-section .tab-item.active::after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.04rem;
    transform: translateX(-50%);
    width: calc(100% + 0.08rem);
    height: 0.1rem;
    background: rgba(33, 135, 85, 0.5);
    z-index: -1;
}

.focus-section .more-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 5.45rem);
    gap: 0.25rem;
    justify-content: center;
}

.focus-card {
    position: relative;
    width: 5.45rem;
    height: 3.53rem;
    overflow: hidden;
    display: block;
}

.focus-img {
    width: 5.45rem;
    height: 3.53rem;
}

.focus-img img {
    width: 5.45rem;
    height: 3.53rem;
    display: block;
    transition: transform 0.5s;
}

.focus-card:hover .focus-img img {
    transform: scale(1.03);
}

.focus-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.1rem 0.12rem;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    text-align: center;
    transition: background 0.3s;
}

.focus-card:hover .focus-info {
    background: rgba(33, 135, 85, 0.8);
}

.focus-info p {
    font-size: 0.18rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== 媒体旅院 & 人才招聘 ========== */
.bottom-info-section {
    background: #f0f0f0;
}

.bottom-info-wrap {
    gap: 0.7rem;
    align-items: flex-start;
}

.media-col {
    flex: 1;
}

.recruit-col {
    flex: 1;
}

.bottom-info-section .col-hd {
    margin-bottom: 0.25rem;
    padding-bottom: 0;
    border-bottom: none;
}

.bottom-info-section .col-tit {
    font-size: 0.24rem;
    color: var(--green);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding: 0.04rem 0.12rem;
    z-index: 1;
}

.bottom-info-section .col-tit::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.04rem;
    transform: translateX(-50%);
    width: calc(100% + 0.08rem);
    height: 0.1rem;
    background: rgba(33, 135, 85, 0.5);
    z-index: -1;
}

.bottom-info-section .more-link {
    flex-shrink: 0;
}

.recruit-tabs {
    gap: 0.6rem;
}

.recruit-tabs .tab-item {
    font-size: 0.24rem;
    color: #333333;
    font-weight: normal;
    padding: 0.04rem 0.12rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.recruit-tabs .tab-item::after {
    display: none;
}

.recruit-tabs .tab-item.active {
    color: var(--green);
    font-weight: bold;
}

.recruit-tabs .tab-item.active::after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.04rem;
    transform: translateX(-50%);
    width: calc(100% + 0.08rem);
    height: 0.1rem;
    background: rgba(33, 135, 85, 0.5);
    z-index: -1;
}

.recruit-tabs .tab-item:hover {
    color: var(--green);
}

.media-featured {
    gap: 0.42rem;
    margin-bottom: 0.25rem;
}

.media-card {
    width: 3.78rem;
    flex-shrink: 0;
    display: block;
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.media-card:hover {
    box-shadow: 0 0.04rem 0.15rem rgba(0, 0, 0, 0.1);
    transform: translateY(-0.02rem);
}

.media-img {
    width: 3.78rem;
    height: 2.24rem;
    overflow: hidden;
}

.media-img img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s;
    object-fit: cover;
}

.media-card:hover .media-img img {
    transform: scale(1.03);
}

.media-body {
    padding: 0.1rem 0.12rem 0.14rem;
    background: var(--white);
}

.media-meta {
    display: flex;
    align-items: center;
    gap: 0.06rem;
    font-size: 0.14rem;
    color: #828891;
    line-height: 1.4;
    margin-bottom: 0.06rem;
}

.media-link-icon {
    width: 0.14rem;
    height: 0.14rem;
    flex-shrink: 0;
    filter: invert(0.55);
    opacity: 0.8;
}

.media-card-tit {
    font-size: 0.18rem;
    font-weight: 400;
    color: #020202;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
    height: 0.5rem;
}

.media-card:hover .media-card-tit {
    color: var(--green);
}

.media-list li {
    border-bottom: 1px dashed #ddd;
}

.media-list li a {
    padding: 0.14rem 0;
    display: flex;
    transition: padding-left 0.3s, background 0.3s;
}

.media-list li a:hover {
    padding-left: 0.08rem;
    background: rgba(33, 135, 85, 0.05);
}

.media-list-tit {
    flex: 1;
    font-size: 0.18rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.15rem;
    transition: color 0.3s;
}

.media-list-tit em {
    font-style: normal;
    color: var(--green);
}

.media-list li a:hover .media-list-tit {
    color: var(--green);
}

.media-list-date {
    font-size: 0.17rem;
    color: #999;
    flex-shrink: 0;
}

.recruit-list li,
.recruit-item {
    border-bottom: 1px dashed #ddd;
}

.recruit-list li a,
.recruit-item {
    padding: 0.163rem 0;
    gap: 0.22rem;
    transition: background 0.3s, padding-left 0.3s;
}

.recruit-list li a:hover,
.recruit-item:hover {
    background: rgba(33, 135, 85, 0.06);
    padding-left: 0.08rem;
}

.recruit-date {
    flex-shrink: 0;
    width: 0.65rem;
    text-align: center;
}

.recruit-day {
    display: block;
    font-size: 0.24rem;
    font-weight: bold;
    color: #4c4b4b;
    line-height: 1;
    transition: color 0.3s;
}

.recruit-ym {
    display: block;
    font-size: 0.16rem;
    color: #4c4b4b;
    margin-top: 0.06rem;
    transition: color 0.3s;
}

.recruit-list li a:hover .recruit-day,
.recruit-list li a:hover .recruit-ym,
.recruit-item:hover .recruit-day,
.recruit-item:hover .recruit-ym {
    color: var(--green);
}

.recruit-tit {
    flex: 1;
    font-size: 0.18rem;
    color: #1e1e1e;
    line-height: 1.5;
    transition: color 0.3s;
}

.recruit-list li a:hover .recruit-tit,
.recruit-item:hover .recruit-tit {
    color: var(--green);
}

/* ========== Footer ========== */
.footer {
    position: relative;
    background: var(--green);
    color: var(--white);
    overflow: hidden;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 0.2rem 0 0.2rem;
    background: var(--green) url(../images/bottombg.png) no-repeat 5rem -2.8rem;
    overflow: hidden;
    background-size: auto;
}


.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-top {
    align-items: center;
}

.footer-friend {
    flex: 1;
}

.footer-tit {
    font-size: 0.24rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.2rem;
    padding-bottom: 0.1rem;
    position: relative;
    display: inline-block;
}

.footer-tit::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.4rem;
    height: 0.02rem;
    background: var(--white);
}

.friend-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 0.4rem;
    row-gap: 0.12rem;
}

.friend-links a {
    font-size: 0.18rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: color 0.3s;
}

.friend-links a:hover {
    color: var(--white);
}

.footer-qrcode {
    gap: 0.35rem;
    flex-shrink: 0;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 1.15rem;
    height: 1.15rem;
    padding: 0.04rem;
    display: block;
}

.qrcode-item p {
    font-size: 0.18rem;
    margin-top: 0.1rem;
    color: var(--white);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.18);
    padding: 0.18rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.16rem;
    color: rgba(255, 255, 255,1);
    line-height: 1.6;
}


/* ========== 新闻网列表页 .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: #218755;
    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: #218755;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #218755;
    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: #218755;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #218755;
}

.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-focus（同首页师生风采，一行三列） ========== */
.n_right .piclist-focus {
    margin-top: 0.1rem;
}

.n_right .piclist-focus .focus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
    justify-content: stretch;
}

.n_right .piclist-focus .focus-card {
    width: 100%;
    height: auto;
    aspect-ratio: 545 / 353;
}

.n_right .piclist-focus .focus-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.n_right .piclist-focus .focus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.n_right .piclist-focus .focus-info p {
    font-size: 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;
}


.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
}