/**

 * PC 样式勿写在本文件。
 */

@media (min-width: 1025px) {
    .mobile-nav-toggle,
    .mobile-nav-backdrop {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    /* ========== 顶栏 ========== */
    .masthead-header {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.09rem;
        padding-left: 0.05rem;
        padding-right: 0.05rem;
    }

    .hero-brand {
        flex: 1;
        min-width: 0;
    }

    .hero-brand-logo {
        width: 2.2rem !important;
        height: auto !important;
        max-height: 0.62rem;
        object-fit: contain;
    }

    .site-masthead.is-scrolled .hero-brand-logo {
        width: 1.9rem !important;
        max-height: 0.52rem;
    }

    .masthead-right {
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: 0.09rem;
        min-width: 0;
    }

    .masthead-util {
        display: flex !important;
        flex: 0 0 auto;
        min-height: 0;
        width: auto;
        justify-content: flex-end;
    }

    .masthead-util .site-top-right {
        flex-wrap: nowrap;
        gap: 0;
    }

    .masthead-util .site-top-right > .top-link:not(.top-link-search),
    .masthead-util .site-top-right > .top-sep,
    .masthead-util .site-top-right > .top-dropdown {
        display: none !important;
    }

    .masthead-util .top-link-search {
        padding: 0.09rem 0.12rem;
        margin: 0;
    }

    .masthead-util .top-link-search .top-link-icon img {
        width: 0.24rem;
        height: 0.24rem;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.06rem;
        width: 0.52rem;
        height: 0.52rem;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0.09rem;
        background: rgba(255, 255, 255, 0.14);
        cursor: pointer;
        flex-shrink: 0;
        z-index: 920;
        transition: background 0.2s ease;
    }

    .mobile-nav-toggle:hover,
    .mobile-nav-toggle:focus-visible {
        background: rgba(255, 255, 255, 0.24);
        outline: none;
    }

    .mobile-nav-toggle-bar {
        display: block;
        width: 0.24rem;
        height: 0.024rem;
        border-radius: 0.012rem;
        background: #fff;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    body.mobile-nav-open .mobile-nav-toggle-bar:nth-child(1) {
        transform: translateY(0.082rem) rotate(45deg);
    }

    body.mobile-nav-open .mobile-nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    body.mobile-nav-open .mobile-nav-toggle-bar:nth-child(3) {
        transform: translateY(-0.082rem) rotate(-45deg);
    }

    .mobile-nav-backdrop {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 905;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero-head {
        padding-top: 0.12rem;
        padding-bottom: 0.15rem;
        padding-left: 0.15rem;
    }

    .site-masthead.is-scrolled .hero-head {
        padding-top: 0.12rem;
        padding-bottom: 0.15rem;
    }

    /* 全屏栏目：盖住整页，需用内部「×」或 Esc 关闭 */
    .hero-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        height: 100dvh;
        margin: 0;
        padding: 0;
        padding-top: calc(0.1rem + env(safe-area-inset-top, 0px));
        padding-bottom: calc(0.2rem + env(safe-area-inset-bottom, 0px));
        box-sizing: border-box;
        background: linear-gradient(180deg, #2d4f58 0%, #335e69 38%, #2a4a52 100%);
        box-shadow: none;
        z-index: 960;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
    }

    body.mobile-nav-open .hero-nav {
        transform: translateX(0);
        pointer-events: auto;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .wap.mobile-nav-sheet-head {
        display: flex !important;
    }

    .mobile-nav-sheet-head {
        position: sticky;
        top: calc(-1 * env(safe-area-inset-top, 0px));
        z-index: 2;
        flex-shrink: 0;
        margin: 0 0 0.08rem;
        padding: 0.12rem 0.16rem 0.14rem;
        border-bottom: 0.01rem solid rgba(255, 255, 255, 0.18);
        background: unset;
        backdrop-filter: blur(0.06rem);
        -webkit-backdrop-filter: blur(0.06rem);
    }

    .wap.mobile-nav-sheet-brand {
        display: flex !important;
    }

    .mobile-nav-sheet-brand {
        flex-shrink: 0;
        text-decoration: none;
        outline: none;
    }

    .mobile-nav-sheet-brand:focus-visible {
        outline: 0.02rem solid rgba(255, 255, 255, 0.85);
        outline-offset: 0.04rem;
        border-radius: 0.04rem;
    }

    .mobile-nav-sheet-logo {
        display: block;
        width: 2rem;
        height: auto;
        max-height: 0.56rem;
        object-fit: contain;
    }

    .mobile-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 0.52rem;
        height: 0.52rem;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0.08rem;
        font-size: 0.36rem;
        line-height: 1;
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-close:hover,
    .mobile-nav-close:focus-visible {
        background: rgba(255, 255, 255, 0.22);
        outline: none;
    }

    .hero-nav-list {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        padding: 0 0.18rem 0.28rem;
        box-sizing: border-box;
    }

    .hero-nav-list > .hero-nav-item {
        width: 100%;
        border-bottom: 0.01rem solid rgba(255, 255, 255, 0.12);
    }

    .hero-nav-list > .hero-nav-item > a {
        display: block;
        width: 100%;
        padding: 0.16rem 0.09rem;
        font-size: 0.19rem;
        text-align: left;
        white-space: normal;
    }

    /* 有下级的顶栏一级：右侧留白给指示（可选视觉） */
    .hero-nav-list > .hero-nav-item:has(> .hero-nav-sub) > a {
        position: relative;
        padding-right: 0.36rem;
    }
    .site-masthead.is-scrolled .hero-nav-list > .hero-nav-item > a{
        padding: 0.16rem 0.36rem 0.16rem 0.09rem;
    }
    .hero-nav-list > .hero-nav-item:has(> .hero-nav-sub) > a::after {
        content: "";
        position: absolute;
        right: 0.1rem;
        top: 50%;
        width: 0.09rem;
        height: 0.09rem;
        margin-top: -0.06rem;
        border-right: 0.02rem solid rgba(255, 255, 255, 0.75);
        border-bottom: 0.02rem solid rgba(255, 255, 255, 0.75);
        transform: rotate(45deg);
        transition: transform 0.22s ease;
    }

    .hero-nav-list > .hero-nav-item.is-sub-open:has(> .hero-nav-sub) > a::after {
        transform: rotate(225deg);
        margin-top: -0.02rem;
    }

    /* 默认收起二级，点击 .is-sub-open 后展开 */
    .hero-nav-list > .hero-nav-item:not(.is-sub-open) > .hero-nav-sub {
        display: none !important;
    }

    .hero-nav-sub {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        margin: 0 0 0.09rem;
        padding: 0 0 0.09rem 0.14rem;
        min-width: 0;
        width: 100%;
        background: unset;
        border-radius: 0.09rem;
        box-shadow: none;
        transform: none;
    }

    .hero-nav-sub a {
        white-space: normal;
        text-align: left;
        padding: 0.12rem 0.14rem;
        font-size: 0.16rem;
    }

    body.mobile-nav-open {
        overflow: hidden;
        touch-action: none;
    }

    /* ========== 首屏 ========== */
    .hero-wrap {
        height: auto;
        min-height: 2.6rem;
        max-height: 4.35rem;
        aspect-ratio: 16 / 10;
    }

    .hero-swiper {
        position: relative;
        height: 100%;
        min-height: 2.6rem;
    }

    .hero-wrap.hero-wrap--sub {
        height: 25vh;

        min-height: 1.3rem;
        aspect-ratio: unset;
    }

    .hero-wrap.hero-wrap--sub .hero-swiper {
        min-height: 0;
        height: 100%;
    }

    .hero-pagination-bar {
        right: 0;
        left: 0;
        bottom: 0.16rem;
        justify-content: center;
        padding: 0 0.14rem;
    }

    .hero-pagination .swiper-pagination-bullet {
        font-size: 0.15rem !important;
        margin: 0 0.07rem !important;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        font-size: 0.2rem !important;
    }

    .hero-slide-next {
        display: none;
    }

    /* ========== 绍大要闻 ========== */
    .block-news {
        padding: 0.28rem 0 0.33rem;
    }

    .block-news-head {
        margin-bottom: 0.19rem;
        align-items: flex-end;
    }

    .block-news-title-brand {
        font-size: 0.31rem;
    }

    .block-news-title-cn {
        font-size: 0.24rem;
    }

    .block-news-title-en {
        font-size: 0.13rem;
    }

    .block-news-more {
        font-size: 0.15rem;
        padding-top: 0.09rem;
    }

    .block-news-body {
        flex-direction: column;
        gap: 0.21rem;
    }

    .block-news-slider-col {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
        min-height: 0;
    }

    .block-news-slide-link img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
    }

    .block-news-slide-bottom {
        padding: 0.12rem 0.14rem;
    }

    .block-news-slide-text {
        font-size: 0.16rem;
    }

    .news-swiper-btn {
        width: 0.38rem;
        height: 0.38rem;
        padding: 0.07rem;
    }

    .block-news-list-col {
        width: 100%;
    }

    .block-news-list {
        max-height: none;
    }

    .block-news-list .block-news-item:nth-child(n + 7) {
        display: none !important;
    }

    .block-news-item {
        padding: 0.12rem 0;
        align-items: flex-start;
    }

    .block-news-link {
        font-size: 0.17rem;
        line-height: 1.55;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .block-news-item.is-active .block-news-link.block-news-link-featured{
        line-height: 1.3;
    }
    .block-news-mark {
        margin-top: 0.07rem;
    }

    /* ========== 快捷入口：横向滑动，一屏约 4 个 ========== */



    .quick-academic-combo::before {
        top: 0;
        bottom: 0;
        background: #fdfdfd url(../image/banner1.png) no-repeat center top;
        background-size: 250% auto;
        z-index: -1;
    }
    .quick-academic-combo::after {
        top: 1rem;
        bottom: 0;
        z-index: 1;
        background: url(/image/banner3.png) no-repeat center top;
        background-size: auto;
    }
    .footer-quick-panel {
        padding: 0.24rem 0 0.14rem;
    }

    .footer-quick-inner {
        overflow: hidden;
        padding: 0;
    }




    .footer-quick-list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.1rem;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        padding-bottom: 0.06rem;
        box-sizing: border-box;
    }

    .footer-quick-list::-webkit-scrollbar {
        display: none;
    }

    .footer-quick-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 0 0 calc((100% - 0.3rem) / 4);
        min-width: 0;
        max-width: none;
        width: auto;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    .wap.footer-quick-scroll-dots {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.08rem;
        margin-top: 0.12rem;
        min-height: 0.12rem;
    }

    .footer-quick-scroll-dot {
        flex-shrink: 0;
        width: 0.16rem;
        height: 0.06rem;
        border-radius: 0.03rem;
        background: rgba(51, 94, 105, 0.28);
        transition: background 0.2s ease, width 0.2s ease, height 0.2s ease, border-radius 0.2s ease;
    }

    .footer-quick-scroll-dot.is-active {
        width: 0.1rem;
        height: 0.1rem;
        border-radius: 50%;
        background: #335e69;
    }

    .footer-quick-icon-wrap {
        width: 0.8rem;
        height: 0.8rem;
        border-radius: 50%;
        margin-bottom: 0.07rem;
    }

    .footer-quick-icon {
        width: 0.36rem;
    }

    .footer-quick-text {
        font-size: 0.16rem;
        white-space: normal;
        line-height: 1.25;
        max-width: 100%;
    }

    /* ========== 校园速递 / 蓝鲸直播蓝鲸体育直播蓝鲸体育足球直播动态 ========== */
    .academic-dual {
        margin-top: 0;
        padding: 0.33rem 0 0.38rem;
    }

    .academic-dual-cols {
        flex-direction: column;
        gap: 0.33rem;
    }
    .academic-dual-col{
        width: 100%;
    }
    .academic-dual-head {
        margin-bottom: 0.16rem;
    }

    .academic-dual-list .academic-dual-item:nth-child(n + 7) {
        display: none !important;
    }

    .academic-dual-item {
        padding: 0.14rem 0;
        align-items: center;
    }

    .academic-dual-link {
        font-size: 0.17rem;
    }

    .academic-dual-date {
        align-self: flex-start;
    }

    .academic-dual-date-mon {
        font-size: 0.14rem;
    }

    /* ========== 学术成果 ========== */
    .research-carousel {
        padding: 0.33rem 0 0.42rem;
    }

    .research-carousel-head {
        margin-bottom: 0.19rem;
    }

    .research-swiper {
        padding: 0 0 0.52rem;
    }

    .research-card-title {
        height: auto;
        min-height: 0;
    }
    .research-card-divider {

        margin: 0.1rem 0 0.1rem;
    }
    .research-card-excerpt {
        height: auto;
    }
    .research-card-date {
        margin-top: 0.1rem;
        font-size: 0.16rem;
    }
    /* ========== 媒体关注 ========== */
    .media-talent-wrap {
        background-size: 100% auto;
        background-position: center bottom;
    }

    .media-focus {
        padding: 0.33rem 0 0.24rem;
    }

    .media-focus::after {
        content: "";
        position: absolute;
        right: 0;
         top: unset;
        width: 85.5%;
        bottom: 0.2rem;
        background: url(/image/banner6.png) no-repeat center bottom;
        background-size: 100% 100%;
        pointer-events: none;
        height: 40%;

        }

        .media-focus-inner {
            flex-direction: column;
            gap: 0.33rem;
        }

        .media-focus-thumbs {
            flex-direction: row;
            gap: 0.12rem;
            margin-top: 0.14rem;
        }

        .media-focus-thumb img {
            height: 1.5rem;
        }

        .media-focus-thumb-cap {
            font-size: 0.14rem;
            padding: 0.09rem 0.07rem;
        }

        .media-focus-news {
            margin: 0.19rem 0 0;
            padding: 0.14rem 0.16rem 0.19rem;
            box-shadow: 0 0.07rem 0.24rem rgba(0, 0, 0, 0.08);
        }

        .media-focus-news .media-focus-news-item:nth-child(n + 6) {
            display: none !important;
        }

        .media-focus-news-link {
            white-space: normal;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-size: 0.16rem;
        }

        .media-focus-list-item {
            font-size: 0.16rem;
        }

        /* ========== 人才培养 ========== */
    .talent-cult {
        padding: 0.33rem 0 0.28rem;
    }

    .talent-cult-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.12rem;
    }

    .talent-cult-card {
        min-height: 0;
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 0.14rem;
    }

    .talent-cult-card-over {

    }

    .talent-cult-card-body {
        gap: 0.14rem;
        min-height: 100%;
        height: 100%;
        padding: 0.22rem 0.14rem;
    }

    .talent-cult-card-label {
        font-size: 0.16rem;
    }

    /* ========== 绍大人物 ========== */
    .people-show {
        padding: 0.53rem 0 0.47rem;
    }

    .people-show-head {
        margin-bottom: 0.24rem;
    }

    .people-swiper-outer {
        padding: 0 0.05rem;
    }

    /* ========== 校园风光 ========== */
    .campus-scenery {
        padding: 0.58rem 0 0.53rem;
    }

    /* 左 1 张大图 + 右上下 2 张小图，仅展示前 3 项 */
    .campus-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: 2.4rem;
        height: auto !important;
        max-height: none !important;
        gap: 0.08rem;
        box-sizing: border-box;
    }

    .campus-grid-cell:nth-child(4) {
        display: none !important;
    }

    .campus-grid-cell:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .campus-grid-cell:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        min-height: 0;
    }

    .campus-grid-cell:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        min-height: 0;
    }

    .campus-grid-cap {
        font-size: 0.14rem;
        height: auto;
        min-height: 0.4rem;
        padding: 0.08rem 0.1rem;
    }

    /* ========== 页脚：foot_bg_m 通栏底图 + 青绿遮罩（无额外波浪层） ========== */
    .bottom {
        padding-top: 0;
        position: relative;
        overflow: hidden;
        background-image: url("/image/foot_bg_m.png");
        background-repeat: no-repeat, no-repeat;
        background-position: center top, center top;
        background-size: cover;
    }

    .bottom-panel {
        position: relative;
        z-index: 1;
        margin-top: 0;
        padding: 0.99rem 0 0.4rem;
        background: transparent;
    }

    .bottom-inner.w16 {
        padding-left: 0.14rem;
        padding-right: 0.14rem;
    }

    .bottom-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.28rem;
        margin-bottom: 0.28rem;
    }

    .bottom-mega,
    .bottom-aside {
        width: 100% !important;
    }

    /* 隐藏 PC Tab，手机改为分区通栏展示 */
    .bottom-mega-titles {
        display: none !important;
    }

    .bottom-mega-panels {
        height: auto !important;
        display: flex;
        flex-direction: column;
        gap: 0.22rem;
    }

    .bottom-mega-panel {
        display: block !important;
        margin: 0;
        padding: 0;
    }

    /* 手风琴：仅当前 .is-active 展开列表 */
    .bottom-mega-panel:not(.is-active) .bottom-mega-list {
        display: none !important;
    }

    .bottom-mega-mobile-heading {
        display: block;
        width: 100%;
        margin: 0 0 0.14rem;
        padding: 0 0.06rem 0.12rem 0;
        font-family: inherit;
        font-size: 0.19rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.35;
        letter-spacing: 0.01em;
        text-align: left;
        border: none;
        border-bottom: 0.01rem solid rgba(255, 255, 255, 1);
        background: transparent;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        appearance: none;
    }

    .bottom-mega-panel:not(.is-active) .bottom-mega-mobile-heading {
        margin-bottom: 0;
        border-bottom-color: rgba(255, 255, 255, 0.42);
    }

    .bottom-mega-mobile-heading:focus-visible {
        outline: 0.02rem solid rgba(255, 255, 255, 0.85);
        outline-offset: 0.04rem;
    }

    .bottom-mega-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.08rem 0.1rem;
        margin: 0;
        padding: 0.12rem 0 0.04rem;
        list-style: none;
    }

    .bottom-mega-list li {
        margin: 0;
        min-width: 0;
    }

    .bottom-mega-list a {
        display: block;
        max-width: 100%;
        padding: 0.04rem 0;
        font-size: 0.16rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .bottom-mega-list a:hover,
    .bottom-mega-list a:focus-visible {
        color: #fff;
        text-decoration: underline;
    }

    .bottom-aside {
        position: static !important;
        right: auto !important;
        top: auto !important;
        margin-left: 0 !important;
        align-items: center !important;
        text-align: center;
        padding-top: 0.08rem;
        border-top: 0.02rem solid rgba(255, 255, 255, 0.22);
    }

    .bottom-aside-links {
        font-size: 0.16rem;
        line-height: 1.75;
        margin-bottom: 0.14rem;
        text-align: left;
    }

    .bottom-aside-addr {
        margin: 0;
        font-size: 0.16rem;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.92);
        text-align: center;
    }

    .bottom-qr-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.19rem;
    }

    .bottom-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.14rem;
        text-align: center;
        padding-top: 0.2rem;
        border-top-color: rgba(255, 255, 255, 0.22);
    }

    .bottom-copy {
        font-size: 0.15rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.75);
    }

    .bottom-copy .bottom-aside-sep{
        display: none;
    }
    .bottom-copy a {
        color: rgba(255, 255, 255, 0.88);
        display: none;
    }

    .bottom-top {
        justify-content: center;
        font-size: 0.15rem;
    }

    /* ========== 全屏搜索 ========== */
    .site-search-overlay-title {
        font-size: 0.26rem;
    }

    .site-search-overlay-input {
        font-size: 0.21rem;
    }

    /* ========== 新闻网列表页 .n_container ========== */
    .n_container > .w15{
        padding: 0 3%;
    }

    .n_left {
        flex: none;
        width: 100%;
        display: none;
    }

    .n_left .con h1 {
        margin-top: -0.16rem;
        font-size: 0.2rem;
        padding: 0.18rem 0.14rem;
    }

    .n_right {
        padding: 0 0 0.32rem;
    }

    .n_right .mianbao {
        font-size: 0.12rem;
        padding: 0.1rem 0 0.12rem;
        margin-bottom: 0.18rem;
        display: none;
    }

    .n_titu{
        margin-top: 0.3rem;
    }
    .n_titu a.clearfix {
        flex-direction: column;
        align-items: stretch;
        gap: 0.14rem;
        padding: 0.18rem 0.16rem 0.14rem;
    }

    .n_titu li .pic {
        flex: none;
        width: 100%;
        max-width: none;
        align-self: stretch;
    }

    .n_titu li .pic img {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        max-height: 2.4rem;
        object-fit: cover;
    }

    .n_titu h5.line1 {
        font-size: 0.2rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .n_titu p.line3 {
        font-size: 0.18rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    .n_titu .text > i{
        font-size: 0.18rem;
    }
    .n_titu .text > i img{
        width: 0.18rem;
        height: 0.18rem;
        margin-top: 0.02rem;
    }
    .n_titu li .pic1{
        width: 100%;
        flex: 1;
        max-width: 100%;
    }
    .TextList ul li a {
        flex-wrap: wrap;
        padding: 0.2rem
    }

    .TextList ul li a .data {
        width: 0.8rem;
        height: auto
    }
    .TextList ul li a .data b {
        font-size: 0.4rem;
    }
    .TextList ul li a .data i {
        font-size: 0.18rem;
    }
    .TextList ul li a p {
        margin-top: 0;
        width: calc(100% - 1rem);
        min-width: 0;
        line-height: 0.28rem;
        font-size: 0.2rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
        white-space: break-spaces;
    }

    .TextList ul li a span {
        width: 100%;
        text-align: left;
        margin-left: 1.2rem;
        line-height: 0.24rem;
        margin-top: 0.06rem
    }
    .show01 h5{
        height: auto;
    }
    .show01 .show01-ul {
        justify-content: center;
        gap: 0.1rem 0.12rem;
        padding-bottom: 0.18rem;
    }

    .show01 .show01-ul li div {
        font-size: 0.18rem;
        padding: 0.07rem 0.12rem;
    }

    .show01 .show01-ul li div img {
        width: 0.18rem;
        height: 0.18rem;
    }
    .show02 p{
        font-size: 0.18rem !important;
    }
    .list_box_tc{
        margin-top: 0.4rem;
    }
    .piclist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.14rem 0.12rem;
    }

    .piclist-card-caption {
        font-size: 0.16rem;
        padding: 0.08rem 0.1rem;
    }
    #nav_slide {
        display: block;
    }

    #nav_slide {
        background: #335e69;
        line-height: 50px;
        position: relative;
        z-index: 2
    }

    #nav_slide #bnt_back {
        position: absolute;
        left: 0.16rem;
        top: -2px
    }

    #nav_slide #bnt_back img {
        height: 20px;
        vertical-align: middle
    }

    #nav_slide .n_title {
        height: 50px
    }

    #nav_slide h1 {
        font-size: 16px;
        color: #fff;
        text-align: center
    }

    #bnt_sub_nav {
        position: absolute;
        right: 0.16rem;
        top: 14.5px;
        cursor: pointer
    }

    #bnt_sub_nav img {
        display: block;
        height: 20px;
        transition: transform 0.3s ease;
    }

    #bnt_sub_nav.on img {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    #sub_nav_content {
        background: #f2f2f2;
        z-index: 9;
        width: 100%;
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.38s ease, opacity 0.28s ease, visibility 0.28s ease;
    }

    #sub_nav_content.is-open {
        max-height: min(85vh, 5.6rem);
        opacity: 1;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: visible;
    }

    #sub_nav_content ul {
        background: #FFFFFF
    }

    #sub_nav_content ul li {
        background: none;
        box-shadow: none;
        border-bottom: 1px solid #dedede;
        padding: 0 15px
    }

    #sub_nav_content ul li a {
        display: block;
        font-size: 16px;
        padding: 0;
        color: #333;
        width: 100%;
    }

    #sub_nav_content ul li.on>a {
        color: #335e69;
    }

}