<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">function goTop(){
	$(window).scroll(function(e) {
		if($(window).scrollTop()&gt;100)
			$(".gotop").fadeIn(350).css("display","block");
		else
			$(".gotop").fadeOut(350).css("display","none");
	});
		
	$(".gotop").click(function(e) {
		$('body,html').animate({scrollTop:0},500);
		return false;
	});		
};


$(document).ready(function() { 
	//搴曢儴鍥哄畾鍖哄煙鍗犱綅
	if( $(".fixed-bottom").is(":visible") ){
		$("#wrapper").css( "paddingBottom",$(".fixed-bottom").height() );
	}else{
	}
	
	
	//杩斿洖椤堕儴
	goTop();
	
	//鍐呭鍔犺浇鍚庣殑杩愬姩鏁堟灉
	dataAnimate();	
	
	
	// 澶氳瑷€
	$('.language ul.sf-menu').superfish({ 
		delay:       500,
		animation:   {opacity:'fast',height:'show'},
		speed:       'fast',
		autoArrows:  true,
		dropShadows: false
	});
	
	// 瀵艰埅鑿滃崟
	$('.main-nav ul.sf-menu').superfish({ 
		delay:       500,
		animation:   {opacity:'fast',height:'show'},
		speed:       'fast',
		autoArrows:  true,
		dropShadows: false
	});
	$('.main-nav ul.sf-menu &gt; li').last().addClass('last').end().hover(function(){ $(this).addClass('nav-hover'); },function(){ $(this).removeClass('nav-hover'); });
	
	
	//鑿滃崟鍔ㄦ€佸垏鎹㈤〉闈㈡晥鏋�
	$(".main-nav li a, .logo a").click(function(){		
		if( $(this).attr("target") != "_blank"){
			if( $(this).attr("href") != "javascript:;" &amp;&amp; $(this).attr("href") != "#" )
			return openwork($(this).attr("href"));
		
		}
    });
	function openwork(url){
		$("#wrapper").css({'-webkit-animation':"bounceIn 0.5s .25s ease both",'-moz-animation':'bounceIn 1s .25s ease both','animation':'bounceIn 0.5s .25s ease both'});
		$("body").append("&lt;div class='page-cover'&gt;&lt;/div&gt;").css("position","relative");		
		$(".page-cover").delay(600).animate({"height":$(document).height()},800,null,function(){
        	location.href = url;
        });
        return false
    };
			
		
	
	//tab		
	$(".tabs-nav").tabs(" &gt; .tabs-panes &gt; div");
	
	//scrollable in tab
	$(".tabs-nav &gt; li &gt; a").click(function(){
		var _tabIndex = $(this).parents(".tabs-nav").find("li").index($(this).parent());
		
		if( $(this).parents(".tabs-default").find(".tab-box").eq(_tabIndex).find(".scrollable-default").length &gt; 0 ){
			$(".scrollable-default").carouFredSel({
				width   	: '100%',
				infinite 	: false,
				circular 	: false,
				auto 	  	: { pauseOnHover: true, timeoutDuration:3500 },
				swipe    	: { onTouch:true, onMouse:true },
				prev 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-prev"); }},
				next 		: { button:function() {	return $(this).parent().next('.carousel-direction').find(".carousel-next"); }}
			});
			$(".scrollable-default").parents(".scrollable").css("overflow","visible");
		}		
		
		if( $(this).parents(".tabs-default").find(".tab-box").eq(_tabIndex).find(".full-scrollable-default").length &gt; 0 ){
			$(".full-scrollable-default").carouFredSel({
				infinite 	: false,
				circular 	: false,
				auto 		: false,
				swipe    	: { onTouch:true, onMouse:true },
				responsive	: true,
				items		: {
					visible		: {
						min			: 2,
						max			: 8
					}
				},
				prev 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-prev"); }},
				next 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-next"); }}								
			});
			
			//閲嶇疆楂樺害
			/*$(".full-scrollable-default").parents('.caroufredsel_wrapper').css({
				'height': ($(".full-scrollable-default").find('li').outerHeight()) + 'px'
			});*/
		}
		
		
	});	
	
	// accordion
	$(".accordion").tabs(".accordion .accordion-pane", {tabs: '.accordion-handle', effect: 'slide',initialIndex: 0});	
	$.tools.tabs.addEffect("slide", function(tabIndex, done) {
		this.getPanes().slideUp("fast").eq(tabIndex).slideDown("fast");
		done.call();
	});

	// tab-round	
	$('.tab-round &gt; .tabs-nav &gt; li &gt; a').click(function(){
		$(this).nextAll('.line-v').addClass('line-v-c');
		$(this).parent('li').siblings('li').find('.line-v').removeClass('line-v-c');
	});
	
	
	
	//鍥惧簱鍒囨崲
	$('.pgwSlideshow-gallery').pgwSlideshow({
		mainClassName : 'pgwSlideshow-gallery pgwSlideshow'
	});
	$('.pgwSlideshow-gallery-simple').pgwSlideshow({
		mainClassName : 'pgwSlideshow-gallery-simple pgwSlideshow',
		displayList : false		
	});	
	$('.pgwSlideshow-gallery-zoom').pgwSlideshow({
		mainClassName : 'pgwSlideshow-gallery-zoom pgwSlideshow',
		displayControls : false		
	});
	
	
	//table	
	//$(".qhd-content table tbody&gt;tr:odd").addClass("odd-row");
	//$(".qhd-content table tbody&gt;tr:even").addClass("even-row");
	$(".qhd-content table tbody&gt;tr").hover(function(){ 
		$(this).addClass("trhover");
	},function(){
		$(this).removeClass("trhover");
	});
	
	//澧炲姞鍝嶅簲寮忚〃鏍煎灞俤iv
	$(".qhd-content table").each(function(){
		if( !$(this).parent().hasClass("table-responsive") ){
			$(this).wrap("&lt;div class='table-responsive'&gt;&lt;/div&gt;");
		}
	});
	
	
	//宸﹀彸鎮诞
	$(".fixed-left").fixed({halfTop : true});
	$(".fixed-right").fixed({halfTop : true});	
	//
	$(".service-close-btn").click(function(){
		var serviceMax =  $(this).parents(".service-max"),
			serviceMin =  serviceMax.next(".service-min");		
		serviceMin.show();
		serviceMax.hide();
	});		
	$(".service-open-btn").click(function(){
		var serviceMax =  $(this).prev(".service-max"),
			fixedELement = $(this).parents(".fixed");		
		$(this).hide();
		serviceMax.show();
	});
	
	
	//鍥炬爣-鍚嶇О-鍗曞垪閾炬帴
	$(".link-fixed-side &gt; ul &gt; li").each(function(){
		$(this).hover(function(){
			$(this).addClass("active").find(".link-summary").show();	
		},function(){
			$(this).removeClass("active").find(".link-summary").hide();
		});
		
		if( $(this).find('a').attr('href').indexOf("#popup") != -1 ){
			$(this).find('a').addClass('popup-show-btn');
		}
		
	});
	//寮圭獥瑙嗛
	$('.fancybox-video-play').fancybox({
		'autoScale'   		: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'hideOnOverlayClick': false,
		'centerOnScroll'	: true,
		'overlayColor'		: '#000',
		'padding'			: '5'
	});

	
	//寮瑰嚭绐楀彛鍖哄煙
	$("a").each(function(){		
		if( typeof($(this).attr('href'))!="undefined" &amp;&amp; $(this).attr('href').indexOf("#popup") != -1 ){
			$(this).addClass('popup-show-btn');
		}
	});
	$('.popup-show-btn').click(function(){
		$('.popup').show();
		$('.popup-overlay').height($(document).height());
		$('.popup-content').css({marginLeft:-($('.popup-content').outerWidth()/2), marginTop:-($('.popup-content').outerHeight()/2)});
		$('.popup-close-btn').click(function(){
			$(this).parents('.popup').hide();	
		});
		
		return false;
	
	});	
	
	
	
	
	//璁剧疆寮圭獥瑙嗛鐨勫搴�
	var touchWindowWidth = $(window).width();
	if( touchWindowWidth &lt; 1000 ){
		$('.article-detail-fancybox').css("width", touchWindowWidth-80);
	}
	
	
	//绉诲姩绔� JS	
	var isMobile = device.mobile(),
    	isTable  = device.tablet(),
    	isiPhone = device.iphone(),
    	isiPad   = device.ipad();    
	if(isMobile || isTable || isiPhone || isiPad){
		//绉婚櫎鏂扮獥鍙ｆ墦寮€
		$('a').not('[data-mobile-target="_blank"]').removeAttr('target');
    }
	
	
	
});

