<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function () {
  var swiperBanner = new Swiper(".swiperBanner", {
    autoplay: {
      delay: 2500,
      disableOnInteraction: false,
    },
    pagination: {
      el: ".swiper-pagination",
      clickable: true,
    },
  });

  var swiperTips = new Swiper(".swiperTips", {
    autoplay: {
      delay: 4500,
      disableOnInteraction: false,
    },
    direction: "vertical",
    spaceBetween: 5,
    loop: true,
  });

  $(".public-servive")
    .find(".avatar")
    .click(function () {
      $(this).hide().siblings().show();
    });

  $(".public-servive")
    .find(".chatbox .header i")
    .click(function () {
      $(".public-servive").find(".chatbox").hide().siblings().show();
    });

  $(".public-logo")
    .find(".btn")
    .click(function () {
      if ($(".public-menu").find(".w1200").css("display") == "none") {
        $(".public-menu").find(".w1200").slideDown();
      } else {
        $(".public-menu").find(".w1200").slideUp();
      }
    });

  $(".i_form").ajaxForm({
    dataType: "json",
    beforeSerialize: function () { },
    success: function (json) {
      if (json.state == "ok") {
        alert("提交成功！");
        history.go(0);
      }
      if (json.state == "fail") {
        alert(json.message);
      }
    },
  });

  $(".lazyload").lazyload();
});
</pre></body></html>