$(document).ready(function () {
    //初始化动画
    if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) {
        new WOW().init();
    }
    ;

    //在线客服
    $('.scroll-top').click(function () {
        $('html,body').animate({scrollTop: '0px'}, 800);
    });

    $('.online dl').on("mouseover", function () {
        $(this).find("dt").show();
        $(this).siblings().find("dt").hide();
    });

    $('.online dl').find('.remove').on("click", function () {
        $(this).parents("dt").hide();
    });

    $(window).scroll(function () {
        if ($(document).scrollTop() <= 100) {
            $('.online .scroll-top').hide();
        } else {
            $('.online .scroll-top').show();
        }
    });

    $('.nav-item').hover(function (e) {
        console.log($(window).width());
        var window_width = $(window).width();
        window_width > 990 && $(this).find('.sub-nav-link').slideDown(0, function () {
            $(this).show();
        }).animate({"opacity": 1}, 0, function () {
            $(this).css("opacity", 1);
        });
    }, function () {
        $(this).find('.sub-nav-link').slideUp(0, function () {
            $(this).hide();
        }).animate({"opacity": 0}, 0, function () {
            $(this).css("opacity", 0);
        });
    });
    $('.sub-nav-link').each(function (i, e) {
        $(this).css('left', -1 * $(this).width() / 2 + $('.nav-item').eq(i).width() / 2).hide()
    })
});