$(window).load(function() {
	//scrollable-default
	$(".scrollable-default").carouFredSel({
		width   	: '100%',
		infinite 	: false,
		//circular 	: false,
		auto 	  	: { pauseOnHover: true, timeoutDuration:3500 },
		swipe    	: { onTouch:true, onMouse:true },
		prev 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-prev"); }},
		next 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-next"); }}
	});
	$(".scrollable-default").parents(".scrollable").css("overflow","visible");
	
	//full-scrollable-default
	$(".full-scrollable-default").carouFredSel({
		infinite 	: false,
		circular 	: false,
		auto 		: false,
		swipe    	: { onTouch:true, onMouse:true },
		responsive	: true,
		items		: {
			visible		: {
				min			: 2,
				max			: 8
			}
		},
		prev 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-prev"); }},
		next 		: { button:function() { return $(this).parent().next('.carousel-direction').find(".carousel-next"); }}								
	});	
	//閲嶇疆楂樺害
	$(".full-scrollable-default").parents('.caroufredsel_wrapper').css({
		'height': ($(".full-scrollable-default").find('li').outerHeight()) + 'px'
	});

	//涓嶈鍒欏鍒�
	if ($('.izotope-container').length) { 		 
		$('.izotope-container').isotope({
			itemSelector: '.izotope-item',
			layoutMode: 'masonry',
			masonry: { columnWidth: '.grid-sizer' }
  		});			 
	};
	
	
});

