.mobile-box{
    display: none;
}
@media screen and (max-width: 759px) {
    .mobile-box{
        display: block;
    }
    .container {
        width: 94%;
        max-width: unset !important;
        margin: 0 auto;
        padding: 0;
    }

    /* 主头部 - 移动端 */
    .main-header {
        background: #931212;
        width: 100%;
        min-width: unset;
        position: relative;
    }

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        height: auto;
    }

    .logo-section {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .logo {
        width: 100%;
        max-width: 75%;
    }

    .logo img {
        width: 100%;
        height: auto;
    }

    .top-right {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-logo {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .menu-logo img {
        width: 100%;
        height: auto;
        max-width: 30px;
    }

    /* 移动端全屏导航菜单 */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 10000;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu-close {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        background: #8B0000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10001;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s, transform 0.3s;
    }

    .mobile-menu-close:hover {
        background: #A52A2A;
        transform: rotate(90deg);
    }

    .mobile-menu-close span {
        color: white;
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
    }

    .mobile-menu-content {
        padding: 80px 20px 40px;
        max-width: 100%;
    }

    .mobile-nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        color: white;
        font-size: 18px;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
        cursor: pointer;
    }

    .mobile-nav-link.active {
        background-color: rgba(139, 0, 0, 0.3);
        color: #ffd700;
    }

    .mobile-nav-link:hover {
        background-color: rgba(139, 0, 0, 0.5);
    }

    .mobile-nav-toggle .arrow {
        font-size: 12px;
        transition: transform 0.3s;
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-nav-dropdown.active .mobile-nav-toggle .arrow {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.3);
        transition: max-height 0.3s ease;
    }

    .mobile-nav-dropdown.active .mobile-submenu {
        max-height: 1000px;
    }

    .mobile-submenu a {
        display: block;
        padding: 14px 20px 14px 50px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: background-color 0.3s, padding-left 0.3s;
    }

    .mobile-submenu a:last-child {
        border-bottom: none;
    }

    .mobile-submenu a:hover {
        background-color: rgba(139, 0, 0, 0.4);
        padding-left: 60px;
        color: white;
    }

    /* 主导航 - 移动端 */
    .main-nav {
        display: none;
        background-color: #8B0000;
        padding: 0;
        position: relative;
        min-width: unset;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav .container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0;
        white-space: nowrap;
    }

    .main-nav a,
    .nav-item a {
        color: white;
        text-decoration: none;
        padding: 12px 15px;
        display: inline-block;
        font-size: 14px;
        white-space: nowrap;
        transition: background-color 0.3s;
        flex-shrink: 0;
    }

    .nav-item {
        position: relative;
        flex-shrink: 0;
    }

    .nav-item a:hover,
    .nav-item a.active {
        background-color: #A52A2A;
    }

    /* 下拉菜单 - 移动端 */
    .dropdown-menu {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0;
        bottom: 0;
        width: 100%;
        min-width: unset;
        max-height: 100vh;
        overflow-y: auto;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        border: none;
        box-shadow: none;
        display: none;
        z-index: 9999;
        padding: 70px 0 20px;
        -webkit-overflow-scrolling: touch;
    }

    .dropdown-menu.show {
        display: block;
    }

    /* 下拉菜单遮罩背景 */
    .dropdown-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        display: block;
    }

    .dropdown-column {
        padding: 0;
    }

    .dropdown-column {
        background: white;
        margin: 0 20px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .dropdown-column a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        border-bottom: 1px solid #eee;
        background-color: white;
        transition: background-color 0.3s;
    }

    .dropdown-column a:first-child {
        border-top: none;
    }

    .dropdown-column a:last-child {
        border-bottom: none;
    }

    /* 下拉菜单顶部标题栏 */
    .dropdown-menu::after {
        content: '关闭';
        position: fixed;
        top: 15px;
        right: 20px;
        font-size: 16px;
        color: #8B0000;
        z-index: 10000;
        background: white;
        padding: 8px 15px;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        border: 1px solid #8B0000;
        display: none;
    }

    .dropdown-menu.show::after {
        display: block;
    }

    /* 点击遮罩层关闭下拉菜单 */
    .dropdown-menu.show::before {
        cursor: pointer;
    }

    .dropdown-column a:hover {
        background-color: #f5f5f5;
        color: #8B0000;
    }

    .dropdown-toggle::after {
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Banner轮播 - 移动端 */
    .banner {
        position: relative;
        height: auto;
        min-height: 300px;
        margin-top: 0;
    }

    .lunbo {
        width: 100%;
        height: 194px;
        min-width: unset;
        position: relative;
    }

    .lunbo img {
        width: 100%;
        height: 194px !important;
        min-width: unset !important;
        object-fit: cover;
    }

    .lunbo_nei {
        width: 100%;
        height: 194px;
        min-width: unset;
        position: relative;
    }

    .lunbo .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #931212;
        margin: 0 4px;
        cursor: pointer;
    }

    /* 搜索区域 - 移动端 */
    .search-section {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: translateY(0);
        padding: 0;
        text-align: center;
        height: auto;
        display: block;
        z-index: 99;
        width: 100%;
    }

    .search-container {
        width: 100%;
        height: auto;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 0;
        padding: 20px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .search-tabs {
        display: flex;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 4px;
        overflow: hidden;
    }

    .search-tabs .tab {
        flex: 1;
        padding: 10px 8px;
        cursor: pointer;
        color: #000;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: center;
        white-space: nowrap;
    }

    .search-tabs .tab.active {
        color: #fff;
        background-color: #931212;
    }

    .search-form .form-row {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
        margin-bottom: 15px;
        align-items: center;
    }

    .search-form .form-row .form-label {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        white-space: nowrap;
    }

    .search-form .form-row .form-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: white;
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

    .search-form .form-row1 {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-bottom: 15px;
        align-items: center;
    }

    .form-label {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
    }

    .form-select {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background-color: white;
        font-size: 14px;
        width: 100%;
        min-width: unset;
        color: #333;
        cursor: pointer;
    }

    .search-input {
        flex: 1;
        min-width: 0;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        height: 45px;
    }

    .search-btn {
        background-color: #8B0000;
        color: white;
        border: none;
        padding: 12px 20px;
        height: 45px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        border-radius: 4px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .search-btn:hover {
        background-color: #A52A2A;
    }

    .search-btn img {
        width: 14px;
        height: 14px;
    }

    .search-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
        font-size: 14px;
        align-items: center;
        justify-content: flex-start;
        color: #fff;
    }

    .search-options label {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        color: #fff;
    }

    .search-desc {
        color: #fff;
        font-size: 12px;
        text-align: center;
        line-height: 1.6;
    }

    /* 主要内容区域 */
    .main-content {
        background-color: white;
        width: 100%;
    }

    /* 读者服务 - 移动端 */
    .reader-services {
        padding: 30px 0 40px;
        background: url("../images/bg1.png") center no-repeat;
        background-size: cover;
        min-width: unset;
    }

    .section-title {
        font-size: 20px;
        color: #333;
        margin-bottom: 20px;
        text-align: center;
        background: url("../images/titbg.png") center bottom no-repeat;
        background-size: 100% auto;
        padding-bottom: 25px;
        height: auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 20px;
        padding: 0;
    }

    .service-item {
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s;
        width: 100%;
        max-width: 90px;
        height: 90px;
        margin: 0 auto;
        border: #931212 1px solid;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: #fff;
        padding: 5px;
    }

    .service-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .service-item span {
        display: block;
        font-size: 13px;
        color: #333;
        font-weight: 500;
        margin-top: 5px;
        line-height: 1.2;
    }

    /* 数字资源 - 移动端 */
    .digital-resources {
        padding: 30px 0 40px;
        background-color: #fff;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .section-title2 {
        text-align: center;
        font-size: 20px;
        color: #1f1f1f;
        flex: 1;
    }

    .more-link {
        color: #414141;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        position: absolute;
        right: 0;
    }

    .resource-tabs {
        display: flex;
        margin-bottom: 20px;
        justify-content: center;
        padding: 0 15px;
    }

    .resource-tabs .tab {
        flex: 1;
        padding: 10px 5px;
        background-color: white;
        border: 1px solid #ddd;
        cursor: pointer;
        color: #666;
        font-size: 14px;
        text-align: center;
    }

    .resource-tabs .tab.active {
        background-color: #8B0000;
        color: white;
        border-color: #8B0000;
    }

    .resource-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

    .resource-link {
        background-color: #f0f0f0;
        padding: 12px 8px;
        text-align: center;
        color: #333;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s;
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .resource-link:hover {
        background-color: #e0e0e0;
    }

    /* 新闻公告 - 移动端 */
    .news-section {
        padding: 30px 0 10px;
        background-color: #fefbfa;
        min-width: unset;
    }

    .news-content {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
    }

    .news-banner {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .tzgg-lunbo {
        position: relative;
        width: 100%;
        height: 200px;
    }

    .xydt-info {
        width: 100%;
        height: 200px;
    }

    .news_imgs {
        position: relative;
        overflow: hidden;
        object-fit: cover;
        width: 100%;
        height: 200px;
    }

    .news_imgs img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news_wz {
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 0;
        background: linear-gradient(0deg, #0000006b, transparent);
    }

    .news_title {
        font-size: 14px;
        color: #fff;
        line-height: 20px;
      padding: 10px 88px 10px 15px;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .xydt-lunbo-page {
        position: absolute;
        bottom: 14px;
        right: 10px;
        z-index: 9;
    }

    .news-list {
        height: auto;
        overflow: visible;
        flex: 1;
        margin-left: 0;
    }

    .news-list-item {
        display: flex;
        justify-content: space-between;
       
        position: relative;
    }

    .news-tabs {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
        gap: 5px;
    }

    .news-tabs .tab {
        padding: 5px 5px;
        cursor: pointer;
        color: #6b6969;
        border-bottom: 2px solid transparent;
        font-size: 14px;
        white-space: nowrap;
    }

    .news-tabs .tab.active {
        color: #931212;
        border-bottom-color: #931212;
    }

    .news-tabs .tab-separator {
       padding: 0;
        font-size: 13px;
    }
    .news-tabs .tab:first-child{
        padding: 5px 5px;
    }
    .news-items {
        margin-bottom: 20px;
    }

    .news-item {
        display: flex;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
        color: #414141;
        align-items: center;
    }

    .news-item img {

    }

    .news-item span:first-of-type {
        flex: 1;
        text-align: left;
        margin-right: 5px;

        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-item .date {
        color: #999;
        font-size: 14px;
        flex-shrink: 0;
        align-self: flex-end;
    }

    /* 新书通报 - 移动端 */
    .main-bottom {
        width: 100%;
        background: url("../images/bannerbg.png") center calc(100% + 180px) no-repeat;
        background-size: cover;
        min-width: unset;
        padding-bottom: 60px;
    }

    .new-books {
        padding: 30px 0 40px;
    }

    .section-header {
        position: relative;
    }

    .new-books-more {
        position: absolute;
        right: 15px;
        top: 0;
    }

    .books-carousel {
        position: relative;
        margin-top: 20px;
        display: flex;
        align-items: center;
        width: 100%;
        overflow: hidden;
        padding: 0 5px;
    }

    .book-left, .book-right {
        width: 30px;
        height: 30px;
        cursor: pointer;
        flex-shrink: 0;
        z-index: 10;
        display: none;
    }

    .book-left img, .book-right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .img-lunbo {
        flex: 1;
        margin: 0;
        overflow: hidden;
        position: relative;
        width: 100%;
        min-width: unset;
    }

    .img-lunbo .swiper-slide {
        flex-shrink: 0;
        margin-right: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .img-lunbo .img-top {
        width: 100%;
        height: 150px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .img-lunbo .img-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .img-lunbo .img-bottom {
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #1f1f1f;
        line-height: 1.4;
        width: 100%;
        word-wrap: break-word;
    }

    /* 常用系统 - 移动端 */
    .common-systems {
        padding: 30px 0;
    }

    .section-title4 {
        font-size: 20px;
        color: #1f1f1f;
        text-align: center;
        margin-bottom: 20px;
    }

    .systems-grid {
        display: flex;
        flex-direction: row;
        gap: 15px;
        margin-top: 20px;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .systems-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .system-item {
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        color: #1f1f1f;
        flex: 0 0 calc((100% - 30px) / 3);
        min-width: calc((100% - 30px) / 3);
        scroll-snap-align: start;
    }

    .system-item img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        object-fit: contain;
    }

    /* 页脚 - 移动端 */
    .footer {
        background-color: #454649;
        color: white;
        padding: 30px 0 0;
        min-width: unset;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        padding: 0 0 15px;
    }

    .footer-left {
        display: none;
    }

    .footer-left h4 {
        margin-bottom: 10px;
        font-size: 16px;
        color: #ffffff;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        font-size: 14px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
    }

    .footer-center {
        margin:  0;
        text-align: center;
    }

    .footer-center p {
        line-height: 1.8;
        font-size: 15px;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .footer-center p a {
        color: #fff;
    }

    .footer-right{
        display: none;
    }

    .qr-section {
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .wb-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .wb-icon {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    .wb-section .qr-code {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .wb-section:hover .qr-code {
        opacity: 1;
        visibility: visible;
    }

    .qr-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .qr-item span {
        font-size: 12px;
        color: #fff;
        text-align: center;
    }

    .qr-code {
        width: 90px;
        height: 90px;
        background-color: white;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .qr-code img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bottom {
        width: 100%;
        height: 40px;
        border-top: 1px solid #5f6062;
        text-align: center;
        line-height: 40px;
        font-size: 12px;
    }

    /* 我的图书馆按钮 - 移动端 */
    .my-library-btn {
        background-color: #dc3545;
        color: white;
        border: none;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 200px;
    }

    .my-library-content {
        text-align: center;
        padding: 30px 15px;
    }

    /* ZADL 搜索 - 移动端 */
    /* ZADL 表单的 form-row 不包含 label，使用 flex 布局 */
    .search-form .form-row:not(:has(.form-label)) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        grid-template-columns: none;
        grid-template-rows: none;
    }

    /* ZADL 表单中的 select、input、button 样式调整 */
    .search-form .form-row:not(:has(.form-label)) .form-select {
        flex: 0 0 auto;
        min-width: 100px;
        max-width: 150px;
        width: auto;
    }

    .search-form .form-row:not(:has(.form-label)) .search-input {
        flex: 1;
        min-width: 150px;
        width: auto;
    }

    .search-form .form-row:not(:has(.form-label)) .search-btn {
        flex: 0 0 auto;
        margin-left: -10px;
    }

    .search-btn1 {
        margin-left: 0;
    }

    #zadl_radio_1,
    #zadl_radio_2,
    #zadl_radio_3,
    #zadl_radio_4 {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    /* 隐藏桌面端元素 */
    .top-right-2 {
        display: none;
    }

    /* 移动端导航菜单优化 */
    .main-nav {
        display: none !important;
    }

    /* 隐藏桌面端导航在移动端 */
    .main-nav .container {
        display: none;
    }

    /* 响应式图片 */
    img {
        max-width: 100%;
        height: auto;
    }

    /* 触摸优化 */
    a, button {
        -webkit-tap-highlight-color: transparent;
    }
    /* main 区域 - 移动端适配 */
    .main {
        padding-bottom: 20px;
    }

    .main-img {
        height: 180px;
    }

    .main-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-box {
        width: 100%;
        margin: -20px auto 0;
        padding: 0 3%;
    }

    /* 导航顶部 - 移动端 */
    .navi-top {
        flex-direction: column;
        align-items: stretch;
    }

    .navi-top-left {
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size: 18px;
        padding: 0 15px;
    }

    .navi-top-right {
        width: 100%;
        height: auto;
        min-height: 40px;
        padding: 10px 15px;
        line-height: 1.5;
        font-size: 14px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px;
    }

    .navi-top-right::after {
        display: none;
    }

    .navi-top-right a {
        font-size: 14px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
    }

    .navi-top-right .icon {
        margin: 0 5px;
    }

    /* 导航信息区域 - 移动端 */
    .navi-info {
        flex-direction: column;
        margin-top: 10px;
    }

    .menu-box1 {
        width: 100%;
        min-height: auto;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
    }

    .menu-box1 .menu-item {
        font-size: 15px;
        line-height: 38px;
        padding-left: 8px;
    }

    .detail-box {
        width: 100%;
        padding: 15px;
        flex: none;
    }

    .detail-box h1 {
        margin: 0;
        padding: 15px 10px;
        font-size: 20px;
        line-height: 1.5;
        text-align: left;
        border-bottom: 1px dashed #d7dadb;
    }

    .detail-box .detail-con {
        margin-top: 15px;
        min-height: 100px;
    }

    .detail-box .detail-con .rich-title {
        margin-bottom: 15px;
        text-align: left;
        font-size: 16px;
        display: flex;
        gap: 8px;
    }

    .detail-box .detail-con .rich-title span {
        padding: 0;
        margin-right: 0;
        width: 100%;
        line-height: 1.6;
    }
    .detail-box .detail-con .rich-title .col1{
        display: none;
    }
    .detail-box .detail-con .rich-title .title {
        font-weight: 500;
        color: #333;
    }

    .detail-box .detail-con .rich-text {
        margin-top: 10px;
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.8;
    }

    .detail-box .detail-con .rich-text-box {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* 内容列表区域 - 移动端适配 */
    .content-box {
        width: 100%;
        padding: 15px;
        flex: none;
    }

    .content-item {
        padding: 15px 10px;
        border-bottom: 1px solid #ddd;
    }

    .content-item .title {
        font-size: 16px;
        white-space: normal;
        text-overflow: clip;
        overflow: visible;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        cursor: pointer;
        color: #000;
        text-decoration: none;
    }

    .content-item .title span:first-child {
        width: 100%;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
    }

    .content-item .title .time-info {
        font-size: 14px;
        color: #8b8b8b;
        align-self: flex-end;
        white-space: nowrap;
    }

    .content-item .title:hover {
        color: #931212;
    }

     /* 快捷入口区域 */
    .mobile-quick-links {
        display: flex;
        gap: 10px;
        margin-bottom: 25px;
        padding: 0;
        position: relative;
    }

    .mobile-quick-links::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, 
            transparent, 
            rgba(255, 255, 255, 0.3) 20%, 
            rgba(255, 255, 255, 0.3) 80%, 
            transparent
        );
    }

    .mobile-quick-link {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: rgba(139, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        text-decoration: none;
        color: white;
        transition: all 0.3s ease;
        min-height: 90px;
    }

    .mobile-quick-link img {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-quick-link span {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: 1.3;
    }

    .mobile-quick-link:hover {
        background: rgba(139, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
    }

    .mobile-quick-link:hover img {
        transform: scale(1.1);
        opacity: 1;
    }

    .mobile-quick-link:active {
        transform: translateY(0);
    }


}