//table背景色
$(function(){
	$('.fee table tr:odd td').addClass('odd-row');
	$('.fee table tr:even td').addClass('even-row');

	$('.fee table td:nth-child(1)').addClass('fee-first-td');
	$('.fee table td:nth-child(2)').addClass('fee-second-td');
});
