/**
* 基础JS
*/
$(document).ready(function(){
$('.gotop').click(function(){
$('html,body').animate({ scrollTop: '0px' },800);
});