//服务类型
$('.z_fw_bg .xz_img').mouseenter(function(){
$(this).find('img.z_img90').css("display","none");
$(this).find('img.zx_img90').css("display","block");
})
$('.z_fw_bg .xz_img').mouseleave(function(){
$(this).find('img.z_img90').css("display","block");
$(this).find('img.zx_img90').css("display","none");
})
//鼠标移入 ,图标变色——6大工作模块下,心理健康特色学校项目的实施方案
$(".x_model .top ul li").mouseenter(function(){
$(this).find("img.lan").css("display","block");
$(this).find("img.hui").css("display","none");
});
$(".x_model .top ul li").mouseleave(function(){
$(this).find("img.lan").css("display","none");
$(this).find("img.hui").css("display","block");
});
//
$('.z_fw_bg .xz_img').click(function(){
$(this).find('img.z_img90').hide();
$(this).find('img.zx_img90').show();
})