/********************【自定义侧边栏样式】*********************/

/* 菜单按钮 */
.menu-btn {
    opacity: 1 !important;
    cursor: pointer;
    z-index: 12;
    position: relative;
    background: transparent !important;
    border: none !important;
    font-size: 24px !important;
    padding: 0 10px !important;
    color: white !important;
}

/* 侧边栏遮罩层 */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

/* 侧边栏 */
ion-side-menu[side="left"] {
    z-index: 5 !important;
}

/* 内容区域 */
[ion-side-menu-content] {
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* 侧边栏菜单项 */
.sidebar-item:active {
    background: #f5f5f5;
}