$(function() {

	//·µ»Ø¶¥²¿
	$(".go-top").click(function(){
		$("body,html").animate({"scrollTop":"0"},500)
	});

	//ÓÒ²à¶þÎ¬ÂëÏÔÊ¾

	$(".kefu .list4").mouseover(function(){
		$(this).children(".wx-ewm").fadeIn();
	}).mouseleave(function(){
		$(this).children(".wx-ewm").fadeOut();
	})
});