<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.EgQuickMenu
{
    position:absolute;z-index:20000000;
    box-shadow:rgba(0,0,0,0.3) 0px 0px 10px;
    display:none;background-color:#FFFFFF;overflow:auto;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
.EgQuickMenu::-webkit-scrollbar  
{  
    width:8px;height:8px;background-color: #FFFFFF;  
}  
/*定义滑块 内阴影+圆角*/  
.EgQuickMenu::-webkit-scrollbar-thumb
{
    background-color: #DDDDDD;
    border-radius: 8px;  
}


.EgQuickMenuInput
{
    position:absolute;z-index:1;
    width:0px;height:0px;left:0px;top:0px;background-color:#FFFFFF;color:#FFFFFF;overflow:hidden;
}
.EgQuickMenu_item
{
    margin:0px 0px;overflow:hidden;background-color:#FFFFFF;cursor:pointer;
    position:relative;z-index:2;padding:8px 10px;transition:all 0.3s;color:#48576a;
}
.EgQuickMenu_item[enabled="true"]:hover
{
    background-color:#eff2f6;
}
.EgQuickMenu_item[enabled="false"]
{
    cursor:default;opacity:0.2;
}
.EgQuickMenu_item_icon
{
    width:20px;height:20px;float:left;
    background-repeat:no-repeat;background-position:center center;background-size:cover;
}
.EgQuickMenu_item_icon[firstText]
{
    width:24px;height:24px;
    text-align:center;line-height:24px;overflow:hidden;
    border-radius:12px;background-color:#4385bc;color:#FFFFFF;
}
.EgQuickMenu_item_icon:before
{
	font-size:16px;line-height:20px;
}
.EgQuickMenu_item_text
{
    float:left;margin:0px 6px;
}
.EgQuickMenu_item_remark{
    float:right;padding:2px 5px;color:#92a2ab;font-size:12px;margin-left:20px;
}
.EgQuickMenu_line
{
    height:1px;background-color:#a5a1a1;overflow:hidden;
    margin:2px 5px;cursor:default;padding:0px;
}

</pre></body></html>