/* 移动端显示 */
@media (max-width: 768px) {
    .mobile-menu-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        padding: 0px 0 ;
    }

    .mobile-bottom-menu {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-size: 12px;
        padding: 7px 10px;
        flex: 1;
        text-align: center;
    }

    .menu-item i {
        font-size: 20px;
        margin-bottom: 3px;
    }
}

/* 桌面端隐藏 */
@media (min-width: 769px) {
    .mobile-menu-wrapper {
        display: none !important;
    }
}