﻿/* 导航外层容器 */
.menu-wrap {
    position: relative;
    width: 100%;
}

/* 横向滑动菜单核心 */
    .menu-wrap .ucmenu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding: 10px;
        cursor: grab;
        position: relative;
        z-index: 1; /* 菜单层级低 */
    }

        .menu-wrap .ucmenu:active {
            cursor: grabbing;
        }

        .menu-wrap .ucmenu::-webkit-scrollbar {
            display: none;
        }

    /* 菜单按钮 */
        .menu-wrap .ucmenu a {
            flex-shrink: 0;
            padding: 10px 18px;
            background: #f2f2f2;
            border-radius: 6px;
            color: #333;
            text-decoration: none;
            white-space: nowrap;
            font-size: 14px;
            user-select: none;
        }

        /* 高亮样式 */
            .menu-wrap .ucmenu a.active {
                background: #003466;
                color: #fff;
            }

/* ========== 修复：箭头层级提高，永远在菜单上方 ========== */
    .menu-wrap .arrow-left,
    .menu-wrap .arrow-right {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 99; /* 关键修复：最高层级 */
    }

    .menu-wrap .arrow-left {
        left: 0;
        background: linear-gradient(to right, #fff 60%, transparent);
    }

    .menu-wrap .arrow-right {
        right: 0;
        background: linear-gradient(to left, #fff 60%, transparent);
    }

        .menu-wrap .arrow-left.show,
        .menu-wrap .arrow-right.show {
            opacity: 1;
        }

/* 箭头图标 */
    .menu-wrap .arrow-left i {
        display: block;
        width: 8px;
        height: 8px;
        border-left: 2px solid #007bff;
        border-bottom: 2px solid #007bff;
        transform: rotate(45deg);
    }

    .menu-wrap .arrow-right i {
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid #007bff;
        border-bottom: 2px solid #007bff;
        transform: rotate(-45deg);
    }
/*****/
.pub-banner {
    height: 2rem;
    background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.7));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}
    .pub-banner .banner-content {
        width: 100%;
    }
    .pub-banner h1 {
        font-size: 0.24rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .pub-banner p {
        font-size: 0.16rem;
        line-height:1.6;
        margin: 0 auto;
    }
/*****/
.aboutintro .intronr {
    padding:0.1rem 0.2rem;
}
.aboutintro .intronr p {
    font-size:0.16rem;
    text-indent:2em;
    line-height:1.5;
}
.aboutintro h3{
    font-weight:bold;
    font-size:0.18rem;
}
.aboutintro .timeline {
    margin: 0.3rem 0;
    padding-left: 0.2rem;
    border-left: 3px solid #f97316;
}

.aboutintro .timeline-item {
    margin-bottom: 0.3rem;
    position: relative;
}

    .aboutintro .timeline-item:before {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        background-color: #f97316;
        border-radius: 50%;
        left: -0.29rem;
        top: 5px;
    }

.aboutintro .timeline-year {
    font-weight: bold;
    color: #f97316;
    font-size: 0.2rem;
}

.aboutintro .timeline-content {
    margin-top: 5px;
}
.aboutintro .stats-grid::after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.aboutintro .stat-card {
    float:left;
    width:48%;
    margin-right:4%;
    margin-bottom:0.16rem;
    text-align: center;
    padding: 0.2rem;
    background-color: rgba(10, 36, 99, 0.05);
    border-radius: 0.06rem;
    transition: transform 0.3s;
}
    .aboutintro .stat-card:nth-child(2n+2) {
        margin-right: 0%;
    }
    .aboutintro .stat-card:hover {
        transform: translateY(-5px);
    }

.aboutintro .stat-number {
    font-size: 0.24rem;
    font-weight: bold;
    color: #0a2463;
    margin-bottom: 0.1rem;
}

.aboutintro .stat-text {
    color: #6c757d;
}
/*****/
.aboutnr{
    width:94%;
    margin:0 auto;
}
    .aboutnr .albumitem img {
        display:block;
        width:100%;
    }
    .aboutnr .albumitem {
        background-color: #FFF;
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 0.2rem;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px;
    }
.aboutnr {
}
    .aboutnr .abt {
        line-height:0.4rem;
        text-align:center;
    }