$(function () {    $('#sidebar').simplerSidebar({        opener: '#sidebar-toggle',        sidebar: {            align: 'left',            width: 200        }    });    var indexBannerSwiper = new Swiper('.index_banner .swiper-container', {        loop: true,        speed: 1000,        autoplay: {            delay: 3500,            disableOnInteraction: false        },        pagination: {            el: '.swiper-pagination',            clickable: true        }    });    $(".index_prod").slide({        trigger: "click",        effect: 'fade',        titCell: '.hd1 li',        mainCell: '.bd1'    });    var indexHonorSwiper = new Swiper('.index_honor .swiper-container', {        spaceBetween: 15,        speed: 1000,        autoplay: {            delay: 3500,            disableOnInteraction: false        },        navigation: {            nextEl: '.index_honor .swiper-btn-next',            prevEl: '.index_honor .swiper-btn-prev',        },        breakpoints: {            1024: {                slidesPerView: 2,                spaceBetween: 15,            },            768: {                slidesPerView: 3,                spaceBetween: 12,            },            576: {                slidesPerView: 2,                spaceBetween: 10,            }        }    });    $(".index_news").slide({        trigger: "click",        effect: 'fade',        titCell: '.hd1 li',        mainCell: '.bd1'    });    $("[data-fancybox]").fancybox({        buttons: [            "zoom",            // "fullScreen",            "thumbs",            "download",            "close"        ],        // animationEffect: "fade",        animationEffect: "zoom-in-out",    });    // 悬浮窗口    $(".yb_conct").hover(function () {        $(".yb_conct").css("right", "5px");        $(".yb_bar .yb_ercode").css('height', '200px');    }, function () {        $(".yb_conct").css("right", "-127px");        $(".yb_bar .yb_ercode").css('height', '53px');    });    // 返回顶部    $(".yb_top").click(function () {        $("html,body").animate({            'scrollTop': '0px'        }, 300)    });    var prodNavInitialSlide = $('.prod-nav .swiper-slide.on').index();    var prodNav = new Swiper(".prod-nav .swiper-container", {        effect: 'left',        spaceBetween: 0,        slidesPerView: 'auto',        watchSlidesProgress: true,        initialSlide: prodNavInitialSlide,        speed: 1000,        navigation: {            nextEl: '.prod-nav .swiper-btn-next',            prevEl: '.prod-nav .swiper-btn-prev',        },    });});