
$('.industry_div >div').mouseenter(function(){
    $(this).find('.industry_div_title').css('bottom',0);
}).mouseleave(function(){
    $(this).find('.industry_div_title').css('bottom',-40);
})