
//jQuery页面美化

$(document).ready(function(){
	$('.std_listout1 > li:last-child').css("margin-bottom","0");
	$('.std_listout1 > li').hover(
		function(){$(this).addClass("select_list");},
		function(){$(this).removeClass("select_list");}
	);
	
	$('.recommended li:last-child').css("margin-bottom","0");
	
	$('.searchBar select').addClass("select_serchBar");
	
	$('.withAvator_main_list:last-child').css("border-bottom","none");
	$('.withAvator_main_list:last-child').css("padding-bottom","0");
	$('.withAvator_main_list:last-child .info_preview').css("padding-bottom","0");
	
	$('.abody .ranking_list:last-child').css("border-bottom","none");
	$('.abody .ranking_list:last-child').css("padding-bottom","0");
	$('.abody .ranking_list:nth-child(1) .ranking_img').addClass("r_no1");
	$('.abody .ranking_list:nth-child(2) .ranking_img').addClass("r_no2");
	$('.abody .ranking_list:nth-child(3) .ranking_img').addClass("r_no3");
	$('.abody .ranking_list:nth-child(4) .ranking_img').addClass("r_no4");
	$('.abody .ranking_list:nth-child(5) .ranking_img').addClass("r_no5");
	
	$('.box_bestAnswer').css({"border-bottom":"1px solid #f5686f","padding-bottom":"10px"});
	
});









