@bg-border: #e9e9e9;
@popmenu-border-radicus: 6px;
@popmenu-width: 110px;
@popmenu-item-height: 36px;

//弹出|下拉菜单样式
.yyui-popmenu {
    position: fixed;
    z-index: 99999;
    .yyui-menu{
        width: @popmenu-width;
        box-shadow: 1px 1px 4px @bg-border;
        border: 1px solid @bg-border;
        border-radius: @popmenu-border-radicus;
        .ant-menu-item {
            height: @popmenu-item-height;
            line-height: @popmenu-item-height;
            border-bottom: 1px solid @bg-border;
            .yyui-icon{
                margin-left: -15px;
            }
            &:first-child {
                border-top-left-radius: @popmenu-border-radicus;
                border-top-right-radius: @popmenu-border-radicus;
            }
            &:last-child {
                border-bottom-left-radius: @popmenu-border-radicus;
                border-bottom-right-radius: @popmenu-border-radicus;
            }
        }
    }
}