.widget-button-box{
    display: block;
    height: 60px;
    clear: both;
    padding: 5px 15px 10px;
    background: linear-gradient(180deg, #ffffff 0%, #e6e6e6 44%, #ffffff 100%);
    border: 1px solid #bbc2c9;
    border-left: 0;
    border-bottom-color: #e6e6e6;
    border-radius: 0 20px 4px 0;
    margin-bottom: -11px;
    box-sizing: border-box;
}
.widget-button-box:hover{
    background: linear-gradient(180deg, #f0f0f0 0%, #dcdcdc 44%, #f0f0f0 100%);
}
.widget-button-box .icon{
    float: left;
    margin-right: 10px;
}
.widget-button-box .icon img{
    width: 40px;
    max-height: 40px;
    border: 0;
    padding: 3px;
    box-sizing: border-box;
}
.widget-button-box .title{
    display: inline-block;
    line-height: 45px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    width: calc(100% - 50px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.widget-button-box:hover .title{
    color: #222;
}