<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">var isTouch = Modernizr.touch,
	isMobile = false,//åŒºåˆ†ç§»åŠ¨ç«¯ä¸ŽPCç«¯
	mobile = false,//åŒºåˆ†æ‰‹æœºç«¯ä¸Žå¹³æ¿
	w_width = 0,
	w_height = 0,
	bannerImgh=638,
	navItem = 0,
	h_height=0,
	roll=0,
	sTop=150,
	produs=0,
	ST = 0;
	
var _mousemove;
var _click;
var _mousedown;
var _mouseup;

//ç§»åŠ¨ç«¯äº‹ä»¶å’ŒPCäº‹ä»¶çš„åˆ‡æ¢
if (Modernizr.touch) {
    _mousemove = "touchmove";
    _click = "touchend";
    _mousedown = "touchstart";
    _mouseup = "touchend";
} else {
    _mousemove = "mousemove";
    _click = "click";
    _mousedown = "mousedown";
    _mouseup = "mouseup";
};

function pageBox() {
    w_width = jQuery(window).width();
    w_height = jQuery(window).height();

	//è®¾ç½®ç§»åŠ¨ç«¯å‚æ•°
    if (w_width &lt;= 1024) {
        isMobile = true;
    } else if (w_width &gt; 1024) {
        isMobile = false;
    };
	//åŒºåˆ†æ‰‹æœºç«¯å’Œå¹³æ¿
    if (w_width &lt;= 640) {
        mobile = true;
    } else if (w_width &gt; 640) {
        mobile = false;
    };
	if(!isMobile){
		ST = $(window).scrollTop();
        if (ST &lt; 1) {
            $('.headers').removeClass('scollfox');
        } else {
            $('.headers').addClass('scollfox');
        }
        $(window).scroll(function () {
            ST = $(window).scrollTop();
            if (ST &lt; 1) {
                $('.headers').removeClass('scollfox');
            } else {
                $('.headers').addClass('scollfox');
            }
        });
	}else{
		$(".micro-info,.microtext,.lovelife,.creatimg,.cdynamic,.personnel,.aboubox,.culture-info,.commonwealtop,.phostop,.commonwealist li,.finace,.personner-info,.need,.position,.need-info").removeClass('article-block');
	}
}
pageBox();
jQuery(window).resize(function () {
    pageBox();
});
$( '#menu_toggle' ).on('click', function(e) {
	e.stopPropagation();
	$('.menus &gt; li').removeClass('on');
	$('.menufix').slideUp();
	$(this).toggleClass('active');
	$('.menu-list').toggleClass('on');
});

$(".isearch span").click(function(e){
	e.stopPropagation();
	$(".searchBox").slideToggle();
});

$(document).on('click',function(e){ 
    e.stopPropagation();
	$(".searchBox,.iphone-down").slideUp();
});

$('.iphone-fix span').click(function(e){
	e.stopPropagation();
	$('.iphone-down').slideToggle();
});

var index_ = $(".navs-li &gt;li.active").index();
$(".navs-li &gt;li").hover(function(){
	$(this).addClass("active").siblings().removeClass("active");
},function(){
	$(".navs-li &gt;li").removeClass("active").eq(index_).addClass("active");
});

jQuery(".menus &gt; li &gt; a").bind("click", function (e) {
	var $navMobile=jQuery(".menu-list"),
		$navA=$navMobile.find(".menus &gt; li &gt; a"),
		$mSubnav=$navMobile.find(".menufix");
	var hjcur = $(this);
	var hjDD = $(this).parents("li");
	if (hjDD.find(".menufix").size() &gt; 0) {
		if (hjDD.hasClass("on")) {
			$navMobile.slideUp();
			hjDD.find(".menufix").stop(false, false).slideUp();
			hjDD.removeClass("on");
			$navMobile.slideUp();
		} else {
			$navA.parents('li').removeClass("on");
			$mSubnav.stop(false, false).slideUp();
			hjDD.find(".menufix").stop(false, false).slideDown();
			hjDD.addClass("on");
			e.preventDefault();
		}
	}
});

getHash();
jQuery(".strategy-info a,.meundown li a,.menu-leval li a").click(function(e){
	var hash=jQuery(this).attr("href").split("#")[1];
	if(hash &amp;&amp; jQuery("#"+hash).length==1){
		e.preventDefault();
		setScroll("#"+hash);
	}
	$(".menubox").fadeOut();
	$(".menu").removeClass("active");
});

function getHash(){
	var hash = location.href.split("#")[1];
	if(hash){
		setScroll("#"+hash);
	}
};
var scnum=0;
function setScroll(anchorCur){
	scnum=$(".header-box").outerHeight();
	jQuery("html,body").animate({ scrollTop: jQuery(anchorCur).offset().top-scnum},1000,'easeInOutExpo');
};

$('.backtop').click(function(e){
	e.preventDefault();
	jQuery("html,body").animate({ scrollTop: 0}, 600, 'easeInOutExpo');
});


setPopUp($('.weix'), "å¾®ä¿¡å…¬ä¼—å·");

function setPopUp(obj, title) {
	obj.click(function() {
		var str = '&lt;div class="popUpblack"&gt;&lt;div class="popUp"&gt;&lt;div class="t"&gt;' + title +
			'&lt;span class="close"&gt;å…³é—­&lt;/span&gt;&lt;/div&gt;&lt;div class="img"&gt;&lt;img src="' + obj.attr("href") + '"/&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;';
		$("body").append(str);
		jQuery(".popUpblack").fadeIn();
		jQuery(".popUp").animate({
			marginTop: "-127"
		}, 400);
		$(".popUp .close").click(function() {
			$(".popUpblack").remove();
		});
		jQuery(".popUpblack").click(function() {
			$(".popUpblack").remove();
		});
		return false;
	});
};

function setImgMax(img, imgW, imgH, tW, tH) {
    var tWidth = tW || w_width;
    var tHeight = tH || w_height;
    var coe = imgH / imgW;
    var coe2 = tHeight / tWidth;
    if (coe &lt; coe2) {
        var imgWidth = tHeight / coe;
        img.css({ height: tHeight, width: imgWidth, left: -(imgWidth - tWidth) / 2, top: 0 });
    } else {
        var imgHeight = tWidth * coe;
        img.css({ height: imgHeight, width: tWidth, left: 0, top: -(imgHeight - tHeight) / 2 });
    };
};


</pre></body></html>