$(function () { imgLazyloadLib(); //浠g爜鍒涘缓涓€涓伄缃╁眰锛岀敤浜庡仛鍔犺浇鍔ㄧ敾 //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%,瑙e喅瀹㈡埛鑰佸枩娆㈢缉鏀炬祻瑙堝櫒姣斾緥闂 $(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() < obj.offset().top + obj.height()) { father.css({ "height": (obj.offset().top + obj.height() - father.offset().top) + "px" }); diyAutoHeightDo(father); } else { diyAutoHeightFatherDo(father, obj); } } } } } function setScroll() { if (typeof ($("html").niceScroll) == "function") { $("html").niceScroll({ zindex: 99999, cursoropacitymax: 0.8, cursoropacitymin: 0.3, horizrailenabled: false, mousescrollstep: 60, smoothscroll: true }); } else { setTimeout(setScroll, 500); } } var settingsLib = function (view) { var main = { view: null, setup: function (obj) { if (window.viewsSettings && window.viewsSettings[obj.attr("id")]) { this.init(window.viewsSettings[obj.attr("id")]); this.view = obj; } else { this.init({}); } }, init: function (obj) { if (typeof (obj) == 'object') { this.settings = obj; } else if (obj != "" && typeof obj == 'string') { eval('if(typeof(' + obj + ')=="object"){this.settings=' + obj + ';}else{this.settings={};}'); } else { this.settings = {}; } }, setSetting: function (k, v) { if (!this.settings) { this.settings = {}; } var keyArray = k.split("."); var val = 'this.settings'; for (key in keyArray) { if (keyArray[key] && keyArray[key] != '') { if (eval(val + '["' + keyArray[key] + '"]')) { val = val + '["' + keyArray[key] + '"]'; } else { eval(val + '["' + keyArray[key] + '"]={}'); val = val + '["' + keyArray[key] + '"]'; } } } if (v == null) { eval("delete " + val); } else { eval(val + "=v"); } }, getSetting: function (key) { if (!this.settings) { this.settings = {}; } if (key) { var keyArray = key.split("."); var val = 'this.settings'; for (key in keyArray) { if (keyArray[key] && keyArray[key] != '') { if (eval(val + '["' + keyArray[key] + '"]')) { val = val + '["' + keyArray[key] + '"]'; continue; } else { val = null; break; } } } return eval(val); } else { return this.settings; } }, saveSettings: function (obj) { if (typeof (obj) == "object" && this.settings && obj.hasClass("view")) { window.viewsSettings[obj.attr("id")] = this.settings; } else if (this.view && typeof (this.view) == "object" && this.settings && this.view.hasClass("view")) { window.viewsSettings[this.view.attr("id")] = this.settings; } } }; if (view) { main.view = view; main.setup(view); } return main; } function GetUrlPara() { var url = document.location.toString(); var arrUrl = url.split("?"); var paras = ''; if (arrUrl.length > 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; } //杩欐槸鍘熸湰鐨刄RL 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); //瀵箄rl杩涜缁勮 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瑙e喅浼犺緭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; i < obj.length; i++) { var OO = obj.item(i); if ("||BR|HR|TEXTAREA|".indexOf("|" + OO.tagName + "|") > 0 || 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; i < obj.length; i++) { var OO = obj.item(i); if ("||BR|HR|TEXTAREA|".indexOf("|" + OO.tagName + "|") > 0 || 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 '鐨戣敿纰嶇埍缈辫濂ュ潩缃㈡憜璐ラ鍔炵粖甯粦闀戣挨鍓ラケ瀹濇姤椴嶈緢璐濋挕鐙堝鎯环绗旀瘯姣欓棴杈圭紪璐彉杈╄精槌栫槳婵掓花瀹炬憟楗兼嫧閽甸搨椹冲崪琛ュ弬铓曟畫鎯儴鐏胯媿鑸变粨娌у帟渚у唽娴嬪眰璇ф悁鎺鸿潐棣嬭皸缂犻摬浜ч槓棰ゅ満灏濋暱鍋胯偁鍘傜晠閽炶溅褰诲皹闄堣‖鎾戠О鎯╄瘹楠嬬棿杩熼┌鑰婚娇鐐藉啿铏疇鐣磋笇绛圭桓涓戞┍鍘ㄩ攧闆忕鍌ㄨЕ澶勪紶鐤棷鍒涢敜绾话杈炶瘝璧愯仾钁卞洷浠庝笡鍑戠獪閿欒揪甯﹁捶鎷呭崟閮告幐鑳嗘儺璇炲脊褰撴尅鍏氳崱妗f崳宀涚シ瀵肩洍鐏倱鏁屾钉閫掔紨鐐瑰灚鐢垫穩閽撹皟杩皪鍙犻拤椤堕敪璁笢鍔ㄦ爧鍐绘枟鐘婄嫭璇昏祵闀€閿绘柇缂庡厬闃熷鍚ㄩ】閽濆ず楣呴璁规伓楗垮効灏旈サ璐板彂缃氶榾鐝愮熅閽掔儲鑼冭穿楗绾洪搴熻垂绾峰潫濂嬫劋绮赴鏋攱椋庣柉鍐紳璁藉嚖鑲よ緪鎶氳緟璧嬪璐熻濡囩細璇ラ挋鐩栧共璧剁璧e唸鍒氶挗绾插矖鐨嬮晲鎼侀附闃侀摤涓粰榫氬宸╄础閽╂矡鏋勮喘澶熻泭椤惧墣鍏宠棣嗘儻璐箍瑙勭褰掗緹闂鸿建璇℃煖璐靛埥杈婃粴閿呭浗杩囬獓闊╂眽闃傞工璐烘í杞伴缚绾㈠悗澹舵姢娌埛鍝楀崕鐢诲垝璇濇€€鍧忔鐜繕缂撴崲鍞ょ棯鐒曟叮榛勮皫鎸ヨ緣姣佽纯绉戒細鐑╂眹璁宠缁樿崵娴戜紮鑾疯揣绁稿嚮鏈虹Н楗ヨ楦$哗缂夋瀬杈戠骇鎸ゅ嚑钃熷墏娴庤璁伴檯缁х邯澶硅崥棰婅淳閽句环椹炬鐩戝潥绗洪棿鑹扮紕鑼ф纰辩》鎷f崱绠€淇噺鑽愭閴磋返璐辫閿埌鍓戦ク娓愭簠娑ф祮钂嬫〃濂栬閰辫兌娴囬獎濞囨悈閾扮煫渚ヨ剼楗虹即缁炶娇杈冪Ц闃惰妭鑼庢儕缁忛闈欓暅寰勭棄绔炲噣绾犲帺鏃ч┕涓炬嵁閿儳鍓ч箖缁㈡澃娲佺粨璇眾绱ч敠浠呰皑杩涙檵鐑敖鍔茶崋瑙夊喅璇€缁濋挧鍐涢獜寮€鍑澹宠鍨︽伋鎶犲簱瑁ゅじ鍧椾京瀹界熆鏃峰喌浜忓部绐ラ婧冩墿闃旇湣鑵婅幈鏉ヨ禆钃濇爮鎷︾闃戝叞婢滆鞍鎻借鎳掔紗鐑傛互鎹炲姵娑濅箰闀瀿绫绘唱绡辩閲岄菠绀间附鍘夊姳鐮惧巻娌ラ毝淇╄仈鑾茶繛闀版€滄稛甯樻暃鑴搁摼鎭嬬偧缁冪伯鍑変袱杈嗚皡鐤楄窘闀g寧涓撮偦槌炲嚊璧侀緞閾冨噷鐏靛箔棰嗛鍒橀緳鑱嬪挋绗煎瀯鎷㈤檱妤煎▌鎼傜瘬鑺﹀崲棰呭簮鐐夋幊鍗よ檹椴佽祩绂勫綍闄嗛┐鍚曢摑渚e薄缂曡檻婊ょ豢宄︽寷瀛沪涔辨姟杞鸡浠戞拨绾惰钀濈綏閫婚敚绠╅楠嗙粶濡堢帥鐮佽殏椹獋鍚椾拱楹﹀崠杩堣剦鐬掗铔弧璋╃尗閿氶搯璐镐箞闇夋病闀侀棬闂蜂滑閿版ⅵ璋滃讥瑙呯坏缂呭簷鐏偗闂介福閾艾璋嬩憨閽犵撼闅炬尃鑴戞伡闂归鑵绘挼鎹婚吙楦熻亗鍟晩闀嶆煚鐙炲畞鎷ф碁閽航鑴撴祿鍐滅枱璇烘楦ユ鍛曟菠鐩樺簽鍥界埍璧斿柗楣忛獥椋橀璐嫻鍑瘎娉奸鎵戦摵鏈磋氨鑴愰綈楠戝矀鍚皵寮冭鐗垫墻閽庨搮杩佺璋﹂挶閽虫綔娴呰按鍫戞灙鍛涘钄峰己鎶㈤敼妗ヤ箶渚ㄧ繕绐嶇獌閽︿翰杞绘阿鍊鹃》璇峰簡鐞肩┓瓒嬪尯韬┍榫嬮ⅶ鏉冨姖鍗撮箠璁╅ザ鎵扮粫鐑煣璁ょ韩鑽g粧杞攼闂版鼎娲掕惃槌冭禌浼炰抚楠氭壂娑╂潃绾辩瓫鏅掗棯闄曡怠缂激璧忕儳缁嶈祳鎽勬厬璁剧粎瀹″┒鑲炬笚澹扮怀鑳滃湥甯堢嫯婀胯瘲灏告椂铓€瀹炶瘑椹跺娍閲婇グ瑙嗚瘯瀵垮吔鏋㈣緭涔﹁祹灞炴湳鏍戠珫鏁板竻鍙岃皝绋庨『璇寸鐑佷笣楗茶€告€傞璁艰鎿炶嫃璇夎們铏界互宀佸瓩鎹熺瑡缂╃悙閿佺嵀鎸炴姮鎽婅椽鐦哗鍧涜碍璋堝徆姹ょ儷娑涚沪鑵捐獖閿戦浣撳眽鏉¤创閾佸巺鍚儍閾滅粺澶村浘娑傚洟棰撹湑鑴遍傅椹┘妞醇琚滃集婀鹃〗涓囩綉闊﹁繚鍥翠负娼嶇淮鑻囦紵浼含璋撳崼娓╅椈绾圭ǔ闂摦鎸濊湕娑$獫鍛滈挩涔岃鏃犺姕鍚村潪闆惧姟璇敗鐗鸿涔犻摚鎴忕粏铏捐緰宄′緺鐙帵閿ㄩ矞绾ゅ捀璐よ闂叉樉闄╃幇鐚幙棣呯尽瀹嚎鍘㈤暥涔¤鍝嶉」钀ч攢鏅撳暩铦庡崗鎸熸惡鑳佽皭鍐欐郴璋㈤攲琛呭叴姹归攬缁h櫄鍢橀』璁哥华缁僵鎮€夌櫍缁氬鍕嬭瀵婚┋璁閫婂帇楦﹂腑鍝戜簹璁堕槈鐑熺洂涓ラ闃庤壋鍘岀牃褰﹁皻楠岄腐鏉ㄦ壃鐤¢槼鐥掑吇鏍风懚鎽囧哀閬ョ獞璋h嵂鐖烽〉涓氬彾鍖婚摫棰愰仐浠綕铓佽壓浜垮繂涔夎璁皧璇戝紓缁庤崼闃撮摱楗ū濠撮拱搴旂绩鑾硅悿钀ヨ崸铦囬鍝熸嫢浣g棃韪婂拸娑屼紭蹇ч偖閾€鐘规父璇辫垎楸兼笖濞变笌灞胯鍚佸尽鐙辫獕棰勯┉楦虫笂杈曞洯鍛樺渾缂樿繙鎰跨害璺冮挜宀崇菠鎮﹂槄浜戦儳鍖€闄ㄨ繍钑撮厺鏅曢煹鏉傜伨杞芥敀鏆傝禐璧冭剰鍑挎灒鐏惰矗鎷╁垯娉借醇璧犳墡鏈涧閾¢椄璇堟枊鍊烘鐩忔柀杈楀喘鏍堟垬缁藉紶娑ㄥ笎璐﹁儉璧佃洶杈欓敆杩欒礊閽堜睛璇婇晣闃垫專鐫佺嫲甯ч儜璇佺粐鑱屾墽绾告寶鎺峰笢璐ㄩ挓缁堢鑲夸紬璇岃酱鐨辨樇楠ょ尓璇歌瘺鐑涚灘鍢辫串閾哥瓚椹讳笓鐮栬浆璧氭々搴勮濡嗗.鐘堕敟璧樺潬缂€璋嗘祳鍏硅祫娓嶈釜缁兼€荤旱閭硅瘏缁勯捇鑷撮挓涔堜负鍙嚩鍑嗗惎鏉块噷闆充綑閾炬硠鏍囬€傛€佷簬'; } function FTPYStr() { return '鐨氳椆绀欐剾缈鸿濂у)缃锋摵鏁楅爳杈︾祮骞秮閹婅瑮鍓濋=瀵跺牨楫戣缉璨濋媷鐙藉倷鎲婄箖绛嗙暍鏂冮枆閭婄法璨惰畩杈井榧堢櫉鐎曟勘璩撴摨椁呮挜缂介墤椐佽敂瑁滃弮锠舵畼鎱氭厴鐕﹁捈鑹欏€夋粍寤佸伌鍐婃脯灞よ┇鏀欐懟锜璁掔簭閺熺敚闂¢~鍫村槜闀峰劅鑵稿粻鏆㈤垟杌婂竟濉甸櫝瑗拹绋辨嚥瑾犻▉鐧¢伈棣虫仴榻掔喚娌栬煵瀵电枃韬婄睂缍㈤啘娅ュ粴閶ら洓绀庡劜瑙歌檿鍌崇槨闂栧壍閷樼磾缍借经瑭炶硿鑱拌敟鍥緸鍙㈡箠绔勯尟閬斿付璨告摂鍠劜鎾h喗鎲氳獣褰堢暥鎿嬮花钑╂獢鎼楀扯绂卞皫鐩滅噲閯ф暤婊岄仦绶犻粸澧婇浕婢遍嚕瑾垮彔璜滅枈閲橀爞閷犺▊鏉卞嫊妫熷噸楝ョ姠鐛ㄨ畝璩崓閸涙柗绶炲厡闅婂皪鍣搁爴閳嶅オ榈濋瑷涙儭椁撳厭鐖鹃璨崇櫦缃伴枼鐞虹が閲╃叐绡勮博椋í绱¢寤㈣不绱涘⒊濂啢绯炶睈妤撻嫆棰ㄧ構棣斧璜烽吵鑶氳蓟鎾紨璩﹁璨犺▋濠︾笡瑭查垼钃嬪构瓒曠▓璐涘病鍓涢嫾缍卞礂鑷幀鎿遍纯闁i壔鍊嬬郸榫斿闉忚并閳庢簼妲嬭臣澶犺牨椤у壆闂滆椁ㄦ叄璨唬瑕忕熃姝搁緶闁ㄨ粚瑭珒璨村妸杓ユ痪閸嬪湅閬庨Л闊撴饥闁¢洞璩€姗綗榇荤磪寰屽:璀锋滑鎴跺槱鑿暙鍔冭┍鎳峰姝$挵閭勭珐鎻涘枤鐦撶叆娓欓粌璎婃彯杓濇瘈璩勭鏈冪嚧褰欒瑾ㄧ躬钁锋妇澶ョ嵅璨ㄧ鎿婃绌嶉璀忛洖绺剧窛妤佃集绱氭摖骞捐枈鍔戞繜瑷堣闅涚辜绱€澶捐帰闋拌硤閴€鍍归娈茬洠鍫呯畫闁撹壉绶樼弓妾㈠牽楣兼弨鎾跨啊鍎夋笡钖︽閼掕笎璩よ閸佃墻鍔嶉婕告亢婢楁伎钄fС鐛庤瑳閱啝婢嗛⿻瀣屾敧閴哥煰鍍ヨ叧椁冪钩绲炶綆杓冪ō闅庣瘈鑾栭缍撻牳闈滈彙寰戠棛绔舵法绯惧粍鑸婇鑸夋摎閶告嚰鍔囬祽绲瑰倯娼旂祼瑾″眴绶婇對鍍呰閫叉檳鐕肩洝鍕佽崐瑕烘焙瑷g禃閳炶粛椐块枊鍑遍娈艰澧炬噰鎽冲韩瑜茶獓濉婂剤瀵う鏇犳硜铏у穻绐洪娼版摯闂婅牊鑷樿悐渚嗚炒钘嶆瑒鏀旂眱闂岃槶鐎捐畷鏀鎳剁簻鐖涙揩鎾堝嫗婢囨▊閻冲椤炴窔绫洟瑁忛瘔绂簵鍘插嫷绀泦鐎濋毟鍊嗚伅钃€i惍鎲愭迹绨炬杺鑷夐張鎴€鐓夌反绯ф都鍏╄紱璜掔檪閬奸悙鐛佃嚚閯伴睏鍑滆硟榻¢埓娣╅潏宥洪牁椁惧妷榫嶈伨鍤ㄧ睜澹熸攺闅存〒濠佹憻绨嶈槅鐩ч”寤垚鎿勯沟铏滈璩傜タ閷勯櫢椹㈠憘閶佷径灞㈢阜鎱烤缍犲窉鏀e鐏や簜鎺勮吉鍊緰娣陡璜栬樋缇呴倧閼肩碑楱鹃П绲″鐟⒓铻為Μ缃靛棊璨烽亥璩i倎鑴堢灋楗呰牷婊胯璨撻尐閴氳部楹介淮娌掗巶闁€鎮跺€戦尦澶㈣瑤褰岃缍跨番寤熸粎鎲柀槌撮姌璎瑎鐣濋垑绱嶉洠鎾撹叇鎯遍椁掕啯鏀嗘挌閲€槌ヨ伓榻ч懛閹虫鐛扮敮鎿版繕閳曠磹鑶挎績杈茬槯璜炬瓙榉楁瘑鍢旀細鐩ら緪鍦嬫剾璩犲櫞榈椋勯牷璨ц構鎲戣⿻娼戦牀鎾查嫪妯歌瓬鑷嶉綂楱庤眻鍟撴埃妫勮鐗芥墶閲洪墰閬风敖璎欓將閴楁經娣鸿濉规鍡嗙墕钖斿挤鎼堕崿姗嬪柆鍍戠抗绔呯珚娆借Κ杓曟矮鍌鹃爟璜嬫叾鐡婄瓒ㄥ崁杌€椹呴讲椤存瑠鍕稿嵒榈茶畵楗掓摼绻炵啽闊岃獚绱夋Ξ绲ㄨ粺閵抽枏娼ょ亼钖╅皳璩藉倶鍠ǚ鎺冩線娈虹礂绡╂洭闁冮櫇璐嶇箷鍌疯碁鐕掔垂璩掓敐鎳捐ō绱冲瀣歌厧婊茶伈绻╁嫕鑱栧斧鐛呮繒瑭╁睄鏅傝潟瀵﹁瓨椐涘嫝閲嬮>瑕栬│澹界嵏妯炶几鏇歌礀灞妯硅睅鏁稿弗闆欒绋呴爢瑾ⅸ鐖嶇挡椋艰伋鎱爩瑷熻鎿昏槆瑷磋倕闆栫稄姝插鎼嶇瓖绺懀閹栫嵑鎾绘摗鏀よ勃鐧辩仒澹囪瓪璜囨瓗婀嚈婵ょ抚楱拌瑒閵婚楂斿睖姊濊布閻靛怀鑱界兇閵呯当闋湒濉楀湗闋硅浕鑴磿棣遍姗㈢瑗綆鐏i爲钀恫闊嬮仌鍦嶇埐婵扮董钁﹀亯鍍炵矾璎傝婧仦绱嬬┅鍟忕敃鎾捐澑娓︾鍡氶帰鐑忚鐒¤暘鍚冲、闇у嫏瑾ら尗鐘цゲ缈掗姂鎴茬窗铦﹁絼宄戒繝鐙瑰粓閸侀绾栭构璩㈤姕闁戦’闅従鐛荤福椁$鲸鎲茬窔寤傞懖閯夎┏闊块爡钑姺鏇夊槸锠嶅崝鎸炬敎鑴呰瀵€夎瑵閶呴噥鑸堟炊閺界埂铏涘檽闋堣ū绶掔簩杌掓嚫閬哥櫖绲㈠鍕宠灏嬮Υ瑷撹▕閬滃榇夐川鍟炰簽瑷濋柟鐓欓菇鍤撮闁昏睌鍘’褰ヨ椹楅处妤婃彋鐦嶉櫧鐧㈤妯g懁鎼栧牤閬欑璎犺棩鐖洪爜妤憠閱姤闋ら伜鍎€褰滆熁钘濆剟鎲剁京瑭h瑾艰鐣扮构钄櫚閵€椋叉瀣伴饭鎳夌簱鐟╄灑鐕熺啋锠呯⿴鍠叉搧鍌櫚韪磋婀у劒鎲傞兊閳剧尪閬婅獦杓块瓪婕佸鑸囧都瑾炵辈绂︾崉璀介爯棣礇娣佃絽鍦掑摗鍦撶罚閬犻绱勮簫閼板督绮垫倕闁遍洸閯栧嫽闅曢亱铇婇啚鏆堥熁闆滅伣杓夋敘鏆磰璐撻珤閼挎绔堣铂鎿囧墖婢よ硦璐堢串鍔勮粙閸橀枠瑭愰綃鍌垫皥鐩炴柆杓惧秳妫ф埌缍诲嫉婕插赋璩劰瓒欒焺杞嶉嵑閫欒矠閲濆伒瑷洪幃闄f帣鐫滅寵骞€閯瓑绻旇伔鍩风礄鎽摬骞熻唱閸剧祩绋叓琛嗚瑓杌哥毢鏅濋璞瑾呯嚟鐭氬洃璨憚绡夐灏堢杞夎澈妯佽帄瑁濆澹媭閷愯磪澧滅洞璜勬縼鑼茶硣婕工缍滅附绺遍剴瑭涚祫閼界坊閻橀杭鐐洪毣鍏囨簴鍟熼梿瑁¢潅椁橀崐娲╂閬╂厠鏂�'; } function Traditionalized(cc) { var str = '', ss = JTPYStr(), tt = FTPYStr(); for (var i = 0; i < cc.length; i++) { if (cc.charCodeAt(i) > 10000 && 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; i < cc.length; i++) { if (cc.charCodeAt(i) > 10000 && 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 < len; i++) { var arrTemp = arrTmp[i].split("="); if (arrTemp[0].toUpperCase() == strName.toUpperCase()) { if (arrTemp[1].indexOf("#") != -1) arrTemp[1] = arrTemp[1].substr(0, arrTemp[1].indexOf("#")); return arrTemp[1]; } } return ""; } function SetCookie(name, value, hours) { var hourstay = 30 * 24 * 60 * 60 * 1000; //姝� cookie 灏嗚榛樿淇濆瓨 30 澶� if (checkNum(hours)) { hourstay = hours; } var exp = new Date(); exp.setTime(exp.getTime() + hourstay * 60 * 60 * 1000); document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString(); } function getCookie(name) { var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)")); if (arr != null) return unescape(arr[2]); return null; } function delCookie(name) { var exp = new Date(); exp.setTime(exp.getTime() - 1); var cval = getCookie(name); if (cval != null) document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString(); } function checkNum(nubmer) { var re = /^[0-9]+.?[0-9]*$/; //鍒ゆ柇瀛楃涓叉槸鍚︿负鏁板瓧 //鍒ゆ柇姝f暣鏁� /^[1-9]+[0-9]*]*$/ if (re.test(nubmer)) return true; return false; } function goBackHistory(num) { if (typeof (num) == 'undefined') { num = 0; } if (num == '0') { if (history.go(-1)) { location.href = history.go(-1); } } else { arr = location.href.split('/') arr[arr.length - 1] = "index.html" arr = arr.join('/') location.href = arr } } //绠€浣撹浆绻佷綋 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);*/ } } }); } function detailHeightAuto(obj, loadingText) { var t_img; var isLoad = true; var settings = settingsLib($("#" + obj).parents('.layout')); var autoHeight = settings.getSetting('autoHeight'); if (!loadingText) loadingText = '璇︽儏鍔犺浇涓�'; $("#" + obj + " .content_load").remove(); $("#" + obj + " .detailContentView").append('
' + 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'; $(document).ready(function () { /* **褰撳墠妯″潡瀵硅薄锛�$("#dh_style_28_1630053740510") **鏁堟灉浠呭湪鍙戝竷棰勮涓嬫墠鐢熸晥 */ }) $(document).ready(function () { /* **褰撳墠妯″潡瀵硅薄锛�$("#button_style_06_1678364785320") **鏁堟灉浠呭湪鍙戝竷棰勮涓嬫墠鐢熸晥 */ }) var viewsSettings = { "comm_layout_header": { "css": { "mobile": { "height": "62.333333px", "z-index": 10, "display": "block" }, "pc": { "height": "102px", "z-index": "2", "display": "block" }, "pad": { "height": "91.6669921875px", "z-index": "999", "display": "block" }, "content": { "overflow": "visible", "max-width": "1200px" }, "customCss": { "pc": { "modelArea": { "background": "#19191b", "border-width": "1px", "border-style": "solid", "border-color": "rgba(255,255,255,0.5)", "border-top": "none !important", "border-right": "none !important", "border-left": "none !important" } } } }, "settingsBox": { "showTitle": "null\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" }, "diyShowName": "\u533a\u57df\u5e03\u5c40", "setFixedScroll": { "pc": "1" }, "autoHeight": "false" }, "image_logo_1560133924436": { "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", "styleShowImg": "\/sysTools\/Model\/viewsRes\/showImg\/images_style_0.png", "styleShowClass": "one", "styleKind": "LOGO", "styleHelpId": 1252, "viewCtrl": "logo", "css": { "pc": { "width": "247px", "height": "35px", "left": "-31.59722391764323%", "top": "32.5px", "position": "absolute" }, "pad": { "width": "143.5648614609572px", "height": "30px", "left": "10px", "top": "28.890113350125947px" }, "mobile": { "width": "138px", "height": "24px", "left": "2.494444783528646%", "top": "10px" } }, "data": { "logoType": "1", "logoStyle": "1", "logoBlank": "_self" }, "webId": "13218", "name": "image", "kind": "\u56fe\u7247\u6a21\u5757", "showname": "\u9ed8\u8ba4", "eventSet": { "scrollView": "none", "type": "none" }, "params": { "filelist": "", "urllist": "", "propagelist": "", "newspagelist": "", "proidlist": "", "groupVallist": "", "newsidlist": "", "groupNVallist": "" }, "diyShowName": "LOGO" }, "dh_style_28_1630053740510": { "settingsBox": { "setList": { "\u5e38\u89c4": { "isDefault": "true", "mod": "viewSettingsB", "act": "dhConfig", "setupFunc": "dhSetup" }, "\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_28", "diyShowName": "\u4e09\u7ea7\u5bfc\u822a-\u98ce\u683c28", "styleShowName": "\u4e09\u7ea7\u5bfc\u822a-\u98ce\u683c28", "styleKind": "\u5bfc\u822a\u83dc\u5355", "styleSort": "9999", "viewCtrl": "default", "css": { "pc": { "width": "71.08333333333333%", "z-index": 999, "position": "absolute", "left": "28.90277608235677%", "top": "0px", "display": "block" }, "pad": { "z-index": "999", "display": "block", "width": "442.3192695214106px", "top": "10px", "left": "490.68073047858945px" }, "mobile": { "width": "11.733333333333333%", "z-index": "999", "top": "0px", "left": "85.252783203125%", "display": "block" }, "content": { "overflow": "visible" }, "customCss": { "pc": { "@mainMenuSet": { "font-family": "Microsoft YaHei", "font-size": "13px", "font-weight": "normal", "color": "#ffffff", "line-height": "98px" }, "@mainMenuSet:hover": { "color": "#ffffff", "border-width": "2px", "border-style": "solid", "border-right": "none !important", "border-top": "none !important", "border-left": "none !important", "border-color": "#ffffff", "line-height": "98px", "font-family": "Microsoft YaHei", "margin-left": "20px", "margin-right": "20px" }, "%hot>a": { "color": "#ffffff", "border-width": "2px", "border-style": "solid", "border-right": "none !important", "border-top": "none !important", "border-left": "none !important", "border-color": "#ffffff", "line-height": "98px", "font-family": "Microsoft YaHei", "margin-left": "20px", "margin-right": "20px" }, "%hot#@aview": { "color": "#ffffff", "border-width": "2px", "border-style": "solid", "border-right": "none !important", "border-top": "none !important", "border-left": "none !important", "border-color": "#ffffff", "line-height": "98px", "font-family": "Microsoft YaHei", "margin-left": "20px", "margin-right": "20px" }, "@subMenuSet": { "line-height": "98px", "font-size": "13px" }, "@thrMenuSet": { "line-height": "98px", "font-size": "13px" } }, "pad": { "@mainMenuSet": { "line-height": "78px" }, "@mainMenuSet:hover": { "line-height": "78px" }, "%hot>a": { "line-height": "78px" }, "%hot#@aview": { "line-height": "78px" } }, "mobile": { "@icoMenuSet": { "color": "#ffffff", "font-size": "18px" }, "@mainMenuSet:hover": { "margin-left": "0px", "margin-right": "0px", "line-height": "50px", "height": "50px" }, "%hot>a": { "margin-left": "0px", "margin-right": "0px", "line-height": "50px", "height": "50px" }, "%hot#@aview": { "margin-left": "0px", "margin-right": "0px", "line-height": "50px", "height": "50px" }, "@mainMenuSet": { "line-height": "50px", "height": "50px" }, "@subMenuSet": { "font-family": "Microsoft YaHei", "font-size": "14px", "color": "#ffffff", "line-height": "50px" }, "@thrMenuSet": { "line-height": "50px" } } } }, "lock": { "height": "true" }, "data": { "childMenuType": "1", "dhOpen": "", "subtitlename": "", "logoposition": "0", "logoopen": "off", "logoright": "", "logoleft": "", "hideLogoSetting": "1", "contentWidth": "", "showpc": ["281864", "281865", "281860", "287852", "281866", "399309", "338828"], "showmobile": ["281864", "281865", "281860", "287852", "281866", "399309", "338828"], "iconopen": "", "subWidth": "" }, "name": "dh", "kind": "\u5bfc\u822a\u83dc\u5355", "showname": "\u5bfc\u822a\u83dc\u5355", "eventSet": { "scrollView": "none", "type": "none" }, "moveEdit": [] }, "lang_style_1_1690963243257": { "settingsBox": { "setList": { "\u5c5e\u6027": { "isDefault": "true", "mod": "viewSettingsHcl", "act": "langConfig", "setupFunc": "langshow" }, "\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": "\u4e2d\u82f1\u7e41\u5c5e\u6027\u8bbe\u7f6e" }, "styleHelpId": 1301, "style": "style_1", "diyShowName": "\u591a\u8bed\u8a00\u7ad9\u70b9-\u98ce\u683c1", "styleShowName": "\u591a\u8bed\u8a00\u7ad9\u70b9-\u98ce\u683c1", "styleKind": "AAA", "viewCtrl": "default", "css": { "pc": { "width": "25%", "position": "absolute", "top": "54.66667175292969px", "left": "0.4583333333333333%" }, "pad": [], "mobile": { "width": "41.6%", "top": "3.5px", "left": "45.161111450195314%" }, "customCss": { "pc": { "@textSet": { "color": "#fffcfc" }, "@fixmainSet": { "color": "#fcf9f9" }, "@bgareaSet": [] } } }, "lock": { "height": "true" }, "name": "lang", "kind": "\u7cfb\u7edf\u5de5\u5177", "showname": "\u591a\u8bed\u8a00\u7ad9\u70b9", "data": { "langs": "0,1080", "rename_1080": "English" }, "eventSet": { "scrollView": "none", "type": "none" } }, "layout_1631081791397": { "css": { "pc": { "height": "879px" }, "content": { "overflow": "visible", "max-width": "1200px" }, "customCss": { "pc": { "modelArea": { "background": "#19191b" } } }, "pad": { "height": "676px" }, "mobile": { "height": "341px" } }, "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" }, "autoHeight": "false" }, "text_style_01_1631081791400": { "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": "349px", "left": "0.33333333333333337%", "z-index": 2 }, "pad": { "top": "286px", "left": "0.8483563096500532%", "width": "923px" }, "mobile": { "width": "355px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "95px", "left": "calc(50% - 177.5px)" }, "customCss": { "pc": { "@view_contents": { "font-size": "48px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold" } }, "pad": { "@view_contents": { "font-size": "30.766666666666666px" } }, "mobile": { "@view_contents": { "font-size": "23px" } } } }, "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_1631081791406": { "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": "454px", "left": "0.33333333333333337%", "z-index": 2 }, "pad": { "left": "0.8483563096500532%", "top": "348px", "width": "923px" }, "mobile": { "width": "355px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "136.00000381469727px", "left": "calc(50% - 177.5px)" }, "customCss": { "pc": { "@view_contents": { "font-size": "20px", "color": "rgba(255,255,255,0.7)", "text-align": "center", "letter-spacing": "2px" } }, "pad": { "@view_contents": { "font-size": "13.845px" } }, "mobile": { "@view_contents": { "font-size": "12px", "color": "#ffffff" } } } }, "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" } }, "button_style_06_1678364785320": { "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_06", "diyShowName": "\u6309\u94ae\u98ce\u683c6", "styleShowName": "\u98ce\u683c6", "styleKind": "\u6587\u5b57\u6309\u94ae", "viewCtrl": "button", "mainColor": "#FFBB00", "css": { "pc": { "width": "13.666666666666666%", "position": "absolute", "top": "543.875px", "left": "43.152776082356766%", "z-index": 2 }, "pad": { "top": "418px", "left": "40.03181336161188%", "width": "164px" }, "mobile": { "width": "163px", "top": "219.00000762939453px", "left": "28.31111246744792%" }, "content": { "overflow": "visible" }, "customCss": { "pc": { "@btnaSet": { "border-color": "#2eacea", "border-width": "5px", "font-weight": "bold", "color": "#fcf9f9", "border-radius": "32px", "background": "#011919" }, "@btnaSet:hover": { "border-style": "solid", "border-width": "1px", "border-color": "#f9fcfc" } } } }, "lock": { "height": "true" }, "data": { "linkType": 1, "linkTypeForm": 11, "buttonVal": "\u70b9\u51fb\u8d2d\u4e70", "showtarget": "1", "selectVal": "281867", "outlink": "http:\/\/ http:\/\/8.134.98.61\/public\/busli.png" }, "name": "button", "kind": "\u6309\u94ae\u6a21\u5757", "showname": "\u9ed8\u8ba4", "eventSet": { "scrollView": "none", "type": "none" } }, "text_style_01_1678415999996": { "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": "20.5%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "608px", "left": "40.027776082356766%", "z-index": 2 }, "pad": { "top": "463.8726806640625px", "left": "35.22153431638554%", "width": "239px" }, "mobile": { "width": "239px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "264.20682525634766px", "left": "17.89610595703125%" }, "customCss": { "pc": { "@view_contents": { "font-size": "13px", "color": "#fcfcfc", "text-align": "center", "letter-spacing": "2px" } }, "pad": { "@view_contents": { "font-size": "12px" } }, "mobile": { "@view_contents": { "font-size": "12px", "color": "#ffffff" } } } }, "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": { "duration": "6.8", "delay": "0.25", "iteration": "infinite", "offset": "0", "animate": "pulse" }, "data": { "showtarget": "5", "outlink": "http:\/\/8.134.98.61\/public\/agentli.png", "new_showtarget": "4" } }, "qqol_style_05_1711515100206": { "settingsBox": { "setList": { "\u5e38\u89c4": { "isDefault": "true", "mod": "viewSettingsHcl", "act": "qqOnLinePhpConfig", "setupFunc": "qqOnLinePhpSetup" }, "\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": "\u5728\u7ebf\u5ba2\u670d\u5c5e\u6027\u8bbe\u7f6e" }, "style": "style_05", "diyShowName": "\u5728\u7ebf\u5ba2\u670d\u98ce\u683c5", "styleShowName": "\u98ce\u683c5", "styleKind": "AAA", "styleHelpId": 1284, "viewCtrl": "default", "css": { "pc": { "width": "17.5%", "position": "absolute", "top": "531.0521240234375px", "left": "131.08333841959637%", "display": "block" }, "pad": { "display": "block" }, "mobile": { "width": "69.3069306930693%", "top": "45px", "left": "12.425%", "display": "none" }, "content": { "overflow": "visible" } }, "lock": { "height": "true" }, "data": { "phonelist": ["18620173442"], "qqlist": [], "wxlist": ["callmeHarold"], "maillist": ["yanfa@cyanpuppets.com"], "time_text": "\u5468\u4e00\u81f3\u5468\u4e949:30 - 18:30", "qrcode_text": "\u5ba2\u670d\u5fae\u4fe1", "qrcode_img": "https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/png\/1711514524068ceba134dd20434f929aee3700d0a4e30.png?version=0" }, "name": "qqol", "kind": "\u5176\u5b83\u5de5\u5177", "showname": "\u5728\u7ebf\u5ba2\u670d", "eventSet": { "scrollView": "none", "type": "none" } }, "layout_1630129160249": { "css": { "pc": { "height": "116px" }, "content": { "overflow": "visible", "max-width": "1200px" }, "pad": { "height": "120.33333300000001px" }, "mobile": { "height": "179px" } }, "diyShowName": "\u533a\u57df\u5e03\u5c40", "name": "layout", "style": "autoLayout", "autoHeight": "false" }, "text_style_01_1678360675626": { "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": "17.833333333333336%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "27px", "left": "7.818578084309896%" }, "pad": { "top": "45px", "left": "3.8176033934252387%", "width": "197.87010623478457px" }, "mobile": { "width": "216px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "11px", "left": "calc(50% - 108px)" }, "customCss": { "pc": { "@view_contents": { "font-size": "18px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold", "border-style": "solid", "border-radius": "34px" } }, "pad": { "@view_contents": { "font-size": "15px" } }, "mobile": { "@view_contents": { "font-size": "15.570828121833154px" } } } }, "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": [], "params": { "duration": "1", "delay": "0.25", "iteration": "1", "offset": "0" } }, "text_style_01_1678361464684": { "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": "18.583333333333332%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "27px", "left": "29.75%" }, "pad": { "top": "45px", "left": "28.533715483745357%", "width": "193.04400608271666px" }, "mobile": { "width": "220px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "50px", "left": "calc(50% - 110px)" }, "customCss": { "pc": { "@view_contents": { "font-size": "18px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold", "border-style": "solid", "border-width": "2px", "border-radius": "32px" } }, "pad": { "@view_contents": { "font-size": "15px" } }, "mobile": { "@view_contents": { "font-size": "15.570828121833154px" } } } }, "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_1678361540887": { "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": "18.083333333333336%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "27px", "left": "53.00000508626302%" }, "pad": { "top": "45px", "left": "53.482900318133616%", "width": "191.43530603202734px" }, "mobile": { "width": "221px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "91px", "left": "calc(50% - 110.5px)" }, "customCss": { "pc": { "@view_contents": { "font-size": "18px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold", "border-style": "solid", "border-width": "2px", "border-radius": "32px" } }, "pad": { "@view_contents": { "font-size": "15px" } }, "mobile": { "@view_contents": { "font-size": "15.797282976983029px" } } } }, "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_1678361556884": { "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": "17.083333333333332%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "27px", "left": "76.11110941569011%" }, "pad": { "top": "45px", "left": "76.84583775185578%", "width": "182.58745575323616px" }, "mobile": { "width": "221px", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "130px", "left": "calc(50% - 110.5px)" }, "customCss": { "pc": { "@view_contents": { "font-size": "18px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-family": "\"Microsoft YaHei\", \"\u5fae\u8f6f\u96c5\u9ed1\"", "font-weight": "bold", "border-style": "solid", "border-width": "2px", "border-radius": "32px" } }, "pad": { "@view_contents": { "font-size": "15px" } }, "mobile": { "@view_contents": { "font-size": "15.797282976983029px" } } } }, "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_1678360736502": { "css": { "pc": { "height": "457.33333300000004px" }, "content": { "overflow": "visible", "max-width": "1200px" }, "mobile": { "height": "392.333333px" }, "pad": { "height": "490.33333300000004px" } }, "needfix": null, "diyShowName": "\u533a\u57df\u5e03\u5c40", "name": "layout", "style": "autoLayout" }, "text_style_01_1678365307951": { "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": "49.416666666666664%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "75.65625px", "left": "26.111109415690102%" }, "pad": [], "mobile": { "width": "96%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "28px", "left": "2%" }, "customCss": { "pc": { "@view_contents": { "font-size": "48px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold" } }, "pad": { "@view_contents": { "font-size": "40px" } }, "mobile": { "@view_contents": { "font-size": "24px" } } } }, "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": [], "params": { "duration": "1", "delay": "0.25", "iteration": "1", "offset": "0" } }, "text_style_01_1678413761403": { "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": "19.333333333333332%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "287.65625px", "left": "41.3185780843099%" }, "pad": [], "mobile": { "width": "29.599999999999998%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "205.65625px", "left": "12.141666666666667%" }, "customCss": { "pc": { "@view_contents": { "color": "#eadede", "font-weight": "bold" } } } }, "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" } }, "text_style_01_1678365402300": { "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": "19.333333333333332%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "287.65625px", "left": "71.66579691569011%" }, "pad": [], "mobile": { "width": "36.266666666666666%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "310.6562614440918px", "left": "12.15%" }, "customCss": { "pc": { "@view_contents": { "color": "#eadede", "font-weight": "bold" } } } }, "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" } }, "text_style_01_1678365259788": { "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": "12.416666666666666%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "287.65625px", "left": "11.443578084309895%" }, "pad": { "width": "129px" }, "mobile": { "width": "30.666666666666664%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "205.65625px", "left": "54.05833333333333%" }, "customCss": { "pc": { "@view_contents": { "color": "#eadede", "font-weight": "bold" } } } }, "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" } }, "text_style_01_1678415560096": { "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.16666666666666%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "182.65625px", "left": "10.833333333333334%" }, "pad": [], "mobile": { "width": "73.06666666666666%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "81px", "left": "12.133333333333333%" }, "customCss": { "pc": { "@view_contents": { "font-size": "20px", "color": "rgba(255,255,255,0.7)", "text-align": "center", "letter-spacing": "2px" } }, "pad": { "@view_contents": { "font-size": "18px" } }, "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_1694572499717": { "css": { "pc": { "height": "701.333333px" }, "content": { "overflow": "visible", "max-width": "1200px" }, "pad": { "height": "549.385498046875px" }, "mobile": { "height": "718px" } }, "needfix": null, "diyShowName": "\u533a\u57df\u5e03\u5c40", "name": "layout", "style": "autoLayout" }, "text_style_01_1694572507195": { "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": "99.91666666666667%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "30.3125px", "left": "0.1102447509765625%" }, "pad": [], "mobile": { "width": "96%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "25px", "left": "2%" }, "customCss": { "pc": { "@view_contents": { "font-size": "48px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold" } }, "pad": { "@view_contents": { "font-size": "40px" } }, "mobile": { "@view_contents": { "font-size": "24px" } } } }, "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": [], "params": { "duration": "1", "delay": "0.25", "iteration": "1", "offset": "0" } }, "video_style_04_1694573219440": { "settingsBox": { "setList": { "\u5c5e\u6027": { "isDefault": "true", "mod": "viewSettingsBhj", "act": "videoCfg", "setupFunc": "videoSetup" }, "\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": "\u56fe\u7247\u5c5e\u6027\u8bbe\u7f6e" }, "style": "style_04", "diyShowName": "\u89c6\u9891\u6a21\u5757\u98ce\u683c4", "styleShowName": "\u89c6\u9891\u6a21\u5757\u98ce\u683c4", "styleKind": "AAA", "styleHelpId": "", "viewCtrl": "default", "mainColor": "#FF7300", "css": { "pc": { "width": "93.58333333333333%", "position": "absolute", "top": "158.3854217529297px", "left": "3.194442749023438%" }, "pad": [], "mobile": { "width": "96%", "top": "72px", "left": "2%" }, "content": { "overflow": "visible" } }, "lock": { "height": "true" }, "doubleClickFunc": "newVideoGroupSelect", "mouseMenu": [{ "name": "\u9009\u62e9\u56fe\u7247\u53ca\u89c6\u9891", "func": "newVideoGroupSelect()", "ico": "fa-file-image-o" }], "sizeCallbackFunc": "setImgCen", "data": { "prodPicScale": "2:3", "changeHover": "off", "prodhnumpc": "4", "prodhnumpad": "4", "prodhnummobile": "2", "prodznumpc": "2", "prodznumpad": "2", "prodznummobile": "2" }, "params": { "filelist": "https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/png\/1694573347533a6525264ffdad7aa3b0b52f10ab1c512.png?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/jpg\/169457341298765e39e9720111fd4e18d5c5d6e56eba4.jpg?version=1694573415,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/png\/1694573591250e3c38833ef936c8ebc80f3819cda9e8d.png?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/jpg\/16945736469191d0bd0e97fadc547139435c061b67c74.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/jpg\/16982220960473da6924391c6fca2566a00b7f854f9c6.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/jpg\/16982330193092de7541079a6ea1d84daeb21ca7139b4.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/jpg\/170200765263439b8ef92f2e5cfbbce3c6354a22a30e4.jpg?version=0,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/jpg\/17020076525514afdb3c2648447d3729feca288c86f09.jpg?version=0,", "videolist": "https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/1694574222114def0b681b5be4973540685294ea2acb6.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/1694574230059201ce2513e6a431edc7ff31ced335b07.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/16945742334898480546ffe0eea8351b530094c092d38.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/1694574236152c0af537a2f4461e5b5e2f0eac6636e3d.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/169822229801073c3edb18aef7db7433ca964b0d9ab72.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/1698233051474fe658cad4562b478cd2ea44c79c30a9d.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/170200768788075d10499b9cfb1879ccd301a0b8c293c.mp4,https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/mp4\/17020077079915f66e000ab65c5d0cec828ffeaaf1bc3.mp4,", "titlelist": "\u52a8\u753b\u5236\u4f5c,\u6e38\u620f\u5236\u4f5c,\u4e92\u52a8\u5236\u4f5c,\u821e\u8e48\u5236\u4f5c,\u65f6\u5c1a\u6f14\u7ece,\u8d85\u5199\u5b9e\u4eba\u7c7b,\u5f39\u5409\u4ed6,,", "textlist": ",,,,,,,,", "colorlist": ",,,,,,,,", "sizelist": ",,,,,,,,", "iconTypelist": ",,,,,,,," }, "name": "video", "kind": "\u7cfb\u7edf\u5de5\u5177", "showname": "\u89c6\u9891", "eventSet": { "scrollView": "none", "type": "none" } }, "layout_1682492338327": { "css": { "pc": { "height": "675.333333px" }, "content": { "overflow": "visible", "max-width": "1200px" }, "pad": { "height": "610.333333px" }, "mobile": { "height": "278.333333px" } }, "needfix": null, "diyShowName": "\u533a\u57df\u5e03\u5c40", "name": "layout", "style": "autoLayout" }, "text_style_01_1682492356692": { "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": "99.58333333333333%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "34.31251525878906px", "left": "0.1944427490234375%" }, "pad": [], "mobile": { "width": "96%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "24px", "left": "2%" }, "customCss": { "pc": { "@view_contents": { "font-size": "48px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "bold" } }, "pad": { "@view_contents": { "font-size": "40px" } }, "mobile": { "@view_contents": { "font-size": "19px" } } } }, "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": [], "params": { "duration": "1", "delay": "0.25", "iteration": "1", "offset": "0" } }, "text_style_01_1682492362308": { "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": "99.75%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "136.3125px", "left": "0.15191141764322919%" }, "pad": { "width": "769px", "left": "6.940394671572607%", "top": "126.31250286102295px" }, "mobile": { "width": "95.73333333333333%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "71px", "left": "1.2166666666666666%" }, "customCss": { "pc": { "@view_contents": { "font-size": "20px", "color": "rgba(255,255,255,0.7)", "text-align": "center", "letter-spacing": "2px" } }, "pad": { "@view_contents": { "font-size": "18px" } }, "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": [] }, "image_style_01_1704450906958": { "settingsBox": { "setList": { "\u5e38\u89c4": { "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": "88.25%", "height": "404px", "position": "absolute", "top": "210.00001525878906px", "left": "5.8611094156901045%" }, "pad": { "width": "874px", "height": "353px", "left": "calc(50% - 437px)", "top": "206.00001049041748px" }, "mobile": { "width": "100%", "height": "134px", "top": "122px", "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", "eventSet": { "scrollView": "none", "type": "none" }, "data": { "imgUrl": "https:\/\/wds-service-1258344699.file.myqcloud.com\/20\/13218\/png\/17044510265558762361cc42571f106c7807e72188ed0.png?version=0", "color": "", "size": "", "iconType": "" } }, "layout_1678436125750": { "css": { "pc": { "height": "825.333333px" }, "content": { "overflow": "visible", "max-width": "1200px" }, "pad": { "height": "836.333333px" }, "mobile": { "height": "440.33333300000004px" } }, "needfix": null, "diyShowName": "\u533a\u57df\u5e03\u5c40", "name": "layout", "style": "autoLayout" }, "text_style_01_1678436152529": { "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": "99.58333333333333%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "36.3228759765625px", "left": "0.27691141764322913%" }, "pad": { "z-index": 2 }, "mobile": { "width": "96%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "32px", "left": "2%" }, "customCss": { "pc": { "@view_contents": { "font-size": "48px", "color": "#ffffff", "text-align": "center", "letter-spacing": "5px", "font-weight": "normal" } }, "pad": { "@view_contents": { "font-size": "40px" } }, "mobile": { "@view_contents": { "font-size": "24px" } } } }, "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": [], "params": { "duration": "1", "delay": "0.25", "iteration": "1", "offset": "0" } }, "text_style_01_1678436186720": { "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": "93.41666666666667%", "font-size": "16px", "color": "#333", "line-height": "1.8", "font-family": "Microsoft YaHei", "position": "absolute", "top": "131.31253051757812px", "left": "3.277776082356771%" }, "pad": { "width": "899px", "z-index": 2 }, "mobile": { "width": "86.4%", "font-size": "12px", "color": "#333", "line-height": "1.6", "top": "82.0000025331974px", "left": "6.799999999999997%" }, "customCss": { "pc": { "@view_contents": { "font-size": "20px", "color": "rgba(255,255,255,0.7)", "text-align": "center", "letter-spacing": "2px" } }, "pad": { "@view_contents": { "font-size": "18px" } }, "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": [] }, "video_style_03_1697189514180": { "settingsBox": { "setList": { "\u5e38\u89c4": { "isDefault": "true", "mod": "viewSettingsBhj", "act": "videoCfg", "setupFunc": "videoSetup" }, "\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": "\u89c6\u9891\u5c5e\u6027\u8bbe\u7f6e" }, "style": "style_03", "diyShowName": "\u89c6\u9891", "styleShowName": "\u98ce\u683c3(\u7b2c\u4e09\u65b9\u4e13\u7528\u64ad\u653e\u5668)", "styleKind": "AAA", "styleHelpId": 1280, "viewCtrl": "default", "css": { "pc": { "width": "94.83333333333334%", "height": "550px", "position": "absolute", "top": "254.2604217529297px", "left": "3.2769114176432295%" }, "pad": { "left": "calc(50% - 447.5px)", "top": "243.2604160308838px", "z-index": 1 }, "mobile": { "width": "94.93333333333334%", "top": "204.00001016259193px", "left": "2.5333333333333314%", "height": "204px" } }, "name": "video", "kind": "\u7cfb\u7edf\u5de5\u5177", "showname": "\u89c6\u9891", "eventSet": { "scrollView": "none", "type": "none" }, "data": { "url": "