/* ========== 列表页（onelist.template.html）响应式适配 ========== */

/* 平板及以下（最大宽度 1024px） */
@media screen and (max-width: 1024px) {
    .p-content {
        width: 96% !important;
        padding: 15px;
        overflow: visible;
    }

    /* 左右两栏改为上下布局，均显示 */
    .m-listleft,
    .m-listright {
        float: none !important;
        width: 100% !important;
        margin: 0 0 20px 0;
    }

    /* 左侧菜单优化 */
    .m-listleft h1 {
        width: 100%;
        box-sizing: border-box;
        font-size: 18px;
        padding: 0 15px;
        background-position: right 15px center;
    }

    .m-listleft-bd {
        width: 100% !important;
        min-height: auto;
        border: 1px solid #ddd;
        background: #fcfcfc;
    }

    .m-listleft-bd ul li {
        width: 100%;
        height: auto;
        line-height: 44px;
        border-bottom: 1px solid #eee;
        float: none;
    }

    .m-listleft-bd ul li a {
        font-size: 15px;
        text-indent: 20px;
        background-position: right 15px center;
        padding: 0 15px;
        display: block;
    }

    /* 面包屑导航 */
    .m-location {
        font-size: 14px;
        margin-bottom: 15px;
        background-position: 5px -208px;
        padding-left: 28px;
        white-space: normal;
        word-break: break-all;
    }

    /* 右侧列表区 */
    .m-listright {
        min-height: auto;
    }

    .m-listbd {
        min-height: auto;
    }

    .m-listbd ul li {
        line-height: 34px;
        padding: 0 8px;
        background-position: 8px -159px;
        font-size: 14px;
    }

    .m-listbd ul li a {
        font-size: 14px;
        padding-left: 20px;
    }

    .m-listbd ul li span.date {
        font-size: 12px;
        float: right;
        margin-left: 10px;
    }

    /* 分页组件 */
    #page_div {
        text-align: center;
        padding: 10px 0;
    }

    #page_div .pagination_index,
    #page_div .pagination_index_num {
        padding: 0 6px;
        min-width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 14px;
    }

    #page_div .pagination_index_last {
        width: auto;
        float: none;
        text-align: center;
        margin-top: 10px;
    }
}

/* 手机屏幕（最大宽度 768px） */
@media screen and (max-width: 768px) {
    .p-content {
        padding: 12px;
    }

    .m-location {
        font-size: 12px;
        background-size: 16px;
        background-position: 0 -208px;
        padding-left: 22px;
        margin-bottom: 12px;
    }

    .m-listleft h1 {
        font-size: 16px;
        height: 44px;
        line-height: 44px;
    }

    .m-listleft-bd ul li {
        line-height: 40px;
    }

    .m-listleft-bd ul li a {
        font-size: 14px;
        text-indent: 16px;
    }

    .m-listbd ul li {
        line-height: 32px;
        padding: 4px 5px;
        background-position: 5px -159px;
    }

    .m-listbd ul li a {
        font-size: 13px;
        display: inline-block;
        max-width: 70%;
        white-space: normal;
        word-break: break-word;
    }

    .m-listbd ul li span.date {
        font-size: 12px;
        float: right;
    }

    #page_div .pagination_index,
    #page_div .pagination_index_num {
        min-width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 12px;
    }

    #page_div input#pagination_input {
        width: 40px;
        height: 26px;
        line-height: 26px;
        margin: 0 5px;
    }
}

/* 超小屏（最大宽度 480px） */
@media screen and (max-width: 480px) {
    .m-location {
        font-size: 11px;
    }

    .m-listleft h1 {
        font-size: 15px;
        height: 40px;
        line-height: 40px;
    }

    .m-listleft-bd ul li {
        line-height: 38px;
    }

    .m-listleft-bd ul li a {
        font-size: 13px;
        text-indent: 12px;
    }

    .m-listbd ul li {
        line-height: 30px;
        padding: 3px 5px;
    }

    .m-listbd ul li a {
        font-size: 12px;
        max-width: 65%;
    }

    .m-listbd ul li span.date {
        font-size: 11px;
    }

    #page_div .pagination_index,
    #page_div .pagination_index_num {
        min-width: 24px;
        height: 24px;
        line-height: 24px;
        margin-right: 3px;
    }

    #page_div {
        font-size: 12px;
    }
}
/* 文章表格横向滑动适配 */
@media screen and (max-width: 1024px) {
    .m-listbd table{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;   /* 确保容器宽度不超出父级 */
        max-width: 100%;
        display: block;
    }

    .m-listbd table td,
    .m-listbd table th {
        white-space: nowrap;
    }
}
