/*PC大图*/
$(".fullSlide").slide({ titCell:".hd ul", mainCell:".bd ul", effect:"fold", interTime: 5000,  autoPlay:true, autoPage:true, trigger:"click" });

/*手机大图*/
var swiper = new Swiper('.banner_list', {
spaceBetween:0,
autoplay:true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
});
/*常见问题-手风琴*/
$("#sideMenu").slide({titCell:"dt", targetCell:"dd", effect:"slideDown", delayTime:300 , triggerTime:150, defaultPlay:true,returnDefault:false,trigger:"click" });
/*悬浮客服*/
$(function () {
    $('#toolbar dd').bind({
        'mouseenter': function () {
            if ($(this).children('.slide').length) {
                var _this = $(this).children('.slide');
                _this.stop(true, true).animate({ 'width': 180 }, 200);
            } else if ($(this).children('.pop').length) {
                var _this = $(this).children('.pop');
                _this.show().animate({ 'right': 65 }, 200);
            }
        },
        'mouseleave': function () {
            if ($(this).children('.slide').length) {
                var _this = $(this).children('.slide');
                _this.stop(false, false).animate({ 'width': 0 }, 200);
            } else if ($(this).children('.pop').length) {
                var _this = $(this).children('.pop');
                _this.hide().animate({ 'right': 90 }, 200);
            }
        }
    });
    $("#top").click(function () {
        $("body, html").stop().animate({ "scrollTop": 0 });
    });
});
/* 微信提示 */
	var btn=document.getElementById('btn');
	var clipboard=new Clipboard(btn);
	clipboard.on('success', function(e){
		$('#weixin').slideDown().delay(1500).slideUp(500);
		console.log(e);
	});
	clipboard.on('error', function(e){
		$('#weixin').slideDown().delay(1500).slideUp(500);
		console.log(e);
	});
/* 微信弹窗 */
function dkcf(){$('#wxnr').fadeIn("fast");$('#fdwx').fadeOut("fast");}
function gbcf(){$('#fdwx').fadeIn("slow");$('#wxnr').fadeOut("fast");}