<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
function makeFooter(){
  // 撠誩偕撖詨�閖�其漱鈭�
  var footer = $('#footer');
  var footerTitles = footer.find('.top-content ul .title');
  footerTitles.on('click', function () {
    var title = $(this);
    var width = $(window).width();
    if(width &gt; 575) return false;
    var slideBox = $(this).siblings('.top-content-list');
    if(slideBox.length === 0) return false;
    if(slideBox.attr('status') === '1') {
      slideBox.slideUp();
      slideBox.attr('status', '0');
      title.find('.iconfont').removeClass('icon-arrow-up').addClass('icon-arrow-down');
    }else {
      slideBox.slideDown();
      slideBox.attr('status', '1');
      title.find('.iconfont').removeClass('icon-arrow-down').addClass('icon-arrow-up');
    }
  });
}
makeFooter();
</pre></body></html>