﻿@charset "utf-8";

@media screen and (max-width: 1024px) {

    :root {
        --m-pad: 0.2rem;
    }

    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .w1670 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: var(--m-pad) !important;
        padding-right: var(--m-pad) !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    /* ========== 头部 ========== */
    .header {
        overflow: hidden;
        position: relative;
        z-index: 100;
    }

    .header-top {
        position: relative;
        z-index: 1000;
        padding: 0.2rem 0;
        min-width: 0;
        align-items: center;
        background: var(--theme-color);
    }

    .header-logo {
        flex: 1;
        min-width: 0;
        margin-right: 0.1rem;
    }

    .header-logo img {
        height: 0.4rem;
        max-width: 100%;
        width: auto;
    }

    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 0.38rem;
        height: 0.38rem;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        flex-shrink: 0;
    }

    .menu-btn img {
        display: block;
        width: 0.3rem;
        height: auto;
    }

    .mobile-mask {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    body.menu-open .mobile-mask {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: var(--theme-color);
        z-index: 999;
        border-top: 0;
        padding-top: 0.84rem;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-100%);
        transition: transform 0.32s ease;
    }

    body.menu-open .header-nav {
        transform: translateY(0);
    }

    .header-nav .w1670 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.08rem 0 0.4rem !important;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-item > a {
        display: block;
        line-height: 0.44rem;
        padding: 0.05rem  var(--m-pad);
        font-size: 0.2rem;
        font-weight: normal;
        color: #fff;
        white-space: normal;
    }

    .nav-item.has-sub > a {
        position: relative;
        padding-right: 0.5rem;
    }

    .nav-item.has-sub > a::after {
        content: '+';
        position: absolute;
        right: var(--m-pad);
        top: 50%;
        width: auto;
        height: auto;
        border: 0;
        font-size: 0.2rem;
        line-height: 1;
        color: rgba(255, 255, 255, 0.65);
        transform: translateY(-50%);
        transition: transform 0.25s;
    }

    .nav-item.has-sub.open > a::after {
        content: '?';
        transform: translateY(-50%);
    }

    .sub-nav {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.08);
        padding: 0.04rem 0 0.08rem;
    }

    .nav-item.has-sub.open .sub-nav {
        display: block;
    }

    .sub-nav li a {
        display: block;
        text-align: left;
        padding: 0.1rem var(--m-pad) 0.1rem 0.36rem;
        font-size: 0.18rem;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.88);
    }

    .sub-nav li a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    /* ========== 轮播 ========== */
    .banner {
        width: 100%;
        overflow: hidden;
    }

    .banner-swiper,
    .banner-swiper .swiper-slide {
        height: 2rem;
    }

    .banner-swiper .swiper-slide img {
        height: 100%;
        object-fit: cover;
    }

    .banner-swiper .swiper-pagination {
        bottom: 0.12rem;
        padding: 0.06rem 0.12rem;
    }

    /* ========== 主内容 ========== */
    .main {
        width: 100%;
        overflow: hidden;
        padding-bottom: 0;
        background: #fff;
    }

    .section {
        width: 100%;
        padding: 0.36rem 0;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* 栏目标题 - 移动端等比缩小 */
    .section-head {
        margin-bottom: 0.3rem;
        min-width: 0;
    }

    .section-title {
        gap: 0.1rem;
        text-indent: 0.14rem;
        min-width: 0;
        flex: 1;
    }

    .section-title-cn::before {
        width: 0.58rem;
        height: 0.62rem;
        left: -0.04rem;
    }

    .section-title-cn h2 {
        font-size: 0.24rem;
    }

    .section-en {
        font-size: 0.16rem;
    }

    .section-en-line {
        width: 0.45rem;
        min-width: 0.45rem;
        height: 0.05rem;
        margin-top: 0.04rem;
    }

    .section-more {
        font-size: 0.15rem;
    }

    .section-more img {
        width: 0.24rem;
        height: 0.24rem;
        margin-left: 0.02rem;
    }

    /* ========== 新闻动态 ========== */
    .news-section-wrap {
        width: 100%;
        background: #faf9f9;
        overflow: hidden;
    }

    .news-section {
        padding-top: 0.36rem;
        padding-bottom: 0.4rem;
        background: #faf9f9;
    }

    .news-body {
        flex-direction: column;
        gap: 0;
        width: 100%;
        min-width: 0;
    }

    .news-featured {
        width: 100%;
        height: 2.5rem;
        flex-shrink: 0;
        margin-bottom: 0.04rem;
        border-radius: 0;
        overflow: hidden;
    }

    .news-featured-swiper,
    .news-featured-swiper .swiper-slide {
        height: 2.5rem;
    }

    .news-featured-link:hover .news-featured-pic img {
        transform: none;
    }

    .news-featured-info {
        padding: 0.1rem 0.14rem;
        background: rgba(142, 14, 49, 0.82);
    }

    .news-featured-tit {
        font-size: 0.18rem;
    }

    .news-featured-date {
        font-size: 0.16rem;
    }

    .news-body {
        max-width: 100%;
        overflow: hidden;
    }

    .news-list {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        margin-top: 0.15rem;
    }

    .news-list-item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .news-list-item:hover {
        transform: none;
    }

    .news-list-item a {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding: 0.15rem 0.1rem;
    }
    .news-list-date{
        font-size: 0.16rem ;
    }

    /* ========== 四宫格 ========== */
    .grid-section {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        background: #fff;
    }

    .grid-wrap {
        gap: 0.45rem;
        width: 100%;
    }

    .grid-item {
        width: 100%;
        min-width: 0;
        transform: none !important;
    }

    .grid-list {
        background: #faf9f9;
        padding: 0.04rem 0.18rem 0.1rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .grid-list-item {
        border-bottom: 1px dashed #ddd;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }


    .grid-list-item:nth-child(n+5) {
        display: none;
    }

    .grid-list-item a {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding-left: 0 !important;
        padding: 0.14rem 0;
    }

    .grid-list-item a:hover {
        padding-left: 0 !important;
    }

    /* ========== 底部 ========== */
    .footer {
        overflow: hidden;
        margin-top: 0.08rem;
        background: #8e0e31;
    }

    .footer::before {
        display: none;
    }

    .footer-wrap {
        position: relative;
        width: 100%;
        min-height: 1.6rem;
        background: url(../image/bottombg2.png) no-repeat center bottom;
        background-size: 100% auto;
        background-color: #8e0e31;
    }

    .footer-inner {
        position: relative;
        z-index: 1;
        padding: 0.58rem 0 0;
        min-height: 1.2rem;
        height: auto;
        overflow: visible;
    }

    .footer-links,
    .footer-logo {
        display: none;
    }

    .footer-bottom {
        justify-content: flex-end;
        align-items: center;
        min-height: 0.9rem;
        padding: 0;
    }

    .footer-right {
        margin-left: auto;
    }

    .footer-right img {
        display: block;
        height: 0.72rem;
        width: auto;
        max-width: 1.8rem;
        opacity: 1;
        margin-bottom: 0;
    }

    .footer-copy {
        text-align: center;
        padding: 0.1rem 0 0.16rem;
        background: #8e0e31;
    }

    .footer-copy .w1670 {
        font-size: 0.16rem;
        color: rgba(255, 255, 255, 0.3);
        line-height: 1.4;
    }

    /* ========== AOS / 悬停重置 ========== */
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .section-more:hover,
    .grid-item:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .section-more:hover img {
        transform: none !important;
    }

    /* ========== 新闻网列表页 .n_container ========== */
    .n_container > .w15{
        padding: 0 0.16rem;
        width: 100%;
        max-width: 100%;
    }

    .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 ul{
        padding: 0;
    }
    .n_titu a.clearfix {
        flex-direction: row;
        align-items: center;
        gap: 0.1rem;
        padding: 0.12rem 0.06rem;
    }

    .n_titu .text {
        flex-direction: row;
        align-items: center;
    }

    .n_titu h5.line1 {
        font-size: 0.18rem;
        white-space: nowrap;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .n_titu .text > i{
        font-size: 0.15rem;
    }
    .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;
    }

    #nav_slide {
        display: block;
        background: #8e1537;
        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: #8e1537;
    }
    .list_box_tc{
        margin-top: 0.4rem;
    }
    .piclist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.34rem 0.3rem;
    }

    .piclist-card {
        max-width: 2.4rem;
    }

    .piclist-card-caption {
        font-size: 0.16rem;
        padding: 0.08rem 0.1rem;
    }
}