//点击空白处关闭
    $(document).mouseup(function(e) {
        var _con = $('.ic_third'); // 设置目标区域
        if(!_con.is(e.target) && _con.has(e.target).length === 0) {
            $('.positionBox').hide();
        }
    });