$(function() {
// 手机导航
$('.menuBtn').append('');
$('.menuBtn').click(function(event) {
$(this).toggleClass('open');
var _winw = $(window).width();
var _winh = $(window).height();
if ($(this).hasClass('open')) {
$('body').addClass('open');
if (_winw <= 1199) {
$('.nav').stop().slideDown();
}
} else {
$('body').removeClass('open');
if (_winw <= 1199) {
$('.nav').stop().slideUp();
}
}
});
// 选项卡
$(".TAB_CLICK2 li").click(function() {
var tab = $(this).parent(".TAB_CLICK2");
var con = tab.attr("id");
var on = tab.find("li").index(this);
$(this).addClass('on').siblings(tab.find("li")).removeClass('on');
// $(con).eq(on).show().siblings(con).hide();
$(con).eq(on).addClass('on').siblings(con).removeClass('on')
});
$('.TAB_CLICK2').each(function(index, el) {
$(this).find("li").filter(':first').trigger('click');
});
})