$(function(){ imgLazyloadLib(); //代码创建一个遮罩层,用于做加载动画 //setScroll(); setEventListen(); }) $(window).on('load',function(){ diyAutoHeight(); imgLazyloadLib(); }); $(window).resize(function(){ if(window.resizeTimeout)window.clearTimeout(window.resizeTimeout); window.resizeTimeout=setTimeout(function(){ diyAutoHeight(); },350); }); function imgLazyloadLib(obj){ if(obj){ obj.lazyload({event:'scroll mouseover',effect: "fadeIn",threshold:0,failure_limit:80,skip_invisible:false,load:function(){ var father=$(this).parents('.view').first(); if(father.length>0){ setTimeout(function(){diyAutoHeight(father);},500); }else{ father=$(this).parents('.layout').first(); if(father.length>0){ setTimeout(function(){diyAutoHeight(father);},500); } } }}); }else{ $("img").lazyload({event:'scroll mouseover',effect: "fadeIn",threshold:0,failure_limit:80,skip_invisible:false,load:function(){ var father=$(this).parents('.view').first(); if(father.length>0){ setTimeout(function(){diyAutoHeight(father);},500); }else{ father=$(this).parents('.layout').first(); if(father.length>0){ setTimeout(function(){diyAutoHeight(father);},500); } } }}); } } var scrollTime=300; function setEventListen(){ $(".ev_c_scrollTop").click(function(){ //滚动到顶部 //$("html").getNiceScroll().resize(); //$("html").getNiceScroll(0).doScrollTop(0); $("html,body").stop().animate({scrollTop:"0px"},window.scrollTime); }); $(".ev_c_scrollView").click(function(){ //鼠标点击:滚动到模块位置 var settings=settingsLib($(this)); var viewid=settings.getSetting('eventSet.scrollView'); if($("#"+viewid).length>0){ //$("html").getNiceScroll().resize(); //$("html").getNiceScroll(0).doScrollTop($("#"+viewid).offset().top); $("html,body").stop().animate({scrollTop:$("#"+viewid).offset().top+"px"},window.scrollTime); } }); $(".ev_c_showView").click(function(){ //鼠标点击:显示模块 showEventView($(this)); }); $(".ev_c_hidView").click(function(){ //鼠标点击:隐藏模块 hidEventView($(this)); }); $(".ev_c_tabView").click(function(){ //鼠标点击:显示与隐藏模块 showHidEventView($(this)); }); $(".ev_m_tabView").hover(function(){ //鼠标点击:显示与隐藏模块 showHidEventView($(this)); }); $(".view").click(function(){ $(this).children(".view_contents").addClass("diyCurTab"); var settings=settingsLib($(this)); var unitViewSet=settings.getSetting('unitViewSet'); if(unitViewSet&&unitViewSet.length>0){ for(key in unitViewSet){ $("#"+unitViewSet[key]).children(".view_contents").removeClass("diyCurTab"); } } }); } function showHidEventView(obj){ var settings=settingsLib(obj); var showViews=settings.getSetting('eventSet.showViews'); var hidViews=settings.getSetting('eventSet.hidViews'); if(!showViews)showViews=new Array(); if(!hidViews)hidViews=new Array(); var doubleKey=new Array(); //获取重复值 if(showViews.length>0){ for(s_key in showViews){ if(hidViews.length>0){ for(h_key in hidViews){ if(showViews[s_key]==hidViews[h_key]){ doubleKey.push(showViews[s_key]); } } } } } //隐藏 if(hidViews.length>0){ for(key in hidViews){ if($.inArray(hidViews[key],doubleKey)<0){ $("#"+hidViews[key]).css({"display":"none"}); diyAutoHeight($("#"+hidViews[key])); } } } //显示 if(showViews.length>0){ for(key in showViews){ if($.inArray(showViews[key],doubleKey)<0){ $("#"+showViews[key]).css({"display":"block"}); diyAutoHeight($("#"+showViews[key])); } } } //双向显示 if(doubleKey.length>0){ for(key in doubleKey){ if($("#"+doubleKey[key]).length>0){ if($("#"+doubleKey[key]).is(":hidden")){ $("#"+doubleKey[key]).css({"display":"block"}); diyAutoHeight($("#"+doubleKey[key])); }else{ $("#"+doubleKey[key]).css({"display":"none"}); diyAutoHeight($("#"+doubleKey[key])); } } } } } function showEventView(obj){ var settings=settingsLib(obj); var showViews=settings.getSetting('eventSet.showViews'); if(!showViews)showViews=new Array(); if(showViews.length>0){ for(key in showViews){ $("#"+showViews[key]).css({"display":"block"}); diyAutoHeight($("#"+showViews[key])); } } } function hidEventView(obj){ var settings=settingsLib(obj); var hidViews=settings.getSetting('eventSet.hidViews'); if(!hidViews)hidViews=new Array(); if(hidViews.length>0){ for(key in hidViews){ $("#"+hidViews[key]).css({"display":"none"}); diyAutoHeight($("#"+hidViews[key])); } } } function getPageScrollTop(){ var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; return scrollTop; } function getNowPage(){ var width=$(window).width(); var max_width=window.DIY_PAGE_SIZE; max_width=parseFloat(max_width); if(isNaN(max_width))max_width=1200; if(width>=max_width){ return 'pc'; }else if(width>=640){ return 'pad'; }else{ return 'mobile'; } } $(window).scroll(function(){ var scrollTop=getPageScrollTop(); var nowPage=getNowPage(); if($(".scrollToTop_"+nowPage).length>0){ $(".scrollToTop_"+nowPage).each(function(){ var old_top=$(this).attr("old_top_"+nowPage); var old_left=$(this).attr("old_left_"+nowPage); var old_width=$(this).attr("old_width_"+nowPage); if(!old_top||old_top==""){ old_top=$(this).offset().top; $(this).attr("old_top_"+nowPage,old_top); } if(!old_left||old_left==""){ old_left=$(this).offset().left; $(this).attr("old_left_"+nowPage,old_left); } if(!old_width||old_width==""){ old_width=$(this).width(); $(this).attr("old_width_"+nowPage,old_width); } old_top=parseFloat(old_top); old_left=parseFloat(old_left); old_width=parseFloat(old_width); if(scrollTop>=old_top){ let objId = $(this).attr('id'); let true_width = objId.includes('layout_')?'100%':old_width+"px"; //共享区域+区域布局固定100%,解决客户老喜欢缩放浏览器比例问题 $(this).css({"position":"fixed","z-index":9999999,"top":"0px","width":true_width,"left":old_left+"px"}); $(this).parents(".view").css({"z-index":9999999}); //$(this).parents(".view").children(".view_contents").css({"overflow":"visible"}); $(this).parents(".layout").css({"z-index":9999999}); //$(this).parents(".layout").children(".view_contents").css({"overflow":"visible"}); // 通过设置边距,清除悬浮对下一个元素的影响 if ($(this).hasClass('layout')) { $(this).next().css('margin-top', (Number($(this).css('margin-top').replace('px', '')) + $(this).height()) + 'px'); } }else{ $(this).css({"position":"","z-index":"","top":"","width":"","left":""}); $(this).parents(".view").css({"z-index":""}); //$(this).parents(".view").children(".view_contents").css({"overflow":""}); $(this).parents(".layout").css({"z-index":""}); //$(this).parents(".layout").children(".view_contents").css({"overflow":""}); $(this).attr("old_top_"+nowPage,null); $(this).attr("old_left_"+nowPage,null); $(this).attr("old_width_"+nowPage,null); // 通过设置边距,清除悬浮对下一个元素的影响 if ($(this).hasClass('layout')) { $(this).next().css('margin-top', ''); } } }); } }); function diyAutoHeight(obj){ if(obj&&obj.length>0){ //针对选项卡做特殊处理 if(obj.children(".view_contents").children("form").length>0){ if(obj.children(".view_contents").children("form").children(".view").length>0){ obj.children(".view_contents").children("form").children(".view").each(function(){ if($(this).is(":visible")){ diyAutoHeightDo($(this)); return false; } }); }else{ diyAutoHeightDo(obj); } }else if(obj.children(".view_contents").children(".niceTab").find(".niceTabShow").length>0){ if(obj.children(".view_contents").children(".niceTab").find(".niceTabShow").children(".view").length>0){ obj.children(".view_contents").children(".niceTab").find(".niceTabShow").children(".view").each(function(){ if($(this).is(":visible")){ diyAutoHeightDo($(this)); return false; } }); }else{ diyAutoHeightDo(obj); } }else{ diyAutoHeightDo(obj); } }else{ setTimeout(function(){ $(".view").each(function(){ if(!$(this).hasClass("includeBlock")){ diyAutoHeightDo($(this)); } }); },500); } } function diyAutoHeightFatherDo(father,obj){ var settings=settingsLib(father); var autoHeight=settings.getSetting('autoHeight'); if(autoHeight&&autoHeight=="true"){ //开启了允许自动高度 var minHeight=obj.offset().top+obj.height()-father.offset().top; if(obj.siblings(".view").length>0){ obj.siblings(".view").each(function(){ if($(this).is(":visible")){ var tempHeight=$(this).offset().top+$(this).height()-father.offset().top; if(tempHeight>minHeight){ minHeight=tempHeight; } } }); } //2019-5-20 选项卡添加选项高度计算 var kind=settings.getSetting('kind'); var name=settings.getSetting('name'); var data=settings.getSetting('data'); if (kind=="选项卡" && name=="tab") { var tab_nav_obj = father.children().children().children().eq(0); var tab_nav_height = tab_nav_obj.css('height'); if ( tab_nav_height != undefined && tab_nav_height != undefined && typeof(data) != 'undefined' && data && data.hasOwnProperty('showtype') && data.showtype == "bottom") { minHeight = parseFloat(tab_nav_height) + Number(minHeight); } } father.css({"height":minHeight+"px"}); diyAutoHeightDo(father); } } function diyAutoHeightDo(obj){ if(obj.is(":visible")){ var father=obj.parents(".view").first(); if(father.length<=0)father=obj.parents(".layout").first(); if(father.length>0){ var settings=settingsLib(father); var autoHeight=settings.getSetting('autoHeight'); if(autoHeight&&autoHeight=="true"){ if(father.offset().top+father.height()1){ var para = arrUrl[1]; var arrUrl2=para.split("&"); arrUrl2.forEach(function(e){ if(e.indexOf("mod=")>=0||e.indexOf("act=")>=0){ return; } else if (e.indexOf("#")>=0) { paras+=e.substr(0, e.indexOf("#"))+"&"; }else{ paras+=e+"&"; } }) } return paras; } //RequestURL for signle function RequestURL_old(viewid, sys_url, moreParams){ var serverUrl = '//'+DIY_JS_SERVER+'/sysTools.php?mod=viewsConn&rtype=json&idweb='+DIY_WEBSITE_ID+'&'+sys_url; var settings = settingsLib($("#"+viewid)); if($("#"+viewid+" .productorder").length > 0){ let po = $("#"+viewid+" .productorder").attr('po'); let po_type = $("#"+viewid+" .productorder").attr('po_type'); moreParams = moreParams?moreParams + "po="+po + "&po_type="+po_type+"&":""; } var params = ""; if(settings && settings.getSetting("data") && viewid.indexOf('download') == -1 ){ $.each(settings.getSetting("data"), function(key, val){ if($.isArray(val)){ $.each(val, function(key2, val2){ params += "&"+key+"[]="+val2; }); }else{ params += "&"+key+"="+val; } }); if(params) serverUrl += params; } var params2 = GetUrlPara(); if(params2) serverUrl += "&" + params2; if(moreParams) serverUrl += "&" + moreParams; var scriptString = ""; //$.ajaxSettings.async = false; $.ajax({ dataType: 'jsonp', crossDomain: true, url: serverUrl, xhrFields:{withCredentials:true}, success: function(result){ if(result.error) alert(result.error); else{ if(typeof(history.replaceState) != 'undefined'){ var obj={}; var hstate=JSON.stringify(history.state); if(hstate!='null'&& hstate!=null){ eval('var hjson = ' + hstate); obj=hjson; } var key="moreParams"+viewid; obj[key]=moreParams; //var strparam=viewid+":"+moreParams; //history.replaceState({("moreParams"+viewid):moreParams},"",""); history.replaceState(obj,"",""); } $("#"+viewid).children(".view_contents").html(result.html); $("#"+viewid).children(".view_contents").show(); setTimeout(function(){ diyAutoHeight($("#"+viewid)); },500); } }}); setTimeout(function(){commDefault_isFT();},500); function commDefault_isFT(){ var based_Obj= document.getElementById("based"); var currentlang_Obj= document.getElementById("currentlang");//当前语言 $(function(){ if (based_Obj){ var JF_cn="ft"+self.location.hostname.toString().replace(/\./g,""); switch( Request('chlang') ){ case "cn-tw": BodyIsFt= getCookie(JF_cn)=="1"? 0 : 1; delCookie(JF_cn); SetCookie(JF_cn, BodyIsFt, 7); break; case "cn": case "en": BodyIsFt= 0; delCookie(JF_cn); SetCookie(JF_cn, 0, 7); currentlang_Obj.innerHTML = "简体中文"; break; case "tw": BodyIsFt= 1; delCookie(JF_cn); SetCookie(JF_cn, 1, 7); currentlang_Obj.innerHTML = "繁體中文"; //因为是繁体 你写简体也会被转化成繁体 所以这儿只能写繁体 2015-1-16 break; default: if (typeof Default_isFT!='undefined' && Default_isFT){ //如果默认繁体 if(getCookie(JF_cn)==null){ BodyIsFt= 1; SetCookie(JF_cn, 1, 7); break; } } BodyIsFt= parseInt(getCookie(JF_cn)); } if(BodyIsFt===1){ StranBody(); document.title = StranText(document.title); }else{ StranBodyce(); document.title = StranTextce(document.title); } }else{ var JF_cn="ft"+self.location.hostname.toString().replace(/\./g,""); if(Default_isFT){ BodyIsFt= 1; delCookie(JF_cn); SetCookie(JF_cn, 1, 7); StranBody(); document.title = StranText(document.title); }else{ BodyIsFt= 0; delCookie(JF_cn); SetCookie(JF_cn, 0, 7); /*StranBodyce(); document.title = StranTextce(document.title);*/ } } }); } /* $.getJSON(serverUrl, function(result){ if(result.error) alert(result.error); else{ $("#"+viewid).children(".view_contents").html(result.html); $("#"+viewid).show(); setTimeout(function(){ diyAutoHeight($("#"+viewid)); },500); } });*/ //$("#"+viewid).append(scriptString); } function RequestURL(viewid, sys_url, moreParams){ if(checkLoad==1){ RequestURL_old(viewid, sys_url, moreParams); return; } //这是原本的URL var serverUrl = '/sysTools.php?&mod=viewsConn&rtype=json&idweb='+DIY_WEBSITE_ID+'&'+sys_url; var settings = settingsLib($("#"+viewid)); if($("#"+viewid+" .productorder").length > 0){ let po = $("#"+viewid+" .productorder").attr('po'); let po_type = $("#"+viewid+" .productorder").attr('po_type'); moreParams = moreParams?moreParams + "po="+po + "&po_type="+po_type+"&":""; } var params = ""; if(settings && settings.getSetting("data")){ $.each(settings.getSetting("data"), function(key, val){ if($.isArray(val)){ $.each(val, function(key2, val2){ params += "&"+key+"[]="+val2; }); }else{ params += "&"+key+"="+val; } }); if(params) serverUrl += params; } var params2 = GetUrlPara(); if(params2) serverUrl += "&" + params2; if(moreParams) serverUrl += "&" + moreParams; batchArr.push(serverUrl); } function sendBatch(sendurl){ if(!sendurl) return; //10次分割 var newArr = []; newArr = sliceArray(sendurl,10); //对url进行组装 var serverUrl = 'https://'+DIY_JS_SERVER+'/sysTools.php?mod=viewsConn&act=batch&idweb='+DIY_WEBSITE_ID+'&'; for(var i in newArr){ var data = {}; data.postUrl = newArr[i]; //获取数据 xhrFields解决传输cookie问题 $.ajax({ type: "post", cache: false, dataType: "json", async:true, data:data , url: serverUrl, xhrFields: { withCredentials: true }, crossDomain: true, success: function(result){ //var result = eval("("+result+")"); if(result.error) { alert(result.error); //详情的判断 if (result.data.pageType == 1){ setTimeout(function (){window.history.back()},2000) } } else{ for(var i in result){//i就是viewid $("#"+i).children(".view_contents").html(result[i]['html']); $("#"+i).children(".view_contents").show(); setTimeout(function(){ diyAutoHeight($("#"+i)); },500); } } }}); } setTimeout(function(){commDefault_isFT();},500); checkLoad = 1; } /* * 将一个数组分成几个同等长度的数组 * array[分割的原数组] * size[每个子数组的长度] */ function sliceArray(array, size) { var result = []; for (var x = 0; x < Math.ceil(array.length / size); x++) { var start = x * size; var end = start + size; result.push(array.slice(start, end)); } return result; } //导航公共监听函数 function setDhListen(style,obj,params){ var father=$(obj).parents(".dh").first(); if(father.length>0){ switch(style){ case 'style_01': father.find(".miniMenu").toggleClass("Mslide"); father.find(".miniMenu").toggleClass("dhAreaSet"); if($("body").css("position")=="relative"){ $("body").css({"position":"fixed","width":"100%"}); }else{ $("body").css({"position":"relative","width":"100%"}); } break; case 'style_02': if(params=="open"){ father.find(".Style_02_miniMenu .menuMain").css("display","block"); }else{ father.find(".Style_02_miniMenu .menuMain").css("display","none"); } break; case 'style_03': if(params=="mobi_more"){ $(obj).parent().siblings(".mobi_menuUl02").toggle(); }else if(params=="m_icoFont"){ $(obj).parents(".mobi_main").hide(); }else if(params=="mobi_top"){ $(obj).siblings(".mobi_main").show(); } break; case 'style_04': var width = $(window).width(); var newW = width+18; father.find(".newWidth").css("width",newW); father.find(".miniMenu").toggleClass("Mslide"); if($("body").css("position")=="relative"){ $("body").css({"position":"fixed","width":"100%"}); }else{ $("body").css({"position":"relative","width":"100%"}); } break; case 'type05': father.find(".mobileCon").show(); father.find(".mobileCon").animate({left:'0'},600,function(){ father.find(".mobileIcon").hide(); }) if($("body").css("position")=="relative"){ $("body").css({"position":"fixed","width":"100%"}); }else{ $("body").css({"position":"relative","width":"100%"}); } break; case 'type06': father.find(".mobileCon").animate({left:'-100%'},600,function(){ father.find(".mobileCon").hide(); father.find(".mobileIcon").show(); }); if($("body").css("position")=="relative"){ $("body").css({"position":"fixed","width":"100%"}); }else{ $("body").css({"position":"relative","width":"100%"}); } break; } //手机上,导航的遮盖不能盖住视频功能修改 if($("body").css("position")=="relative"){ $('video').show(); }else{ $('video').hide(); } } } //-------------选项卡----------------------------------------------- //鼠标左右拖拽事件 function setScroll_Choice(tabId){ if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) return; if(typeof($(".tab_nav .tab_scroll", $("#"+tabId)).niceScroll)=="function"){ $(".tab_nav .tab_scroll", $("#"+tabId)).niceScroll({zIndex:99999,cursoropacitymax:0,cursoropacitymin:0,horizrailenabled:true,autohidemode:true,touchbehavior:true}); }else{ setTimeout(setScroll_Choice,500); } } /*选项卡切换效果*/ function changeTabFunc(tabId,index){ $(".tab_nav .tab_li", $("#"+tabId)).eq(index).addClass("tabCurItem").siblings().removeClass("tabCurItem"); $(".tab_box .tab_div", $("#"+tabId)).eq(index).addClass("niceTabShow").siblings().removeClass("niceTabShow"); /*↓↓↓↓选项卡下的特殊模块处理↓↓↓↓*/ if(typeof changeBannerHeight != 'undefined' && changeBannerHeight instanceof Function){ changeBannerHeight(tabId); //轮播图宽高度适应 } /*↑↑↑↑选项卡下的特殊模块处理↑↑↑↑*/ diyAutoHeight($("#"+tabId.substr(4))); } /*鼠标悬浮效果*/ function setHover_Choice(tabId){ $(".tab_nav .tab_li", $("#"+tabId)).unbind('hover'); $(".tab_nav .tab_li", $("#"+tabId)).hover(function(){ var index = $(this).index(); changeTabFunc(tabId,index); }); } /*鼠标点击效果*/ function setClick_Choice(tabId){ $(".tab_nav .tab_li", $("#"+tabId)).unbind('click'); $(".tab_nav .tab_li", $("#"+tabId)).click(function(){ var index = $(this).index(); changeTabFunc(tabId,index); }); } /*自动播放*/ function setAnimat_int(tabId,time){ if(!time)time=5; time=time*1000; var viewid=tabId.substr(4); if(!window.tabConfigAnimat)window.tabConfigAnimat={}; //初始化 window.tabConfigAnimat[viewid]=setTimeout(doAnimat,time); $("#"+viewid).mousemove(function(){ if(window.tabConfigAnimat[viewid])window.clearTimeout(window.tabConfigAnimat[viewid]); }); $("#"+viewid).mouseover(function(){ if(window.tabConfigAnimat[viewid])window.clearTimeout(window.tabConfigAnimat[viewid]); }); $("#"+viewid).mouseout(function(){ window.tabConfigAnimat[viewid]=setTimeout(doAnimat,time); }); function doAnimat(){ if(window.tabConfigAnimat[viewid])window.clearTimeout(window.tabConfigAnimat[viewid]); var index=$(".tab_nav .tabCurItem", $("#"+tabId)).index(); index=index+1; if(index>=$(".tab_nav .tab_li", $("#"+tabId)).length){ index=0; } changeTabFunc(tabId,index); window.tabConfigAnimat[viewid]=setTimeout(doAnimat,time); } } //获取鼠标拖拽区域的总宽度 function tab_style03_init(tabId){ var total=0; var obj=$(".tab_li", $("#"+tabId)); $(".tab_li", $("#"+tabId)).each(function(){ total+=$(this).width(); }); $(".tab_ul_top", $("#"+tabId)).css("width",total+"px"); $(".tab_ul_bottom", $("#"+tabId)).css("width",total+"px"); //向左滚动图标事件 $(".tab_left_arrow", $("#"+tabId)).unbind('click'); $(".tab_left_arrow", $("#"+tabId)).click(function(){ var index = $(".tab_nav .tabCurItem", $("#"+tabId)).index(); index = index-1; changeTabFunc(tabId,index); }); //向右滚动图标事件 $(".tab_right_arrow", $("#"+tabId)).unbind('click'); $(".tab_right_arrow", $("#"+tabId)).click(function(){ var index = $(".tab_nav .tabCurItem", $("#"+tabId)).index(); var len = $(".tab_nav .tab_li", $("#"+tabId)).length; index = index+1; if(index >= len){ index = 0; } changeTabFunc(tabId,index); }); setScroll_Choice(tabId); } function StranBody(fobj){ var obj= fobj ? fobj.childNodes : document.body.childNodes; if (typeof based_Obj == 'undefined') var based_Obj = ''; for(var i=0;i0||OO==based_Obj)continue; if(OO.title!=""&&OO.title!=null)OO.title=StranText(OO.title); if(OO.alt!=""&&OO.alt!=null)OO.alt=StranText(OO.alt); if(OO.tagName=="INPUT"&&OO.value!=""&&OO.type!="text"&&OO.type!="hidden")OO.value=StranText(OO.value); if(OO.nodeType==3){OO.data=StranText(OO.data)} else StranBody(OO) } try{ var based_Obj2= document.getElementById("based2"); if(!based_Obj2) { //简繁 based_Obj.innerHTML = BodyIsFt==1? "简体中文":"繁体中文"; }else{ //简繁英 based_Obj.innerHTML = "繁体中文"; based_Obj2.innerHTML = "简体中文"; } }catch(e){} } function StranBodyce(fobj){ var obj= fobj ? fobj.childNodes : document.body.childNodes; if (typeof based_Obj == 'undefined') var based_Obj = ''; for(var i=0;i0||OO==based_Obj)continue; if(OO.title!=""&&OO.title!=null)OO.title=StranTextce(OO.title); if(OO.alt!=""&&OO.alt!=null)OO.alt=StranTextce(OO.alt); if(OO.tagName=="INPUT"&&OO.value!=""&&OO.type!="text"&&OO.type!="hidden")OO.value=StranTextce(OO.value); if(OO.nodeType==3){OO.data=StranTextce(OO.data)} else StranBodyce(OO) } try{ var based_Obj2= document.getElementById("based2"); if(!based_Obj2) { //简繁 based_Obj.innerHTML = BodyIsFt==1? "简体中文":"繁体中文"; }else{ //简繁英 based_Obj.innerHTML = "繁体中文"; based_Obj2.innerHTML = "简体中文"; } }catch(e){} } function StranText(txt){ if(txt==""||txt==null)return ""; return Traditionalized(txt); } function StranTextce(txt){ if(txt==""||txt==null)return ""; return Traditionalizedce(txt); } function JTPYStr(){ return '皑蔼碍爱翱袄奥坝罢摆败颁办绊帮绑镑谤剥饱宝报鲍辈贝钡狈备惫绷笔毕毙闭边编贬变辩辫鳖瘪濒滨宾摈饼拨钵铂驳卜补参蚕残惭惨灿苍舱仓沧厕侧册测层诧搀掺蝉馋谗缠铲产阐颤场尝长偿肠厂畅钞车彻尘陈衬撑称惩诚骋痴迟驰耻齿炽冲虫宠畴踌筹绸丑橱厨锄雏础储触处传疮闯创锤纯绰辞词赐聪葱囱从丛凑窜错达带贷担单郸掸胆惮诞弹当挡党荡档捣岛祷导盗灯邓敌涤递缔点垫电淀钓调迭谍叠钉顶锭订东动栋冻斗犊独读赌镀锻断缎兑队对吨顿钝夺鹅额讹恶饿儿尔饵贰发罚阀珐矾钒烦范贩饭访纺飞废费纷坟奋愤粪丰枫锋风疯冯缝讽凤肤辐抚辅赋复负讣妇缚该钙盖干赶秆赣冈刚钢纲岗皋镐搁鸽阁铬个给龚宫巩贡钩沟构购够蛊顾剐关观馆惯贯广规硅归龟闺轨诡柜贵刽辊滚锅国过骇韩汉阂鹤贺横轰鸿红后壶护沪户哗华画划话怀坏欢环还缓换唤痪焕涣黄谎挥辉毁贿秽会烩汇讳诲绘荤浑伙获货祸击机积饥讥鸡绩缉极辑级挤几蓟剂济计记际继纪夹荚颊贾钾价驾歼监坚笺间艰缄茧检碱硷拣捡简俭减荐槛鉴践贱见键舰剑饯渐溅涧浆蒋桨奖讲酱胶浇骄娇搅铰矫侥脚饺缴绞轿较秸阶节茎惊经颈静镜径痉竞净纠厩旧驹举据锯惧剧鹃绢杰洁结诫届紧锦仅谨进晋烬尽劲荆觉决诀绝钧军骏开凯颗壳课垦恳抠库裤夸块侩宽矿旷况亏岿窥馈溃扩阔蜡腊莱来赖蓝栏拦篮阑兰澜谰揽览懒缆烂滥捞劳涝乐镭垒类泪篱离里鲤礼丽厉励砾历沥隶俩联莲连镰怜涟帘敛脸链恋炼练粮凉两辆谅疗辽镣猎临邻鳞凛赁龄铃凌灵岭领馏刘龙聋咙笼垄拢陇楼娄搂篓芦卢颅庐炉掳卤虏鲁赂禄录陆驴吕铝侣屡缕虑滤绿峦挛孪滦乱抡轮伦仑沦纶论萝罗逻锣箩骡骆络妈玛码蚂马骂吗买麦卖迈脉瞒馒蛮满谩猫锚铆贸么霉没镁门闷们锰梦谜弥觅绵缅庙灭悯闽鸣铭谬谋亩钠纳难挠脑恼闹馁腻撵捻酿鸟聂啮镊镍柠狞宁拧泞钮纽脓浓农疟诺欧鸥殴呕沤盘庞国爱赔喷鹏骗飘频贫苹凭评泼颇扑铺朴谱脐齐骑岂启气弃讫牵扦钎铅迁签谦钱钳潜浅谴堑枪呛墙蔷强抢锹桥乔侨翘窍窃钦亲轻氢倾顷请庆琼穷趋区躯驱龋颧权劝却鹊让饶扰绕热韧认纫荣绒软锐闰润洒萨鳃赛伞丧骚扫涩杀纱筛晒闪陕赡缮伤赏烧绍赊摄慑设绅审婶肾渗声绳胜圣师狮湿诗尸时蚀实识驶势释饰视试寿兽枢输书赎属术树竖数帅双谁税顺说硕烁丝饲耸怂颂讼诵擞苏诉肃虽绥岁孙损笋缩琐锁獭挞抬摊贪瘫滩坛谭谈叹汤烫涛绦腾誊锑题体屉条贴铁厅听烃铜统头图涂团颓蜕脱鸵驮驼椭洼袜弯湾顽万网韦违围为潍维苇伟伪纬谓卫温闻纹稳问瓮挝蜗涡窝呜钨乌诬无芜吴坞雾务误锡牺袭习铣戏细虾辖峡侠狭厦锨鲜纤咸贤衔闲显险现献县馅羡宪线厢镶乡详响项萧销晓啸蝎协挟携胁谐写泻谢锌衅兴汹锈绣虚嘘须许绪续轩悬选癣绚学勋询寻驯训讯逊压鸦鸭哑亚讶阉烟盐严颜阎艳厌砚彦谚验鸯杨扬疡阳痒养样瑶摇尧遥窑谣药爷页业叶医铱颐遗仪彝蚁艺亿忆义诣议谊译异绎荫阴银饮樱婴鹰应缨莹萤营荧蝇颖哟拥佣痈踊咏涌优忧邮铀犹游诱舆鱼渔娱与屿语吁御狱誉预驭鸳渊辕园员圆缘远愿约跃钥岳粤悦阅云郧匀陨运蕴酝晕韵杂灾载攒暂赞赃脏凿枣灶责择则泽贼赠扎札轧铡闸诈斋债毡盏斩辗崭栈战绽张涨帐账胀赵蛰辙锗这贞针侦诊镇阵挣睁狰帧郑证织职执纸挚掷帜质钟终种肿众诌轴皱昼骤猪诸诛烛瞩嘱贮铸筑驻专砖转赚桩庄装妆壮状锥赘坠缀谆浊兹资渍踪综总纵邹诅组钻致钟么为只凶准启板里雳余链泄标适态于'; } function FTPYStr(){ return '皚藹礙愛翺襖奧壩罷擺敗頒辦絆幫綁鎊謗剝飽寶報鮑輩貝鋇狽備憊繃筆畢斃閉邊編貶變辯辮鼈癟瀕濱賓擯餅撥缽鉑駁蔔補參蠶殘慚慘燦蒼艙倉滄廁側冊測層詫攙摻蟬饞讒纏鏟産闡顫場嘗長償腸廠暢鈔車徹塵陳襯撐稱懲誠騁癡遲馳恥齒熾沖蟲寵疇躊籌綢醜櫥廚鋤雛礎儲觸處傳瘡闖創錘純綽辭詞賜聰蔥囪從叢湊竄錯達帶貸擔單鄲撣膽憚誕彈當擋黨蕩檔搗島禱導盜燈鄧敵滌遞締點墊電澱釣調叠諜疊釘頂錠訂東動棟凍鬥犢獨讀賭鍍鍛斷緞兌隊對噸頓鈍奪鵝額訛惡餓兒爾餌貳發罰閥琺礬釩煩範販飯訪紡飛廢費紛墳奮憤糞豐楓鋒風瘋馮縫諷鳳膚輻撫輔賦複負訃婦縛該鈣蓋幹趕稈贛岡剛鋼綱崗臯鎬擱鴿閣鉻個給龔宮鞏貢鈎溝構購夠蠱顧剮關觀館慣貫廣規矽歸龜閨軌詭櫃貴劊輥滾鍋國過駭韓漢閡鶴賀橫轟鴻紅後壺護滬戶嘩華畫劃話懷壞歡環還緩換喚瘓煥渙黃謊揮輝毀賄穢會燴彙諱誨繪葷渾夥獲貨禍擊機積饑譏雞績緝極輯級擠幾薊劑濟計記際繼紀夾莢頰賈鉀價駕殲監堅箋間艱緘繭檢堿鹼揀撿簡儉減薦檻鑒踐賤見鍵艦劍餞漸濺澗漿蔣槳獎講醬膠澆驕嬌攪鉸矯僥腳餃繳絞轎較稭階節莖驚經頸靜鏡徑痙競淨糾廄舊駒舉據鋸懼劇鵑絹傑潔結誡屆緊錦僅謹進晉燼盡勁荊覺決訣絕鈞軍駿開凱顆殼課墾懇摳庫褲誇塊儈寬礦曠況虧巋窺饋潰擴闊蠟臘萊來賴藍欄攔籃闌蘭瀾讕攬覽懶纜爛濫撈勞澇樂鐳壘類淚籬離裏鯉禮麗厲勵礫曆瀝隸倆聯蓮連鐮憐漣簾斂臉鏈戀煉練糧涼兩輛諒療遼鐐獵臨鄰鱗凜賃齡鈴淩靈嶺領餾劉龍聾嚨籠壟攏隴樓婁摟簍蘆盧顱廬爐擄鹵虜魯賂祿錄陸驢呂鋁侶屢縷慮濾綠巒攣孿灤亂掄輪倫侖淪綸論蘿羅邏鑼籮騾駱絡媽瑪碼螞馬罵嗎買麥賣邁脈瞞饅蠻滿謾貓錨鉚貿麽黴沒鎂門悶們錳夢謎彌覓綿緬廟滅憫閩鳴銘謬謀畝鈉納難撓腦惱鬧餒膩攆撚釀鳥聶齧鑷鎳檸獰甯擰濘鈕紐膿濃農瘧諾歐鷗毆嘔漚盤龐國愛賠噴鵬騙飄頻貧蘋憑評潑頗撲鋪樸譜臍齊騎豈啓氣棄訖牽扡釺鉛遷簽謙錢鉗潛淺譴塹槍嗆牆薔強搶鍬橋喬僑翹竅竊欽親輕氫傾頃請慶瓊窮趨區軀驅齲顴權勸卻鵲讓饒擾繞熱韌認紉榮絨軟銳閏潤灑薩鰓賽傘喪騷掃澀殺紗篩曬閃陝贍繕傷賞燒紹賒攝懾設紳審嬸腎滲聲繩勝聖師獅濕詩屍時蝕實識駛勢釋飾視試壽獸樞輸書贖屬術樹豎數帥雙誰稅順說碩爍絲飼聳慫頌訟誦擻蘇訴肅雖綏歲孫損筍縮瑣鎖獺撻擡攤貪癱灘壇譚談歎湯燙濤縧騰謄銻題體屜條貼鐵廳聽烴銅統頭圖塗團頹蛻脫鴕馱駝橢窪襪彎灣頑萬網韋違圍爲濰維葦偉僞緯謂衛溫聞紋穩問甕撾蝸渦窩嗚鎢烏誣無蕪吳塢霧務誤錫犧襲習銑戲細蝦轄峽俠狹廈鍁鮮纖鹹賢銜閑顯險現獻縣餡羨憲線廂鑲鄉詳響項蕭銷曉嘯蠍協挾攜脅諧寫瀉謝鋅釁興洶鏽繡虛噓須許緒續軒懸選癬絢學勳詢尋馴訓訊遜壓鴉鴨啞亞訝閹煙鹽嚴顔閻豔厭硯彥諺驗鴦楊揚瘍陽癢養樣瑤搖堯遙窯謠藥爺頁業葉醫銥頤遺儀彜蟻藝億憶義詣議誼譯異繹蔭陰銀飲櫻嬰鷹應纓瑩螢營熒蠅穎喲擁傭癰踴詠湧優憂郵鈾猶遊誘輿魚漁娛與嶼語籲禦獄譽預馭鴛淵轅園員圓緣遠願約躍鑰嶽粵悅閱雲鄖勻隕運蘊醞暈韻雜災載攢暫贊贓髒鑿棗竈責擇則澤賊贈紮劄軋鍘閘詐齋債氈盞斬輾嶄棧戰綻張漲帳賬脹趙蟄轍鍺這貞針偵診鎮陣掙睜猙幀鄭證織職執紙摯擲幟質鍾終種腫衆謅軸皺晝驟豬諸誅燭矚囑貯鑄築駐專磚轉賺樁莊裝妝壯狀錐贅墜綴諄濁茲資漬蹤綜總縱鄒詛組鑽緻鐘麼為隻兇準啟闆裡靂餘鍊洩標適態於'; } function Traditionalized(cc){ var str='',ss=JTPYStr(),tt=FTPYStr(); for(var i=0;i10000&&ss.indexOf(cc.charAt(i))!=-1)str+=tt.charAt(ss.indexOf(cc.charAt(i))); else str+=cc.charAt(i); } return str; } function Traditionalizedce(cc){ var str='',tt=JTPYStr(),ss=FTPYStr(); for(var i=0;i10000&&ss.indexOf(cc.charAt(i))!=-1)str+=tt.charAt(ss.indexOf(cc.charAt(i))); else str+=cc.charAt(i); } return str; } function _RequestParamsStr(){ var strHref = window.document.location.href; var intPos = strHref.indexOf('?'); var strRight = strHref.substr(intPos+1); return strRight; } function Request(strName){ var arrTmp = _RequestParamsStr().split("&"); for(var i=0,len=arrTmp.length; i' + loadingText + ''); $("#"+obj+" .detailContent").css('height',0).css('opacity',0); checkImgLoad(obj,t_img,isLoad,autoHeight); $(window).on('load',function(){ isLoad = false; clearTimeout(t_img); t_img = null; $("#"+obj+" .detailContent").css('height','auto').css('opacity',1); $("#"+obj+" .content_load").remove(); }); } function checkImgLoad(obj,t_img,isLoad,autoHeight) { t_img = setTimeout(function(){ if(isLoad) { $("#"+obj+" .detailContent img").each(function() { if($(this).attr("src") && $(this).height() === 0) { isLoad = false; return false; } }); if(isLoad) { isLoad = false; clearTimeout(t_img); t_img = null; if(autoHeight&&autoHeight=="true"){ var aboutHeight = $("#"+obj+" .detailContent").height(); $("#"+obj).parents('.layout').height($("#"+obj).parents('.layout').height() + aboutHeight); } setTimeout(function(){ $("#"+obj+" .detailContent").css('height','auto').css('opacity',1); $("#"+obj+" .content_load").remove(); diyAutoHeight(); },500); }else{ isLoad = true; checkImgLoad(obj,t_img,isLoad,autoHeight); } } },500); } $(document).ready(function(){ }) DIY_PAGE_SIZE='1200'; var viewsSettings={"layout_1634261609114":{"css":{"pc":{"height":"812.010417px"},"content":{"overflow":"visible"},"customCss":{"pc":{"modelArea":[]}},"pad":{"height":"399px"},"mobile":{"height":"230px","z-index":99}},"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout","settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"banner_style_01_1634261941034":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"bannerConfig","setupFunc":"bannerSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u8f6e\u64ad\u5c5e\u6027\u8bbe\u7f6e"},"styleHelpId":1256,"style":"style_01","diyShowName":"\u8f6e\u64ad\u56fe-\u98ce\u683c1","styleShowName":"\u98ce\u683c1","styleKind":"\u56fe\u7247\u8f6e\u64ad","viewCtrl":"default","css":{"pc":{"width":"100%","height":"811px","position":"absolute","top":"0px","left":"0%"},"pad":{"height":"399px","left":"calc(50% - 471.5px)","top":"0px"},"mobile":{"width":"100%","height":"161px","top":"65px","left":"0%"}},"doubleClickFunc":"bannerViewSelect","mouseMenu":[{"name":"\u7f16\u8f91\u8f6e\u64ad\u56fe","func":"bannerViewSelect()","ico":"fa-file-image-o"}],"params":{"filelist":"https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/1650250490275c8af0ae3ea9bc4f6.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/164964627297941cae26786ac7236.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/1650251007004ee4d9a7213b76230.jpg?version=1650251016,","titlelist":",,,","subtitlelist":",,,","textlist":"\u9996\u9875,\u5382\u533a,,","btnNamelist":",,,","btnTimelist":",,,","urllist":",,,","selectlist":",,,","groupNVallist":",,,","newspagelist":",,,","newsidlist":",,,","groupVallist":",,,","propagelist":",,,","proidlist":",,,","bgimglist":",,,"},"name":"banner","kind":"\u56fe\u7247\u8f6e\u64ad","showname":"\u56fe\u7247\u8f6e\u64ad","eventSet":{"scrollView":"none","type":"none"},"data":{"imgStyle":{"pc":"2","pad":"3","mobile":"5"},"timeSet":"10","animateStyle":"normal","timeAnimi":"1"},"unitViewSet":[]},"div_a_includeBlock_1634552039082":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"blankDivConfig","setupFunc":"initSettingElementEvent"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u5bb9\u5668\u6a21\u5757\u5c5e\u6027\u8bbe\u7f6e"},"style":"a_includeBlock","styleShowName":"\u81ea\u7531\u5bb9\u5668","styleKind":"\u81ea\u7531\u5bb9\u5668","styleHelpId":1249,"viewCtrl":"includeBlock","isInclude":"5","allowIncludeSelf":"1","css":{"pc":{"width":"100%","height":"70px","position":"absolute","top":"0px","left":"0%"},"pad":{"width":"100%"},"mobile":{"width":"100%","height":"65px","top":"0px","left":"0%"},"content":{"overflow":"visible"},"customCss":{"pc":{"modelArea":{"background":"rgba(255,255,255,0.5)"}}}},"name":"div","kind":"\u6392\u7248\u5e03\u5c40","showname":"\u9ed8\u8ba4","diyShowName":"\u81ea\u7531\u5bb9\u5668-\u81ea\u7531\u5bb9\u5668","eventSet":{"scrollView":"none","type":"none"},"moveEdit":[]},"image_logo_1634552039279":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"imageLogoConfig","setupFunc":"logoSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"LOGO\u5c5e\u6027\u8bbe\u7f6e"},"style":"logo","styleKind":"LOGO","styleHelpId":1252,"viewCtrl":"logo","css":{"pc":{"width":"13.770294648226097%","height":"50px","position":"absolute","left":"12.405365371955233%","top":"9.412499904632568px","z-index":3},"pad":{"left":"0.7423117709437964%","width":"22.26935312831389%","top":"13.5px","height":"44px"},"mobile":{"width":"224px","height":"59px","top":"3px","left":"0%"}},"data":{"logoType":1,"logoStyle":"1","logoBlank":"_self","idpage":"138119","imgurl":"https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/png\/1626243882841c90da0b5ca5751bf.png?version=1626243884"},"name":"image","kind":"\u56fe\u7247\u6a21\u5757","showname":"\u9ed8\u8ba4","diyShowName":"LOGO","eventSet":{"scrollView":"none","type":"none"},"params":{"filelist":"","urllist":"","propagelist":"","newspagelist":"","proidlist":"","groupVallist":"","newsidlist":"","groupNVallist":""}},"dh_style_36_1634552039291":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsB","act":"dhConfig","setupFunc":"dhSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u5bfc\u822a\u83dc\u5355\u5c5e\u6027\u8bbe\u7f6e"},"styleHelpId":1257,"style":"style_36","diyShowName":"\u4e09\u7ea7\u5bfc\u822a-\u98ce\u683c36","styleShowName":"\u4e09\u7ea7\u5bfc\u822a-\u98ce\u683c36","styleKind":"\u5bfc\u822a\u83dc\u5355","viewCtrl":"default","css":{"pc":{"width":"100%","z-index":2,"position":"absolute","left":"0%","top":"12.412500381469727px"},"pad":{"z-index":2,"left":"0%","width":"100%"},"mobile":{"width":"15.733333333333333%","z-index":"999","top":"10.5px","left":"70.8433349609375%"},"content":{"overflow":"visible"},"customCss":{"pc":{"@mainMenuSet":{"background":"transparent","border-color":"transparent","margin-right":"2px","line-height":"44px","height":"44px","font-weight":"bold"},"@mainMenuSet:hover":{"background":"#05a7cf","border-color":"transparent","line-height":"44px","height":"44px"},"%hot>a":{"background":"#05a7cf","border-color":"transparent","line-height":"44px","height":"44px"},"@subMenuSet:hover":{"border-color":"#05b5de"},"@%subCurSet":{"border-color":"#05b5de"},"@thrMenuSet:hover":{"color":"#05b5de"},"%thrCurSet":{"color":"#05b5de"},"@dhAreaSet":{"margin-left":"0px","margin-right":"0px","padding-left":"540px","padding-right":"228px","font-weight":"bold"},"%hot#@aview":{"border-color":"transparent","line-height":"44px","height":"44px"},"@subMenuSet":{"line-height":"44px","height":"44px","text-align":"left"}},"mobile":{"@dhAreaSet":{"background":"#333333","margin-top":"0px","margin-bottom":"0px","margin-left":"0px","margin-right":"0px","padding-left":"0px","padding-right":"0px"},"@mainMenuSet":{"background":"transparent","color":"#ffffff","font-size":"18px","border-top":"none !important","border-right":"none !important","border-bottom":"none !important","border-left":"none !important","border-color":"transparent","line-height":"60px","height":"60px","margin-left":"0px","margin-right":"0px"},"@subMenuSet":{"color":"#ffffff","font-size":"14px","border-color":"transparent","border-top":"none !important","border-right":"none !important","border-bottom":"none !important","border-left":"none !important","padding-left":"0px","padding-right":"0px","height":"40px","line-height":"40px"},"@mainMenuSet:hover":{"background":"transparent","color":"#60afbe","font-size":"18px","line-height":"60px","height":"60px","margin-left":"0px"},"%hot>a":{"background":"transparent","color":"#60afbe","font-size":"18px","line-height":"60px","height":"60px","margin-left":"0px"},"%hot#@aview":{"background":"transparent","color":"#60afbe","font-size":"18px","line-height":"60px","height":"60px","margin-left":"0px"},"@subMenuSet:hover":{"color":"#60afbe","font-family":"Microsoft YaHei","font-size":"16px"},"%subCurSet":{"color":"#60afbe","font-family":"Microsoft YaHei","font-size":"16px"},"@icoMenuSet":{"padding-top":"0px","padding-right":"0px"}},"pad":{"@dhAreaSet":{"padding-left":"260px","padding-right":"0px"}}}},"lock":{"height":"true"},"data":{"childMenuType":"0","dhOpen":"on","subtitlename":"off","logoposition":"0","logoopen":"off","logoright":"10","logoleft":"","hideLogoSetting":"1","contentWidth":"1200","picwidth":"200","picheight":"160","dhblank":"","iconopen":"","dh7img":["https:\/\/cdn.yun.sooce.cn\/6\/35171\/png\/163428773169689eafd7958738936.png?version=1634287340"],"dh11img":["https:\/\/cdn.yun.sooce.cn\/6\/35171\/png\/1634289201829c24142e16e0c0a2e.png?version=1634288810"],"showtarget0":"1","selectVal0":"410503","showtarget_02_0":"1","selectVal_02_0":"410509","bossType0":"1","dhpicfirstname":["\u5e73\u9762\u8bbe\u8ba1"],"dhpicsecodname":["\u6587\u5316\u5899\u8bbe\u8ba1"],"showpc":["138119","138121","138127","138128","138129","138130","138122","138123","138124"],"showmobile":["138119","138121","138127","138128","138129","138130","138122","138123","138124"]},"name":"dh","kind":"\u5bfc\u822a\u83dc\u5355","showname":"\u5bfc\u822a\u83dc\u5355","eventSet":{"scrollView":"none","type":"none"},"styleColor":"\u6d45\u84dd\u8272"},"text_style_01_1651313823020":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"69.87951807228916%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"172px","left":"14.760676653650448%"},"pad":{"width":"80%","left":"10%","top":"109.5px"},"mobile":{"width":"96%","font-size":"12px","color":"#333","line-height":"1.6","top":"88px","left":"2%"},"customCss":{"pc":{"@view_contents":{"color":"#9dad4e","font-size":"60px","line-height":"90px","font-weight":"bold","text-align":"center"}},"mobile":{"@view_contents":{"font-size":"20px","line-height":"28px"}},"pad":{"@view_contents":{"font-size":"40px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"},"params":{"animate":"bounceInDown","duration":"1","delay":"0.25","iteration":"1","offset":"0"}},"layout_1649657233254":{"css":{"pc":{"height":"38.010417px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"17px"}},"needfix":null,"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout"},"layout_1634262137101":{"css":{"pc":{"height":"198.010417px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"75px"},"pad":{"height":"173px"}},"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout","settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"text_style_01_1634262153291":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"41.96875px","left":"10%"},"pad":{"left":"calc(50% - 377.5px)","top":"25.962493896484375px"},"mobile":{"width":"96%","font-size":"12px","color":"#333","line-height":"1.6","top":"10px","left":"2%"},"customCss":{"pc":{"@view_contents":{"font-size":"36px","text-align":"center"}},"mobile":{"@view_contents":{"font-size":"16px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"text_style_01_1634262248560":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"124.9765625px","left":"10%"},"pad":{"left":"calc(50% - 377.5px)","top":"111.97500610351562px"},"mobile":{"width":"96%","font-size":"12px","color":"#333","line-height":"1.6","top":"45px","left":"2%"},"customCss":{"pc":{"@view_contents":{"font-size":"16px","opacity":"0.7","text-align":"center","font-weight":"normal"}},"mobile":{"@view_contents":{"font-size":"12px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"layout_1634262425904":{"css":{"pc":{"height":"379.01041699999996px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"505px"},"pad":{"height":"407px"}},"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout"},"text_style_01_1634262449963":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"100%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"0px","left":"0%"},"pad":{"width":"96%","left":"2.014846235418876%"},"mobile":{"width":"96%","font-size":"12px","color":"#333","line-height":"1.6","top":"10px","left":"2%"},"customCss":{"pc":{"@view_contents":{"opacity":"0.6","text-indent":"0em","text-align":"left"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"counter_style_3_1634263920178":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"counterConfig","setupFunc":"counterSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u8ba1\u6570\u5668\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_3","diyShowName":"\u8ba1\u6570\u5668-\u98ce\u683c1","styleShowName":"\u8ba1\u6570\u5668-\u98ce\u683c1","styleKind":"\u8ba1\u6570\u5668","viewCtrl":"default","css":{"pc":{"width":"100%","position":"absolute","top":"156px","left":"0%"},"pad":{"left":"calc(50% - 471.5px)","top":"207px"},"mobile":{"width":"96%","top":"271.00000762939453px","left":"2%"},"content":{"overflow":"visible"},"customCss":{"pc":{"@titleSet":{"color":"#333333","font-size":"16px"},"@unitSet":{"font-size":"30px","color":"#333333","padding-top":"0px"},"@numhSet":{"color":"#333333","font-family":"SimHei"},"@listBlocksSet":{"background":"transparent"}},"mobile":{"@unitSet":{"font-size":"12px","padding-bottom":"0px","margin-bottom":"-40px"},"@numhSet":{"font-size":"24px","margin-top":"5px"},"@titleSet":{"font-size":"14px"},"@modSet":{"margin-top":"-10px"}}}},"lock":{"height":"true"},"data":{"titleList":["\u884c\u4e1a\u7ecf\u9a8c","\u5de5\u5382\u9762\u79ef","\u5e74\u5904\u7406\u80fd\u529b","\u5b8c\u6574\u4e0a\u4e0b\u6e38\u4ea7\u4e1a\u94fe"],"numberList":["18","110000","60","360"],"unitList":["\u4f59\u5e74","\u33a1","\u4e07\u5428","\u95ed\u73af"],"titleOpen":"on","unitOpen":"on","timeNum":"4","colNum":"2","colNumpc":"4","colNumpad":"4","colNummobile":"2"},"name":"counter","kind":"\u5176\u5b83\u5de5\u5177","showname":"\u8ba1\u6570\u5668","eventSet":{"scrollView":"none","type":"none"}},"button_style_01_1634268969874":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"buttonConfigNew","setupFunc":"btnSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6309\u94ae\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6309\u94ae\u98ce\u683c1","styleShowName":"\u98ce\u683c1","styleKind":"\u6587\u5b57\u6309\u94ae","viewCtrl":"button","css":{"pc":{"width":"13.583333333333334%","position":"absolute","top":"285.96612548828125px","left":"43.206380208333336%"},"pad":{"left":"calc(50% - 78px)","top":"341px","width":"156px"},"mobile":{"width":"29.599999999999998%","top":"446.0000228881836px","left":"35.2%"},"content":{"overflow":"visible"},"customCss":{"pc":{"@btnaSet":{"font-size":"16px","font-family":"Microsoft YaHei","height":"45px","border-color":"#e5e5e5","border-radius":"25px"},"@btnaSet:hover":{"background":"#60afbe","color":"#ffffff","font-family":"Microsoft YaHei","font-size":"16px"}},"mobile":{"@btnaSet":{"height":"35px","font-size":"12px"}}}},"lock":{"height":"true"},"data":{"linkType":1,"linkTypeForm":11,"buttonVal":"\u4e86\u89e3\u66f4\u591a","btnType":"defaultButton","selectVal":"138123"},"name":"button","kind":"\u6309\u94ae\u6a21\u5757","showname":"\u9ed8\u8ba4","eventSet":{"scrollView":"none","type":"none"}},"layout_1650259237752":{"css":{"pc":{"height":"215.01041700000002px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"95px"}},"needfix":null,"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout"},"text_style_01_1650260960406":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"40.28125px","left":"9.979166666666666%"},"pad":[],"mobile":{"width":"96.00000000000001%","font-size":"12px","color":"#333","line-height":"1.6","top":"12px","left":"1.999999999999993%"},"customCss":{"pc":{"@view_contents":{"font-size":"36px","text-align":"center"}},"mobile":{"@view_contents":{"font-size":"16px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"},"moveEdit":[]},"text_style_01_1650261003823":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"133.62240600585938px","left":"9.979166666666666%"},"pad":[],"mobile":{"width":"96.00000000000001%","font-size":"12px","color":"#333","line-height":"1.6","top":"59.00001525878906px","left":"1.999999999999993%"},"customCss":{"pc":{"@view_contents":{"font-size":"16px","opacity":"0.7","text-align":"center","font-weight":"normal"}},"mobile":{"@view_contents":{"font-size":"12px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"},"moveEdit":[]},"layout_diy_1589247734":{"diyShowName":"\u533a\u57df\u5e03\u5c40","css":{"pc":{"height":"623.7864532470703px"},"pad":{"height":"633px"},"mobile":{"height":"320px"},"customCss":{"pc":{"modelArea":{"background":"#f8f8f8"}}},"content":{"max-width":"1200px"}},"settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"banner_style_01_1650259208205":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"bannerConfig","setupFunc":"bannerSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u8f6e\u64ad\u5c5e\u6027\u8bbe\u7f6e"},"styleHelpId":1256,"style":"style_01","diyShowName":"\u8f6e\u64ad\u56fe-\u98ce\u683c1","styleShowName":"\u98ce\u683c1","styleKind":"AAA","viewCtrl":"default","css":{"pc":{"width":"101.33333333333334%","height":"623px","position":"absolute","top":"0.7864532470703125px","left":"-0.020833333333333336%"},"pad":[],"mobile":{"width":"92%","height":"300px","top":"0px","left":"4%"}},"doubleClickFunc":"bannerViewSelect","mouseMenu":[{"name":"\u7f16\u8f91\u8f6e\u64ad\u56fe","func":"bannerViewSelect()","ico":"fa-file-image-o"}],"params":{"filelist":"https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/165025992970838ab21486a378fb6.jpg?version=1650259941,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/165025992970860b872d3448bd692.jpg?version=1650259941,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/1650259929709ab2cb2b8e057bf46.jpg?version=1650259944,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/1650259929709625f382207f184e2.jpg?version=1650259942,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/1650260899530494b106897bf81d3.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/16502608995293fb1b7aba648c949.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/1650260899530dd88bd6a9a00922f.jpg?version=0,","titlelist":",,,,,,,","subtitlelist":",,,,,,,","textlist":"\u6cb3\u5357\u6c38\u7eed\u7ae3\u5de5\u4eea\u5f0f,,,,,,,","btnNamelist":",,,,,,,","btnTimelist":",,,,,,,","urllist":",,,,,,,","selectlist":",,,,,,,","groupNVallist":",,,,,,,","newspagelist":",,,,,,,","newsidlist":",,,,,,,","groupVallist":",,,,,,,","propagelist":",,,,,,,","proidlist":",,,,,,,","bgimglist":"\/images\/logoback.gif,,,,,,,"},"name":"banner","kind":"\u56fe\u7247\u8f6e\u64ad","showname":"\u56fe\u7247\u8f6e\u64ad","eventSet":{"scrollView":"none","type":"none"},"data":{"imgStyle":{"pc":"3","pad":null,"mobile":null},"groundGlass":"","animateStyle":"normal","timeSet":"8"}},"layout_1650269092377":{"css":{"pc":{"height":"202.010417px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"137px"}},"needfix":null,"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout"},"text_style_01_1634267573107":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"53.30729675292969px","left":"10.416666666666668%"},"pad":[],"mobile":{"width":"96.00000000000001%","font-size":"12px","color":"#333","line-height":"1.6","top":"25.98749542236328px","left":"1.999999999999993%"},"customCss":{"pc":{"@view_contents":{"font-size":"36px","text-align":"center"}},"mobile":{"@view_contents":{"font-size":"18px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"text_style_01_1634267573127":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"131.2890625px","left":"10.393880208333334%"},"pad":[],"mobile":{"width":"96.00000000000001%","font-size":"12px","color":"#333","line-height":"1.6","top":"74.00000762939453px","left":"1.999999999999993%"},"customCss":{"pc":{"@view_contents":{"font-size":"16px","opacity":"0.7","text-align":"center","font-weight":"normal"}},"mobile":{"@view_contents":{"font-size":"16px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"layout_1650269089393":{"css":{"pc":{"height":"304.1875px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"459px"}},"needfix":null,"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout"},"newsList_style_04_1589254923656":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsBhj","act":"newListCfg","setupFunc":"newListSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u65b0\u95fb\u5217\u8868\u5c5e\u6027\u8bbe\u7f6e"},"styleHelpId":1266,"style":"style_04","diyShowName":"\u65b0\u95fb\u5217\u8868-\u98ce\u683c4","styleShowName":"\u98ce\u683c4","styleKind":"AAA","viewCtrl":"newsList","css":{"pc":{"width":"99.41666666666666%","position":"absolute","top":"1.1875px","left":"0.27083333333333337%"},"pad":[],"mobile":{"width":"96.00000000000001%","top":"0px","left":"1.999999999999993%"},"customCss":{"pc":{"@titleSet":{"font-weight":"bold","font-size":"18px"},"@imgSet":{"background":"transparent"},"@btnaSet":{"border-color":"#b2b2b2","font-size":"14px","color":"#4c4c4c"},"@btnaSet:hover":{"background":"#ff0000","color":"#ffffff"},"@page_btn#@pageSet":{"border-radius":"10px"},"%pagecurSet":{"background":"#60afbe","border-radius":"10px"}},"pad":{"@titleSet":{"font-size":"16px"},"@btnaSet":{"font-size":"12px"}},"mobile":{"@titleSet":{"font-size":"14px"},"@btnaSet":{"font-size":"12px"}}}},"lock":{"height":"true"},"params":{"titlenum":10,"detailnum":10,"animate":"bounceInRight","duration":"0.5","delay":"0.25","iteration":"1","offset":"0"},"data":{"newsShow":["pic","date","title","summary"],"hidden":null,"comments_num":10,"sort":"id","property_disable":[".picScale","._column"],"newsnum":"4","column":1,"gid":0,"newPicScale":"2:3","newshnumpc":"4","newshnum":"4","newsGids":["all"],"showat":"","newshnumpad":"4","titlenum":"12","detailnum":{"pc":"22","pad":null,"mobile":null},"newsznumpc":"2","newsznum":"2","newsSort":"intOrder"},"newList":{"pic":"\u56fe\u7247","date":"\u65e5\u671f","title":"\u6807\u9898","kind":"\u7c7b\u522b","summary":"\u6458\u8981","page":"\u5206\u9875","article":"\u67e5\u770b\u5168\u6587"},"newshnum":4,"newshnumpad":3,"newshnummobile":2,"newsznum":1,"tnum":10,"dnum":10,"name":"newsList","kind":"\u65b0\u95fb\u6a21\u5757","showname":"\u65b0\u95fb\u5217\u8868","eventSet":{"scrollView":"none","type":"none"},"moveEdit":[]},"layout_1634266790676":{"css":{"pc":{"height":"200.010417px"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"111px"}},"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout","settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"text_style_01_1634266790682":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"37.971343994140625px","left":"10%"},"pad":{"left":"9.968186638388122%"},"mobile":{"width":"96%","font-size":"12px","color":"#333","line-height":"1.6","top":"19px","left":"2%"},"customCss":{"pc":{"@view_contents":{"font-size":"36px","text-align":"center"}},"mobile":{"@view_contents":{"font-size":"16px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"text_style_01_1634266790706":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"80%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"122.99737548828125px","left":"10%"},"pad":{"left":"9.968186638388122%"},"mobile":{"width":"96%","font-size":"12px","color":"#333","line-height":"1.6","top":"63px","left":"2%"},"customCss":{"pc":{"@view_contents":{"font-size":"22px","opacity":"0.7","text-align":"center","font-weight":"normal"}},"mobile":{"@view_contents":{"font-size":"12px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"}},"layout_1634548084382":{"diyShowName":"\u533a\u57df\u5e03\u5c40","css":{"pc":{"height":"562px"},"pad":{"height":"495px"},"mobile":{"height":"396px"},"content":{"max-width":"1200px","overflow":"visible"}},"settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"},"name":"layout","style":"autoLayout"},"productList_style_22_1634548084385":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"prodListConfig","setupFunc":"prodListSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u4ea7\u54c1\u5217\u8868\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_22","diyShowName":"\u4ea7\u54c1\u5217\u8868-\u534a\u900f\u660e\u98ce\u683c","styleShowName":"\u534a\u900f\u660e\u98ce\u683c","styleKind":"AAA","styleSort":"9998","styleHelpId":1269,"defaultContent":["pic","title","oldprice"],"viewCtrl":"default","css":{"pc":{"width":"100%","position":"absolute","top":"0px","left":"0%"},"pad":[],"mobile":{"width":"96%","top":"10px","left":"2%"},"content":{"overflow":"visible"},"customCss":{"pc":{"%pagecurSet":{"background":"#60afbe","border-radius":"10px"},"@page_btn#@pageSet:hover":{"background":"#60afbe"},"@page_btn#@pageSet":{"border-radius":"10px"}},"mobile":{"@titleSet":{"font-size":"14px"}}}},"lock":{"height":"true"},"prodnum":"4","prodhnum":"4","prodhnumpad":"3","prodhnummobile":"2","prodznum":"2","picscale":"3:2","prodtitle":"true","prodprice":"true","prodviprice":"false","prodbutton":"true","prodpic":"true","arr_ProdShow":{"pic":"\u56fe\u7247","title":"\u6807\u9898","kind":"\u7c7b\u522b","intro":"\u7b80\u4ecb","page":"\u5206\u9875","price":"\u4ef7\u683c","stock":"\u9500\u91cf","viprice":"\u4f1a\u5458\u4ef7","button":"\u6309\u94ae"},"data":{"newpshow":{"pc":["pic","title","oldprice"]},"prodnum":"6","prodhnum":"3","prodhnumpad":"3","prodhnummobile":"2","prodznum":"2","picscale":"3:2","pshow":["pic","title","oldprice"],"prodPicScale":"2:3","gids":[],"prodhnumpc":"3","sortButton":"0","showtarget":"_self","showat":"138131","prodsort":"intOrder"},"name":"productList","kind":"\u4ea7\u54c1\u6a21\u5757","showname":"\u4ea7\u54c1\u5217\u8868","eventSet":{"scrollView":"none","type":"none"}},"layout_1589254656581":{"css":{"pc":{"height":"120.010417px"},"content":{"overflow":"visible","max-width":"1200px"},"pad":{"height":"123px"},"mobile":{"height":"212px"},"customCss":{"pc":{"modelArea":{"background":"#f8f8f8"}}}},"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout","settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"text_style_01_1650269648532":{"settingsBox":{"setList":{"\u5e38\u89c4":{"isDefault":"true","mod":"viewSettingsHcl","act":"textConfig","setupFunc":"textSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6587\u5b57\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u6587\u672c\u6a21\u5757","styleKind":"\u6587\u672c\u6a21\u5757","styleSort":"99","viewCtrl":"default","css":{"pc":{"width":"25.25%","font-size":"16px","color":"#333","line-height":"1.8","font-family":"Microsoft YaHei","position":"absolute","top":"13.200531005859375px","left":"71.94986979166667%"},"pad":{"width":"293px","left":"66.1320254506893%"},"mobile":{"width":"77.33333333333333%","font-size":"12px","color":"#333","line-height":"1.6","top":"106.00001525878906px","left":"3.343333435058594%"},"customCss":{"pc":{"@view_contents":{"font-size":"18px","font-weight":"bold"}},"mobile":{"@view_contents":{"font-size":"14px"}}}},"lock":{"height":"true"},"showEditTip":"\u53cc\u51fb\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","doubleClickFunc":"editTextView","mouseMenu":[{"name":"\u7f16\u8f91\u6587\u5b57\u5185\u5bb9","func":"editTextView()","ico":""}],"hasStyle":2,"name":"text","kind":"\u6587\u5b57\u6a21\u5757","showname":"\u6587\u672c\u6a21\u5757","eventSet":{"scrollView":"none","type":"none"},"data":{"showtarget":"6"}},"image_style_01_1650270315113":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"imageConfig","setupFunc":"imageSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u56fe\u7247\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u56fe\u7247-\u5355\u5f20","styleShowName":"\u5355\u5f20\u56fe\u7247","styleKind":"\u5355\u5f20\u56fe\u7247","styleHelpId":1254,"viewCtrl":"default","css":{"pc":{"width":"10%","height":"107px","position":"absolute","top":"6.9609375px","left":"60.1443125406901%"},"pad":{"height":"91px","width":"98px","left":"52.89634146341463%","top":"13.199996948242188px"},"mobile":{"width":"25.866666666666667%","height":"95px","top":"98.00001525878906px","left":"68.47333577473958%"},"content":{"overflow":"visible"}},"doubleClickFunc":"imageViewSelect","mouseMenu":[{"name":"\u9009\u62e9\u56fe\u7247","func":"imageViewSelect()","ico":"fa-file-image-o"}],"sizeCallbackFunc":"setImgCen","imgUrl":"\/images\/matLibrary\/webImg\/image01_default.jpg","name":"image","kind":"\u56fe\u7247\u6a21\u5757","showname":"\u9ed8\u8ba4","data":{"imgUrl":"https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/jpg\/163486870204708773e592c98e60a.jpg?version=1634868704"},"eventSet":{"scrollView":"none","type":"none"}},"image_style_01_1650270449548":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"imageConfig","setupFunc":"imageSetup"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u56fe\u7247\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u56fe\u7247-\u5355\u5f20","styleShowName":"\u5355\u5f20\u56fe\u7247","styleKind":"\u5355\u5f20\u56fe\u7247","styleHelpId":1254,"viewCtrl":"default","css":{"pc":{"width":"34.25%","height":"96px","position":"absolute","top":"12.223968505859375px","left":"0%"},"pad":{"width":"343px"},"mobile":{"width":"100%","height":"83px","top":"5.0000152587890625px","left":"0%"},"content":{"overflow":"visible"}},"doubleClickFunc":"imageViewSelect","mouseMenu":[{"name":"\u9009\u62e9\u56fe\u7247","func":"imageViewSelect()","ico":"fa-file-image-o"}],"sizeCallbackFunc":"setImgCen","imgUrl":"\/images\/matLibrary\/webImg\/image01_default.jpg","name":"image","kind":"\u56fe\u7247\u6a21\u5757","showname":"\u9ed8\u8ba4","data":{"imgUrl":"https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/9471\/png\/1626243852918d15fe27b500a4bfc.png?version=1626243854"},"eventSet":{"scrollView":"none"}},"layout_1634267541073":{"css":{"pc":{"height":"74.010417px"},"content":{"overflow":"visible","max-width":"1200px"},"customCss":{"pc":{"modelArea":{"background":"#8faf44"}}},"mobile":{"height":"66px"}},"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout","settingsBox":{"showTitle":"\u533a\u57df\u5e03\u5c40\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"footerCustom_footerDh_01_1649656640549":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsB","act":"dhConfig","setupFunc":"dhSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u5bfc\u822a\u83dc\u5355\u5c5e\u6027\u8bbe\u7f6e"},"styleHelpId":1257,"style":"footerDh_01","diyShowName":"\u5bfc\u822a\u5217\u8868\u98ce\u683c","styleShowName":"\u5bfc\u822a\u5217\u8868\u98ce\u683c","styleKind":"\u5bfc\u822a\u5217\u8868\u6a21\u5757","viewCtrl":"default","css":{"pc":{"width":"79%","z-index":"999","position":"absolute","top":"14.75px","left":"10.520833333333334%"},"pad":{"z-index":"999"},"mobile":{"width":"96%","z-index":"999","top":"10px","left":"2%"},"content":{"overflow":"visible"},"customCss":{"pc":{"@mainMenuSet:hover":{"background":"#8faf44"},"%hot>a":{"background":"#8faf44"},"%hot#@aview":{"background":"#8faf44"}}}},"lock":{"height":"true"},"data":{"childMenuType":"1","dhOpen":"on","subtitlename":"off","logoposition":"0","logoopen":"off","logoright":"","logoleft":"","contentWidth":"","hanghnumpc":"5","hanghnumpad":"5","hanghnummobile":"5","showpc":["138119","138121","138122","138123","138124"],"showmobile":["138119","138121","138122","138123","138124"],"hanghnum":"5"},"name":"footerCustom","kind":"\u5e95\u90e8\u83dc\u5355","showname":"\u5e95\u90e8\u5bfc\u822a","eventSet":{"scrollView":"none","type":"none"}},"layout_1634527718088":{"needfix":1,"diyShowName":"\u533a\u57df\u5e03\u5c40","name":"layout","style":"autoLayout","css":{"content":{"overflow":"visible","max-width":"1200px"},"pc":{"height":"1px"}}},"comm_layout_footer":{"diyShowName":"\u5171\u4eab\u5e95\u90e8","css":{"pc":{"height":"130.01041700000002px","z-index":"99999"},"content":{"overflow":"visible","max-width":"1200px"},"mobile":{"height":"97px"},"customCss":{"mobile":{"modelArea":{"background":"#7f7f7f"}},"pc":{"modelArea":[]}},"pad":{"height":"111px"}},"settingsBox":{"showTitle":"\u5171\u4eab\u5e95\u90e8\u8bbe\u7f6e","setList":{"\u6837\u5f0f":{"isDefault":"true","mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}}},"eventSet":{"scrollView":"none","type":"none"}},"copyright_style_01_1634268381705":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"copyrightConfig","setupFunc":"copyrightSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6309\u94ae\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u7248\u6743\u4fe1\u606f-\u98ce\u683c1","styleShowName":"\u7248\u6743\u4fe1\u606f-\u98ce\u683c1","styleShowImg":"\/sysTools\/Model\/viewsRes\/showImg\/copyright_01.png","styleShowClass":"one","styleKind":"AAA","viewCtrl":"default","css":{"pc":{"width":"1000px","left":"9.476343790690105%","top":"49.953125px","position":"absolute"},"pad":{"width":"96%","left":"3.0766172601208326%","top":"66px"},"mobile":{"width":"100%","left":"0%","top":"13px"},"content":{"overflow":"visible"}},"lock":{"height":"true"},"data":{"copyright_info":"Copyright \u00a9 YongXu All rights reserved. ","icp_info":"\u8c6bICP\u59072021021326\u53f7-1 ","lw_info":"\u8c6b\u516c\u7f51\u5b89\u590741088202000338\u53f7","show_copyright":"1","show_icp":"0","show_lw":"0"},"name":"copyright","kind":"\u5e95\u90e8\u83dc\u5355","showname":"\u7248\u6743\/\u5907\u6848","eventSet":{"scrollView":"none","type":"none"}},"copyright_style_01_1649656442658":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"copyrightConfig","setupFunc":"copyrightSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6309\u94ae\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u7248\u6743\u4fe1\u606f-\u98ce\u683c1","styleShowName":"\u7248\u6743\u4fe1\u606f-\u98ce\u683c1","styleShowImg":"\/sysTools\/Model\/viewsRes\/showImg\/copyright_01.png","styleShowClass":"one","styleKind":"AAA","viewCtrl":"default","css":{"pc":{"width":"1000px","left":"9.309244791666666%","top":"87.95831298828125px","position":"absolute"},"pad":{"width":"96%","left":"4.029692470837752%","top":"40px"},"mobile":{"width":"100%","left":"0%","top":"40px"},"content":{"overflow":"visible"}},"lock":{"height":"true"},"data":{"copyright_info":" \u6cb3\u5357\u6c38\u7eed\u518d\u751f\u8d44\u6e90\u6709\u9650\u516c\u53f8 \u7248\u6743\u6240\u6709 Copyright \u00a9 YongXu All rights reserved. ","icp_info":"\u8c6bICP\u59072021021326\u53f7-1 ","lw_info":"\u8c6b\u516c\u7f51\u5b89\u590741088202000338\u53f7","show_copyright":"0","show_icp":"1","show_lw":"1"},"name":"copyright","kind":"\u5e95\u90e8\u83dc\u5355","showname":"\u7248\u6743\/\u5907\u6848","eventSet":{"scrollView":"none","type":"none"}},"copyright_style_01_1649656478322":{"settingsBox":{"setList":{"\u5c5e\u6027":{"isDefault":"true","mod":"viewSettingsHcl","act":"copyrightConfig","setupFunc":"copyrightSetup"},"\u98ce\u683c":{"mod":"viewSettingsOne","act":"ShowStyle"},"\u52a8\u753b":{"mod":"viewSettings","act":"anime","setupFunc":"setBoxAnime"},"\u6837\u5f0f":{"mod":"viewSettingsCustom","act":"CustomConfig","setupFunc":"SettingtabChange,SettingCustomListen"},"\u5168\u5c40":{"mod":"viewSettings","act":"main","setupFunc":"setBoxMain"}},"showTitle":"\u6309\u94ae\u5c5e\u6027\u8bbe\u7f6e"},"style":"style_01","diyShowName":"\u7248\u6743\u4fe1\u606f-\u98ce\u683c1","styleShowName":"\u7248\u6743\u4fe1\u606f-\u98ce\u683c1","styleShowImg":"\/sysTools\/Model\/viewsRes\/showImg\/copyright_01.png","styleShowClass":"one","styleKind":"AAA","viewCtrl":"default","css":{"pc":{"width":"83.33333333333334%","left":"9.807942708333334%","top":"20.93231201171875px","position":"absolute"},"pad":{"width":"96%","left":"2%","top":"13.925018310546875px"},"mobile":{"width":"100%","left":"0%","top":"63.54998779296875px"},"content":{"overflow":"visible"}},"lock":{"height":"true"},"data":{"copyright_info":" \u6cb3\u5357\u6c38\u7eed\u518d\u751f\u8d44\u6e90\u6709\u9650\u516c\u53f8 \u7248\u6743\u6240\u6709","icp_info":"\u8c6bICP\u59072021021326\u53f7-1 ","lw_info":"\u8c6b\u516c\u7f51\u5b89\u590741088202000338\u53f7","show_copyright":"1","show_icp":"0","show_lw":"0"},"name":"copyright","kind":"\u5e95\u90e8\u83dc\u5355","showname":"\u7248\u6743\/\u5907\u6848","eventSet":{"scrollView":"none","type":"none"}}}