 /* 新增样式 */
    /* 添加容器约束 */
    .nav-container10 {
        position: relative;
        display: inline-block;
        max-width: 100%;
    }

    /* 修改后的响应式样式 */
    .centralsectionNav10 {
        display: none;
        position: absolute;
        top: 100%;
        /* 直接位于父容器底部 */
        left: 0;
        /* 与父容器左对齐 */
        width: 100%;
        /* 继承父容器宽度 */
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        /* 添加响应式调整 */
        min-width: 200px;
        /* 最小宽度保持可读性 */
        max-width: 300px;
        /* 最大宽度防止过宽 */
    }

    /* 父容器添加响应式基准 */
    .navigationbarDiv10 {
        position: relative;
        display: inline-block;
        /* 使宽度由内容决定 */
        width: auto;
        /* 移除固定宽度 */
        min-width: 200px;
        /* 保持最小可点击区域 */

        height: 40px;
        background-color: #ed5736;
        align-items: center;
        cursor: pointer;
    }

    /* 子菜单内容适配 */
    .menukgroundUi10 {

        /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    padding: 10px;
    gap: 8px; */
        font-size: 12px;
        display: flex;
        flex-wrap: wrap;
        padding: 0px 25px 20px 0px;

    }

    /* 响应式断点调整 */
    @media (max-width: 768px) {
        .centralsectionNav10 {
            position: fixed;
          
            width: 100vw;
            left: 0;
            top: 165px;
        
            box-shadow: none;
        }

        .navigationbarDiv10 {
            width: 100%;
           
            justify-content: center;
        }
    }

    /* 添加动态对齐修正 */
    .navigationbarDiv10:hover .centralsectionNav10 {
        left: 50%;
        /* 水平居中 */
        transform: translateX(-50%);
        /* 精确居中定位 */
        width: max-content;
        /* 根据内容自适应 */
    }