new Sortable(list_wrap, {
handle: '.list_con', // 拖拽触发的容器类名
animation: 150,
// direction: 'horizontal',
});
$(".list_con .iconshanchu").bind('touchstart', function () {
$(this).parent().parent().remove();
event.preventDefault();
event.stopPropagation();
});