@charset "utf-8";
@media screen and (max-width:768px){
    /* rem 基准：设计稿宽度 640，100vw = 6.4rem，1rem ≈ 58.6px (@375px 视口) */
    html { font-size: calc(100vw / 6.4); }
    body {font-size: 0.24rem;}
    .pc {display: none !important;}
    .mb {display: block !important;}

    .container,
    .main,
    .content-area .container {
        width: 100%;
        max-width: none;
        padding-left: 0.24rem;
        padding-right: 0.24rem;
        overflow: visible;
    }

    .herader {
        width: 100%;
        height: 1.18rem;
        margin-bottom: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1200;
        background-color: #fff;
    }

    .herader.is-affixed {
        box-shadow: 0 0.04rem 0.16rem rgba(0,0,0,.12);
    }

    body > .container {
        padding-top: 1.18rem;
    }

    .top-logo {
        width: 100%;
        height: 1.18rem;
        padding: 0 1rem 0 0.24rem;
        display: flex;
        align-items: center;
    }

    .top-logo img {
        width: 2.62rem;
        height: auto;
        margin-top: 0;
        display: block;
    }

    .top-link,
    .top-search {
        display: none;
    }

    .header-menu {
        width: 0.92rem;
        height: 0.6rem;
        position: absolute;
        right: 0;
        top: 0.3rem;
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1301;
        color: #1a5c9a;
        cursor: pointer;
    }

    .header-menu i {
        font-size: 0.48rem;
        line-height: 1;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .header-menu i.fa-times { display: none; }
    .header-menu.open i.fa-bars { display: none; }
    .header-menu.open i.fa-times {
        display: inline-block;
        color: #1385d1;
    }

    .header-menu.open {
        background: none;
        color: #fff;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(10, 26, 43, 0.55);
        overflow-y: auto;
        display: none;
        padding: 1.18rem 0 0;
    }

    .nav-ul li a::after{
        /* display: none; */
    }
    .nav-ul {
        display: block;
        width: 5.6rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: 0;
        padding: 0;
        background: #ffffff;
        box-shadow: -0.12rem 0 0.32rem rgba(10, 26, 43, 0.18);
        font-weight: 400;
        text-align: left;
        animation: navSlideIn 0.25s ease-out;
        min-height: calc(100vh - 1.18rem);
        list-style: none;
        padding-top: 0.8rem;
    }

    @keyframes navSlideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .nav-ul > li,
    .nav-ul li {
        display: block !important;
        float: none !important;
        clear: both;
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #eef2f7;
        background: none !important;
        position: relative;
        height: auto;
        min-height: 0;
        line-height: 1;
        font-size: 0.28rem;
        text-align: left;
    }

    .nav-ul > li:nth-last-of-type(1),
    .nav-ul li:nth-last-of-type(1) { border-bottom: none; }

    .nav-ul > li > a,
    .nav-ul li > a {
        display: block;
        width: 100%;
        height: auto;
        padding: 0.32rem 0.9rem 0.32rem 0.32rem;
        margin: 0;
        color: #1a5c9a;
        font-weight: 600;
        font-size: 0.3rem;
        line-height: 1.4;
        text-decoration: none;
        background: none !important;
        text-align: left;
    }

    /* 屏蔽桌面/默认在 a 上添加的 › 伪元素，避免与 .mb 折叠箭头冲突 */
    .nav-ul li a::after,
    .nav-ul li > a::after,
    .nav-ul > li > a::after,
    .nav-ul li dl dd a::after,
    .nav-ul li dl.nav-mega dd .nav-group-list li a::after,
    .nav-ul li dl.nav-simple dd a::after {
        content: none !important;
        display: none !important;
    }

    .nav-ul li.current,
    .nav-ul li:hover,
    .nav-ul > li.current > a,
    .nav-ul > li:hover > a { background: none !important; }

    .nav-ul li > a:active { background: rgba(26,92,154,0.06) !important; }

    /* 折叠/展开切换 span（已有 JS 切换 .down 类） */
    .nav-ul li > span,
    .nav-ul li > span.mb {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: 0.9rem;
        height: 0.96rem;
        z-index: 10;
        background: none;
        border: none;
        cursor: pointer;
        transform: none;
    }

    .nav-ul li > span::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 0.18rem;
        height: 0.18rem;
        margin-left: -0.12rem;
        margin-top: -0.12rem;
        border-top: 0.04rem solid #5d8bc1;
        border-right: 0.04rem solid #5d8bc1;
        transform: rotate(135deg);
        transition: transform 0.25s ease;
        background: none;
    }

    .nav-ul li > span.down {
        transform: none;
    }

    .nav-ul li > span.down::before {
        transform: rotate(-45deg);
        border-color: #1a5c9a;
    }

    /* 仅当 li 内含子菜单时才显示折叠箭头 */
    .nav-ul li:not(:has(dl)) > span { display: none; }
    .nav-ul li:not(:has(dl)) > a { padding-right: 0.32rem; }

    /* 二级菜单容器 */
    .nav-ul li dl {
        display: none;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100%;
        background: #f6fafd !important;
        padding: 0.12rem 0;
        margin: 0;
        border-top: 1px solid #eef2f7;
        line-height: normal;
        box-shadow: none;
        z-index: auto;
    }

    .nav-ul li dl::before,
    .nav-ul li dl.nav-simple::before { display: none !important; }

    /* 通用 dd 重置：去掉 float/width 百分比 */
    .nav-ul li dl dd,
    .nav-ul li dl.nav-simple dd,
    .nav-ul li dl.nav-simple.nav-simple-4col dd {
        display: block !important;
        float: none !important;
        clear: both;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: normal !important;
        font-size: 0.26rem;
        font-weight: 400;
        border: none;
        background: none;
        position: static;
    }

    /* nav-mega 三级结构 */
    .nav-ul li dl.nav-mega dd {
        padding: 0.06rem 0 0.04rem !important;
        border-bottom: 1px solid #e8eef6 !important;
    }
    .nav-ul li dl.nav-mega dd:last-child { border-bottom: none !important; }

    .nav-ul li dl.nav-mega dd .nav-group-title {
        padding: 0.18rem 0.32rem 0.06rem;
        font-size: 0.26rem;
        font-weight: 700;
        color: #1a5c9a;
    }

    .nav-ul li dl.nav-mega dd .nav-group-title a {
        color: #1a5c9a;
        text-decoration: none;
        font-weight: 700;
    }

    .nav-ul li dl.nav-mega dd .nav-group-list {
        list-style: none;
        padding: 0 0.32rem 0.16rem 0.5rem;
        margin: 0;
    }

    .nav-ul li dl.nav-mega dd .nav-group-list li {
        display: block !important;
        float: none !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: none !important;
        font-size: 0.24rem;
        line-height: 1.5;
    }

    .nav-ul li dl.nav-mega dd .nav-group-list li a {
        display: block;
        padding: 0.14rem 0;
        color: #5a6f84;
        font-weight: 400;
        font-size: 0.24rem;
        text-decoration: none;
        border-bottom: 1px dashed #e6edf5;
        background: none !important;
    }

    .nav-ul li dl.nav-mega dd .nav-group-list li:last-child a { border-bottom: none; }

    /* nav-simple 简单二级（直接 dd > a） */
    .nav-ul li dl.nav-simple dd,
    .nav-ul li dl:not(.nav-mega) dd {
        padding: 0 !important;
        border-bottom: 1px dashed #e6edf5 !important;
    }

    .nav-ul li dl.nav-simple dd:last-child,
    .nav-ul li dl:not(.nav-mega) dd:last-child { border-bottom: none !important; }

    .nav-ul li dl.nav-simple dd > a,
    .nav-ul li dl:not(.nav-mega) dd > a {
        display: block;
        padding: 0.18rem 0.32rem 0.18rem 0.5rem;
        color: #5a6f84;
        text-decoration: none;
        font-weight: 400;
        font-size: 0.26rem;
        background: none !important;
        line-height: 1.5;
    }

    .banner {
        width: 100%;
        min-width: 0;
        height: 4rem;
        margin: 0 auto 0.24rem;
    }

    .banner img,
    .sub-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .sub-banner {
        width: 100%;
        height: 2.1rem;
        margin-bottom: 0.24rem;
    }

    .search-panel {
        width: calc(100% - 0.48rem);
        margin-top: -0.64rem;
        margin-bottom: 0.32rem;
        padding: 0.16rem;
        border-radius: 0.22rem;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 0.14rem 0.28rem rgba(18, 67, 108, 0.14);
    }

    .search-tap-ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.14rem;
        height: auto;
    }

    .search-tap-ul li {
        width: auto;
        min-width: 1.42rem;
        font-size: 0.24rem;
        box-shadow: 0 0.08rem 0.2rem rgba(18, 67, 108, 0.14);
    }

    .search-input-panel {
        overflow: hidden;
        border-radius: 0.2rem;
    }

    .content-area {
        padding: 0 0 0.36rem 0;
    }

    .content-grid {
        display: flex;
        flex-direction: column;
        gap: 0.24rem;
    }

    .content-grid > main {
        order: 1;
    }

    .content-grid > aside {
        order: 2;
        width: 100%;
    }

    .sidebar-card {
        padding: 0.32rem 0.3rem;
        margin-bottom: 0.22rem;
        border-radius: 0.2rem;
        background: linear-gradient(135deg, #f4f8fc 0%, #e6eef7 100%);
        border: 1px solid rgba(26,92,154,0.08);
        box-shadow: 0 0.1rem 0.24rem rgba(18, 67, 108, 0.08);
        position: relative;
        overflow: hidden;
    }

    .sidebar-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0.08rem;
        background: linear-gradient(180deg, #1a5c9a 0%, #5d8bc1 100%);
        opacity: 0.85;
    }

    .sidebar-header {
        gap: 0.22rem;
        margin-bottom: 0.24rem;
        padding-bottom: 0.2rem;
        border-bottom: 1px dashed rgba(26,92,154,0.18);
    }

    .sidebar-header i {
        font-size: 0.42rem;
        color: #1a5c9a;
        width: 0.78rem;
        height: 0.78rem;
        line-height: 0.78rem;
        text-align: center;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 0.04rem 0.12rem rgba(26,92,154,0.18);
        flex-shrink: 0;
    }

    .sidebar-header h3,
    .sidebar-card h3 {
        font-size: 0.32rem;
        line-height: 1.4;
        color: #1a5c9a;
        font-weight: 700;
    }

    .sidebar-card h3 a {
        color: inherit;
        text-decoration: none;
    }

    .time-row {
        gap: 0.16rem;
        font-size: 0.26rem;
        margin-bottom: 0.08rem;
        color: #555;
    }

    .service-btn {
        padding: 0.18rem 0.32rem;
        margin-bottom: 0.14rem;
        border-radius: 0.4rem;
        font-size: 0.26rem;
        text-decoration: none;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .service-btn.inactive {
        background-color: rgba(255,255,255,0.6);
        color: #333;
        border: 1px solid rgba(26,92,154,0.08);
        padding-left: 0.36rem;
    }

    .sidebar-card[style],
    a.sidebar-card[style] {
        padding: 0.3rem 0.32rem !important;
        border-radius: 0.2rem;
        box-shadow: 0 0.1rem 0.24rem rgba(18, 67, 108, 0.08);
        display: flex !important;
        align-items: center !important;
    }

    .sidebar-card[style] i,
    a.sidebar-card[style] i {
        font-size: 0.42rem !important;
        margin-right: 0.22rem !important;
        color: #1a5c9a !important;
        width: 0.78rem;
        height: 0.78rem;
        line-height: 0.78rem;
        text-align: center;
        background: #ffffff;
        border-radius: 50%;
        box-shadow: 0 0.04rem 0.12rem rgba(26,92,154,0.18);
        flex-shrink: 0;
    }

    .list-page-grid {
        grid-template-columns: 1fr;
        gap: 0.22rem;
    }

    .list-page-grid > aside {
        order: 1;
        width: 100%;
    }

    .list-page-grid > main {
        order: 2;
    }

    .list-sidebar {
        padding: 0.16rem;
        border-radius: 0.18rem;
    }

    .list-sidebar::before {
        top: -0.36rem;
        right: -0.2rem;
        width: 1.28rem;
        height: 1.28rem;
    }

    .list-sidebar::after {
        left: 0.16rem;
        right: 0.16rem;
    }

    .list-sidebar ul {
        display: flex;
        gap: 0.12rem;
        overflow-x: auto;
        padding-bottom: 0.06rem;
        scroll-snap-type: x proximity;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .list-sidebar ul::-webkit-scrollbar {
        display: none;
    }

    .list-sidebar ul li {
        flex: 0 0 auto;
        min-width: 2.16rem;
        margin-bottom: 0;
        scroll-snap-align: start;
    }

    .list-sidebar ul li a {
        min-height: 0.78rem;
        padding: 0.14rem 0.42rem 0.14rem 0.36rem;
        font-size: 0.24rem;
        border-radius: 0.16rem;
        box-shadow: 0 0.08rem 0.18rem rgba(18, 67, 108, 0.08);
        transform: none;
    }

    .list-sidebar ul li a::before {
        left: 0.16rem;
        width: 0.09rem;
        height: 0.09rem;
    }

    .list-sidebar ul li a::after {
        right: 0.16rem;
        width: 0.1rem;
        height: 0.1rem;
    }

    .list-sidebar ul li a:hover,
    .list-sidebar ul li a:focus-visible,
    .list-sidebar ul li.active a {
        transform: none;
    }

    .list-content {
        padding: 0;
    }

    .breadcrumb {
        gap: 0.1rem 0.12rem;
        padding: 0.16rem 0.16rem 0.16rem 0.2rem;
        border-radius: 0.16rem;
        margin-bottom: 0.22rem;
    }

    .breadcrumb::before {
        top: 0.16rem;
        bottom: 0.16rem;
    }

    .breadcrumb::after {
        right: -0.28rem;
        bottom: -0.38rem;
        width: 1rem;
        height: 1rem;
    }

    .breadcrumb-label {
        padding: 0.06rem 0.12rem;
        font-size: 0.18rem;
        box-shadow: none;
    }

    .breadcrumb-nav {
        gap: 0.08rem;
    }

    .breadcrumb-nav a {
        min-height: 0.48rem;
        max-width: 100%;
        padding: 0 0.14rem;
        font-size: 0.2rem;
        box-shadow: 0 0.06rem 0.14rem rgba(18, 67, 108, 0.04);
    }

    .breadcrumb-nav a + a {
        margin-left: 0.1rem;
    }

    .breadcrumb-nav a + a::before {
        left: -0.1rem;
    }

    .list-items {
        gap: 0.16rem;
    }

    .list-item {
        padding: 0.2rem 0.18rem 0.18rem 0.22rem;
        border-radius: 0.16rem;
        box-shadow: 0 0.12rem 0.24rem rgba(18, 67, 108, 0.07);
    }

    .list-item::before {
        top: 0.16rem;
        bottom: 0.16rem;
    }

    .list-item::after {
        width: 1.1rem;
        height: 1.1rem;
        right: -0.34rem;
        top: -0.34rem;
    }

    .list-item:hover,
    .list-item:focus-within {
        transform: none;
    }

    .list-item h3 {
        font-size: 0.3rem;
        margin-bottom: 0.1rem;
    }

    .list-item h3 a::after {
        margin-left: 0.12rem;
    }

    .item-date {
        gap: 0.06rem;
        font-size: 0.18rem;
        margin-bottom: 0.1rem;
        padding: 0.05rem 0.1rem;
    }

    .item-date::before {
        width: 0.08rem;
        height: 0.08rem;
    }

    .item-desc {
        padding-right: 0;
        font-size: 0.23rem;
        line-height: 1.8;
    }

    .sections-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.36rem;
    }

    .section-block {
        padding: 0;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
    }

    .section-block h2 {
        position: relative;
        font-size: 0.36rem;
        font-weight: 700;
        color: #1a5c9a;
        margin-bottom: 0.26rem;
        padding: 0.22rem 0.24rem 0.22rem 0.42rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 0.04rem solid #e4ecf5;
        border-radius: 0.12rem 0.12rem 0 0;
        background: linear-gradient(90deg, rgba(26,92,154,0.12) 0%, rgba(93,139,193,0.06) 50%, rgba(255,255,255,0) 100%);
        letter-spacing: 0.5px;
    }

    .section-block h2::before {
        content: "";
        position: absolute;
        left: 0.18rem;
        top: 0.24rem;
        bottom: 0.24rem;
        width: 0.08rem;
        border-radius: 0.04rem;
        background: linear-gradient(180deg, #1a5c9a 0%, #5d8bc1 100%);
        box-shadow: 0 0.02rem 0.06rem rgba(26,92,154,0.25);
    }

    .section-block h2::after {
        content: "";
        position: absolute;
        left: 0;
        right: auto;
        bottom: -0.04rem;
        height: 0.04rem;
        width: 1.4rem;
        background: linear-gradient(90deg, #1a5c9a 0%, #5d8bc1 100%);
        border-radius: 0.04rem;
        display: block;
    }

    .section-block h2 a.more,
    .section-block h2 span.more {
        font-size: 0.24rem;
        color: #5d8bc1;
        font-weight: 500;
        padding: 0.06rem 0.18rem;
        border-radius: 0.24rem;
        background: rgba(255,255,255,0.55);
        border: none;
        box-shadow: none;
        text-decoration: none;
    }

    .eresources-block {
        grid-template-columns: 1fr;
        gap: 0;
        display: block;
    }

    .eresources-block .link-list {
        grid-template-columns: 1fr;
    }

    .link-list {
        display: block;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .link-list li {
        display: block;
        position: relative;
        font-size: 0.28rem;
        line-height: 1.5;
        padding: 0.2rem 0.18rem 0.2rem 0.46rem;
        border-radius: 0.12rem;
        border-bottom: 1px dashed rgba(26,92,154,0.1);
        background: none;
    }

    .link-list li:last-child { border-bottom: none; }

    .link-list li::before,
    .link-list2 li::before {
        content: "";
        position: absolute;
        left: 0.18rem;
        top: 50%;
        width: 0.14rem;
        height: 0.14rem;
        margin-top: -0.07rem;
        border-radius: 50%;
        background: #5d8bc1;
        box-shadow: 0 0 0 0.04rem rgba(93,139,193,0.18);
        transform: none;
    }

    .link-list li a {
        display: block;
        min-height: 0;
        padding: 0;
        font-size: 0.28rem;
        color: #333;
        border: none;
        border-radius: 0;
        background: none;
        box-shadow: none;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .link-list li a::after {
        display: none;
    }

    .link-list2 {
        display: block;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .link-list2 li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding: 0.22rem 0.18rem 0.22rem 0.46rem;
        border-radius: 0.12rem;
        border-bottom: 1px dashed rgba(26,92,154,0.1);
        background: none;
        box-shadow: none;
        gap: 0.16rem;
    }

    .link-list2 li:last-child { border-bottom: none; }

    .link-list2 li a {
        flex: 1;
        width: auto;
        font-size: 0.28rem;
        line-height: 1.6;
        color: #333;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .link-list2 li > span {
        float: none;
        margin-left: 0.16rem;
        font-size: 0.22rem;
        padding: 0;
        background: none;
        border: none;
        color: #a8b4c2;
        flex-shrink: 0;
        font-family: Consolas, monospace;
    }

    .index-cat {
        height: auto;
        width: 100%;
        margin-bottom: 0.3rem;
        padding: 0 0.24rem;
    }

    .index-cat-ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.14rem;
    }

    .index-cat-ul li {
        flex: 0 0 calc(50% - 0.07rem);
        width: calc(50% - 0.07rem);
        height: 1.68rem;
        font-size: 0.16rem;
        color: #c94c00;
        font-weight: bold;
        margin: 0;
        position: relative;
    }

    .index-cat-ul li a {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #fff;
    }

    .index-cat-ul li img {
        width: 0.68rem;
    }

    .index-cat-ul li a span {
        display: block;
        position: absolute;
        top: 1.26rem;
        font-size: 0.22rem;
        color: #fff;
    }

    .index-cat-ul-li-01 {background-color: #f3a952;}
    .index-cat-ul-li-02 {background-color: #f39652;}
    .index-cat-ul-li-03 {background-color: #ff9f65;}
    .index-cat-ul-li-04 {background-color: #f48e43;}
    .index-cat-ul-li-05 {background-color: #f37452;}

    .main {
        width: 100%;
        margin-bottom: 0.32rem;
    }

    .article-container {
        padding: 0.22rem 0.2rem 0.24rem;
        border: 1px solid #e3edf7;
        border-radius: 0.18rem;
        background: #fff;
        box-shadow: 0 0.12rem 0.24rem rgba(18, 67, 108, 0.06);
    }

    .article-title {
        font-size: 0.38rem;
        line-height: 1.45;
        margin-bottom: 0.12rem;
    }

    .article-date {
        font-size: 0.22rem;
        margin-bottom: 0.22rem;
        padding-bottom: 0.16rem;
    }

    .article-details {
        font-size: 0.24rem;
        line-height: 1.85;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .article-details p {
        margin-bottom: 0.22rem;
        text-align: left;
    }

    .article-details img {
        max-width: 100%;
        height: auto;
    }

    .article-details table {
        display: block;
        width: 100% !important;
        max-width: 100%;
        overflow-x: auto;
    }

    .article-details iframe,
    .article-details video,
    .article-details embed,
    .article-details object {
        max-width: 100%;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 0.18rem;
    }

    .download-item {
        padding: 0.32rem 0.2rem;
    }

    .pages {
        margin-top: 0.22rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.08rem;
    }

    .pages > span {
        margin-bottom: 0.08rem;
        min-width: 0.56rem;
        height: 0.56rem;
        line-height: 0.56rem;
        margin-left: 0;
        margin-right: 0;
    }

    .pages .prev,
    .pages .next,
    .pages .pageEnd {
        min-width: 1rem;
    }

    .footer {
        height: initial;
        background-color: #f5f5f5;
        color: f5f5f5;
        font-size: 0.24rem;
    }

    .footer .footer-panel {
        width: 100%;
        margin: 0 auto;
        line-height: initial;
        padding: 0.2rem 0.24rem;
        height: initial;
    }

    .footer .footer-panel .left-link {
        clear: both;
        width: 100%;
        text-align: center;
        margin-bottom: 0.2rem;
    }

    .footer .footer-panel .left-link a,
    .footer .footer-panel .left-link a:hover {
        color: #666;
    }

    .footer .footer-panel .right-copyright {
        clear: both;
        width: 100%;
        text-align: center;
        line-height: 3em;
    }
    .nav-footer{
        display: none !important;
    }
}