$(window).bind("load resize", function() {
	
	var postList = $(".post-list");	
	postList.each(function(){
		var postImg = $(this).find(".post-img");
		var postTextBox = $(this).find(".post-text-box");	
		var postText = $(this).find(".post-text");
		var postTextSummary = $(this).find(".post-text-summary");
		var postMaxHeight = postImg.eq(0).height();
		var summaryMaxHeight = 0;			
			
		postImg.each(function(){
			postMaxHeight = $(this).height() &gt; postMaxHeight ? $(this).height() : postMaxHeight;
		}).find("img").height( postMaxHeight );
		
		postTextBox.each(function(){
			$(this).height( postMaxHeight - parseInt($(this).css("paddingTop")) - parseInt($(this).css("paddingBottom")) );
		});
		
		postTextSummary.each(function(){
			summaryMaxHeight = postMaxHeight - $(this).prev("h2").height() - parseInt($(this).prev("h2").css("marginBottom")) - parseInt($(this).parent(".post-text").css("paddingBottom"))*2 - $(this).next(".post-text-detail").height() - 10;
			if( $(this).height() &gt; summaryMaxHeight ){
				$(this).height( summaryMaxHeight );
			}
		});		
		
		//涓夊垪 - 鐗规畩澶勭悊绗簩鍒�
		if( $(this).hasClass("post-list-3col") ){
			$(this).find(".post-list-item-spec").find(".post-img").css("top", postMaxHeight);
			$(this).find(".post-list-item-spec").find(".post-text-box").css("top", -postMaxHeight);
		}	
		
	});
	
});

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