$("header ul li").on("mouseenter", function () {
  $(this).children(".drop").slideDown(500)
})
$("header ul li").on("mouseleave", function () {
  $(this).children(".drop").css("display", "none")
})

// var swiper = new Swiper('.banner', {
//   autoplay: true,
//   pagination: {
//     el: '.swiper-pagination',
//     dynamicBullets: true,
//   },
//   navigation: {
//     nextEl: ".swiper-button-next",
//     prevEl: ".swiper-button-prev",
//   }
// });

$('.back-top').click(function () {
  $('body,html').animate({ scrollTop: 0 }, 400)
})