let num=$(".notice-list").find("li").length;
if (num>1) {
setInterval(function(){
$('.notice-list').animate({
marginTop:"-26px"
},600,function(){
$(this).css({marginTop : "0"}).find("li:first").appendTo(this);
});
}, 3000);
}