/* 
    Created on : 2019-1-18, 10:45:22
    Author     : xctx
*/
/*插件的公共JS*/

/*右键菜单样式*/
.xc-mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    overflow: hidden;
    z-index: 1499;
}
.xc-right-menus{
    position: absolute;
    /*width: 130px;*/
    min-width: 100px;
    padding: 8px 15px;
    height: auto;
    background-color: rgba(0,0,0,.5);
    border-radius: 8px;
    box-shadow: 0 0 2px rgba(33,55,66,.5);
    box-sizing: border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    z-index: 1500;
}
.xc-right-menus a{
    display: block;
    width: 100%;
    height: 35px;
    text-align: left;
    color: #fff;
    line-height: 35px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,4);
}
.xc-right-menus a:last-child{
    border-bottom: none;
}
.xc-right-menus a:hover{
    color: #009688;
}

/*右键元素设置背景*/
.xc-right-active{
   background-color: rgba(255,255,255,.5)!important; 
}
/*.xc-outer{ 
    width:0px;height:0px;display:block;
    border-bottom:10px solid #AFAFAF;
    border-left:10px solid transparent;
    border-right:10px solid transparent; 制作上三角
}
.xc-inner{
    width:0px;height:0px;display:block;
    border-bottom:9px solid #FFFFFF;
    border-left:9px solid transparent;
    border-right:9px solid transparent;
    position:relative;left:1.4px;top:-8px;
}*/


/*输入框联想提示*/
.autocomplete-suggestions { 
    border-radius: 8px;
    border: 1px solid #999; 
    background-color: #595959; 
    cursor: default; 
    overflow: auto; 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); 
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); 
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); 
}
.autocomplete-suggestion { 
    padding: 8px 8px;
    color: #fff;
    white-space: nowrap; 
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,.5);
}
.autocomplete-suggestion:last-child{
    border-bottom: none;
}
.autocomplete-no-suggestion { 
    padding: 2px 5px;
}
.autocomplete-selected {
    background: #303030;
}
.autocomplete-suggestions strong { 
    font-weight: bold; 
    color: #009688;
}
.autocomplete-group { 
    padding: 2px 5px; 
}
.autocomplete-group strong {
    font-weight: bold; 
    font-size: 16px;
    color: #000;
    display: block; 
    border-bottom: 1px solid #000; 
}
