diff --git a/data/document.js b/data/document.js new file mode 100644 index 0000000..83aab05 --- /dev/null +++ b/data/document.js @@ -0,0 +1,7 @@ +$axure.loadDocument( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i + + + + + \ No newline at end of file diff --git a/images/security_policy_create/u210.png b/images/security_policy_create/u210.png new file mode 100644 index 0000000..294315f Binary files /dev/null and b/images/security_policy_create/u210.png differ diff --git a/images/security_policy_create/u281.svg b/images/security_policy_create/u281.svg new file mode 100644 index 0000000..1878949 --- /dev/null +++ b/images/security_policy_create/u281.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_create/u79.svg b/images/security_policy_create/u79.svg new file mode 100644 index 0000000..4ccdea8 --- /dev/null +++ b/images/security_policy_create/u79.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u315.svg b/images/security_policy_list/u315.svg new file mode 100644 index 0000000..a887d64 --- /dev/null +++ b/images/security_policy_list/u315.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u370.svg b/images/security_policy_list/u370.svg new file mode 100644 index 0000000..94f83fd --- /dev/null +++ b/images/security_policy_list/u370.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u416.svg b/images/security_policy_list/u416.svg new file mode 100644 index 0000000..ce50b20 --- /dev/null +++ b/images/security_policy_list/u416.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u417.svg b/images/security_policy_list/u417.svg new file mode 100644 index 0000000..a1945f1 --- /dev/null +++ b/images/security_policy_list/u417.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u418.svg b/images/security_policy_list/u418.svg new file mode 100644 index 0000000..fcf8b18 --- /dev/null +++ b/images/security_policy_list/u418.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u435.svg b/images/security_policy_list/u435.svg new file mode 100644 index 0000000..cd69d16 --- /dev/null +++ b/images/security_policy_list/u435.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/images/security_policy_list/u446.svg b/images/security_policy_list/u446.svg new file mode 100644 index 0000000..b59786a --- /dev/null +++ b/images/security_policy_list/u446.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/images/材料/u508.png b/images/材料/u508.png new file mode 100644 index 0000000..dd019b2 Binary files /dev/null and b/images/材料/u508.png differ diff --git a/images/材料/u509.png b/images/材料/u509.png new file mode 100644 index 0000000..7ee6fe4 Binary files /dev/null and b/images/材料/u509.png differ diff --git a/images/材料/u510.png b/images/材料/u510.png new file mode 100644 index 0000000..26076e4 Binary files /dev/null and b/images/材料/u510.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..13876ba --- /dev/null +++ b/index.html @@ -0,0 +1,149 @@ + + + + Untitled Document + + + + + + + + + + + + + + +
+
+
+ +
+ CLOSE +
+ +
+
+
    +
    + +
    +
    +   +
    +
    +
    + + +
    +
     
    +
    +   +
    +
    +
    +
    + +
    +
    +
      +
      +
      +
      + Local Preview +
      +
      +
      + +
      + + +
      +
        +
      • + +
      • +
      +
      + +
      +
      +
      + +
      + +
      + +
      +
      +
      +
      +
      + +
      +
      + +
      +
      + +
      +
      +
      +
      +
      +
      +
      + +
      +
      + +
      +
      +
      + +
      +
      +
      + +
      + +
      + +
      +
      +
      +
      +
      +
      +
      + +
      + + + + + + + + + + + + diff --git a/plugins/debug/debug.js b/plugins/debug/debug.js new file mode 100644 index 0000000..7de9ae6 --- /dev/null +++ b/plugins/debug/debug.js @@ -0,0 +1,171 @@ +// use this to isolate the scope +(function () { + + if(!$axure.document.configuration.showConsole) { return; } + + $(document).ready(function () { + $axure.player.createPluginHost({ + id: 'debugHost', + context: 'inspect', + title: 'Console', + gid: 3 + }); + + generateDebug(); + + $('#variablesClearLink').click(clearvars_click); + $('#traceClear').click(cleartrace_click); + $('#traceToggle').click(stoptrace_click); + $('#traceStart').click(starttrace_click); + $('#traceClear').hide(); + $('#traceToggle').hide(); + + $('#closeConsole').click(close); + + var currentStack= []; + var finishedStack = []; + + $axure.messageCenter.addMessageListener(function (message, data) { + if(message == 'axCompositeEventMessage') { + for(var i = 0; i < data.length; i++) { + processMessages(data[i].message, data[i].data); + } + } else processMessages(message, data); + }); + + var processMessages = function(message, data) { + if(message == 'globalVariableValues') { + $('#variablesDiv').empty(); + for(var key in data) { + var value = data[key] == '' ? '(blank)' : data[key]; + $('#variablesDiv').append('
      ' + key + '
      ' + value + '
      '); + } + } else if(message == 'axEvent') { + var addToStack = "
      "; + addToStack += "
      "; + addToStack += "
      " + new Date().toLocaleTimeString() + "
      "; + addToStack += "
      " + data.event.description + ":
      "; + addToStack += "
      " + data.label + " (" + data.type + ")
      "; + addToStack += "
      "; + + currentStack.push(addToStack); + } else if (message == 'axEventComplete') { + currentStack[currentStack.length - 1] += "
      "; + finishedStack.push(currentStack.pop()); + if(currentStack.length == 0) { + $('#traceEmptyState').hide(); + $('#traceClear').show(); + $('#traceToggle').show(); + + for(var i = finishedStack.length - 1; i >= 0; i--) { + if($('#traceDiv').children().length > 99) $('#traceDiv').children().last().remove(); + $('#traceDiv').prepend(finishedStack[i]); + } + finishedStack = []; + } + } else if (message == 'axCase') { + //var addToStack = "
      "; + var addToStack = "
      "; + addToStack += "
      " + data.item + "
      "; + if (data.description) { addToStack += "
      " + data.description + "
      " }; + addToStack += "
      "; + + currentStack[currentStack.length - 1] += addToStack; + } else if (message == 'axAction') { + var addToStack = "
      "; + addToStack += "
      " + data.name + "
      "; + //addToStack += "
      " + data.item + "
      "; + //if (data.description) { addToStack += "
      " + data.description + "
      " }; + addToStack += "
      "; + + currentStack[currentStack.length - 1] += addToStack; + } else if (message == 'axInfo') { + var addToStack = "
      "; + addToStack += "
      " + data.item + "
      "; + if (data.description) { addToStack += "
      " + data.description + "
      " }; + addToStack += "
      "; + + currentStack[currentStack.length - 1] += addToStack; + } + } + + // bind to the page load + $axure.page.bind('load.debug', function () { + var traceStr = $axure.player.getHashStringVar(TRACE_VAR_NAME); + if (traceStr.length > 0) $axure.messageCenter.setState("isTracing", true); + else $axure.messageCenter.setState("isTracing", false); + $axure.messageCenter.postMessage('getGlobalVariables', ''); + + return false; + }); + + function clearvars_click(event) { + $axure.messageCenter.postMessage('resetGlobalVariables', ''); + } + + function close() { + $axure.player.pluginClose("debugHost"); + } + + function cleartrace_click(event) { + $('#traceDiv').html(''); + } + + function starttrace_click(event) { + $axure.messageCenter.setState("isTracing", true); + //$('#traceDiv').html(''); + $('#traceEmptyState').hide(); + $('#traceClear').show(); + $('#traceToggle').text('Stop Trace'); + $('#traceToggle').off("click"); + $('#traceToggle').click(stoptrace_click); + $('#traceToggle').show(); + console.log("starting trace"); + $axure.player.setVarInCurrentUrlHash(TRACE_VAR_NAME, 1); + } + + function stoptrace_click(event) { + $axure.messageCenter.setState("isTracing", false); + $('#traceDiv').prepend('
      Trace Paused
      '); + $('#traceToggle').text('Restart Trace'); + $('#traceToggle').off("click"); + $('#traceToggle').click(starttrace_click); + console.log("stopping trace"); + $axure.player.deleteVarFromCurrentUrlHash(TRACE_VAR_NAME); + } + }); + + function generateDebug() { + var pageNotesUi = "
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      Console
      "; + + pageNotesUi += "
      "; + pageNotesUi += "
      "; + + pageNotesUi += "
      "; + pageNotesUi += "
      Variables
      "; + pageNotesUi += "Reset Variables"; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + + pageNotesUi += "
      "; + pageNotesUi += "TraceClear TraceStop Trace"; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + + + pageNotesUi += "
      "; + pageNotesUi += "
      Click the button below to start recording interactions as you click through the prototype.
      "; + pageNotesUi += "
      Start Trace
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + + $('#debugHost').html(pageNotesUi); + $('#traceEmptyState').show(); + } + +})(); \ No newline at end of file diff --git a/plugins/debug/styles/debug.css b/plugins/debug/styles/debug.css new file mode 100644 index 0000000..cefa4d3 --- /dev/null +++ b/plugins/debug/styles/debug.css @@ -0,0 +1,265 @@ +#debugHost { + display: flex; + flex-direction: column; + font-size: 13px; + color: #4a4a4a; + height: 100%; +} + +#debugHostBtn { + order: 4; +} + +#debugHostBtn a { + background: url('images/console_panel_on.svg') no-repeat center center, linear-gradient(transparent, transparent); +} + +#debugHostBtn a.selected, #debugHostBtn a.selected:hover { + background: url('images/console_panel_off.svg') no-repeat center center, linear-gradient(transparent, transparent); +} + +#debugToolbar { + margin-left: 8px; +} + +#variablesClearLink { + display: inline-block; + margin-bottom: 15px; +} + +#variablesClearLink:hover { + color: #0a6cd6; +} + +#traceClearLink { + display: inline-block; + margin-bottom: 15px; +} + +#traceClearLink:hover { + color: #0a6cd6; +} + +#debugScrollContainer +{ + overflow: auto; + width: 100%; + -webkit-overflow-scrolling: touch; + flex: 1; +} + +#debugContainer { + padding: 10px 0px 10px 0px; +} + +#consoleTitle { + clear: right; + margin: 12px 0px; +} + +.variableName +{ + font-weight: bold; +} + +.variableDiv +{ + margin-bottom: 20px; + line-height: 16px; + +} + +#variablesDiv +{ + clear: right; +} + +#variablesContainer { + border-bottom: solid 1px #e7e7e7; + padding: 0px 10px 12px 10px; +} + +#traceContainer { + margin-bottom: 5px; + padding: 15px 10px 0px 10px; +} + +#variablesTitle { + margin-bottom: 9px; +} + +.sectionTitle { + font-size: 11px; + color: #2c2c2c; + display: inline-block; +} + +.debugToolbarButton +{ + font-size: 1em; + color: #069; +} + +.axEventBlock { + display: inline-block; + width: 100%; + margin: 5px 0px 5px 0px; + line-height: 21px; + border-bottom: solid 5px #e7e7e7; +} + +.axEventContainer { + background-color: #e7e7e7; + padding: 0px 10px 0px 10px; +} + +.axTime { + margin: 0px 0px 0px 5px; + font-size: 10px; + color: #575757; + display: inline-block; + float: right; +} + +.axLabel { + display: inline-block; +} + +.axEvent { + margin: 0px 0px 2px 0px; + font-size: 15px; + font-weight: bold; + overflow: hidden; + text-overflow: ellipsis; +} + +.axCaseContainer, .axActionContainer, .axInfoContainer { + justify-content: space-between; + padding: 0px 10px 0px 10px; +} + .axCaseContainer { + border-top: solid 2px #e7e7e7; + /*background-color: #47b6b5;*/ + background-color: #e7e7e7; + /*color: #ffffff;*/ + } + .axActionContainer { + border-top: solid 3px #e7e7e7; + } + .axInfoContainer { + border-top: solid 1px #e7e7e7; + } + +.axCaseItem, .axActionItem, .axInfoItem { + overflow: hidden; + text-overflow: ellipsis; +} + .axCaseItem { + font-size: 15px; + font-weight: bold; + } + .axActionItem { + font-weight: bold; + } + .axInfoItem { + color: #8c8c8c; + } + +.axCaseDescription { + flex: 5 0 33%; + margin-left: 10px; + text-align: right; +} +/*.axActionDescription, .axInfoDescription { + flex: 5 0 33%; + margin-left: 10px; + text-align: right; +}*/ + .axCaseDescription, .axActionDescription { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .axInfoDescription, .axActionDescription { + color: #8c8c8c; + font-size: 11px; + } + +.variableName { + width: 55%; + line-height: 0.92; + text-align: left; + color: #0891b3; + display: inline-block; + word-wrap: break-word; + vertical-align: top; +} + +.variableValue { + width: 45%; + line-height: 0.92; + text-align: right; + color: #373d48; + display: inline-block; + word-wrap: break-word; +} + +.traceEvent { + border-bottom: solid 1px #e7e7e7; +} + +.tracePausedNotification { + height: 25px; + /*background-color: #e7e7e7;*/ + border-radius: 5px; + line-height: 25px; + margin: 5px 10px; + text-align: center +} + +#traceEmptyState.emptyStateContainer { + margin-top: 0px; +} + +.variableList{ + width: 100%; + margin-bottom: 4px; +} + +.traceOption { + margin-left: 11px; + height: 16px; + float: right; + font-size: 12px; + font-style: italic; + line-height: 1.45; + text-align: right; + color: #8c8c8c; + text-decoration: underline; + display: inline-block; +} + +.startInstructions { + margin: auto; + width: 179px; + font-size: 11px; + text-align: center; + color: #666666; +} + +.startButton { + margin: auto; + margin-top: 10px; + width: 181px; + height: 24px; + border-radius: 2px; + border: solid 1px #008fe0; + text-align: center; + line-height: 24px; + color: #008fe0; + cursor: pointer; +} + +.debugLinksContainer { + text-align: right; +} \ No newline at end of file diff --git a/plugins/debug/styles/images/console_panel_off.svg b/plugins/debug/styles/images/console_panel_off.svg new file mode 100644 index 0000000..904e7b2 --- /dev/null +++ b/plugins/debug/styles/images/console_panel_off.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/debug/styles/images/console_panel_on.svg b/plugins/debug/styles/images/console_panel_on.svg new file mode 100644 index 0000000..1eeec2e --- /dev/null +++ b/plugins/debug/styles/images/console_panel_on.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/page_notes/page_notes.js b/plugins/page_notes/page_notes.js new file mode 100644 index 0000000..ea924a8 --- /dev/null +++ b/plugins/page_notes/page_notes.js @@ -0,0 +1,474 @@ +// use this to isolate the scope +(function () { + // No notes shown specified by generation config + if (!$axure.document.configuration.showPageNotes && !$axure.document.configuration.showAnnotationsSidebar && !$axure.document.configuration.showAnnotations) { return; } + + $(window.document).ready(function () { + // Load right panel for Page Notes + if ($axure.document.configuration.showPageNotes || $axure.document.configuration.showAnnotationsSidebar) { + $axure.player.createPluginHost({ + id: 'pageNotesHost', + context: 'inspect', + title: 'Documentation', + gid: 2, + }); + } + + // Load footnotes on widgets + if ($axure.document.configuration.showAnnotations) { + $('#overflowMenuContainer').prepend('
      Show Note Markers
      '); + } + + createNotesOverlay(); + generatePageNotes(); + + if ($axure.player.isMobileMode()) { + $('#showNotesOption').hide(); + } else { + $('#showNotesOption').click(footnotes_click); + $('#showNotesOption').find('.overflowOptionCheckbox').addClass('selected'); + } + + function populateNotes(pageForNotes) { + var hasNotes = false; + if ($axure.document.configuration.showPageNotes) { + var pageNoteUi = ''; + + function populatePageNotes(pageOrMaster) { + //populate the page notes + var notes = pageOrMaster.notes; + if (notes && !$.isEmptyObject(notes)) { + pageNoteUi += "
      " + pageOrMaster.pageName + "
      "; + + var showNames = $axure.document.configuration.showPageNoteNames; + for(var noteName in notes) { + pageNoteUi += "
      "; + if(showNames) { + pageNoteUi += "
      " + noteName + "
      "; + } + pageNoteUi += "
      " + linkify(notes[noteName]) + "
      "; + pageNoteUi += "
      "; + //$('#pageNotesContent').append(pageNoteUi); + + hasNotes = true; + } + } + } + + populatePageNotes(pageForNotes); + if (pageForNotes.masterNotes) { + for (var i = 0; i < pageForNotes.masterNotes.length; i++) { + populatePageNotes(pageForNotes.masterNotes[i]); + } + } + + if (pageNoteUi.length > 0) { + pageNoteUi += "
      "; + var pageNotesHeader = "
      Page Notes
      "; + $('#pageNotesContent').append(pageNotesHeader + pageNoteUi); + } + } + + if ($axure.document.configuration.showAnnotationsSidebar) { + var widgetNoteUi = ''; + //var widgetNotes = pageForNotes.widgetNotes; + function populateWidgetNotes(widgetNotes){ + if (widgetNotes) { + for (var i = 0; i < widgetNotes.length; i++) { + var widgetNote = widgetNotes[i]; + widgetNoteUi += "
      "; + widgetNoteUi += "
      " + widgetNote["fn"] + "
      "; + widgetNoteUi += "
      " + widgetNote["label"] + "
      "; + + for (var widgetNoteName in widgetNote) { + if (widgetNoteName != "label" && widgetNoteName != "fn" && widgetNoteName != "ownerId") { + widgetNoteUi += "
      " + widgetNoteName + "
      "; + widgetNoteUi += "
      " + linkify(widgetNote[widgetNoteName]) + "
      "; + //widgetNoteUi += "
      "; + } + } + widgetNoteUi += "
      "; + //widgetNoteUi += "
      "; + //$('#pageNotesContent').append(widgetNoteUi); + hasNotes = true; + } + } + } + + populateWidgetNotes(pageForNotes.widgetNotes); + if (pageForNotes.masterNotes) { + for (var i = 0; i < pageForNotes.masterNotes.length; i++) { + populateWidgetNotes(pageForNotes.masterNotes[i].widgetNotes); + } + } + + if (widgetNoteUi.length > 0) { + var widgetNotesHeader = "
      Widget Notes
      "; + $('#pageNotesContent').append(widgetNotesHeader + widgetNoteUi); + + //$('.widgetNoteContainer').children(':last-child').remove(); + //$('.widgetNoteFootnote').append("
      "); + $('.widgetNoteContainer').click(function () { + var wasSelected = $(this).hasClass('widgetNoteContainerSelected'); + $('.widgetNoteContainerSelected').removeClass('widgetNoteContainerSelected'); + if (!wasSelected) $(this).addClass('widgetNoteContainerSelected'); + + var dimStr = $('.currentAdaptiveView').attr('data-dim'); + var h = dimStr ? dimStr.split('x')[1] : '0'; + var $leftPanel = $('.leftPanel:visible'); + var leftPanelOffset = (!$axure.player.isMobileMode() && $leftPanel.length > 0) ? $leftPanel.width() : 0; + var $rightPanel = $('.rightPanel:visible'); + var rightPanelOffset = (!$axure.player.isMobileMode() && $rightPanel.length > 0) ? $rightPanel.width() : 0; + var viewDimensions = { + h: h != '0' ? h : '', + scaleVal: $('.vpScaleOption').find('.selectedRadioButton').parent().attr('val'), + height: $('.rightPanel').height(), + panelWidthOffset: leftPanelOffset + rightPanelOffset + }; + $axure.messageCenter.postMessage('toggleSelectWidgetNote', { id: this.getAttribute('data-id'), value: !wasSelected, view: viewDimensions}); + }); + } + + + //if (pageForNotes.masterNotes) { + // for (var i = 0; i < pageForNotes.masterNotes.length; i++) { + // var master = pageForNotes.masterNotes[i]; + // hasNotes = populateNotes(master) || hasNotes; + // } + //} + } + + return hasNotes; + } + + // bind to the page load + $axure.page.bind('load.page_notes', function () { + closeAllDialogs(); + + var hasNotes = false; + + $('#pageNotesContent').html(""); + hasNotes = populateNotes($axure.page); + + if(hasNotes) $('#pageNotesEmptyState').hide(); + else $('#pageNotesEmptyState').show(); + + //If footnotes enabled for this prototype... + if ($axure.player.isMobileMode()) { + $axure.messageCenter.postMessage('annotationToggle', false); + } else if($axure.document.configuration.showAnnotations == true) { + //If the fn var is defined and set to 0, hide footnotes + //else if hide-footnotes button selected, hide them + var fnVal = $axure.player.getHashStringVar(FOOTNOTES_VAR_NAME); + if(fnVal.length > 0 && fnVal == 0) { + $('#showNotesOption').find('.overflowOptionCheckbox').removeClass('selected'); + $axure.messageCenter.postMessage('annotationToggle', false); + } else if(!$('#showNotesOption').find('.overflowOptionCheckbox').hasClass('selected')) { + //If the footnotes button isn't selected, hide them on this loaded page + $axure.messageCenter.postMessage('annotationToggle', false); + } + } + + // Get multiple click call if not removing beforehand + $('#notesOverlay').off('click'); + $('#notesOverlay').on('click', '.closeNotesDialog', function () { + var ownerId = $(this).attr("data-ownerid"); + _toggleAnnDialog(ownerId); + }); + + $axure.player.updatePlugins(); + return false; + }); + + $axure.messageCenter.addMessageListener(function (message, data) { + //var messageData = { id: elementId, x: event.pageX, y: event.pageY } + if (message == 'toggleAnnDialog') { + _toggleAnnDialog(data.id, data.x, data.y, data.page); + } + }); + + }); + + function linkify(text) { + var urlRegex = /(\b(((https?|ftp|file):\/\/)|(www\.))[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig; + return text.replace(urlRegex, function (url, b, c) { + var url2 = (c == 'www.') ? 'http://' + url : url; + return '' + url + ''; + }); + } + + function getWidgetNotesHtml(ownerId, page) { + var pageForNotes = page || $axure.page; + var widgetNoteUi = ''; + + widgetNoteUi += "
      "; + widgetNoteUi += "
      "; + + function getNotesForPage(widgetNotes) { + for (var i = 0; i < widgetNotes.length; i++) { + var widgetNote = widgetNotes[i]; + if (widgetNote["ownerId"] == ownerId) { + widgetNoteUi += "
      "; + widgetNoteUi += "
      " + widgetNote["fn"] + "
      "; + widgetNoteUi += "
      " + widgetNote["label"] + "
      "; + + for (var widgetNoteName in widgetNote) { + if (widgetNoteName != "label" && widgetNoteName != "fn" && widgetNoteName != "ownerId") { + widgetNoteUi += "
      " + widgetNoteName + "
      "; + widgetNoteUi += "
      " + linkify(widgetNote[widgetNoteName]) + "
      "; + } + } + widgetNoteUi += "
      "; + } + } + } + + getNotesForPage(pageForNotes.widgetNotes); + if (pageForNotes.masterNotes) { + for (var i = 0; i < pageForNotes.masterNotes.length; i++) { + getNotesForPage(pageForNotes.masterNotes[i].widgetNotes); + } + } + + widgetNoteUi += "
      "; + widgetNoteUi += "
      "; + + return widgetNoteUi; + } + + var maxZIndex = 1; + var dialogs = {}; + var _toggleAnnDialog = function (id, srcLeft, srcTop, page) { + + if(dialogs[id]) { + var $dialog = dialogs[id]; + // reset the dialog + dialogs[id] = undefined; + $dialog.find('.notesDialogScroll').getNiceScroll().remove(); + $dialog.remove(); + return; + } + + var bufferH = 10; + var bufferV = 10; + var blnLeft = false; + var blnAbove = false; + var mfPos = $('#mainPanelContainer').position(); + var viewablePanelLeftMargin = parseInt($('#mainPanelContainer').css('margin-left')); + + var sourceTop = srcTop + mfPos.top; + var sourceLeft = srcLeft + viewablePanelLeftMargin; + + var width = 300; + var height = 300; + + if(sourceLeft > width + bufferH) { + blnLeft = true; + } + if(sourceTop > height + bufferV) { + blnAbove = true; + } + + var top = 0; + var left = 0; + if(blnAbove) top = sourceTop - height - 20; + else top = sourceTop + 10; + if(blnLeft) left = sourceLeft - width - 4; + else left = sourceLeft - 6; + + //need to set the zindex + maxZIndex = maxZIndex + 1; + + var $dialog = $('
      ') + .appendTo('#notesOverlay') + .html(getWidgetNotesHtml(id, page)); + + $dialog.css({ 'left': left, 'top': top, 'z-index': maxZIndex }); + + $dialog.find('.notesDialogScroll').niceScroll({ cursorcolor: "#8c8c8c", cursorborder: "0px solid #fff" }); + + $dialog.find('.notesDialogScroll').on($axure.eventNames.mouseDownName, function(event) { + event.stopPropagation(); + }); + + $dialog.find('.closeNotesDialog').on($axure.eventNames.mouseDownName, function (event) { + event.stopPropagation(); + }); + + $dialog.on($axure.eventNames.mouseDownName, startDialogMove); + var startMouseX; + var startMouseY; + var startDialogX; + var startDialogY; + function startDialogMove() { + startMouseX = window.event.pageX; + startMouseY = window.event.pageY; + var position = $dialog.position(); + startDialogX = position.left; + startDialogY = position.top; + + $dialog.addClass('active'); + $('
      ').insertAfter($('#notesOverlay')); + $(document).bind($axure.eventNames.mouseMoveName, doDialogMove).bind($axure.eventNames.mouseUpName, endDialogMove); + + $dialog.find('.notesDialogScroll').getNiceScroll().hide(); + } + + function doDialogMove() { + var currentX = window.event.pageX; + var currentY = window.event.pageY; + $dialog.css({ 'left': startDialogX + currentX - startMouseX, 'top': startDialogY + currentY - startMouseY }); + } + + function endDialogMove() { + $('div.splitterMask').remove(); + $dialog.removeClass('active'); + $(document).unbind($axure.eventNames.mouseMoveName, doDialogMove).unbind($axure.eventNames.mouseUpName, endDialogMove); + + $dialog.find('.notesDialogScroll').getNiceScroll().resize(); + $dialog.find('.notesDialogScroll').getNiceScroll().show(); + } + + $dialog.find('.resizeNotesDialog').on($axure.eventNames.mouseDownName, startDialogResize); + + var startDialogW; + var startDialogH; + function startDialogResize() { + event.stopPropagation(); + + startMouseX = window.event.pageX; + startMouseY = window.event.pageY; + startDialogW = Number($dialog.css('width').replace('px','')); + startDialogH = Number($dialog.css('height').replace('px', '')); + + $dialog.addClass('active'); + $('
      ').insertAfter($('#notesOverlay')); + $(document).bind($axure.eventNames.mouseMoveName, doDialogResize).bind($axure.eventNames.mouseUpName, endDialogResize); + + $dialog.find('.notesDialogScroll').getNiceScroll().hide(); + } + + function doDialogResize() { + var currentX = window.event.pageX; + var currentY = window.event.pageY; + var newWidth = Math.max(200, startDialogW + currentX - startMouseX); + var newHeight = Math.max(200, startDialogH + currentY - startMouseY); + $dialog.css({ 'width': newWidth, 'height': newHeight }); + } + + function endDialogResize() { + $('div.splitterMask').remove(); + $dialog.removeClass('active'); + $(document).unbind($axure.eventNames.mouseMoveName, doDialogResize).unbind($axure.eventNames.mouseUpName, endDialogResize); + + $dialog.find('.notesDialogScroll').getNiceScroll().resize(); + $dialog.find('.notesDialogScroll').getNiceScroll().show(); + } + + dialogs[id] = $dialog; + + // scroll ... just for IE + //window.scrollTo(scrollX, scrollY); + }; + + $(document).on('sidebarCollapse', function (event, data) { + clearSelection(); + }); + + $(document).on('pluginShown', function (event, data) { + if(data != 2) { + clearSelection(); + } + }); + + function clearSelection() { + var selectedNote = $('#pageNotesContainer').find('.widgetNoteContainerSelected'); + if(selectedNote.length > 0) { + selectedNote.removeClass('widgetNoteContainerSelected'); + //var dimStr = $('.currentAdaptiveView').attr('data-dim'); + //var h = dimStr ? dimStr.split('x')[1] : '0'; + //var $leftPanel = $('.leftPanel:visible'); + //var leftPanelOffset = (!$axure.player.isMobileMode() && $leftPanel.length > 0) ? $leftPanel.width() : 0; + //var $rightPanel = $('.rightPanel:visible'); + //var rightPanelOffset = (!$axure.player.isMobileMode() && $rightPanel.length > 0) ? $rightPanel.width() : 0; + //var viewDimensions = { + // h: h != '0' ? h : '', + // scaleVal: $('.vpScaleOption').find('.selectedRadioButton').parent().attr('val'), + // scrollLeft: $('#clipFrameScroll').scrollLeft(), + // scrollTop: $('#clipFrameScroll').scrollTop(), + // height: $('.rightPanel').height(), + // panelWidthOffset: leftPanelOffset + rightPanelOffset + //}; + //$axure.messageCenter.postMessage('toggleSelectWidgetNote', { id: '', value: false, view: viewDimensions }); + $axure.messageCenter.postMessage('toggleSelectWidgetNote', { id: '', value: false }); + //$axure.messageCenter.postMessage('toggleSelectWidgetNote', ''); + } + } + + function closeAllDialogs() { + for (var id in dialogs) { + var $dialog = dialogs[id]; + if ($dialog !== undefined) _toggleAnnDialog(id); + } + } + + $axure.player.toggleFootnotes = function(val) { + var scaleCheckDiv = $('#showNotesOption').find('.overflowOptionCheckbox'); + if (scaleCheckDiv.hasClass('selected')) { + if (!val) $('#showNotesOption').click(); + } else { + if (val) $('#showNotesOption').click(); + } + } + + function footnotes_click(event) { + var scaleCheckDiv = $('#showNotesOption').find('.overflowOptionCheckbox'); + if (scaleCheckDiv.hasClass('selected')) { + closeAllDialogs(); + + scaleCheckDiv.removeClass('selected'); + $axure.messageCenter.postMessage('annotationToggle', false); + //Add 'fn' hash string var so that footnotes stay hidden across reloads + $axure.player.setVarInCurrentUrlHash(FOOTNOTES_VAR_NAME, 0); + } else { + scaleCheckDiv.addClass('selected'); + $axure.messageCenter.postMessage('annotationToggle', true); + //Delete 'fn' hash string var if it exists since default is visible + $axure.player.deleteVarFromCurrentUrlHash(FOOTNOTES_VAR_NAME); + } + } + + function createNotesOverlay() { + var $targetPanel = $('#clippingBounds'); + + if (!$('#notesOverlay').length) { + var notesOverlay = document.createElement('div'); + notesOverlay.setAttribute('id', 'notesOverlay'); + + $targetPanel.prepend(notesOverlay); + $(notesOverlay).append(' '); + } + } + + function generatePageNotes() { + var pageNotesUi = "
      "; + + pageNotesUi += "
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      "; + + + pageNotesUi += "
      "; + pageNotesUi += "
      "; + pageNotesUi += "
      No notes for this page.
      Notes added in Axure RP will appear here.
      "; + pageNotesUi += ""; + pageNotesUi += "
      "; + + $('#pageNotesHost').html(pageNotesUi); + + if(!$axure.document.configuration.showAnnotations) { + $('#pageNotesHost .pageNameHeader').css('padding-right', '55px'); + } + } + +})(); \ No newline at end of file diff --git a/plugins/page_notes/styles/images/notes_panel_off.svg b/plugins/page_notes/styles/images/notes_panel_off.svg new file mode 100644 index 0000000..3682486 --- /dev/null +++ b/plugins/page_notes/styles/images/notes_panel_off.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/page_notes/styles/images/notes_panel_on.svg b/plugins/page_notes/styles/images/notes_panel_on.svg new file mode 100644 index 0000000..3e7af5d --- /dev/null +++ b/plugins/page_notes/styles/images/notes_panel_on.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/page_notes/styles/page_notes.css b/plugins/page_notes/styles/page_notes.css new file mode 100644 index 0000000..a804ca7 --- /dev/null +++ b/plugins/page_notes/styles/page_notes.css @@ -0,0 +1,209 @@ +#pageNotesHost { + display: flex; + flex-direction: column; + height: 100%; +} + +#pageNotesHostBtn { + order: 2; +} + +#pageNotesHostBtn a { + background: url('images/notes_panel_on.svg') no-repeat center center,linear-gradient(transparent, transparent); +} + +#pageNotesHostBtn a.selected, #pageNotesHostBtn a.selected:hover { + background: url('images/notes_panel_off.svg') no-repeat center center,linear-gradient(transparent, transparent); +} + +#pageNotesScrollContainer { + overflow: auto; + width: 100%; + flex: 1; + -webkit-overflow-scrolling: touch; +} + +#pageNotesContent { + overflow: visible; +} + +.pageNoteContainer { + padding: 0px 12px 8px 12px; +} + +.mobileMode .pageNoteContainer { + padding: 0px 16px 8px 17px; +} + +.pageNoteName { + font-size: 13px; + font-weight: bold; + color: #2c2c2c; + margin: 15px 0px 5px 0px; + white-space: nowrap; +} + +.pageNote { + font-size: 13px; + color: #2a2e38; + line-height: 1.67; + word-wrap: break-word; +} + +.pageNote ul { + list-style: disc; + padding: 0px 0px 0px 40px; +} + +.pageNote ul ul{ + list-style: circle; +} + +.pageNote ul ul ul{ + list-style: square; +} + +.pageNote ul ul ul ul { + list-style: disc; +} + +.pageNote ul ul ul ul ul { + list-style: circle; +} + +.pageNote ul ul ul ul ul ul { + list-style: square; +} + +.widgetNoteContainer { + padding: 12px; + border-bottom: 1px solid transparent; + border-top: 1px solid transparent; + cursor: pointer; +} + +.mobileMode .widgetNoteContainer { + padding: 12px 16px 12px 17px; +} + +.widgetNoteContainerSelected { + background-color: white; + border-bottom: 1px solid #c2c2c2; + border-top: 1px solid #c2c2c2; +} + +.widgetNoteFootnote { + display: inline-block; + padding-top: 1px; + background-color: #fff849; + font-size: 11px; + font-weight: bold; + line-height: 16px; + margin-right: 8px; + padding: 0px 5px; + color: #000; +} + +div.annnoteline { + display: inline-block; + width: 9px; + height: 1px; + border-bottom: 1px solid white; + margin-top: 1px; +} + +.widgetNoteLabel { + font-size: 13px; + font-weight: 600; + color: #58167d; + margin-top: 4px; + float: right; +} + +.noteLink { + text-decoration: inherit; + color: inherit; +} + +.noteLink:hover { + background-color: white; +} + +.notesSectionHeader { + margin: 0px 8px 0px 12px; +} + +.notesPageNameHeader { + margin: 8px 8px 15px 12px; +} + +.mobileMode .notesPageNameHeader { + margin: 18px 14px 5px 16px; +} + +#notesOverlay { + width: 0; + height: 0; + position: absolute; + overflow: visible; + z-index: 1; +} + +div.closeNotesDialog { + position: absolute; + top: 6px; + right: 6px; + width: 11px; + height: 10px; + object-fit: contain; + background: url(../../../resources/images/close_x.svg) no-repeat center center, linear-gradient(transparent, transparent); + margin-left: auto; + cursor: pointer; +} + +div.resizeNotesDialog { + position: absolute; + bottom: 2px; + right: 2px; + width: 11px; + height: 10px; + object-fit: contain; + background: url(../../../resources/images/resize.svg) no-repeat center center, linear-gradient(transparent, transparent); + margin-left: auto; + cursor: nwse-resize; +} + +div.notesDialog { + position: absolute; + padding: 16px 3px 10px 3px; + background-color: #efefef; + width: 300px; + height: 300px; + line-height: normal; + border: #8F949A solid 1px; + box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.4); + cursor: move; + display: flex; + flex-direction: column; + box-sizing: border-box; +} + +div.notesDialog.active { + user-select: none; +} + +div.notesDialog .widgetNoteContainer { + cursor: auto; + padding: 2px 26px 16px 14px; +} + +div.notesDialogScroll { + overflow-x: hidden; + overflow-y: auto; + height: 100%; + cursor: auto; +} + +.mobileMode .pageNoteName, .mobileMode #pageNotesToolbar, .mobileMode .dottedDivider { + display: none; +} \ No newline at end of file diff --git a/public/plugins/recordplay/recordplay.js b/plugins/recordplay/recordplay.js similarity index 100% rename from public/plugins/recordplay/recordplay.js rename to plugins/recordplay/recordplay.js diff --git a/public/plugins/recordplay/styles/recordplay.css b/plugins/recordplay/styles/recordplay.css similarity index 92% rename from public/plugins/recordplay/styles/recordplay.css rename to plugins/recordplay/styles/recordplay.css index fddf028..13a598b 100644 --- a/public/plugins/recordplay/styles/recordplay.css +++ b/plugins/recordplay/styles/recordplay.css @@ -44,7 +44,8 @@ background-color : rgb(204,235,248); } -#recordButton { +/* removed images */ +/*#recordButton { background: url('../../sitemap/styles/images/233_hyperlink_16.png') no-repeat center center; } @@ -58,7 +59,7 @@ #deleteButton { background: url('../../sitemap/styles/images/231_event_16.png') no-repeat center center; -} +}*/ #recordNameHeader { diff --git a/plugins/sitemap/sitemap.js b/plugins/sitemap/sitemap.js new file mode 100644 index 0000000..68d1e94 --- /dev/null +++ b/plugins/sitemap/sitemap.js @@ -0,0 +1,553 @@ +var currentNodeUrl = ''; +var allNodeUrls = []; + +var openNextPage = $axure.player.openNextPage = function () { + var index = allNodeUrls.indexOf(currentNodeUrl) + 1; + if(index >= allNodeUrls.length) return; + var nextNodeUrl = allNodeUrls[index]; + currentNodeUrl = nextNodeUrl; + $('.sitemapPageLink[nodeUrl="' + nextNodeUrl + '"]').parent().mousedown(); +}; + +var openPreviousPage = $axure.player.openPreviousPage = function () { + var index = allNodeUrls.indexOf(currentNodeUrl) - 1; + if(index < 0) return; + var nextNodeUrl = allNodeUrls[index]; + currentNodeUrl = nextNodeUrl; + $('.sitemapPageLink[nodeUrl="' + nextNodeUrl + '"]').parent().mousedown(); +}; + +// use this to isolate the scope +(function() { + + var SHOW_HIDE_ANIMATION_DURATION = 0; + + var HIGHLIGHT_INTERACTIVE_VAR_NAME = 'hi'; + + var currentPageLoc = ''; + var currentPlayerLoc = ''; + var currentPageHashString = ''; + + $(window.document).ready(function() { + $axure.player.createPluginHost({ + id: 'sitemapHost', + context: 'project', + title: 'Project Pages', + gid: 1, + }); + + $(window.document).bind('keyup', function (e) { + if (e.target.localName == "textarea" || e.target.localName == "input") return; + switch(e.which) { + case 188: + openPreviousPage(); + break; + case 190: + openNextPage(); + break; + default: return; // exit this handler for other keys + } + }); + + generateSitemap(); + + $('.leftArrow').click(openPreviousPage); + $('.rightArrow').click(openNextPage); + + $('.sitemapPlusMinusLink').click(collapse_click); + $('.sitemapPageLink').parent().mousedown(node_click); + + $('#interfaceAdaptiveViewsListContainer').hide(); + + $('#projectOptionsShowHotspots').click(showHotspots_click); + $('#searchIcon').click(searchBoxClose_click); + $('#searchDiv').click(searchBoxExpand_click); + $('#searchBox').keyup(search_input_keyup); + + // bind to the page load + $axure.page.bind('load.sitemap', function() { + currentPageLoc = $axure.page.location.split("#")[0]; + var decodedPageLoc = decodeURI(currentPageLoc); + currentNodeUrl = decodedPageLoc.substr(decodedPageLoc.lastIndexOf('/') ? decodedPageLoc.lastIndexOf('/') + 1 : 0); + currentPlayerLoc = $(location).attr('href').split("#")[0].split("?")[0]; + currentPageHashString = '#p=' + currentNodeUrl.substr(0, currentNodeUrl.lastIndexOf('.')); + + $axure.player.setVarInCurrentUrlHash(PAGE_ID_NAME, $axure.player.getPageIdByUrl(currentNodeUrl)); + $axure.player.setVarInCurrentUrlHash(PAGE_URL_NAME, currentNodeUrl.substring(0, currentNodeUrl.lastIndexOf('.html'))); + + $('#sitemapTreeContainer').find('.sitemapHighlight').removeClass('sitemapHighlight'); + $('.sitemapPageLink[nodeUrl="' + currentNodeUrl + '"]').parent().parent().addClass('sitemapHighlight'); + + var pageName = $axure.page.pageName; + $('.pageNameHeader').html(pageName); + + //If highlight var is present and set to 1 or else if + //sitemap highlight button is selected then highlight interactive elements + var hiVal = $axure.player.getHashStringVar(HIGHLIGHT_INTERACTIVE_VAR_NAME); + if(hiVal.length > 0 && hiVal == 1) { + $('#showHotspotsOption').find('.overflowOptionCheckbox').addClass('selected'); + if ($('#projectOptionsHotspotsCheckbox').length > 0) $('#projectOptionsHotspotsCheckbox').addClass('selected'); + $axure.messageCenter.postMessage('highlightInteractive', true); + } else if ($('#showHotspotsOption').find('.overflowOptionCheckbox').hasClass('selected')) { + $axure.messageCenter.postMessage('highlightInteractive', true); + } + + generateAdaptiveViews(false); + if (MOBILE_DEVICE) generateAdaptiveViews(true); + + $axure.player.suspendRefreshViewPort = true; + + //Set the current view if it is defined in the hash string + //If the view is invalid, set it to 'auto' in the string + //ELSE set the view based on the currently selected view in the toolbar menu + var viewStr = $axure.player.getHashStringVar(ADAPTIVE_VIEW_VAR_NAME); + if(viewStr.length > 0) { + var $view = $('.adaptiveViewOption[val="' + viewStr + '"]'); + if($view.length > 0) $view.click(); + else $('.adaptiveViewOption[val="auto"]').click(); + } else if($('.selectedRadioButton').length > 0) { + var $viewOption = $('.selectedRadioButton').parents('.adaptiveViewOption'); + $viewOption.click(); + } + updateAdaptiveViewHeader(); + + function setDefaultScaleForDevice() { + if(MOBILE_DEVICE && $axure.player.isMobileMode()) { + $('.projectOptionsScaleRow[val="0"]').click(); + } else { + $('.vpScaleOption[val="0"]').click(); + } + } + + var scaleStr = $axure.player.getHashStringVar(SCALE_VAR_NAME); + if(scaleStr.length > 0) { + var $scale = $('.vpScaleOption[val="' + scaleStr + '"]'); + if($scale.length > 0) $scale.click(); + else setDefaultScaleForDevice(); + } else { + setDefaultScaleForDevice(); + } + + var rotateStr = $axure.player.getHashStringVar(ROT_VAR_NAME); + if(rotateStr.length > 0) { + $('#vpRotate').prop('checked', true); + } + + $axure.player.suspendRefreshViewPort = false; + + if (!$axure.player.isViewOverridden()) $axure.messageCenter.postMessage('setAdaptiveViewForSize', { 'width': $('#mainPanel').width(), 'height': $('#mainPanel').height() }); + + $axure.player.refreshViewPort(); + + $axure.messageCenter.postMessage('finishInit'); + + showMainPanel(); + return false; + }); + + var $vpContainer = $('#interfaceScaleListContainer'); + + var scaleOptions = '
      Default Scale
      '; + scaleOptions += '
      Scale to Width
      '; + scaleOptions += '
      Scale to Fit
      '; + $(scaleOptions).appendTo($vpContainer); + + $('#overflowMenuContainer').append('
      Show Hotspots
      '); + $('#overflowMenuContainer').append($vpContainer); + $vpContainer.show(); + + $('#showHotspotsOption').click(showHotspots_click); + $('.vpScaleOption').click(vpScaleOption_click); + $('.vpScaleOption').mouseup(function (event) { + event.stopPropagation(); + }); + + if (MOBILE_DEVICE) { + var scaleOptions = '
      Scale to fit width
      '; + scaleOptions += '
      Original size (100%)
      '; + scaleOptions += '
      Fit all to screen
      '; + $(scaleOptions).appendTo($('#projectOptionsScaleContainer')); + + $('.projectOptionsScaleRow').click(vpScaleOption_click); + } + + $('#searchBox').focusin(function() { + if($(this).is('.searchBoxHint')) { + $(this).val(''); + $(this).removeClass('searchBoxHint'); + } + }).focusout(function() { + if($(this).val() == '') { + $(this).addClass('searchBoxHint'); + } + }); + + + $('#searchBox').focusout(); + }); + + var _formatViewDimension = function(dim) { + if(dim == 0) return 'any'; + if(dim.toString().includes('.')) return dim.toFixed(2); + return dim; + }; + + function generateAdaptiveViews(forProjectOptions) { + var $container = forProjectOptions ? $('#projectOptionsAdaptiveViewsContainer') : $('#interfaceAdaptiveViewsListContainer'); + var $viewSelect = forProjectOptions ? $('#projectOptionsViewSelect') : $('#viewSelect'); + var adaptiveViewOptionClass = forProjectOptions ? 'projectOptionsAdaptiveViewRow' : 'adaptiveViewOption'; + var currentViewClass = forProjectOptions ? '' : 'currentAdaptiveView'; + + $container.empty(); + $viewSelect.empty(); + + //Fill out adaptive view container with prototype's defined adaptive views, as well as the default, and Auto + var viewsList = '
      Adaptive
      '; + var viewSelect = ''; + if (typeof $axure.page.defaultAdaptiveView.name != 'undefined') { + //If the name is a blank string, make the view name the width if non-zero, else 'any' + var defaultView = $axure.page.defaultAdaptiveView; + var defaultViewName = defaultView.name; + + var widthString = _formatViewDimension(defaultView.size.width); + var heightString = _formatViewDimension(defaultView.size.height); + + var viewString = defaultViewName + ' (' + widthString + ' x ' + heightString + ')'; + + viewsList += '
      ' + + '
      ' + viewString + '
      '; + viewSelect += ''; + } + + var useViews = $axure.document.configuration.useViews; + var hasViews = false; + if(useViews) { + for(var viewIndex = 0; viewIndex < $axure.page.adaptiveViews.length; viewIndex++) { + var currView = $axure.page.adaptiveViews[viewIndex]; + + var widthString = _formatViewDimension(currView.size.width); + var heightString = _formatViewDimension(currView.size.height); + + var viewString = currView.name + ' (' + widthString + ' x ' + heightString + ')'; + viewsList += '
      ' + + viewString + + '
      '; + viewSelect += ''; + + hasViews = true; + } + } + + $container.append(viewsList); + $viewSelect.append(viewSelect); + + if (!hasViews) { + if (forProjectOptions) { + $('#projectOptionsAdaptiveViewsHeader').hide(); + $('#projectOptionsAdaptiveViewsContainer').hide(); + } else $('#interfaceAdaptiveViewsContainer').hide(); + } else { + if (forProjectOptions) { + $('#projectOptionsAdaptiveViewsHeader').show(); + $('#projectOptionsAdaptiveViewsContainer').show(); + } else $('#interfaceAdaptiveViewsContainer').show(); + } + + $(('.' + adaptiveViewOptionClass)).click(adaptiveViewOption_click); + + if (!forProjectOptions) { + $(('.' + adaptiveViewOptionClass)).mouseup(function (event) { + event.stopPropagation(); + }); + } + } + + + function collapse_click(event) { + if($(this).children('.sitemapPlus').length > 0) { + expand_click($(this)); + } else { + $(this) + .children('.sitemapMinus').removeClass('sitemapMinus').addClass('sitemapPlus').end() + .closest('li').children('ul').hide(SHOW_HIDE_ANIMATION_DURATION); + } + event.stopPropagation(); + } + + function expand_click($this) { + $this + .children('.sitemapPlus').removeClass('sitemapPlus').addClass('sitemapMinus').end() + .closest('li').children('ul').show(SHOW_HIDE_ANIMATION_DURATION); + } + + function searchBoxExpand_click(event) { + if (!$('#searchIcon').hasClass('sitemapToolbarButtonSelected')) { + $('#searchIcon').addClass('sitemapToolbarButtonSelected') + $('#searchBox').width(0); + $('#searchBox').show(); + $('#searchBox').animate({ width: '95%' }, { duration: 200, complete: function () { $('#searchBox').focus(); } }); + } + } + + function searchBoxClose_click(event) { + if ($('#searchIcon').hasClass('sitemapToolbarButtonSelected')) { + $('#searchBox').animate({ width: '0%' }, { duration: 200, + complete: function () { + $('#searchBox').hide(); + $('#searchIcon').removeClass('sitemapToolbarButtonSelected') + }}); + $('#searchBox').val(''); + $('#searchBox').keyup(); + } + } + + function node_click(event) { + hideMainPanel(); + $('#sitemapTreeContainer').find('.sitemapHighlight').removeClass('sitemapHighlight'); + $(this).parent().addClass('sitemapHighlight'); + $axure.page.navigate($(this).children('.sitemapPageLink')[0].getAttribute('nodeUrl'), true); + } + + function hideMainPanel() { + $('#mainPanel').css('opacity', '0'); + $('#clippingBounds').css('opacity', '0'); + } + function showMainPanel() { + $('#mainPanel').animate({ opacity: 1 }, 10); + $('#clippingBounds').animate({ opacity: 1 }, 10); + } + + $axure.messageCenter.addMessageListener(function(message, data) { + if(message == 'adaptiveViewChange') { + $('.adaptiveViewOption').removeClass('currentAdaptiveView'); + if(data.viewId) {$('.adaptiveViewOption[val="' + data.viewId + '"]').addClass('currentAdaptiveView');} + else $('.adaptiveViewOption[val="default"]').addClass('currentAdaptiveView'); + + //when we set adaptive view through user event, we want to update the checkmark on sitemap + if(data.forceSwitchTo) { + $('.adapViewRadioButton').find('.selectedRadioButtonFill').hide(); + $('.adapViewRadioButton').removeClass('selectedRadioButton'); + $('div[val="' + data.forceSwitchTo + '"]').find('.adapViewRadioButton').addClass('selectedRadioButton'); + $('div[val="' + data.forceSwitchTo + '"]').find('.selectedRadioButtonFill').show(); + } + + updateAdaptiveViewHeader(); + $axure.player.refreshViewPort(); + + } else if(message == 'previousPage') { + openPreviousPage(); + } else if(message == 'nextPage') { + openNextPage(); + } + }); + + $axure.player.toggleHotspots = function (val) { + var overflowMenuCheckbox = $('#showHotspotsOption').find('.overflowOptionCheckbox'); + if ($(overflowMenuCheckbox).hasClass('selected')) { + if (!val) $('#showHotspotsOption').click(); + } else { + if (val) $('#showHotspotsOption').click(); + } + } + + function showHotspots_click(event) { + var overflowMenuCheckbox = $('#showHotspotsOption').find('.overflowOptionCheckbox'); + var projOptionsCheckbox = $('#projectOptionsHotspotsCheckbox'); + + if ($(overflowMenuCheckbox).hasClass('selected')) { + overflowMenuCheckbox.removeClass('selected'); + if (projOptionsCheckbox.length > 0 ) projOptionsCheckbox.removeClass('selected'); + $axure.messageCenter.postMessage('highlightInteractive', false); + //Delete 'hi' hash string var if it exists since default is unselected + $axure.player.deleteVarFromCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME); + } else { + overflowMenuCheckbox.addClass('selected'); + if (projOptionsCheckbox.length > 0) projOptionsCheckbox.addClass('selected'); + $axure.messageCenter.postMessage('highlightInteractive', true); + //Add 'hi' hash string var so that stay highlighted across reloads + $axure.player.setVarInCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME, 1); + } + } + + + function adaptiveViewOption_click(event) { + var currVal = $(this).attr('val'); + + $('.adaptiveViewOption').removeClass('currentAdaptiveView'); + if(currVal) {$('.adaptiveViewOption[val="' + currVal + '"]').addClass('currentAdaptiveView');} + else $('.adaptiveViewOption[val="default"]').addClass('currentAdaptiveView'); + + $('.adapViewRadioButton').find('.selectedRadioButtonFill').hide(); + $('.adapViewRadioButton').removeClass('selectedRadioButton'); + $('div[val="' + currVal + '"]').find('.adapViewRadioButton').addClass('selectedRadioButton'); + $('div[val="' + currVal + '"]').find('.selectedRadioButtonFill').show(); + + selectAdaptiveView(currVal); + $axure.player.closePopup(); + updateAdaptiveViewHeader(); + } + + var selectAdaptiveView = $axure.player.selectAdaptiveView = function(currVal) { + if (currVal == 'auto') { + $axure.messageCenter.postMessage('setAdaptiveViewForSize', { 'width': $('#mainPanel').width(), 'height': $('#mainPanel').height() }); + $axure.player.deleteVarFromCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME); + } else { + currentPageLoc = $axure.page.location.split("#")[0]; + var decodedPageLoc = decodeURI(currentPageLoc); + var nodeUrl = decodedPageLoc.substr(decodedPageLoc.lastIndexOf('/') + ? decodedPageLoc.lastIndexOf('/') + 1 + : 0); + var adaptiveData = { + src: nodeUrl + }; + + adaptiveData.view = currVal; + $axure.messageCenter.postMessage('switchAdaptiveView', adaptiveData); + $axure.player.setVarInCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME, currVal); + } + } + + $axure.player.updateAdaptiveViewHeader = updateAdaptiveViewHeader = function () { + var hasDefinedDim = true; + var dimensionlessViewStr = '(any x any)'; + + var viewString = $('.adaptiveViewOption.currentAdaptiveView').text(); + if (viewString != null && viewString.indexOf(dimensionlessViewStr) >= 0) hasDefinedDim = false; + + if (!hasDefinedDim) { + var viewName = viewString.substring(0, viewString.lastIndexOf(' (')); + var widthString = $('#mainPanelContainer').width(); + viewString = viewName + ' (' + widthString + ' x any)'; + } + + $('.adaptiveViewHeader').html(viewString); + } + + $axure.player.selectScaleOption = function (scaleVal) { + var $scale = $('.vpScaleOption[val="' + scaleVal + '"]'); + if ($scale.length > 0) $scale.click(); + } + + function vpScaleOption_click(event) { + var scaleCheckDiv = $(this).find('.scaleRadioButton'); + var scaleVal = $(this).attr('val'); + if (scaleCheckDiv.hasClass('selectedRadioButton')) return false; + + var $selectedScaleOption = $('.vpScaleOption[val="' + scaleVal + '"], .projectOptionsScaleRow[val="' + scaleVal + '"]'); + var $allScaleOptions = $('.vpScaleOption, .projectOptionsScaleRow'); + $allScaleOptions.find('.scaleRadioButton').removeClass('selectedRadioButton'); + $allScaleOptions.find('.selectedRadioButtonFill').hide(); + $selectedScaleOption.find('.scaleRadioButton').addClass('selectedRadioButton'); + $selectedScaleOption.find('.selectedRadioButtonFill').show(); + + if (scaleVal == '0') { + $axure.player.deleteVarFromCurrentUrlHash(SCALE_VAR_NAME); + } else if (typeof scaleVal !== 'undefined') { + $axure.player.setVarInCurrentUrlHash(SCALE_VAR_NAME, scaleVal); + } + + $axure.player.refreshViewPort(); + } + + function search_input_keyup(event) { + var searchVal = $(this).val().toLowerCase(); + //If empty search field, show all nodes, else grey+hide all nodes and + //ungrey+unhide all matching nodes, as well as unhide their parent nodes + if(searchVal == '') { + $('.sitemapPageName').removeClass('sitemapGreyedName'); + $('.sitemapNode').show(); + } else { + $('.sitemapNode').hide(); + + $('.sitemapPageName').addClass('sitemapGreyedName').each(function() { + var nodeName = $(this).text().toLowerCase(); + if(nodeName.indexOf(searchVal) != -1) { + $(this).removeClass('sitemapGreyedName').parents('.sitemapNode:first').show().parents('.sitemapExpandableNode').show(); + } + }); + } + } + + + function generateSitemap() { + var treeUl = "
      "; + treeUl += "
      "; + + treeUl += '
      '; + treeUl += "
      "; + treeUl += "
      "; + + treeUl += "
      "; + treeUl += "
      "; + + /////////////////// + + var sitemapTitle = $axure.player.getProjectName(); + if (!sitemapTitle) sitemapTitle = "Pages"; + treeUl += "
      " + sitemapTitle + "
      "; + + treeUl += "
      "; + treeUl += "
        "; + var rootNodes = $axure.document.sitemap.rootNodes; + for(var i = 0; i < rootNodes.length; i++) { + treeUl += generateNode(rootNodes[i], 0); + } + treeUl += "
      "; + + if (!MOBILE_DEVICE) { + treeUl += "
      Use "; + treeUl += ''; + treeUl += " and "; + treeUl += ''; + treeUl += " keys
      to move between pages"; + treeUl += "
      "; + } + + $('#sitemapHost').html(treeUl); + } + + function generateNode(node, level) { + var hasChildren = (node.children && node.children.length > 0); + var margin, returnVal; + if(hasChildren) { + margin = (9 + level * 17); + returnVal = "
    • "; + + if(hasChildren) { + returnVal += "
        "; + for(var i = 0; i < node.children.length; i++) { + var child = node.children[i]; + returnVal += generateNode(child, level + 1); + } + returnVal += "
      "; + } + returnVal += "
    • "; + return returnVal; + } +})(); diff --git a/plugins/sitemap/styles/images/back_keys.svg b/plugins/sitemap/styles/images/back_keys.svg new file mode 100644 index 0000000..205ef8b --- /dev/null +++ b/plugins/sitemap/styles/images/back_keys.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/plugins/sitemap/styles/images/closed_item.svg b/plugins/sitemap/styles/images/closed_item.svg new file mode 100644 index 0000000..cc96bf2 --- /dev/null +++ b/plugins/sitemap/styles/images/closed_item.svg @@ -0,0 +1,14 @@ + + + + open item copy + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/plugins/sitemap/styles/images/folder_closed_blue.svg b/plugins/sitemap/styles/images/folder_closed_blue.svg new file mode 100644 index 0000000..f1fc99b --- /dev/null +++ b/plugins/sitemap/styles/images/folder_closed_blue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/plugins/sitemap/styles/images/forward_keys.svg b/plugins/sitemap/styles/images/forward_keys.svg new file mode 100644 index 0000000..cb04793 --- /dev/null +++ b/plugins/sitemap/styles/images/forward_keys.svg @@ -0,0 +1,10 @@ + + + + + + + . + + + diff --git a/plugins/sitemap/styles/images/left_arrow.svg b/plugins/sitemap/styles/images/left_arrow.svg new file mode 100644 index 0000000..c1d72ba --- /dev/null +++ b/plugins/sitemap/styles/images/left_arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/sitemap/styles/images/open_item.svg b/plugins/sitemap/styles/images/open_item.svg new file mode 100644 index 0000000..062b37c --- /dev/null +++ b/plugins/sitemap/styles/images/open_item.svg @@ -0,0 +1,12 @@ + + + + open item + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/plugins/sitemap/styles/images/page_lt_grey.svg b/plugins/sitemap/styles/images/page_lt_grey.svg new file mode 100644 index 0000000..15e33b0 --- /dev/null +++ b/plugins/sitemap/styles/images/page_lt_grey.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/plugins/sitemap/styles/images/right_arrow.svg b/plugins/sitemap/styles/images/right_arrow.svg new file mode 100644 index 0000000..f21915b --- /dev/null +++ b/plugins/sitemap/styles/images/right_arrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/sitemap/styles/images/search_off.svg b/plugins/sitemap/styles/images/search_off.svg new file mode 100644 index 0000000..55f40fe --- /dev/null +++ b/plugins/sitemap/styles/images/search_off.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/plugins/sitemap/styles/images/search_on.svg b/plugins/sitemap/styles/images/search_on.svg new file mode 100644 index 0000000..c813852 --- /dev/null +++ b/plugins/sitemap/styles/images/search_on.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/plugins/sitemap/styles/images/sitemap_panel_off.svg b/plugins/sitemap/styles/images/sitemap_panel_off.svg new file mode 100644 index 0000000..93cec71 --- /dev/null +++ b/plugins/sitemap/styles/images/sitemap_panel_off.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/sitemap/styles/images/sitemap_panel_on.svg b/plugins/sitemap/styles/images/sitemap_panel_on.svg new file mode 100644 index 0000000..701e8b0 --- /dev/null +++ b/plugins/sitemap/styles/images/sitemap_panel_on.svg @@ -0,0 +1,3 @@ + + + diff --git a/plugins/sitemap/styles/sitemap.css b/plugins/sitemap/styles/sitemap.css new file mode 100644 index 0000000..2b138ae --- /dev/null +++ b/plugins/sitemap/styles/sitemap.css @@ -0,0 +1,380 @@ + +#sitemapHost { + display: flex; + flex-direction: column; + height: 100%; +} + +#sitemapHostBtn a { + background: url('images/sitemap_panel_on.svg') no-repeat center center, linear-gradient(transparent, transparent); +} + +#sitemapHostBtn a.selected, #sitemapHostBtn a.selected:hover { + background: url('images/sitemap_panel_off.svg') no-repeat center center, linear-gradient(transparent, transparent); +} + +#sitemapHost .pageButtonHeader { + top: -27px; +} + +#sitemapTreeContainer { + overflow: auto; + width: 100%; + flex: 1; + -webkit-overflow-scrolling: touch; +} + +.mobileMode #sitemapTreeContainer { + margin-left: 5px; + overflow-x: hidden; +} + +.sitemapTree { + margin: 0px 0px 10px 0px; + overflow:visible; +} + +.sitemapTree ul { + list-style-type: none; + margin: 0px 0px 0px 0px; + padding-left: 0px; +} + +ul.sitemapTree { + display: inline-block; + min-width: 100%; +} + +.pageSwapInstructions { + width: 129px; + font-size: 12px; + text-align: center; + color: #8c8c8c; + margin: 0 auto; + padding: 12px 0px; + line-height: 20px; +} + +.sitemapMinus, .sitemapPlus { + vertical-align:middle; + background-repeat: no-repeat; + margin-right: 3px; + width: 7px; + height: 8px; + object-fit: contain; + display:inline-block; +} + .sitemapMinus { + margin-bottom: 0px; + background: url('images/open_item.svg') no-repeat center center, linear-gradient(transparent,transparent); + } + .sitemapPlus { + margin-bottom: 2px; + background: url('images/closed_item.svg') no-repeat center center, linear-gradient(transparent,transparent); + } + +.mobileMode .sitemapMinus, .mobileMode .sitemapPlus { + width: 10.5px; + height: 12px; + margin-right: 5px; + background-size: contain; +} + +.sitemapPageLink { + margin-left: 0px; +} + +.sitemapPageIcon { + margin: 0px 6px -3px 3px; + width: 16px; + height: 16px; + display: inline-block; + background: url('images/page_lt_grey.svg') no-repeat center center, linear-gradient(transparent,transparent); +} + +.mobileMode .sitemapPageIcon { + margin-right: 7px; + background-size: contain; +} + +.sitemapFolderIcon { + background: url('images/folder_closed_blue.svg') no-repeat center center, linear-gradient(transparent,transparent); +} + +.mobileMode .sitemapFolderIcon { + width: 18px; + height: 18px; + margin-left: 1px; + background-position-y: 1px; + background-size: contain; +} + +.sitemapFolderOpenIcon { + background: url('images/folder_open.png') no-repeat center center; + background: url('images/folder_open.svg') no-repeat center center, linear-gradient(transparent,transparent); +} + +.sitemapPageName { + font-size: 14px; + line-height: 1.93; + color: #4a4a4a; +} + +.sitemapPageName.mobileText { + line-height: 1.69; +} + +.sitemapNode { + white-space:nowrap; +} + +.sitemapPageLinkContainer { + cursor: pointer; + padding-right: 10px; +} + +.mobileMode .sitemapPageLinkContainer { + margin-bottom: 13px; +} + +.sitemapHighlight { + background-color: #e6e6e6; +} + +.sitemapGreyedName +{ + color: #AAA; +} + +.sitemapPluginNameHeader { + margin: 13px 9px 5px 9px; + font-size: 14px; + color: #444444; +} + +.sitemapHeader { + padding-top: 7px; +} + +.mobileMode .sitemapHeader { + padding-top: 0px; +} + +.sitemapToolbar { + margin: 0px 3px 0px 5px; + display: flex; + align-items: center; + justify-content: flex-end; +} + +.sitemapToolbarButton { + width: 19px; + height: 18px; + border: 1px solid transparent; + cursor: pointer; + flex: 0 0 auto; +} + +.hashover .sitemapToolbarButton:hover { + border-radius: 3px; + background-color: #e6e6e6 !important; +} + +.sitemapToolbarButton.sitemapToolbarButtonSelected, .sitemapToolbarButton.sitemapToolbarButtonSelected:hover{ + background-color: inherit !important; +} + +.leftArrow { + background: url('images/left_arrow.svg') no-repeat center center, linear-gradient(transparent,transparent); + margin-left: 11px; +} + +.rightArrow { + background: url('images/right_arrow.svg') no-repeat center center, linear-gradient(transparent,transparent); + margin-left: 3px; + margin-right: 2px; +} + +#searchIcon { + width: 10px; + height: 10px; + object-fit: contain; + background: url('images/search_on.svg') no-repeat center center, linear-gradient(transparent,transparent); + vertical-align: bottom; + padding: 5px 4px 5px 4px; + display: inline-block; +} + +#searchIcon.sitemapToolbarButtonSelected { + padding: 5px 3px 5px 5px; + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; + border-left: solid 1px #cccccc; + border-top: solid 1px #cccccc; + border-bottom: solid 1px #cccccc; + background: url('images/search_off.svg') no-repeat center center, linear-gradient(transparent,transparent); + background-color: #FFFFFF !important; +} + +.backKeys { + width: 20px; + height: 21px; + object-fit: contain; + vertical-align: bottom; + margin: 2px; + display: inline-block; + background: url('images/back_keys.svg') no-repeat center center, linear-gradient(transparent,transparent); +} + +.forwardKeys { + width: 20px; + height: 21px; + object-fit: contain; + vertical-align: bottom; + margin: 2px; + display: inline-block; + background: url('images/forward_keys.svg') no-repeat center center, linear-gradient(transparent,transparent); +} + +#interfaceAdaptiveViewsListContainer { + position: absolute; + display: none; + width: 220px; + left: 155px; + padding: 6px 9px; + top: 36px; +} + +#interfaceScaleListContainer { + padding: 7.5px 9px 12px 16px; + margin-top: 9px; + border-top: solid 1px #bdbcbc; + order: 10; +} + +.adaptiveViewOption, .vpPresetOption, .vpScaleOption { + padding: 3px 0px 3px 0px; + color: #3B3B3B; + display: flex; +} + +.projectOptionsScaleRow, .projectOptionsAdaptiveViewRow, .projectOptionsHotspotsRow { + border-top: solid 1px #c7c7c7; + display: flex; + padding: 13px 7px 13px 0px; +} + +.adaptiveViewOption:hover, .vpScaleOption:hover, .vpPresetOption:hover, .projectOptionsAdaptiveViewRow:hover, .projectOptionsScaleRow:hover +{ + cursor: pointer; +} + +.scaleRadioButton, .adapViewRadioButton { + border: solid 1px #8c8c8c; + display: inline-block; + position: relative; + width: 12px; + height: 12px; + border-radius: 48px; + margin-right: 12px; + top: 2px; + flex-shrink: 0; +} + +.mobileMode .scaleRadioButton, .mobileMode .adapViewRadioButton { + width: 20px; + height: 20px; + border-radius: 60px; + margin-right: 22px; + margin-left: 22px; + top: 0px; + flex-shrink: 0; +} + +.selectedRadioButton { + border: solid 1px #20aca9; +} + +.selectedRadioButtonFill { + position: relative; + display: none; + background-color: #20aca9; + margin: auto; + width: 8px; + height: 8px; + border-radius: 30px; + top: 2px; +} + .mobileMode .selectedRadioButtonFill { + width: 12px; + height: 12px; + border-radius: 48px; + top: 4px; + } + +#searchDiv { + display: flex; + margin-right: auto; + flex: 1; +} + +#searchBox { + display: none; + width: 0%; + height: 22px; + padding-left: 5px; + border-radius: 0px 5px 5px 0px; + border-right: solid 1px #cccccc; + border-top: solid 1px #cccccc; + border-bottom: solid 1px #cccccc; + border-left: none; + -webkit-appearance: none; +} + +#searchBox:focus { + outline-width: 0; +} + +.searchBoxHint { + color: #8f949a; +} + +#sitemapHost.popup #searchDiv{ + display: none; +} + +#sitemapHost.popup #sitemapHeader{ + display: none; +} + +#sitemapHost.popup #changePageInstructions{ + display: none; +} + +.mobileMode #sitemapHeader { + display: none; +} + + + +/* Expo Sitemap +******************************************************************************/ + +.expoSitemapNode { + padding: 15px; + text-align: center; +} + +.sitemapPageImg { + max-width: 90%; + max-height: 150px; +} + +.popup .sitemapPageImg { + display: none; +} + +.popup .expoSitemapNode { + padding: 0 0 0 10px; + text-align: left; +} \ No newline at end of file diff --git a/public/_2_ntp设置.html b/public/_2_ntp设置.html deleted file mode 100644 index 4be1828..0000000 --- a/public/_2_ntp设置.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/NTP设置 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_radius__.html b/public/_2_radius__.html deleted file mode 100644 index e70cc86..0000000 --- a/public/_2_radius__.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/Radius日志 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_snmp.html b/public/_2_snmp.html deleted file mode 100644 index cae51a5..0000000 --- a/public/_2_snmp.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/SNMP - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_串联设备(可选).html b/public/_2_串联设备(可选).html deleted file mode 100644 index 9f24807..0000000 --- a/public/_2_串联设备(可选).html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/串联设备(可选) - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_内容检查策略.html b/public/_2_内容检查策略.html deleted file mode 100644 index a50373e..0000000 --- a/public/_2_内容检查策略.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/内容检查策略 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_参数管理.html b/public/_2_参数管理.html deleted file mode 100644 index ce3abe3..0000000 --- a/public/_2_参数管理.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/参数管理 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_固件.html b/public/_2_固件.html deleted file mode 100644 index f20f433..0000000 --- a/public/_2_固件.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/固件 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_备份_恢复.html b/public/_2_备份_恢复.html deleted file mode 100644 index e39f79d..0000000 --- a/public/_2_备份_恢复.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/备份&恢复 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_字典管理.html b/public/_2_字典管理.html deleted file mode 100644 index 06932d1..0000000 --- a/public/_2_字典管理.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/字典管理 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_带宽变化.html b/public/_2_带宽变化.html deleted file mode 100644 index f7b3ff8..0000000 --- a/public/_2_带宽变化.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/带宽变化 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_报告任务.html b/public/_2_报告任务.html deleted file mode 100644 index e0e73e0..0000000 --- a/public/_2_报告任务.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/报告任务 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_报表结果.html b/public/_2_报表结果.html deleted file mode 100644 index 4729c91..0000000 --- a/public/_2_报表结果.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/报表结果 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_接口.html b/public/_2_接口.html deleted file mode 100644 index cb19090..0000000 --- a/public/_2_接口.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/接口 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_数据包捕获.html b/public/_2_数据包捕获.html deleted file mode 100644 index 427995a..0000000 --- a/public/_2_数据包捕获.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/数据包捕获 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_用户管理.html b/public/_2_用户管理.html deleted file mode 100644 index 854f28e..0000000 --- a/public/_2_用户管理.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/用户管理 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_登录日志.html b/public/_2_登录日志.html deleted file mode 100644 index ae9ebdd..0000000 --- a/public/_2_登录日志.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/登录日志 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_策略审计日志.html b/public/_2_策略审计日志.html deleted file mode 100644 index 56df6e7..0000000 --- a/public/_2_策略审计日志.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/策略审计日志 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_系统参数.html b/public/_2_系统参数.html deleted file mode 100644 index 1b2d776..0000000 --- a/public/_2_系统参数.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/系统参数 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_菜单管理.html b/public/_2_菜单管理.html deleted file mode 100644 index 7a2bd3c..0000000 --- a/public/_2_菜单管理.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/菜单管理 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_角色管理.html b/public/_2_角色管理.html deleted file mode 100644 index 0a68872..0000000 --- a/public/_2_角色管理.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/角色管理 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_设备列表.html b/public/_2_设备列表.html deleted file mode 100644 index 30f13c2..0000000 --- a/public/_2_设备列表.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/设备列表 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_设备标签.html b/public/_2_设备标签.html deleted file mode 100644 index 9898970..0000000 --- a/public/_2_设备标签.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/设备标签 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_设备状态.html b/public/_2_设备状态.html deleted file mode 100644 index 56b51b7..0000000 --- a/public/_2_设备状态.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/设备状态 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_邮件服务器.html b/public/_2_邮件服务器.html deleted file mode 100644 index 3fba643..0000000 --- a/public/_2_邮件服务器.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/邮件服务器 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/_2_防火墙策略.html b/public/_2_防火墙策略.html deleted file mode 100644 index 04af7b5..0000000 --- a/public/_2_防火墙策略.html +++ /dev/null @@ -1,881 +0,0 @@ - - - - /2/防火墙策略 - - - - - - - - - - - - - - - -
      - - - - -
      -
      -
      - - -
      -
      -
      -

      欢迎

      -
      -
      - - -
      - -
      - - -
      -
      -
      - - -
      -
      -
      - - -
      -
      -
      -

      证书管理

      -
      -
      - - -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      配置文件

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      日志

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      仪表盘

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      策略&对象

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      报告

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      系统

      -
      -
      - - -
      -
      -
      - -
      - - -
      - - -
      -
      -
      - - -
      -
      -
      -

      设备

      -
      -
      -
      -
      - -
      - - -
      -
      -
      - - -
      -
      -
      -

      后台管理

      -
      -
      -
      -
      - -
      -
      - - diff --git a/public/data/document.js b/public/data/document.js deleted file mode 100644 index a301344..0000000 --- a/public/data/document.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadDocument( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; i- 新增 配置文件 / 应答页面
      - 新增 配置文件 / 劫持文件
      - 新增 配置文件 / 注入脚本
      - 新增 配置文件 / 解密流量转发

      - 新增 证书管理 / 默认的信任证书权威机构
      - 新增 证书管理 / KeyRings
      - 新增 证书管理 / 默认的根证书

      - 添加 仪表盘 交互
      - 添加 策略对象 / 代理拦截策略 交互
      - 添加 策略对象 / 代理管控策略 交互
      - 添加 策略对象 / 对象 交互

      - 后续的新建页面将以底层页面的形式进行单独设计(非弹窗模式)",t="loadFeedbackPlugin",u="sitemap",v="rootNodes",w="pageName",x="仪表盘",y="type",z="Wireframe",A="url",B="仪表盘.html",C="children",D="带宽、新建、活跃、丢弃、通过",E="带宽、新建、活跃、丢弃、通过.html",F="/2/设备状态",G="_2_设备状态.html",H="/2/带宽变化",I="_2_带宽变化.html",J="高命中的策略",K="高命中的策略.html",L="活跃源IP排名",M="活跃源ip排名.html",N="活跃目的IP排名",O="活跃目的ip排名.html",P="活跃域名排名",Q="活跃域名排名.html",R="活跃URL排名",S="活跃url排名.html",T="活跃用户排名",U="活跃用户排名.html",V="策略&对象",W="策略_对象.html",X="/2/防火墙策略",Y="_2_防火墙策略.html",Z="代理拦截策略",ba="代理拦截策略.html",bb="新建",bc="新建.html",bd="代理管控策略",be="代理管控策略.html",bf="/2/内容检查策略",bg="_2_内容检查策略.html",bh="对象",bi="对象.html",bj="时间计划",bk="时间计划.html",bl="标签",bm="标签.html",bn="/2/串联设备(可选)",bo="_2_串联设备(可选).html",bp="配置文件",bq="配置文件.html",br="应答页面(+)",bs="应答页面(_).html",bt="劫持文件(+)",bu="劫持文件(_).html",bv="注入脚本(+)",bw="注入脚本(_).html",bx="解密流量转发(+)",by="解密流量转发(_).html",bz="证书管理",bA="证书管理.html",bB="默认的信任证书权威机构(+)",bC="默认的信任证书权威机构(_).html",bD="KeyRing(+)",bE="keyring___.html",bF="默认的根证书(+)",bG="默认的根证书(_).html",bH="默认证书校验方式(+)",bI="默认证书校验方式(_).html",bJ="报告",bK="报告.html",bL="/2/报告任务",bM="_2_报告任务.html",bN="/2/报表结果",bO="_2_报表结果.html",bP="日志",bQ="日志.html",bR="事件日志",bS="事件日志.html",bT="通联日志",bU="通联日志.html",bV="/2/Radius日志",bW="_2_radius__.html",bX="系统",bY="系统.html",bZ="/2/用户管理",ca="_2_用户管理.html",cb="/2/角色管理",cc="_2_角色管理.html",cd="/2/策略审计日志",ce="_2_策略审计日志.html",cf="/2/登录日志",cg="_2_登录日志.html",ch="/2/邮件服务器",ci="_2_邮件服务器.html",cj="/2/系统参数",ck="_2_系统参数.html",cl="设备",cm="设备.html",cn="/2/设备列表",co="_2_设备列表.html",cp="/2/SNMP",cq="_2_snmp.html",cr="/2/NTP设置",cs="_2_ntp设置.html",ct="/2/接口",cu="_2_接口.html",cv="/2/设备标签",cw="_2_设备标签.html",cx="/2/固件",cy="_2_固件.html",cz="/2/备份&恢复",cA="_2_备份_恢复.html",cB="/2/数据包捕获",cC="_2_数据包捕获.html",cD="后台管理",cE="后台管理.html",cF="/2/菜单管理",cG="_2_菜单管理.html",cH="/2/字典管理",cI="_2_字典管理.html",cJ="/2/参数管理",cK="_2_参数管理.html",cL="chengsir",cM="Folder",cN="",cO="规范",cP="规范.html",cQ="更新记录",cR="更新记录.html",cS="globalVariables",cT="onloadvariable",cU="defaultAdaptiveView",cV="name",cW="基本",cX="size",cY="width",cZ=0,da="height",db="condition",dc="<=",dd="adaptiveViews",de="stylesheet",df="defaultStyle",dg="id",dh="627587b6038d43cca051c114ac41ad32",di="fontName",dj="'ArialMT', 'Arial'",dk="fontWeight",dl="400",dm="fontStyle",dn="normal",dp="fontStretch",dq="5",dr="foreGroundFill",ds="fillType",dt="solid",du="color",dv=0xFF333333,dw="opacity",dx=1,dy="fontSize",dz="13px",dA="underline",dB="horizontalAlignment",dC="center",dD="lineSpacing",dE="location",dF="x",dG="y",dH="visible",dI="limbo",dJ="baseStyle",dK="fill",dL=0xFFFFFFFF,dM="borderFill",dN=0xFF797979,dO="borderWidth",dP="1",dQ="linePattern",dR="cornerRadius",dS="0",dT="verticalAlignment",dU="middle",dV="paddingLeft",dW="2",dX="paddingTop",dY="paddingRight",dZ="paddingBottom",ea="stateStyles",eb="rotation",ec="textRotation",ed="outerShadow",ee="on",ef="offsetX",eg=5,eh="offsetY",ei="blurRadius",ej="r",ek=0,el="g",em="b",en="a",eo=0.349019607843137,ep="innerShadow",eq="textShadow",er=0.647058823529412,es="customStyles",et="_图片",eu="75a91ee5b9d042cfa01b8d565fe289c0",ev="placeholder",ew="c50e74f669b24b37bd9c18da7326bccd",ex=0xFFF2F2F2,ey="primary_button",ez="cd64754845384de3872fb4a066432c1f",eA=0xFF169BD5,eB="link_button",eC="0d1f9e22da9248618edd4c1d3f726faa",eD=0xFFFFFF,eE="_一级标题",eF="1111111151944dfba49f67fd55eb1f88",eG="32px",eH="bold",eI="left",eJ="top",eK="_二级标题",eL="b3a15c9ddde04520be40f94c8168891e",eM="24px",eN="_三级标题",eO="8c7a4c5ad69a4369a5f7788171ac0b32",eP="18px",eQ="_四级标题",eR="e995c891077945c89c0b5fe110d15a0b",eS="14px",eT="_五级标题",eU="386b19ef4be143bd9b6c392ded969f89",eV="_六级标题",eW="fc3b9a13b5574fa098ef0a1db9aac861",eX="10px",eY="_文本段落",eZ="4988d43d80b44008a4a415096f1632af",fa="text_field",fb="44157808f2934100b68f2394a66b2bba",fc=0xFF000000,fd="droplist",fe="85f724022aae41c594175ddac9c289eb",ff="html_button",fg="eed12d9ebe2e4b9689b3b57949563dca",fh="table_cell",fi="33ea2511485c479dbf973af3302f2352",fj="_流程形状",fk="df01900e3c4e43f284bafec04b0864c4",fl="linearGradient",fm="colors",fn=0xFFE4E4E4,fo="paragraph",fp="e0621db17f4b42e0bd8f63006e6cfe5b",fq="line",fr="12e63bf1ccc1446488aa09e9482180bc",fs="heading_1",ft="922caedbf2d2483e8cf0bbbc50ba6e04",fu="700",fv="label",fw="e3de336e31594a60bc0966351496a9ce",fx="horizontal_line",fy="75a015e95a484881b32de65ff86808a9",fz="shape",fA="96fe18664bb44d8fb1e2f882b7f9a01e",fB="box_1",fC="d5fff3b2c62b484f81a70f8b474bcc6d",fD="box_2",fE="cd7adcf32ae347de978fe9115670106c",fF="box_3",fG="a81cf2b335eb493bb935c0c48ce07cb5",fH=0xFFD7D7D7,fI="ellipse",fJ="6378b734cecb4b279bccd7e81849e2e3",fK="image",fL="ca4260183c2644a8a871aab076cc5343",fM="iconfont",fN="f094e831ba764d0a99029dfb831cf97d",fO="'iconfont'",fP=0xFF666666,fQ="icon",fR="26c731cb771b44a88eb8b6e97e78c80e",fS="duplicateStyles",fT="4b7bfc596114427989e10bb0b557d0ce",fU="47641f9a00ac465095d6b672bbdffef6",fV="2285372321d148ec80932747449c36c9",fW="0882bfcd7d11450d85d157758311dca5",fX="619b2148ccc1497285562264d51992f9"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/data/styles.css b/public/data/styles.css deleted file mode 100644 index a7e3845..0000000 --- a/public/data/styles.css +++ /dev/null @@ -1,118 +0,0 @@ -.ax_default { - font-family:'ArialMT', 'Arial'; - font-weight:400; - font-style:normal; - font-size:13px; - color:#333333; - text-align:center; - line-height:normal; -} -._图片 { -} -.placeholder { -} -.primary_button { - color:#FFFFFF; -} -.link_button { - color:#169BD5; -} -._一级标题 { - font-family:'ArialMT', 'Arial'; - font-weight:bold; - font-style:normal; - font-size:32px; - text-align:left; -} -._二级标题 { - font-family:'ArialMT', 'Arial'; - font-weight:bold; - font-style:normal; - font-size:24px; - text-align:left; -} -._三级标题 { - font-family:'ArialMT', 'Arial'; - font-weight:bold; - font-style:normal; - font-size:18px; - text-align:left; -} -._四级标题 { - font-family:'ArialMT', 'Arial'; - font-weight:bold; - font-style:normal; - font-size:14px; - text-align:left; -} -._五级标题 { - font-family:'ArialMT', 'Arial'; - font-weight:bold; - font-style:normal; - text-align:left; -} -._六级标题 { - font-family:'ArialMT', 'Arial'; - font-weight:bold; - font-style:normal; - font-size:10px; - text-align:left; -} -._文本段落 { - text-align:left; -} -.text_field { - color:#000000; - text-align:left; -} -.droplist { - color:#000000; - text-align:left; -} -.html_button { - text-align:center; -} -.table_cell { -} -._流程形状 { -} -.paragraph { - text-align:left; -} -.line { -} -.heading_1 { - font-family:'Arial-BoldMT', 'Arial Bold', 'Arial'; - font-weight:700; - font-style:normal; - font-size:32px; - text-align:left; -} -.label { - font-size:14px; - text-align:left; -} -.horizontal_line { -} -.shape { -} -.box_1 { -} -.box_2 { -} -.box_3 { -} -.ellipse { -} -.image { - color:#000000; -} -.iconfont { - font-family:'iconfont'; - font-weight:400; - font-style:normal; - font-size:18px; - color:#666666; -} -.icon { -} diff --git a/public/files/_2_ntp设置/data.js b/public/files/_2_ntp设置/data.js deleted file mode 100644 index 9c74864..0000000 --- a/public/files/_2_ntp设置/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="cd6acae7628145df9044225d06735d6d",jU="scriptId",jV="u4656",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4657",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4658",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4659",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4660",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4661",kg="0d264741477549399c9586a19d72c94c",kh="u4662",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4663",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4664",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4665",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4666",kq="6d999717f47c45b488270f1138ce00fb",kr="u4667",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4668",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4669",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4670",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4671",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4672",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4673",kE="07e9a718986f4456b84348343c870c0a",kF="u4674",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4675",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4676",kK="5098ad65c8f7492c9069f4a964723317",kL="u4677",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4678",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4679",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4680",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4681",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4682",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4683",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4684",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4685",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4686",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4687",lg="6e3656fad051471985367dfcecd7efd8",lh="u4688",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4689",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4690",lm="620d6328a97942419ae02f8789b911e2",ln="u4691",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4692",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4693",ls="cd656119d92145688ed53bf413ed4959",lt="u4694",lu="91def88484484083927f2283fe2dcc27",lv="u4695",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4696",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4697",lA="0cc50ffea147485e97d2d81166a21165",lB="u4698",lC="0cde056acd5f48828ad1f872add05f25",lD="u4699",lE="b669d535c7094350a886008e7cef4af0",lF="u4700",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4701",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4702",lK="5b670361476844109058ee67e9e585d2",lL="u4703",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4704",lO="bbc6891697924708b5a6119bbb896bab",lP="u4705",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4706",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4707",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4708",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4709",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4710",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4711",mc="578dad9d6baf4ee69400878858762724",md="u4712",me="3d533d005742479cbd215b234aad09bb",mf="u4713",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4714",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4715",mk="1759f58887a6423abd3758fd1891a06d",ml="u4716",mm="6b1a1692e80948e5975c69cb51886278",mn="u4717",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4718",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4719",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4720",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4721",mw="541c758399da4f399c0fc58ea01feee9",mx="u4722",my="e1c46db03da5412eb06e119b69b54c88",mz="u4723",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4724",mC="6d744837c12d4451b03523db77f0de4b",mD="u4725",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4726",mG="2066d8079c694bb3971a40cbf3279606",mH="u4727",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4728",mK="77d1855694f640579e26ec450555a8a3",mL="u4729",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4730",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4731",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4732",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4733",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4734"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_ntp设置/styles.css b/public/files/_2_ntp设置/styles.css deleted file mode 100644 index 7d9eadc..0000000 --- a/public/files/_2_ntp设置/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4657_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4657 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4657_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4658_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4658 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4658_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4659_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4659 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4659_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4660_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4660 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4660_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4661 { - position:absolute; - left:0px; - top:235px; -} -#u4661_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4661_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4662_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4662 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4662_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4662_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4661_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4661_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4663_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4663 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4663_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4663_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4664_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4664 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4664_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4664.selected { -} -#u4664_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4664_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4665_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4665 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4665_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4665.selected { -} -#u4665_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4665_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4666_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4666 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4666_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4666.selected { -} -#u4666_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4666_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4667_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4667 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4667_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4667.selected { -} -#u4667_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4667_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4668 { - position:absolute; - left:0px; - top:180px; -} -#u4668_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4668_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4669_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4669 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4669_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4669_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4668_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4668_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4670_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4670 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4670_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4670_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4671_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4671 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4671_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4671.selected { -} -#u4671_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4671_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4672_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4672 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4672_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4672.selected { -} -#u4672_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4672_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4673_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4673 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4673_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4673.selected { -} -#u4673_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4673_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4674_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4674 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4674_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4674.selected { -} -#u4674_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4674_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4668_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4675 { - position:absolute; - left:0px; - top:345px; -} -#u4675_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4675_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4676_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4676 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4676_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4676_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4675_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4675_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4677_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4677 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4677_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4677_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4678_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4678 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4678_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4678.selected { -} -#u4678_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4678_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4679_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4679 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4679_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4679.selected { -} -#u4679_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4679_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4680_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4680 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4680_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4680.selected { -} -#u4680_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4680_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4675_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4681 { - position:absolute; - left:0px; - top:70px; -} -#u4681_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4681_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4682_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4682 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4682_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4682_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4681_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4681_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4683_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4683 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4683_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4683_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4684_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4684 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4684_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4684.selected { -} -#u4684_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4684_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4685_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4685 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4685_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4685.selected { -} -#u4685_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4685_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4686_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4686 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4686_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4686.selected { -} -#u4686_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4686_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4687_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4687 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4687_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4687.selected { -} -#u4687_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4687_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4688_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4688 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4688_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4688.selected { -} -#u4688_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4688_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4689_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4689 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4689_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4689.selected { -} -#u4689_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4689_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4690_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4690 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4690_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4690.selected { -} -#u4690_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4690_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4691_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4691 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4691_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4691.selected { -} -#u4691_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4691_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4692_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4692 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4692_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4692.selected { -} -#u4692_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4692_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4681_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4693 { - position:absolute; - left:0px; - top:125px; -} -#u4693_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4693_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4694_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4694 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4694_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4694_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4693_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4693_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4695_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4695 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4695_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4695_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4696_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4696 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4696_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4696.selected { -} -#u4696_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4696_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4697_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4697 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4697_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4697.selected { -} -#u4697_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4697_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4698_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4698 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4698_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4698.selected { -} -#u4698_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4698_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4699_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4699 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4699_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4699.selected { -} -#u4699_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4699_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4700_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4700 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4700_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4700.selected { -} -#u4700_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4700_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4701_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4701 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4701_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4701.selected { -} -#u4701_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4701_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4702_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4702 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4702_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4702.selected { -} -#u4702_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4702_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4703_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4703 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4703_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4703.selected { -} -#u4703_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4703_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4693_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4704 { - position:absolute; - left:0px; - top:290px; -} -#u4704_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4704_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4705_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4705 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4705_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4705_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4704_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4704_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4706_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4706 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4706_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4706_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4707_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4707 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4707_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4707.selected { -} -#u4707_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4707_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4708_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4708 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4708_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4708.selected { -} -#u4708_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4708_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4704_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4709 { - position:absolute; - left:0px; - top:400px; -} -#u4709_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4709_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4710_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4710 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4710_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4710_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4709_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4709_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4711_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4711 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4711_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4711_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4712_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4712 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4712_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4712.selected { -} -#u4712_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4712_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4713_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4713 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4713_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4713.selected { -} -#u4713_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4713_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4714_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4714 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4714_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4714.selected { -} -#u4714_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4714_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4715_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4715 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4715_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4715.selected { -} -#u4715_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4715_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4716_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4716 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4716_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4716.selected { -} -#u4716_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4716_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4717_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4717 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4717_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4717.selected { -} -#u4717_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4717_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4709_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4718 { - position:absolute; - left:0px; - top:455px; -} -#u4718_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4718_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4719_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4719 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4719_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4718_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4718_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4720_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4720 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4720_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4721_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4721 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4721_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4721.selected { -} -#u4721_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4721_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4722_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4722 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4722_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4722.selected { -} -#u4722_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4722_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4723_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4723 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4723_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4723.selected { -} -#u4723_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4723_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4724_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4724 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4724_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4724.selected { -} -#u4724_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4724_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4725_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4725 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4725_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4725.selected { -} -#u4725_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4725_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4726_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4726 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4726_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4726.selected { -} -#u4726_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4726_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4727_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4727 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4727_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4727.selected { -} -#u4727_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4727_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4728_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4728 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4728_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4728.selected { -} -#u4728_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4728_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4729 { - position:absolute; - left:0px; - top:510px; -} -#u4729_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4729_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4730_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4730 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4730_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4729_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4729_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4731_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4731 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4731_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4732_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4732 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4732_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4732.selected { -} -#u4732_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4732_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4733_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4733 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4733_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4733.selected { -} -#u4733_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4733_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4734_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4734 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4734_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4734.selected { -} -#u4734_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4734_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_radius__/data.js b/public/files/_2_radius__/data.js deleted file mode 100644 index a5a9148..0000000 --- a/public/files/_2_radius__/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="

      Radius Logs

      ",fb="

      Журнал Radius

      ",fc="07c280170e8b49c58503de5d9d1deda7",fd="仪表盘",fe="

      Dashboard

      ",ff="

      Приборная Панель

      ",fg="1da2375e875b48bd9eb61de648bb6ddf",fh="5c5a7e1a78634167985368e626cb44a6",fi="在 当前窗口 打开 仪表盘",fj="仪表盘.html",fk="0f86adf618534aaabfeb0b967b646569",fl="ab09bc9722fc4b43a1a8bc75801a528e",fm="设置 仪表盘 为 收起 push/pull widgets 向下",fn="9a0dd654c7174c5abaf14732f23e6535",fo="设备状态",fp="在 当前窗口 打开 /2/设备状态",fq="_2_设备状态.html",fr="

      Devices

      ",fs="7cf8bc9379a74906b78129a7c79b5204",ft="带宽、新建、活跃、丢弃、通过",fu="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fv="带宽、新建、活跃、丢弃、通过.html",fw="

      BandwidthNewLiveDropPass

      ",fx="644cfa35fe994f0daf01c43e46cadc55",fy="带宽变化",fz="在 当前窗口 打开 /2/带宽变化",fA="_2_带宽变化.html",fB="

      Traffic Over Time By Bandwidth

      ",fC="f7bdb45b7dd74715a5f2f96c63522835",fD="在 当前窗口 打开 高命中的策略",fE="高命中的策略.html",fF="

      Top Policy Hits

      ",fG="6e3656fad051471985367dfcecd7efd8",fH="活跃源IP排名",fI=225,fJ="在 当前窗口 打开 活跃源IP排名",fK="活跃源ip排名.html",fL="

      Top Internal Hosts By Sessions

      ",fM="85444d6bb7604745b615ea6c0be0dfbd",fN="活跃目的IP排名",fO=270,fP="在 当前窗口 打开 活跃目的IP排名",fQ="活跃目的ip排名.html",fR="

      Top External Hosts By Sessions

      ",fS="42c554bcc055434ba48c579ee60b70ef",fT="活跃域名排名",fU=315,fV="在 当前窗口 打开 活跃域名排名",fW="活跃域名排名.html",fX="

      Top Website Domains By Bandwidth

      ",fY="620d6328a97942419ae02f8789b911e2",fZ="活跃URL排名",ga=360,gb="在 当前窗口 打开 活跃URL排名",gc="活跃url排名.html",gd="

      Top HTTP/HTTPS URLS By Sessions

      ",ge="2104d7235c9d4010b05b9fb8b3945291",gf="活跃用户排名",gg=405,gh="在 当前窗口 打开 活跃用户排名",gi="活跃用户排名.html",gj="

      Top User By Bandwidth

      ",gk="ce40ad7023294c8ea02e3aaa39fe9359",gl="策略&对象",gm=125,gn="

      Policy&Objects

      ",go="

      Политика и Объекты

      ",gp="872ff99d15cd4403a36c3c0828b204fb",gq="cd656119d92145688ed53bf413ed4959",gr="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gs="e79ef6eb8bea477b951c71a1b9fe5e55",gt="91def88484484083927f2283fe2dcc27",gu="设置 策略&对象 为 收起 push/pull widgets 向下",gv="

      Политика и Объекты


      ",gw="4b13957666154ecda2d5e2f7d636101e",gx="代理拦截策略",gy="在 当前窗口 打开 代理拦截策略",gz="代理拦截策略.html",gA="

      Proxy Interception

      ",gB="

      Прокси Перехват

      ",gC="f8ae401a90f649b2b6c2a87c9c17d0dd",gD="防火墙策略",gE="在 当前窗口 打开 /2/防火墙策略",gF="_2_防火墙策略.html",gG="

      Firewall

      ",gH="

      Брандмауэр

      ",gI="0cc50ffea147485e97d2d81166a21165",gJ="代理管控策略",gK="

      Proxy Manipulation

      ",gL="

      Прокси Манипуляция

      ",gM="0cde056acd5f48828ad1f872add05f25",gN="内容检查策略",gO="在 当前窗口 打开 /2/内容检查策略",gP="_2_内容检查策略.html",gQ="

      Content Inspection

      ",gR="

      Проверка Контента

      ",gS="b669d535c7094350a886008e7cef4af0",gT="对象",gU="在 当前窗口 打开 对象",gV="对象.html",gW="

      Objects

      ",gX="

      Объекты

      ",gY="37e0281ff7f44a01940207aacde15d1d",gZ="时间计划",ha="在 当前窗口 打开 时间计划",hb="时间计划.html",hc="

      Schedule

      ",hd="

      Расписание


      ",he="1a68e2e6dc044fd0817478eea51985b1",hf="标签",hg="在 当前窗口 打开 标签",hh="标签.html",hi="

      Tags

      ",hj="

      Теги

      ",hk="5b670361476844109058ee67e9e585d2",hl="串联设备(可选)",hm="在 当前窗口 打开 /2/串联设备(可选)",hn="_2_串联设备(可选).html",ho="

      Inline Device

      ",hp="

      Последовательное Устройство

      ",hq="87b93e86784a428ebd47f511a4ba2c4f",hr="报告",hs=290,ht="b64e296b35444e11a375c42f3e6ee72d",hu="bbc6891697924708b5a6119bbb896bab",hv="设置 报告 为 展开 show if hidden push/pull widgets 向下",hw="9388ba2f489b436aa2f3851b5889d374",hx="4d3a090b203d49d1a7fb36de39828355",hy="设置 报告 为 收起 push/pull widgets 向下",hz="fbde9bbdcd704824945ab49b5beecdcb",hA="报表结果",hB="在 当前窗口 打开 /2/报表结果",hC="_2_报表结果.html",hD="

      Reports

      ",hE="

      Отчеты

      ",hF="6e04fbf50e9445d1a7a6ae3da1977530",hG="报告任务",hH="在 当前窗口 打开 /2/报告任务",hI="_2_报告任务.html",hJ="

      Report Tasks

      ",hK="

      Отчет Задачи

      ",hL="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hM="系统",hN=400,hO="83946562f27346a4a97f498a2f32bbf7",hP="c7566dc5ceae4d1ba17bd159636d896f",hQ="设置 系统 为 展开 show if hidden push/pull widgets 向下",hR="

      System

      ",hS="

      Система

      ",hT="d913d84a32c149f3a1260a92cbd43605",hU="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hV="设置 系统 为 收起 push/pull widgets 向下",hW="578dad9d6baf4ee69400878858762724",hX="角色管理",hY="在 当前窗口 打开 /2/角色管理",hZ="_2_角色管理.html",ia="

      Role Mangement

      ",ib="

      Управление Ролями

      ",ic="3d533d005742479cbd215b234aad09bb",id="用户管理",ie="在 当前窗口 打开 /2/用户管理",ig="_2_用户管理.html",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="a925946bc710494abdcfbff0bdb33e10",jU="scriptId",jV="u3787",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u3788",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u3789",ka="287161d6553d482dbb471a03f2b96d8d",kb="u3790",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u3791",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u3792",kg="0d264741477549399c9586a19d72c94c",kh="u3793",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u3794",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u3795",km="b03fa42397b840c7be9ac06da5567aa7",kn="u3796",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u3797",kq="6d999717f47c45b488270f1138ce00fb",kr="u3798",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u3799",ku="188a2dff382a42948e36596c4dd80f3d",kv="u3800",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u3801",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u3802",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u3803",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u3804",kE="07e9a718986f4456b84348343c870c0a",kF="u3805",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u3806",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u3807",kK="5098ad65c8f7492c9069f4a964723317",kL="u3808",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u3809",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u3810",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u3811",kS="07c280170e8b49c58503de5d9d1deda7",kT="u3812",kU="5c5a7e1a78634167985368e626cb44a6",kV="u3813",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u3814",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u3815",la="7cf8bc9379a74906b78129a7c79b5204",lb="u3816",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u3817",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u3818",lg="6e3656fad051471985367dfcecd7efd8",lh="u3819",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u3820",lk="42c554bcc055434ba48c579ee60b70ef",ll="u3821",lm="620d6328a97942419ae02f8789b911e2",ln="u3822",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u3823",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u3824",ls="cd656119d92145688ed53bf413ed4959",lt="u3825",lu="91def88484484083927f2283fe2dcc27",lv="u3826",lw="4b13957666154ecda2d5e2f7d636101e",lx="u3827",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u3828",lA="0cc50ffea147485e97d2d81166a21165",lB="u3829",lC="0cde056acd5f48828ad1f872add05f25",lD="u3830",lE="b669d535c7094350a886008e7cef4af0",lF="u3831",lG="37e0281ff7f44a01940207aacde15d1d",lH="u3832",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u3833",lK="5b670361476844109058ee67e9e585d2",lL="u3834",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u3835",lO="bbc6891697924708b5a6119bbb896bab",lP="u3836",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u3837",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u3838",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u3839",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u3840",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u3841",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u3842",mc="578dad9d6baf4ee69400878858762724",md="u3843",me="3d533d005742479cbd215b234aad09bb",mf="u3844",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u3845",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u3846",mk="1759f58887a6423abd3758fd1891a06d",ml="u3847",mm="6b1a1692e80948e5975c69cb51886278",mn="u3848",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u3849",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u3850",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u3851",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u3852",mw="541c758399da4f399c0fc58ea01feee9",mx="u3853",my="e1c46db03da5412eb06e119b69b54c88",mz="u3854",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u3855",mC="6d744837c12d4451b03523db77f0de4b",mD="u3856",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u3857",mG="2066d8079c694bb3971a40cbf3279606",mH="u3858",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u3859",mK="77d1855694f640579e26ec450555a8a3",mL="u3860",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u3861",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u3862",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u3863",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u3864",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u3865"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_radius__/styles.css b/public/files/_2_radius__/styles.css deleted file mode 100644 index abc7b77..0000000 --- a/public/files/_2_radius__/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u3788_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3788 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u3788_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3789_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3789 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3789_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u3790_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u3790 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u3790_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3791_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3791 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u3791_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3792 { - position:absolute; - left:0px; - top:235px; -} -#u3792_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3792_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3793_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3793 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3793_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3793_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3792_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3792_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3794_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3794 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3794_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3794_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3795_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3795 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3795_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3795.selected { -} -#u3795_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3795_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3796_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3796 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3796_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3796.selected { -} -#u3796_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3796_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3797_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3797 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3797_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3797.selected { -} -#u3797_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3797_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3798_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3798 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3798_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3798.selected { -} -#u3798_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3798_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3799 { - position:absolute; - left:0px; - top:180px; -} -#u3799_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3799_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3800_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3800 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3800_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3800_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3799_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3799_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3801_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3801 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3801_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3801_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3802_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3802 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3802_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3802.selected { -} -#u3802_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3802_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3803_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3803 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3803_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3803.selected { -} -#u3803_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3803_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3804_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3804 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3804_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3804.selected { -} -#u3804_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3804_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3805_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3805 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3805_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3805.selected { -} -#u3805_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3805_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3799_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3806 { - position:absolute; - left:0px; - top:345px; -} -#u3806_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3806_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3807_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3807 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3807_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3807_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3806_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3806_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3808_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3808 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3808_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3808_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3809_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3809 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3809_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3809.selected { -} -#u3809_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3809_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3810_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3810 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3810_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3810.selected { -} -#u3810_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3810_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3811_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3811 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3811_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3811.selected { -} -#u3811_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3811_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3806_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u3812 { - position:absolute; - left:0px; - top:70px; -} -#u3812_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3812_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3813_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3813 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3813_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3813_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3812_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u3812_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3814_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3814 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3814_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3814_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3815_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3815 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3815_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3815.selected { -} -#u3815_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3815_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3816_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3816 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3816_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3816.selected { -} -#u3816_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3816_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3817_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3817 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3817_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3817.selected { -} -#u3817_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3817_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3818_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3818 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3818_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3818.selected { -} -#u3818_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3818_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3819_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3819 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3819_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3819.selected { -} -#u3819_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3819_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3820_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3820 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3820_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3820.selected { -} -#u3820_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3820_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3821_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3821 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3821_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3821.selected { -} -#u3821_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3821_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3822_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3822 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3822_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3822.selected { -} -#u3822_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3822_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3823_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3823 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3823_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3823.selected { -} -#u3823_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3823_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u3812_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u3824 { - position:absolute; - left:0px; - top:125px; -} -#u3824_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3824_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3825_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3825 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3825_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3825_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3824_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3824_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3826_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3826 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u3826_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3826_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3827_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3827 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u3827_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3827.selected { -} -#u3827_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3827_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3828_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3828 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3828_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3828.selected { -} -#u3828_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3828_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3829_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3829 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u3829_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3829.selected { -} -#u3829_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3829_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3830_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3830 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u3830_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3830.selected { -} -#u3830_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3830_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3831_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3831 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u3831_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3831.selected { -} -#u3831_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3831_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3832_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3832 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u3832_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3832.selected { -} -#u3832_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3832_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3833_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3833 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u3833_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3833.selected { -} -#u3833_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3833_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3834_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3834 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u3834_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3834.selected { -} -#u3834_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3834_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3824_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u3835 { - position:absolute; - left:0px; - top:290px; -} -#u3835_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3835_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3836_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3836 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3836_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3836_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3835_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u3835_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3837_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3837 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3837_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3837_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3838_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3838 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3838_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3838.selected { -} -#u3838_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3838_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3839_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3839 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3839_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3839.selected { -} -#u3839_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3839_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3835_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u3840 { - position:absolute; - left:0px; - top:400px; -} -#u3840_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3840_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3841_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3841 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3841_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3841_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3840_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u3840_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3842_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3842 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3842_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3842_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3843_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3843 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3843_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3843.selected { -} -#u3843_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3843_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3844_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3844 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3844_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3844.selected { -} -#u3844_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3844_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3845_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3845 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3845_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3845.selected { -} -#u3845_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3845_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3846_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3846 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3846_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3846.selected { -} -#u3846_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3846_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3847_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3847 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3847_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3847.selected { -} -#u3847_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3847_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3848_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3848 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3848_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3848.selected { -} -#u3848_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3848_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3840_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u3849 { - position:absolute; - left:0px; - top:455px; -} -#u3849_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3849_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3850_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3850 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3850_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3849_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3849_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3851_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3851 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3851_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3852_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3852 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3852_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3852.selected { -} -#u3852_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3852_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3853_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3853 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3853_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3853.selected { -} -#u3853_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3853_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3854_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3854 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3854_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3854.selected { -} -#u3854_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3854_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3855_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3855 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3855_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3855.selected { -} -#u3855_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3855_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3856_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3856 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3856_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3856.selected { -} -#u3856_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3856_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3857_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3857 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3857_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3857.selected { -} -#u3857_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3857_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3858_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3858 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3858_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3858.selected { -} -#u3858_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3858_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3859_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3859 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3859_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3859.selected { -} -#u3859_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3859_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3860 { - position:absolute; - left:0px; - top:510px; -} -#u3860_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3860_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3861_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3861 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3861_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3860_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3860_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3862_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3862 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3862_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3863_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3863 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3863_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3863.selected { -} -#u3863_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3863_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3864_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3864 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3864_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3864.selected { -} -#u3864_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3864_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3865_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3865 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3865_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3865.selected { -} -#u3865_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3865_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_snmp/data.js b/public/files/_2_snmp/data.js deleted file mode 100644 index d68f8f1..0000000 --- a/public/files/_2_snmp/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="ce2a2109bee049bca54c1e3babb0fa0d",jU="scriptId",jV="u4577",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4578",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4579",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4580",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4581",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4582",kg="0d264741477549399c9586a19d72c94c",kh="u4583",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4584",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4585",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4586",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4587",kq="6d999717f47c45b488270f1138ce00fb",kr="u4588",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4589",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4590",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4591",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4592",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4593",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4594",kE="07e9a718986f4456b84348343c870c0a",kF="u4595",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4596",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4597",kK="5098ad65c8f7492c9069f4a964723317",kL="u4598",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4599",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4600",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4601",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4602",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4603",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4604",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4605",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4606",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4607",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4608",lg="6e3656fad051471985367dfcecd7efd8",lh="u4609",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4610",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4611",lm="620d6328a97942419ae02f8789b911e2",ln="u4612",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4613",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4614",ls="cd656119d92145688ed53bf413ed4959",lt="u4615",lu="91def88484484083927f2283fe2dcc27",lv="u4616",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4617",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4618",lA="0cc50ffea147485e97d2d81166a21165",lB="u4619",lC="0cde056acd5f48828ad1f872add05f25",lD="u4620",lE="b669d535c7094350a886008e7cef4af0",lF="u4621",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4622",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4623",lK="5b670361476844109058ee67e9e585d2",lL="u4624",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4625",lO="bbc6891697924708b5a6119bbb896bab",lP="u4626",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4627",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4628",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4629",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4630",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4631",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4632",mc="578dad9d6baf4ee69400878858762724",md="u4633",me="3d533d005742479cbd215b234aad09bb",mf="u4634",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4635",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4636",mk="1759f58887a6423abd3758fd1891a06d",ml="u4637",mm="6b1a1692e80948e5975c69cb51886278",mn="u4638",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4639",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4640",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4641",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4642",mw="541c758399da4f399c0fc58ea01feee9",mx="u4643",my="e1c46db03da5412eb06e119b69b54c88",mz="u4644",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4645",mC="6d744837c12d4451b03523db77f0de4b",mD="u4646",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4647",mG="2066d8079c694bb3971a40cbf3279606",mH="u4648",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4649",mK="77d1855694f640579e26ec450555a8a3",mL="u4650",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4651",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4652",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4653",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4654",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4655"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_snmp/styles.css b/public/files/_2_snmp/styles.css deleted file mode 100644 index e4905e0..0000000 --- a/public/files/_2_snmp/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4578_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4578 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4578_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4579_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4579 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4579_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4580_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4580 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4580_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4581_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4581 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4581_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4582 { - position:absolute; - left:0px; - top:235px; -} -#u4582_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4582_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4583_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4583 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4583_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4583_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4582_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4582_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4584_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4584 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4584_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4584_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4585_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4585 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4585_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4585.selected { -} -#u4585_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4585_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4586_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4586 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4586_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4586.selected { -} -#u4586_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4586_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4587_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4587 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4587_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4587.selected { -} -#u4587_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4587_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4588_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4588 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4588_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4588.selected { -} -#u4588_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4588_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4589 { - position:absolute; - left:0px; - top:180px; -} -#u4589_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4589_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4590_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4590 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4590_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4590_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4589_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4589_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4591_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4591 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4591_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4591_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4592_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4592 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4592_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4592.selected { -} -#u4592_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4592_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4593_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4593 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4593_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4593.selected { -} -#u4593_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4593_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4594_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4594 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4594_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4594.selected { -} -#u4594_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4594_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4595_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4595 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4595_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4595.selected { -} -#u4595_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4595_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4589_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4596 { - position:absolute; - left:0px; - top:345px; -} -#u4596_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4596_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4597_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4597 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4597_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4597_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4596_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4596_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4598_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4598 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4598_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4598_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4599_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4599 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4599_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4599.selected { -} -#u4599_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4599_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4600_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4600 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4600_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4600.selected { -} -#u4600_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4600_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4601_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4601 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4601_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4601.selected { -} -#u4601_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4601_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4596_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4602 { - position:absolute; - left:0px; - top:70px; -} -#u4602_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4602_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4603_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4603 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4603_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4603_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4602_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4602_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4604_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4604 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4604_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4604_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4605_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4605 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4605_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4605.selected { -} -#u4605_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4605_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4606_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4606 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4606_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4606.selected { -} -#u4606_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4606_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4607_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4607 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4607_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4607.selected { -} -#u4607_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4607_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4608_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4608 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4608_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4608.selected { -} -#u4608_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4608_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4609_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4609 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4609_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4609.selected { -} -#u4609_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4609_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4610_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4610 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4610_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4610.selected { -} -#u4610_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4610_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4611_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4611 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4611_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4611.selected { -} -#u4611_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4611_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4612_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4612 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4612_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4612.selected { -} -#u4612_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4612_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4613_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4613 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4613_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4613.selected { -} -#u4613_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4613_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4602_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4614 { - position:absolute; - left:0px; - top:125px; -} -#u4614_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4614_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4615_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4615 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4615_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4615_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4614_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4614_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4616_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4616 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4616_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4616_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4617_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4617 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4617_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4617.selected { -} -#u4617_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4617_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4618_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4618 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4618_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4618.selected { -} -#u4618_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4618_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4619_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4619 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4619_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4619.selected { -} -#u4619_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4619_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4620_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4620 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4620_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4620.selected { -} -#u4620_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4620_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4621_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4621 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4621_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4621.selected { -} -#u4621_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4621_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4622_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4622 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4622_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4622.selected { -} -#u4622_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4622_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4623_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4623 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4623_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4623.selected { -} -#u4623_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4623_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4624_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4624 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4624_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4624.selected { -} -#u4624_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4624_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4614_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4625 { - position:absolute; - left:0px; - top:290px; -} -#u4625_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4625_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4626_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4626 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4626_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4626_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4625_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4625_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4627_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4627 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4627_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4627_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4628_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4628 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4628_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4628.selected { -} -#u4628_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4628_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4629_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4629 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4629_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4629.selected { -} -#u4629_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4629_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4625_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4630 { - position:absolute; - left:0px; - top:400px; -} -#u4630_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4630_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4631_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4631 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4631_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4631_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4630_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4630_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4632_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4632 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4632_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4632_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4633_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4633 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4633_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4633.selected { -} -#u4633_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4633_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4634_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4634 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4634_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4634.selected { -} -#u4634_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4634_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4635_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4635 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4635_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4635.selected { -} -#u4635_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4635_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4636_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4636 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4636_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4636.selected { -} -#u4636_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4636_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4637_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4637 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4637_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4637.selected { -} -#u4637_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4637_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4638_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4638 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4638_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4638.selected { -} -#u4638_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4638_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4630_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4639 { - position:absolute; - left:0px; - top:455px; -} -#u4639_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4639_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4640_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4640 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4640_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4639_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4639_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4641_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4641 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4641_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4642_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4642 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4642_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4642.selected { -} -#u4642_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4642_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4643_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4643 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4643_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4643.selected { -} -#u4643_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4643_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4644_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4644 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4644_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4644.selected { -} -#u4644_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4644_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4645_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4645 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4645_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4645.selected { -} -#u4645_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4645_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4646_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4646 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4646_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4646.selected { -} -#u4646_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4646_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4647_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4647 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4647_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4647.selected { -} -#u4647_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4647_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4648_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4648 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4648_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4648.selected { -} -#u4648_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4648_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4649_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4649 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4649_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4649.selected { -} -#u4649_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4649_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4650 { - position:absolute; - left:0px; - top:510px; -} -#u4650_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4650_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4651_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4651 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4651_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4650_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4650_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4652_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4652 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4652_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4653_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4653 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4653_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4653.selected { -} -#u4653_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4653_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4654_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4654 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4654_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4654.selected { -} -#u4654_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4654_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4655_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4655 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4655_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4655.selected { -} -#u4655_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4655_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_串联设备(可选)/data.js b/public/files/_2_串联设备(可选)/data.js deleted file mode 100644 index 625e2b2..0000000 --- a/public/files/_2_串联设备(可选)/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",de="俄文",df="

      Управление Сертификатами

      ",dg="2799bea5c4114178b4e043a05b69c41f",dh="展开",di="41b95c6a240b48839df8cf0f47b01ec9",dj=1,dk="设置 证书管理 为 收起 push/pull widgets 向下",dl="eca4fcd504c743719d5ec6952c6e3ef5",dm="Key Rings",dn=90,dp="stateStyles",dq="selected",dr=0xFF30749C,ds="linkWindow",dt="在 当前窗口 打开 KeyRing(+)",du="target",dv="targetType",dw="keyring___.html",dx="includeVariables",dy="linkType",dz="current",dA="

      Keyrings

      ",dB="

      Кольцо Ключей

      ",dC="b03fa42397b840c7be9ac06da5567aa7",dD="默认的信任证书权威机构",dE="在 当前窗口 打开 默认的信任证书权威机构(+)",dF="默认的信任证书权威机构(_).html",dG="

      Default Trusted Certificate Authorities

      ",dH="

      Доверенные Центры Сертификации По Умолчанию

      ",dI="d03aa63ff5454a8b98a74e97f8175c02",dJ="默认的根证书",dK=135,dL="在 当前窗口 打开 默认的根证书(+)",dM="默认的根证书(_).html",dN="

      Default Root Certificate

      ",dO="

      Корневой Сертификат По Умолчанию

      ",dP="6d999717f47c45b488270f1138ce00fb",dQ="默认证书校验方式",dR=180,dS="在 当前窗口 打开 默认证书校验方式(+)",dT="默认证书校验方式(_).html",dU="

      Global Certificate Verification Options

      ",dV="8ff58e28196a405dac8f7bd8af6f770a",dW="配置文件",dX="

      Profile

      ",dY="

      Профиль

      ",dZ="7abef24f9bdb4a949ab45ee2ea2241b6",ea="188a2dff382a42948e36596c4dd80f3d",eb="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",ec="ba114aa7cb9d4e9d929831a92a126553",ed="4d68f01a79b24a14baeb98a69d9e9bd2",ee="设置 配置文件 为 收起 push/pull widgets 向下",ef="7ef6dd287cf74733a7ae6e065076ea7f",eg="注入脚本",eh="在 当前窗口 打开 注入脚本(+)",ei="注入脚本(_).html",ej="

      Insert Scripts

      ",ek="

      Вставка Скриптов

      ",el="92f4c3ac20374e81a86252a8ba0b8174",em="应答页面",en="在 当前窗口 打开 应答页面(+)",eo="应答页面(_).html",ep="

      Response Pages

      ",eq="

      Страницы Ответов

      ",er="f7505cc4eee0416b9dcf6d00c93073d3",es="劫持文件",et="在 当前窗口 打开 劫持文件(+)",eu="劫持文件(_).html",ev="

      Hijack Files

      ",ew="

      Угон Файлов

      ",ex="07e9a718986f4456b84348343c870c0a",ey="解密流量转发",ez="在 当前窗口 打开 解密流量转发(+)",eA="解密流量转发(_).html",eB="

      Traffic Mirror Profiles

      ",eC="

      Пересылка Расшифрованного Трафика

      ",eD="d38e8fab4f69464e946b74a9c5954fa3",eE="日志",eF=345,eG="

      Log

      ",eH="

      Журнал

      ",eI="92908311830947e2931ebbb7a2eb6e87",eJ="dd256d79a7234a1bad48df3c04a4a89f",eK="设置 日志 为 展开 show if hidden push/pull widgets 向下",eL="a2eb2ac6a13141d3a531467150b1cb4d",eM="5098ad65c8f7492c9069f4a964723317",eN="设置 日志 为 收起 push/pull widgets 向下",eO="2fa6203e493a47e5ae91b989dfbf007a",eP="通联日志",eQ="在 当前窗口 打开 通联日志",eR="通联日志.html",eS="

      Sesssion Records

      ",eT="

      Сеанс Записи

      ",eU="8e9a92093e3244f398b54ba29c09ae30",eV="事件日志",eW="在 当前窗口 打开 事件日志",eX="事件日志.html",eY="

      Event Logs

      ",eZ="

      Журнал Событий

      ",fa="4e623a4576bc46daaa08924cc0df54bd",fb="Radius日志",fc="在 当前窗口 打开 /2/Radius日志",fd="_2_radius__.html",fe="

      Radius Logs

      ",ff="

      Журнал Radius

      ",fg="07c280170e8b49c58503de5d9d1deda7",fh="仪表盘",fi="

      Dashboard

      ",fj="

      Приборная Панель

      ",fk="1da2375e875b48bd9eb61de648bb6ddf",fl="5c5a7e1a78634167985368e626cb44a6",fm="在 当前窗口 打开 仪表盘",fn="仪表盘.html",fo="0f86adf618534aaabfeb0b967b646569",fp="ab09bc9722fc4b43a1a8bc75801a528e",fq="设置 仪表盘 为 收起 push/pull widgets 向下",fr="9a0dd654c7174c5abaf14732f23e6535",fs="设备状态",ft="在 当前窗口 打开 /2/设备状态",fu="_2_设备状态.html",fv="

      Devices

      ",fw="7cf8bc9379a74906b78129a7c79b5204",fx="带宽、新建、活跃、丢弃、通过",fy="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fz="带宽、新建、活跃、丢弃、通过.html",fA="

      BandwidthNewLiveDropPass

      ",fB="644cfa35fe994f0daf01c43e46cadc55",fC="带宽变化",fD="在 当前窗口 打开 /2/带宽变化",fE="_2_带宽变化.html",fF="

      Traffic Over Time By Bandwidth

      ",fG="f7bdb45b7dd74715a5f2f96c63522835",fH="在 当前窗口 打开 高命中的策略",fI="高命中的策略.html",fJ="

      Top Policy Hits

      ",fK="6e3656fad051471985367dfcecd7efd8",fL="活跃源IP排名",fM=225,fN="在 当前窗口 打开 活跃源IP排名",fO="活跃源ip排名.html",fP="

      Top Internal Hosts By Sessions

      ",fQ="85444d6bb7604745b615ea6c0be0dfbd",fR="活跃目的IP排名",fS=270,fT="在 当前窗口 打开 活跃目的IP排名",fU="活跃目的ip排名.html",fV="

      Top External Hosts By Sessions

      ",fW="42c554bcc055434ba48c579ee60b70ef",fX="活跃域名排名",fY=315,fZ="在 当前窗口 打开 活跃域名排名",ga="活跃域名排名.html",gb="

      Top Website Domains By Bandwidth

      ",gc="620d6328a97942419ae02f8789b911e2",gd="活跃URL排名",ge=360,gf="在 当前窗口 打开 活跃URL排名",gg="活跃url排名.html",gh="

      Top HTTP/HTTPS URLS By Sessions

      ",gi="2104d7235c9d4010b05b9fb8b3945291",gj="活跃用户排名",gk=405,gl="在 当前窗口 打开 活跃用户排名",gm="活跃用户排名.html",gn="

      Top User By Bandwidth

      ",go="ce40ad7023294c8ea02e3aaa39fe9359",gp="策略&对象",gq=125,gr="

      Policy&Objects

      ",gs="

      Политика и Объекты

      ",gt="872ff99d15cd4403a36c3c0828b204fb",gu="cd656119d92145688ed53bf413ed4959",gv="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gw="e79ef6eb8bea477b951c71a1b9fe5e55",gx="91def88484484083927f2283fe2dcc27",gy="设置 策略&对象 为 收起 push/pull widgets 向下",gz="

      Политика и Объекты


      ",gA="4b13957666154ecda2d5e2f7d636101e",gB="代理拦截策略",gC="在 当前窗口 打开 代理拦截策略",gD="代理拦截策略.html",gE="

      Proxy Interception

      ",gF="

      Прокси Перехват

      ",gG="f8ae401a90f649b2b6c2a87c9c17d0dd",gH="防火墙策略",gI="在 当前窗口 打开 /2/防火墙策略",gJ="_2_防火墙策略.html",gK="

      Firewall

      ",gL="

      Брандмауэр

      ",gM="0cc50ffea147485e97d2d81166a21165",gN="代理管控策略",gO="

      Proxy Manipulation

      ",gP="

      Прокси Манипуляция

      ",gQ="0cde056acd5f48828ad1f872add05f25",gR="内容检查策略",gS="在 当前窗口 打开 /2/内容检查策略",gT="_2_内容检查策略.html",gU="

      Content Inspection

      ",gV="

      Проверка Контента

      ",gW="b669d535c7094350a886008e7cef4af0",gX="对象",gY="在 当前窗口 打开 对象",gZ="对象.html",ha="

      Objects

      ",hb="

      Объекты

      ",hc="37e0281ff7f44a01940207aacde15d1d",hd="时间计划",he="在 当前窗口 打开 时间计划",hf="时间计划.html",hg="

      Schedule

      ",hh="

      Расписание


      ",hi="1a68e2e6dc044fd0817478eea51985b1",hj="标签",hk="在 当前窗口 打开 标签",hl="标签.html",hm="

      Tags

      ",hn="

      Теги

      ",ho="5b670361476844109058ee67e9e585d2",hp="串联设备(可选)",hq="在 当前窗口 打开 /2/串联设备(可选)",hr="

      Inline Device

      ",hs="

      Последовательное Устройство

      ",ht="87b93e86784a428ebd47f511a4ba2c4f",hu="报告",hv=290,hw="b64e296b35444e11a375c42f3e6ee72d",hx="bbc6891697924708b5a6119bbb896bab",hy="设置 报告 为 展开 show if hidden push/pull widgets 向下",hz="9388ba2f489b436aa2f3851b5889d374",hA="4d3a090b203d49d1a7fb36de39828355",hB="设置 报告 为 收起 push/pull widgets 向下",hC="fbde9bbdcd704824945ab49b5beecdcb",hD="报表结果",hE="在 当前窗口 打开 /2/报表结果",hF="_2_报表结果.html",hG="

      Reports

      ",hH="

      Отчеты

      ",hI="6e04fbf50e9445d1a7a6ae3da1977530",hJ="报告任务",hK="在 当前窗口 打开 /2/报告任务",hL="_2_报告任务.html",hM="

      Report Tasks

      ",hN="

      Отчет Задачи

      ",hO="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hP="系统",hQ=400,hR="83946562f27346a4a97f498a2f32bbf7",hS="c7566dc5ceae4d1ba17bd159636d896f",hT="设置 系统 为 展开 show if hidden push/pull widgets 向下",hU="

      System

      ",hV="

      Система

      ",hW="d913d84a32c149f3a1260a92cbd43605",hX="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hY="设置 系统 为 收起 push/pull widgets 向下",hZ="578dad9d6baf4ee69400878858762724",ia="角色管理",ib="在 当前窗口 打开 /2/角色管理",ic="_2_角色管理.html",id="

      Role Mangement

      ",ie="

      Управление Ролями

      ",ig="3d533d005742479cbd215b234aad09bb",ih="用户管理",ii="在 当前窗口 打开 /2/用户管理",ij="_2_用户管理.html",ik="

      User Management

      ",il="

      Управление Пользователями

      ",im="bab311fc9467417cb7b7a58f2d22372f",io="策略审计日志",ip="在 当前窗口 打开 /2/策略审计日志",iq="_2_策略审计日志.html",ir="

      Policy Configuration Log

      ",is="

      Журнал Конфигурации Политики

      ",it="f48a23f842a64b2fa5e6418008bd4d68",iu="邮件服务器",iv="在 当前窗口 打开 /2/邮件服务器",iw="_2_邮件服务器.html",ix="

      Mail Server

      ",iy="

      Сервер Почты

      ",iz="1759f58887a6423abd3758fd1891a06d",iA="登录日志",iB="在 当前窗口 打开 /2/登录日志",iC="_2_登录日志.html",iD="

      Login Log

      ",iE="

      Жунрал Входа

      ",iF="6b1a1692e80948e5975c69cb51886278",iG="系统参数",iH="在 当前窗口 打开 /2/系统参数",iI="_2_系统参数.html",iJ="

      Global Parameters

      ",iK="

      Глобальный Параметр

      ",iL="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iM="设备",iN=455,iO="f123854da4504481a447ef17b01fea34",iP="6aa0ab27ba354ae39d709c8435b01487",iQ="设置 设备 为 展开 show if hidden push/pull widgets 向下",iR="b1d51b124421409389fead17347a84af",iS="fbc0262d53ef4d38b0d2a94729c7b223",iT="设置 设备 为 收起 push/pull widgets 向下",iU="ea544146c7bf4ba188c4f9980acc50da",iV="SNMP",iW="在 当前窗口 打开 /2/SNMP",iX="_2_snmp.html",iY="541c758399da4f399c0fc58ea01feee9",iZ="设备列表",ja="在 当前窗口 打开 /2/设备列表",jb="_2_设备列表.html",jc="e1c46db03da5412eb06e119b69b54c88",jd="NTP设置",je="在 当前窗口 打开 /2/NTP设置",jf="_2_ntp设置.html",jg="5ed2f732332d4a95a939c27caf2fbc9f",jh="设备标签",ji="在 当前窗口 打开 /2/设备标签",jj="_2_设备标签.html",jk="6d744837c12d4451b03523db77f0de4b",jl="接口",jm="在 当前窗口 打开 /2/接口",jn="_2_接口.html",jo="f5b83fbcd88a4567851a800fd5a157af",jp="固件",jq="在 当前窗口 打开 /2/固件",jr="_2_固件.html",js="2066d8079c694bb3971a40cbf3279606",jt="备份&恢复",ju="在 当前窗口 打开 /2/备份&恢复",jv="_2_备份_恢复.html",jw="8f6ffa5a96a14d79ae7201eb8bbff6b5",jx="数据包捕获",jy="在 当前窗口 打开 /2/数据包捕获",jz="_2_数据包捕获.html",jA="77d1855694f640579e26ec450555a8a3",jB="后台管理",jC=510,jD="9662ce02b5004c29baa5aa3929abab43",jE="204f45f6afc34d5d99894ec9b10eb71b",jF="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jG="55332c86d1434008b455fb49c931cf9e",jH="ab9166e59a1147aeaf21e70536b34bae",jI="设置 后台管理 为 收起 push/pull widgets 向下",jJ="2f23aa851a9d4d54993f66fbe1cbf708",jK="字典管理",jL="在 当前窗口 打开 /2/字典管理",jM="_2_字典管理.html",jN="7444e1c9dc94459292cb03b8f3cd1229",jO="菜单管理",jP="在 当前窗口 打开 /2/菜单管理",jQ="_2_菜单管理.html",jR="d4c7fb622cfc47f4a2791478a3eea221",jS="参数管理",jT="在 当前窗口 打开 /2/参数管理",jU="_2_参数管理.html",jV="objectPaths",jW="c13878e282da41068e04b247e567aef6",jX="scriptId",jY="u1768",jZ="f0f1aca662f44078a3907d7b6fca671b",ka="u1769",kb="3ad4cf8772cd49049b30415198f796d4",kc="u1770",kd="287161d6553d482dbb471a03f2b96d8d",ke="u1771",kf="1d8fcbafe0304b998b0c190507cb5f1c",kg="u1772",kh="7d3b028bbf294c8c9679a130bddc8177",ki="u1773",kj="0d264741477549399c9586a19d72c94c",kk="u1774",kl="41b95c6a240b48839df8cf0f47b01ec9",km="u1775",kn="eca4fcd504c743719d5ec6952c6e3ef5",ko="u1776",kp="b03fa42397b840c7be9ac06da5567aa7",kq="u1777",kr="d03aa63ff5454a8b98a74e97f8175c02",ks="u1778",kt="6d999717f47c45b488270f1138ce00fb",ku="u1779",kv="8ff58e28196a405dac8f7bd8af6f770a",kw="u1780",kx="188a2dff382a42948e36596c4dd80f3d",ky="u1781",kz="4d68f01a79b24a14baeb98a69d9e9bd2",kA="u1782",kB="7ef6dd287cf74733a7ae6e065076ea7f",kC="u1783",kD="92f4c3ac20374e81a86252a8ba0b8174",kE="u1784",kF="f7505cc4eee0416b9dcf6d00c93073d3",kG="u1785",kH="07e9a718986f4456b84348343c870c0a",kI="u1786",kJ="d38e8fab4f69464e946b74a9c5954fa3",kK="u1787",kL="dd256d79a7234a1bad48df3c04a4a89f",kM="u1788",kN="5098ad65c8f7492c9069f4a964723317",kO="u1789",kP="2fa6203e493a47e5ae91b989dfbf007a",kQ="u1790",kR="8e9a92093e3244f398b54ba29c09ae30",kS="u1791",kT="4e623a4576bc46daaa08924cc0df54bd",kU="u1792",kV="07c280170e8b49c58503de5d9d1deda7",kW="u1793",kX="5c5a7e1a78634167985368e626cb44a6",kY="u1794",kZ="ab09bc9722fc4b43a1a8bc75801a528e",la="u1795",lb="9a0dd654c7174c5abaf14732f23e6535",lc="u1796",ld="7cf8bc9379a74906b78129a7c79b5204",le="u1797",lf="644cfa35fe994f0daf01c43e46cadc55",lg="u1798",lh="f7bdb45b7dd74715a5f2f96c63522835",li="u1799",lj="6e3656fad051471985367dfcecd7efd8",lk="u1800",ll="85444d6bb7604745b615ea6c0be0dfbd",lm="u1801",ln="42c554bcc055434ba48c579ee60b70ef",lo="u1802",lp="620d6328a97942419ae02f8789b911e2",lq="u1803",lr="2104d7235c9d4010b05b9fb8b3945291",ls="u1804",lt="ce40ad7023294c8ea02e3aaa39fe9359",lu="u1805",lv="cd656119d92145688ed53bf413ed4959",lw="u1806",lx="91def88484484083927f2283fe2dcc27",ly="u1807",lz="4b13957666154ecda2d5e2f7d636101e",lA="u1808",lB="f8ae401a90f649b2b6c2a87c9c17d0dd",lC="u1809",lD="0cc50ffea147485e97d2d81166a21165",lE="u1810",lF="0cde056acd5f48828ad1f872add05f25",lG="u1811",lH="b669d535c7094350a886008e7cef4af0",lI="u1812",lJ="37e0281ff7f44a01940207aacde15d1d",lK="u1813",lL="1a68e2e6dc044fd0817478eea51985b1",lM="u1814",lN="5b670361476844109058ee67e9e585d2",lO="u1815",lP="87b93e86784a428ebd47f511a4ba2c4f",lQ="u1816",lR="bbc6891697924708b5a6119bbb896bab",lS="u1817",lT="4d3a090b203d49d1a7fb36de39828355",lU="u1818",lV="fbde9bbdcd704824945ab49b5beecdcb",lW="u1819",lX="6e04fbf50e9445d1a7a6ae3da1977530",lY="u1820",lZ="d44d7a9a8b4f4a77a9458a55d3eeb7e3",ma="u1821",mb="c7566dc5ceae4d1ba17bd159636d896f",mc="u1822",md="5f4ec06fb27c4cd1b4820b9f2f6b2b77",me="u1823",mf="578dad9d6baf4ee69400878858762724",mg="u1824",mh="3d533d005742479cbd215b234aad09bb",mi="u1825",mj="bab311fc9467417cb7b7a58f2d22372f",mk="u1826",ml="f48a23f842a64b2fa5e6418008bd4d68",mm="u1827",mn="1759f58887a6423abd3758fd1891a06d",mo="u1828",mp="6b1a1692e80948e5975c69cb51886278",mq="u1829",mr="c40f5f56305b4d69a5e9a2f2cbd1cb6b",ms="u1830",mt="6aa0ab27ba354ae39d709c8435b01487",mu="u1831",mv="fbc0262d53ef4d38b0d2a94729c7b223",mw="u1832",mx="ea544146c7bf4ba188c4f9980acc50da",my="u1833",mz="541c758399da4f399c0fc58ea01feee9",mA="u1834",mB="e1c46db03da5412eb06e119b69b54c88",mC="u1835",mD="5ed2f732332d4a95a939c27caf2fbc9f",mE="u1836",mF="6d744837c12d4451b03523db77f0de4b",mG="u1837",mH="f5b83fbcd88a4567851a800fd5a157af",mI="u1838",mJ="2066d8079c694bb3971a40cbf3279606",mK="u1839",mL="8f6ffa5a96a14d79ae7201eb8bbff6b5",mM="u1840",mN="77d1855694f640579e26ec450555a8a3",mO="u1841",mP="204f45f6afc34d5d99894ec9b10eb71b",mQ="u1842",mR="ab9166e59a1147aeaf21e70536b34bae",mS="u1843",mT="2f23aa851a9d4d54993f66fbe1cbf708",mU="u1844",mV="7444e1c9dc94459292cb03b8f3cd1229",mW="u1845",mX="d4c7fb622cfc47f4a2791478a3eea221",mY="u1846"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_串联设备(可选)/styles.css b/public/files/_2_串联设备(可选)/styles.css deleted file mode 100644 index 2262e50..0000000 --- a/public/files/_2_串联设备(可选)/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u1769_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1769 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u1769_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u1770_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u1770 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u1770_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u1771_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u1771 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u1771_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u1772_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1772 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u1772_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u1773 { - position:absolute; - left:0px; - top:235px; -} -#u1773_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1773_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1774_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1774 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1774_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1774_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1773_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u1773_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1775_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1775 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1775_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1775_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1776_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1776 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1776_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1776.selected { -} -#u1776_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1776_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1777_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1777 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1777_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1777.selected { -} -#u1777_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1777_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1778_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1778 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1778_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1778.selected { -} -#u1778_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1778_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1779_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1779 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1779_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1779.selected { -} -#u1779_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1779_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1780 { - position:absolute; - left:0px; - top:180px; -} -#u1780_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1780_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1781_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1781 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1781_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1781_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1780_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u1780_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1782_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1782 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1782_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1782_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1783_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1783 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1783_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1783.selected { -} -#u1783_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1783_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1784_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1784 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1784_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1784.selected { -} -#u1784_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1784_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1785_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1785 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1785_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1785.selected { -} -#u1785_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1785_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1786_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1786 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1786_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1786.selected { -} -#u1786_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1786_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1780_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1787 { - position:absolute; - left:0px; - top:345px; -} -#u1787_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1787_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1788_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1788 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1788_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1788_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1787_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u1787_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1789_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1789 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1789_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1789_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1790_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1790 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1790_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1790.selected { -} -#u1790_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1790_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1791_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1791 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1791_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1791.selected { -} -#u1791_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1791_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1792_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1792 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1792_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1792.selected { -} -#u1792_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1792_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1787_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u1793 { - position:absolute; - left:0px; - top:70px; -} -#u1793_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1793_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1794_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1794 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1794_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1794_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1793_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u1793_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1795_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1795 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1795_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1795_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1796_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1796 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1796_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1796.selected { -} -#u1796_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1796_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1797_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1797 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1797_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1797.selected { -} -#u1797_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1797_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1798_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1798 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1798_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1798.selected { -} -#u1798_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1798_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1799_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1799 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1799_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1799.selected { -} -#u1799_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1799_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1800_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1800 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1800_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1800.selected { -} -#u1800_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1800_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1801_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1801 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1801_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1801.selected { -} -#u1801_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1801_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1802_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1802 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1802_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1802.selected { -} -#u1802_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1802_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u1803_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1803 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1803_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1803.selected { -} -#u1803_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1803_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u1804_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1804 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1804_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1804.selected { -} -#u1804_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1804_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u1793_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u1805 { - position:absolute; - left:0px; - top:125px; -} -#u1805_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1805_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1806_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1806 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1806_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1806_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1805_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u1805_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1807_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1807 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u1807_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1807_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1808_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1808 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u1808_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1808.selected { -} -#u1808_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1808_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1809_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1809 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1809_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1809.selected { -} -#u1809_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1809_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1810_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1810 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u1810_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1810.selected { -} -#u1810_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1810_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1811_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1811 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u1811_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1811.selected { -} -#u1811_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1811_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1812_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1812 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u1812_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1812.selected { -} -#u1812_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1812_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1813_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1813 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u1813_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1813.selected { -} -#u1813_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1813_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1814_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1814 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u1814_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1814.selected { -} -#u1814_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1814_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u1815_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1815 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u1815_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1815.selected { -} -#u1815_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1815_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u1805_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u1816 { - position:absolute; - left:0px; - top:290px; -} -#u1816_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1816_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1817_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1817 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1817_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1817_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1816_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u1816_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1818_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1818 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1818_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1818_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1819_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1819 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1819_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1819.selected { -} -#u1819_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1819_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1820_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1820 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1820_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1820.selected { -} -#u1820_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1820_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1816_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u1821 { - position:absolute; - left:0px; - top:400px; -} -#u1821_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1821_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1822_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1822 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1822_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1822_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1821_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u1821_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1823_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1823 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1823_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1823_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1824_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1824 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1824_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1824.selected { -} -#u1824_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1824_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1825_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1825 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1825_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1825.selected { -} -#u1825_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1825_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1826_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1826 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1826_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1826.selected { -} -#u1826_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1826_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1827_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1827 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1827_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1827.selected { -} -#u1827_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1827_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1828_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1828 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1828_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1828.selected { -} -#u1828_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1828_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1829_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1829 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1829_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1829.selected { -} -#u1829_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1829_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1821_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u1830 { - position:absolute; - left:0px; - top:455px; -} -#u1830_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1830_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1831_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1831 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1831_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1830_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u1830_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1832_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1832 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1832_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1833_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1833 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1833_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1833.selected { -} -#u1833_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1833_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1834_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1834 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1834_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1834.selected { -} -#u1834_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1834_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1835_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1835 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1835_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1835.selected { -} -#u1835_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1835_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1836_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1836 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1836_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1836.selected { -} -#u1836_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1836_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1837_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1837 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1837_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1837.selected { -} -#u1837_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1837_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1838_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1838 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1838_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1838.selected { -} -#u1838_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1838_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1839_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1839 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1839_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1839.selected { -} -#u1839_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1839_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u1840_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1840 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1840_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1840.selected { -} -#u1840_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1840_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u1841 { - position:absolute; - left:0px; - top:510px; -} -#u1841_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1841_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1842_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1842 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1842_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1841_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u1841_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1843_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1843 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1843_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1844_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1844 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1844_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1844.selected { -} -#u1844_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1844_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1845_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1845 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1845_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1845.selected { -} -#u1845_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1845_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1846_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1846 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1846_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1846.selected { -} -#u1846_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1846_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_内容检查策略/data.js b/public/files/_2_内容检查策略/data.js deleted file mode 100644 index 6178210..0000000 --- a/public/files/_2_内容检查策略/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iLog

      ",eH="

      Журнал

      ",eI="92908311830947e2931ebbb7a2eb6e87",eJ="dd256d79a7234a1bad48df3c04a4a89f",eK="设置 日志 为 展开 show if hidden push/pull widgets 向下",eL="a2eb2ac6a13141d3a531467150b1cb4d",eM="5098ad65c8f7492c9069f4a964723317",eN="设置 日志 为 收起 push/pull widgets 向下",eO="2fa6203e493a47e5ae91b989dfbf007a",eP="通联日志",eQ="在 当前窗口 打开 通联日志",eR="通联日志.html",eS="

      Sesssion Records

      ",eT="

      Сеанс Записи

      ",eU="8e9a92093e3244f398b54ba29c09ae30",eV="事件日志",eW="在 当前窗口 打开 事件日志",eX="事件日志.html",eY="

      Event Logs

      ",eZ="

      Журнал Событий

      ",fa="4e623a4576bc46daaa08924cc0df54bd",fb="Radius日志",fc="在 当前窗口 打开 /2/Radius日志",fd="_2_radius__.html",fe="

      Radius Logs

      ",ff="

      Журнал Radius

      ",fg="07c280170e8b49c58503de5d9d1deda7",fh="仪表盘",fi="

      Dashboard

      ",fj="

      Приборная Панель

      ",fk="1da2375e875b48bd9eb61de648bb6ddf",fl="5c5a7e1a78634167985368e626cb44a6",fm="在 当前窗口 打开 仪表盘",fn="仪表盘.html",fo="0f86adf618534aaabfeb0b967b646569",fp="ab09bc9722fc4b43a1a8bc75801a528e",fq="设置 仪表盘 为 收起 push/pull widgets 向下",fr="9a0dd654c7174c5abaf14732f23e6535",fs="设备状态",ft="在 当前窗口 打开 /2/设备状态",fu="_2_设备状态.html",fv="

      Devices

      ",fw="7cf8bc9379a74906b78129a7c79b5204",fx="带宽、新建、活跃、丢弃、通过",fy="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fz="带宽、新建、活跃、丢弃、通过.html",fA="

      BandwidthNewLiveDropPass

      ",fB="644cfa35fe994f0daf01c43e46cadc55",fC="带宽变化",fD="在 当前窗口 打开 /2/带宽变化",fE="_2_带宽变化.html",fF="

      Traffic Over Time By Bandwidth

      ",fG="f7bdb45b7dd74715a5f2f96c63522835",fH="在 当前窗口 打开 高命中的策略",fI="高命中的策略.html",fJ="

      Top Policy Hits

      ",fK="6e3656fad051471985367dfcecd7efd8",fL="活跃源IP排名",fM=225,fN="在 当前窗口 打开 活跃源IP排名",fO="活跃源ip排名.html",fP="

      Top Internal Hosts By Sessions

      ",fQ="85444d6bb7604745b615ea6c0be0dfbd",fR="活跃目的IP排名",fS=270,fT="在 当前窗口 打开 活跃目的IP排名",fU="活跃目的ip排名.html",fV="

      Top External Hosts By Sessions

      ",fW="42c554bcc055434ba48c579ee60b70ef",fX="活跃域名排名",fY=315,fZ="在 当前窗口 打开 活跃域名排名",ga="活跃域名排名.html",gb="

      Top Website Domains By Bandwidth

      ",gc="620d6328a97942419ae02f8789b911e2",gd="活跃URL排名",ge=360,gf="在 当前窗口 打开 活跃URL排名",gg="活跃url排名.html",gh="

      Top HTTP/HTTPS URLS By Sessions

      ",gi="2104d7235c9d4010b05b9fb8b3945291",gj="活跃用户排名",gk=405,gl="在 当前窗口 打开 活跃用户排名",gm="活跃用户排名.html",gn="

      Top User By Bandwidth

      ",go="策略&对象",gp=125,gq="

      Policy&Objects

      ",gr="

      Политика и Объекты

      ",gs="872ff99d15cd4403a36c3c0828b204fb",gt="cd656119d92145688ed53bf413ed4959",gu="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gv="e79ef6eb8bea477b951c71a1b9fe5e55",gw="91def88484484083927f2283fe2dcc27",gx="设置 策略&对象 为 收起 push/pull widgets 向下",gy="

      Политика и Объекты


      ",gz="4b13957666154ecda2d5e2f7d636101e",gA="代理拦截策略",gB="在 当前窗口 打开 代理拦截策略",gC="代理拦截策略.html",gD="

      Proxy Interception

      ",gE="

      Прокси Перехват

      ",gF="f8ae401a90f649b2b6c2a87c9c17d0dd",gG="防火墙策略",gH="在 当前窗口 打开 /2/防火墙策略",gI="_2_防火墙策略.html",gJ="

      Firewall

      ",gK="

      Брандмауэр

      ",gL="0cc50ffea147485e97d2d81166a21165",gM="代理管控策略",gN="

      Proxy Manipulation

      ",gO="

      Прокси Манипуляция

      ",gP="0cde056acd5f48828ad1f872add05f25",gQ="内容检查策略",gR="在 当前窗口 打开 /2/内容检查策略",gS="

      Content Inspection

      ",gT="

      Проверка Контента

      ",gU="b669d535c7094350a886008e7cef4af0",gV="对象",gW="在 当前窗口 打开 对象",gX="对象.html",gY="

      Objects

      ",gZ="

      Объекты

      ",ha="37e0281ff7f44a01940207aacde15d1d",hb="时间计划",hc="在 当前窗口 打开 时间计划",hd="时间计划.html",he="

      Schedule

      ",hf="

      Расписание


      ",hg="1a68e2e6dc044fd0817478eea51985b1",hh="标签",hi="在 当前窗口 打开 标签",hj="标签.html",hk="

      Tags

      ",hl="

      Теги

      ",hm="5b670361476844109058ee67e9e585d2",hn="串联设备(可选)",ho="在 当前窗口 打开 /2/串联设备(可选)",hp="_2_串联设备(可选).html",hq="

      Inline Device

      ",hr="

      Последовательное Устройство

      ",hs="87b93e86784a428ebd47f511a4ba2c4f",ht="报告",hu=290,hv="b64e296b35444e11a375c42f3e6ee72d",hw="bbc6891697924708b5a6119bbb896bab",hx="设置 报告 为 展开 show if hidden push/pull widgets 向下",hy="9388ba2f489b436aa2f3851b5889d374",hz="4d3a090b203d49d1a7fb36de39828355",hA="设置 报告 为 收起 push/pull widgets 向下",hB="fbde9bbdcd704824945ab49b5beecdcb",hC="报表结果",hD="在 当前窗口 打开 /2/报表结果",hE="_2_报表结果.html",hF="

      Reports

      ",hG="

      Отчеты

      ",hH="6e04fbf50e9445d1a7a6ae3da1977530",hI="报告任务",hJ="在 当前窗口 打开 /2/报告任务",hK="_2_报告任务.html",hL="

      Report Tasks

      ",hM="

      Отчет Задачи

      ",hN="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hO="系统",hP=400,hQ="83946562f27346a4a97f498a2f32bbf7",hR="c7566dc5ceae4d1ba17bd159636d896f",hS="设置 系统 为 展开 show if hidden push/pull widgets 向下",hT="

      System

      ",hU="

      Система

      ",hV="d913d84a32c149f3a1260a92cbd43605",hW="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hX="设置 系统 为 收起 push/pull widgets 向下",hY="578dad9d6baf4ee69400878858762724",hZ="角色管理",ia="在 当前窗口 打开 /2/角色管理",ib="_2_角色管理.html",ic="

      Role Mangement

      ",id="

      Управление Ролями

      ",ie="3d533d005742479cbd215b234aad09bb",ig="用户管理",ih="在 当前窗口 打开 /2/用户管理",ii="_2_用户管理.html",ij="

      User Management

      ",ik="

      Управление Пользователями

      ",il="bab311fc9467417cb7b7a58f2d22372f",im="策略审计日志",io="在 当前窗口 打开 /2/策略审计日志",ip="_2_策略审计日志.html",iq="

      Policy Configuration Log

      ",ir="

      Журнал Конфигурации Политики

      ",is="f48a23f842a64b2fa5e6418008bd4d68",it="邮件服务器",iu="在 当前窗口 打开 /2/邮件服务器",iv="_2_邮件服务器.html",iw="

      Mail Server

      ",ix="

      Сервер Почты

      ",iy="1759f58887a6423abd3758fd1891a06d",iz="登录日志",iA="在 当前窗口 打开 /2/登录日志",iB="_2_登录日志.html",iC="

      Login Log

      ",iD="

      Жунрал Входа

      ",iE="6b1a1692e80948e5975c69cb51886278",iF="系统参数",iG="在 当前窗口 打开 /2/系统参数",iH="_2_系统参数.html",iI="

      Global Parameters

      ",iJ="

      Глобальный Параметр

      ",iK="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iL="设备",iM=455,iN="f123854da4504481a447ef17b01fea34",iO="6aa0ab27ba354ae39d709c8435b01487",iP="设置 设备 为 展开 show if hidden push/pull widgets 向下",iQ="b1d51b124421409389fead17347a84af",iR="fbc0262d53ef4d38b0d2a94729c7b223",iS="设置 设备 为 收起 push/pull widgets 向下",iT="ea544146c7bf4ba188c4f9980acc50da",iU="SNMP",iV="在 当前窗口 打开 /2/SNMP",iW="_2_snmp.html",iX="541c758399da4f399c0fc58ea01feee9",iY="设备列表",iZ="在 当前窗口 打开 /2/设备列表",ja="_2_设备列表.html",jb="e1c46db03da5412eb06e119b69b54c88",jc="NTP设置",jd="在 当前窗口 打开 /2/NTP设置",je="_2_ntp设置.html",jf="5ed2f732332d4a95a939c27caf2fbc9f",jg="设备标签",jh="在 当前窗口 打开 /2/设备标签",ji="_2_设备标签.html",jj="6d744837c12d4451b03523db77f0de4b",jk="接口",jl="在 当前窗口 打开 /2/接口",jm="_2_接口.html",jn="f5b83fbcd88a4567851a800fd5a157af",jo="固件",jp="在 当前窗口 打开 /2/固件",jq="_2_固件.html",jr="2066d8079c694bb3971a40cbf3279606",js="备份&恢复",jt="在 当前窗口 打开 /2/备份&恢复",ju="_2_备份_恢复.html",jv="8f6ffa5a96a14d79ae7201eb8bbff6b5",jw="数据包捕获",jx="在 当前窗口 打开 /2/数据包捕获",jy="_2_数据包捕获.html",jz="77d1855694f640579e26ec450555a8a3",jA="后台管理",jB=510,jC="9662ce02b5004c29baa5aa3929abab43",jD="204f45f6afc34d5d99894ec9b10eb71b",jE="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jF="55332c86d1434008b455fb49c931cf9e",jG="ab9166e59a1147aeaf21e70536b34bae",jH="设置 后台管理 为 收起 push/pull widgets 向下",jI="2f23aa851a9d4d54993f66fbe1cbf708",jJ="字典管理",jK="在 当前窗口 打开 /2/字典管理",jL="_2_字典管理.html",jM="7444e1c9dc94459292cb03b8f3cd1229",jN="菜单管理",jO="在 当前窗口 打开 /2/菜单管理",jP="_2_菜单管理.html",jQ="d4c7fb622cfc47f4a2791478a3eea221",jR="参数管理",jS="在 当前窗口 打开 /2/参数管理",jT="_2_参数管理.html",jU="objectPaths",jV="18c94c126a4e4086b3fd601011b62759",jW="scriptId",jX="u1425",jY="f0f1aca662f44078a3907d7b6fca671b",jZ="u1426",ka="3ad4cf8772cd49049b30415198f796d4",kb="u1427",kc="287161d6553d482dbb471a03f2b96d8d",kd="u1428",ke="1d8fcbafe0304b998b0c190507cb5f1c",kf="u1429",kg="7d3b028bbf294c8c9679a130bddc8177",kh="u1430",ki="0d264741477549399c9586a19d72c94c",kj="u1431",kk="41b95c6a240b48839df8cf0f47b01ec9",kl="u1432",km="eca4fcd504c743719d5ec6952c6e3ef5",kn="u1433",ko="b03fa42397b840c7be9ac06da5567aa7",kp="u1434",kq="d03aa63ff5454a8b98a74e97f8175c02",kr="u1435",ks="6d999717f47c45b488270f1138ce00fb",kt="u1436",ku="8ff58e28196a405dac8f7bd8af6f770a",kv="u1437",kw="188a2dff382a42948e36596c4dd80f3d",kx="u1438",ky="4d68f01a79b24a14baeb98a69d9e9bd2",kz="u1439",kA="7ef6dd287cf74733a7ae6e065076ea7f",kB="u1440",kC="92f4c3ac20374e81a86252a8ba0b8174",kD="u1441",kE="f7505cc4eee0416b9dcf6d00c93073d3",kF="u1442",kG="07e9a718986f4456b84348343c870c0a",kH="u1443",kI="d38e8fab4f69464e946b74a9c5954fa3",kJ="u1444",kK="dd256d79a7234a1bad48df3c04a4a89f",kL="u1445",kM="5098ad65c8f7492c9069f4a964723317",kN="u1446",kO="2fa6203e493a47e5ae91b989dfbf007a",kP="u1447",kQ="8e9a92093e3244f398b54ba29c09ae30",kR="u1448",kS="4e623a4576bc46daaa08924cc0df54bd",kT="u1449",kU="07c280170e8b49c58503de5d9d1deda7",kV="u1450",kW="5c5a7e1a78634167985368e626cb44a6",kX="u1451",kY="ab09bc9722fc4b43a1a8bc75801a528e",kZ="u1452",la="9a0dd654c7174c5abaf14732f23e6535",lb="u1453",lc="7cf8bc9379a74906b78129a7c79b5204",ld="u1454",le="644cfa35fe994f0daf01c43e46cadc55",lf="u1455",lg="f7bdb45b7dd74715a5f2f96c63522835",lh="u1456",li="6e3656fad051471985367dfcecd7efd8",lj="u1457",lk="85444d6bb7604745b615ea6c0be0dfbd",ll="u1458",lm="42c554bcc055434ba48c579ee60b70ef",ln="u1459",lo="620d6328a97942419ae02f8789b911e2",lp="u1460",lq="2104d7235c9d4010b05b9fb8b3945291",lr="u1461",ls="ce40ad7023294c8ea02e3aaa39fe9359",lt="u1462",lu="cd656119d92145688ed53bf413ed4959",lv="u1463",lw="91def88484484083927f2283fe2dcc27",lx="u1464",ly="4b13957666154ecda2d5e2f7d636101e",lz="u1465",lA="f8ae401a90f649b2b6c2a87c9c17d0dd",lB="u1466",lC="0cc50ffea147485e97d2d81166a21165",lD="u1467",lE="0cde056acd5f48828ad1f872add05f25",lF="u1468",lG="b669d535c7094350a886008e7cef4af0",lH="u1469",lI="37e0281ff7f44a01940207aacde15d1d",lJ="u1470",lK="1a68e2e6dc044fd0817478eea51985b1",lL="u1471",lM="5b670361476844109058ee67e9e585d2",lN="u1472",lO="87b93e86784a428ebd47f511a4ba2c4f",lP="u1473",lQ="bbc6891697924708b5a6119bbb896bab",lR="u1474",lS="4d3a090b203d49d1a7fb36de39828355",lT="u1475",lU="fbde9bbdcd704824945ab49b5beecdcb",lV="u1476",lW="6e04fbf50e9445d1a7a6ae3da1977530",lX="u1477",lY="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lZ="u1478",ma="c7566dc5ceae4d1ba17bd159636d896f",mb="u1479",mc="5f4ec06fb27c4cd1b4820b9f2f6b2b77",md="u1480",me="578dad9d6baf4ee69400878858762724",mf="u1481",mg="3d533d005742479cbd215b234aad09bb",mh="u1482",mi="bab311fc9467417cb7b7a58f2d22372f",mj="u1483",mk="f48a23f842a64b2fa5e6418008bd4d68",ml="u1484",mm="1759f58887a6423abd3758fd1891a06d",mn="u1485",mo="6b1a1692e80948e5975c69cb51886278",mp="u1486",mq="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mr="u1487",ms="6aa0ab27ba354ae39d709c8435b01487",mt="u1488",mu="fbc0262d53ef4d38b0d2a94729c7b223",mv="u1489",mw="ea544146c7bf4ba188c4f9980acc50da",mx="u1490",my="541c758399da4f399c0fc58ea01feee9",mz="u1491",mA="e1c46db03da5412eb06e119b69b54c88",mB="u1492",mC="5ed2f732332d4a95a939c27caf2fbc9f",mD="u1493",mE="6d744837c12d4451b03523db77f0de4b",mF="u1494",mG="f5b83fbcd88a4567851a800fd5a157af",mH="u1495",mI="2066d8079c694bb3971a40cbf3279606",mJ="u1496",mK="8f6ffa5a96a14d79ae7201eb8bbff6b5",mL="u1497",mM="77d1855694f640579e26ec450555a8a3",mN="u1498",mO="204f45f6afc34d5d99894ec9b10eb71b",mP="u1499",mQ="ab9166e59a1147aeaf21e70536b34bae",mR="u1500",mS="2f23aa851a9d4d54993f66fbe1cbf708",mT="u1501",mU="7444e1c9dc94459292cb03b8f3cd1229",mV="u1502",mW="d4c7fb622cfc47f4a2791478a3eea221",mX="u1503"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_内容检查策略/styles.css b/public/files/_2_内容检查策略/styles.css deleted file mode 100644 index 75dae74..0000000 --- a/public/files/_2_内容检查策略/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u1426_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1426 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u1426_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u1427_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u1427 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u1427_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u1428_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u1428 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u1428_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u1429_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1429 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u1429_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u1430 { - position:absolute; - left:0px; - top:235px; -} -#u1430_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1430_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1431_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1431 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1431_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1431_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1430_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u1430_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1432_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1432 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1432_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1432_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1433_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1433 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1433_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1433.selected { -} -#u1433_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1433_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1434_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1434 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1434_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1434.selected { -} -#u1434_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1434_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1435_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1435 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1435_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1435.selected { -} -#u1435_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1435_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1436_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1436 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1436_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1436.selected { -} -#u1436_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1436_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1437 { - position:absolute; - left:0px; - top:180px; -} -#u1437_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1437_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1438_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1438 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1438_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1438_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1437_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u1437_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1439_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1439 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1439_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1439_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1440_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1440 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1440_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1440.selected { -} -#u1440_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1440_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1441_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1441 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1441_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1441.selected { -} -#u1441_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1441_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1442_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1442 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1442_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1442.selected { -} -#u1442_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1442_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1443_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1443 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1443_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1443.selected { -} -#u1443_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1443_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1437_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1444 { - position:absolute; - left:0px; - top:345px; -} -#u1444_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1444_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1445_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1445 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1445_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1445_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1444_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u1444_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1446_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1446 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1446_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1446_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1447_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1447 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1447_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1447.selected { -} -#u1447_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1447_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1448_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1448 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1448_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1448.selected { -} -#u1448_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1448_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1449_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1449 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1449_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1449.selected { -} -#u1449_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1449_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1444_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u1450 { - position:absolute; - left:0px; - top:70px; -} -#u1450_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1450_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1451_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1451 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1451_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1451_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1450_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u1450_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1452_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1452 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1452_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1452_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1453_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1453 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1453_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1453.selected { -} -#u1453_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1453_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1454_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1454 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1454_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1454.selected { -} -#u1454_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1454_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1455_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1455 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1455_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1455.selected { -} -#u1455_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1455_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1456_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1456 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1456_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1456.selected { -} -#u1456_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1456_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1457_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1457 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1457_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1457.selected { -} -#u1457_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1457_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1458_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1458 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1458_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1458.selected { -} -#u1458_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1458_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1459_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1459 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1459_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1459.selected { -} -#u1459_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1459_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u1460_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1460 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1460_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1460.selected { -} -#u1460_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1460_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u1461_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1461 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1461_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1461.selected { -} -#u1461_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1461_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u1450_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u1462 { - position:absolute; - left:0px; - top:125px; -} -#u1462_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1462_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1463_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1463 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1463_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1463_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1462_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u1462_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1464_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1464 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u1464_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1464_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1465_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1465 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u1465_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1465.selected { -} -#u1465_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1465_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1466_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1466 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1466_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1466.selected { -} -#u1466_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1466_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1467_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1467 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u1467_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1467.selected { -} -#u1467_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1467_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1468_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1468 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u1468_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1468.selected { -} -#u1468_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1468_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1469_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1469 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u1469_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1469.selected { -} -#u1469_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1469_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1470_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1470 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u1470_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1470.selected { -} -#u1470_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1470_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1471_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1471 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u1471_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1471.selected { -} -#u1471_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1471_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u1472_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1472 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u1472_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u1472.selected { -} -#u1472_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1472_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u1462_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u1473 { - position:absolute; - left:0px; - top:290px; -} -#u1473_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1473_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1474_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1474 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1474_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1474_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1473_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u1473_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1475_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1475 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1475_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1475_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1476_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1476 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1476_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1476.selected { -} -#u1476_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1476_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1477_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1477 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1477_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1477.selected { -} -#u1477_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1477_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1473_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u1478 { - position:absolute; - left:0px; - top:400px; -} -#u1478_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1478_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1479_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1479 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1479_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1479_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1478_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u1478_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1480_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1480 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1480_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1480_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u1481_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1481 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1481_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1481.selected { -} -#u1481_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1481_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1482_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1482 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1482_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1482.selected { -} -#u1482_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1482_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1483_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1483 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1483_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1483.selected { -} -#u1483_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1483_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1484_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1484 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1484_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1484.selected { -} -#u1484_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1484_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1485_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1485 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1485_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1485.selected { -} -#u1485_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1485_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1486_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1486 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1486_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1486.selected { -} -#u1486_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1486_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1478_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u1487 { - position:absolute; - left:0px; - top:455px; -} -#u1487_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1487_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1488_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1488 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1488_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1487_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u1487_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1489_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1489 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1489_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1490_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1490 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1490_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1490.selected { -} -#u1490_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1490_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1491_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1491 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1491_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1491.selected { -} -#u1491_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1491_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1492_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1492 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1492_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1492.selected { -} -#u1492_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1492_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u1493_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1493 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1493_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1493.selected { -} -#u1493_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1493_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u1494_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1494 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1494_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1494.selected { -} -#u1494_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1494_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u1495_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1495 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1495_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1495.selected { -} -#u1495_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1495_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u1496_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1496 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1496_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1496.selected { -} -#u1496_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1496_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u1497_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1497 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1497_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1497.selected { -} -#u1497_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1497_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u1498 { - position:absolute; - left:0px; - top:510px; -} -#u1498_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u1498_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1499_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1499 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1499_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1498_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u1498_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u1500_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1500 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1500_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1501_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1501 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1501_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1501.selected { -} -#u1501_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1501_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u1502_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1502 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1502_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1502.selected { -} -#u1502_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1502_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u1503_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1503 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1503_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u1503.selected { -} -#u1503_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u1503_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_参数管理/data.js b/public/files/_2_参数管理/data.js deleted file mode 100644 index 785483e..0000000 --- a/public/files/_2_参数管理/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="_2_接口.html",jm="f5b83fbcd88a4567851a800fd5a157af",jn="固件",jo="在 当前窗口 打开 /2/固件",jp="_2_固件.html",jq="2066d8079c694bb3971a40cbf3279606",jr="备份&恢复",js="在 当前窗口 打开 /2/备份&恢复",jt="_2_备份_恢复.html",ju="8f6ffa5a96a14d79ae7201eb8bbff6b5",jv="数据包捕获",jw="在 当前窗口 打开 /2/数据包捕获",jx="_2_数据包捕获.html",jy="77d1855694f640579e26ec450555a8a3",jz="后台管理",jA=510,jB="9662ce02b5004c29baa5aa3929abab43",jC="204f45f6afc34d5d99894ec9b10eb71b",jD="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jE="55332c86d1434008b455fb49c931cf9e",jF="ab9166e59a1147aeaf21e70536b34bae",jG="设置 后台管理 为 收起 push/pull widgets 向下",jH="2f23aa851a9d4d54993f66fbe1cbf708",jI="字典管理",jJ="在 当前窗口 打开 /2/字典管理",jK="_2_字典管理.html",jL="7444e1c9dc94459292cb03b8f3cd1229",jM="菜单管理",jN="在 当前窗口 打开 /2/菜单管理",jO="_2_菜单管理.html",jP="d4c7fb622cfc47f4a2791478a3eea221",jQ="参数管理",jR="在 当前窗口 打开 /2/参数管理",jS="objectPaths",jT="de04efb73cd64da4bf6b23138f9468c5",jU="scriptId",jV="u5367",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u5368",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u5369",ka="287161d6553d482dbb471a03f2b96d8d",kb="u5370",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u5371",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u5372",kg="0d264741477549399c9586a19d72c94c",kh="u5373",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u5374",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u5375",km="b03fa42397b840c7be9ac06da5567aa7",kn="u5376",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u5377",kq="6d999717f47c45b488270f1138ce00fb",kr="u5378",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u5379",ku="188a2dff382a42948e36596c4dd80f3d",kv="u5380",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u5381",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u5382",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u5383",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u5384",kE="07e9a718986f4456b84348343c870c0a",kF="u5385",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u5386",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u5387",kK="5098ad65c8f7492c9069f4a964723317",kL="u5388",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u5389",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u5390",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u5391",kS="07c280170e8b49c58503de5d9d1deda7",kT="u5392",kU="5c5a7e1a78634167985368e626cb44a6",kV="u5393",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u5394",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u5395",la="7cf8bc9379a74906b78129a7c79b5204",lb="u5396",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u5397",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u5398",lg="6e3656fad051471985367dfcecd7efd8",lh="u5399",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u5400",lk="42c554bcc055434ba48c579ee60b70ef",ll="u5401",lm="620d6328a97942419ae02f8789b911e2",ln="u5402",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u5403",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u5404",ls="cd656119d92145688ed53bf413ed4959",lt="u5405",lu="91def88484484083927f2283fe2dcc27",lv="u5406",lw="4b13957666154ecda2d5e2f7d636101e",lx="u5407",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u5408",lA="0cc50ffea147485e97d2d81166a21165",lB="u5409",lC="0cde056acd5f48828ad1f872add05f25",lD="u5410",lE="b669d535c7094350a886008e7cef4af0",lF="u5411",lG="37e0281ff7f44a01940207aacde15d1d",lH="u5412",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u5413",lK="5b670361476844109058ee67e9e585d2",lL="u5414",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u5415",lO="bbc6891697924708b5a6119bbb896bab",lP="u5416",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u5417",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u5418",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u5419",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u5420",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u5421",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u5422",mc="578dad9d6baf4ee69400878858762724",md="u5423",me="3d533d005742479cbd215b234aad09bb",mf="u5424",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u5425",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u5426",mk="1759f58887a6423abd3758fd1891a06d",ml="u5427",mm="6b1a1692e80948e5975c69cb51886278",mn="u5428",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u5429",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u5430",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u5431",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u5432",mw="541c758399da4f399c0fc58ea01feee9",mx="u5433",my="e1c46db03da5412eb06e119b69b54c88",mz="u5434",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u5435",mC="6d744837c12d4451b03523db77f0de4b",mD="u5436",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u5437",mG="2066d8079c694bb3971a40cbf3279606",mH="u5438",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u5439",mK="77d1855694f640579e26ec450555a8a3",mL="u5440",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u5441",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u5442",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u5443",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u5444",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u5445"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_参数管理/styles.css b/public/files/_2_参数管理/styles.css deleted file mode 100644 index 996d072..0000000 --- a/public/files/_2_参数管理/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u5368_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5368 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u5368_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5369_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5369 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5369_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u5370_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u5370 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u5370_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5371_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5371 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u5371_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5372 { - position:absolute; - left:0px; - top:235px; -} -#u5372_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5372_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5373_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5373 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5373_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5373_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5372_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5372_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5374_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5374 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5374_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5374_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5375_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5375 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5375_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5375.selected { -} -#u5375_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5375_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5376_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5376 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5376_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5376.selected { -} -#u5376_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5376_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5377_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5377 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5377_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5377.selected { -} -#u5377_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5377_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5378_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5378 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5378_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5378.selected { -} -#u5378_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5378_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5379 { - position:absolute; - left:0px; - top:180px; -} -#u5379_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5379_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5380_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5380 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5380_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5380_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5379_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5379_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5381_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5381 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5381_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5381_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5382_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5382 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5382_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5382.selected { -} -#u5382_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5382_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5383_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5383 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5383_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5383.selected { -} -#u5383_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5383_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5384_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5384 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5384_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5384.selected { -} -#u5384_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5384_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5385_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5385 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5385_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5385.selected { -} -#u5385_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5385_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5379_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5386 { - position:absolute; - left:0px; - top:345px; -} -#u5386_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5386_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5387_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5387 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5387_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5387_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5386_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5386_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5388_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5388 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5388_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5388_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5389_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5389 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5389_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5389.selected { -} -#u5389_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5389_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5390_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5390 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5390_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5390.selected { -} -#u5390_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5390_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5391_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5391 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5391_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5391.selected { -} -#u5391_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5391_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5386_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u5392 { - position:absolute; - left:0px; - top:70px; -} -#u5392_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5392_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5393_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5393 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5393_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5393_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5392_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u5392_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5394_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5394 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5394_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5394_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5395_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5395 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5395_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5395.selected { -} -#u5395_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5395_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5396_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5396 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5396_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5396.selected { -} -#u5396_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5396_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5397_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5397 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5397_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5397.selected { -} -#u5397_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5397_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5398_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5398 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5398_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5398.selected { -} -#u5398_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5398_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5399_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5399 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5399_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5399.selected { -} -#u5399_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5399_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5400_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5400 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5400_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5400.selected { -} -#u5400_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5400_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5401_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5401 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5401_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5401.selected { -} -#u5401_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5401_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5402_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5402 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5402_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5402.selected { -} -#u5402_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5402_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5403_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5403 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5403_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5403.selected { -} -#u5403_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5403_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u5392_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u5404 { - position:absolute; - left:0px; - top:125px; -} -#u5404_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5404_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5405_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5405 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5405_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5405_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5404_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5404_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5406_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5406 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u5406_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5406_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5407_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5407 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u5407_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5407.selected { -} -#u5407_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5407_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5408_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5408 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5408_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5408.selected { -} -#u5408_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5408_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5409_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5409 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u5409_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5409.selected { -} -#u5409_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5409_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5410_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5410 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u5410_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5410.selected { -} -#u5410_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5410_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5411_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5411 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u5411_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5411.selected { -} -#u5411_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5411_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5412_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5412 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u5412_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5412.selected { -} -#u5412_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5412_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5413_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5413 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u5413_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5413.selected { -} -#u5413_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5413_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5414_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5414 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u5414_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5414.selected { -} -#u5414_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5414_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5404_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u5415 { - position:absolute; - left:0px; - top:290px; -} -#u5415_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5415_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5416_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5416 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5416_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5416_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5415_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u5415_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5417_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5417 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5417_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5417_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5418_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5418 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5418_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5418.selected { -} -#u5418_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5418_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5419_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5419 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5419_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5419.selected { -} -#u5419_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5419_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5415_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u5420 { - position:absolute; - left:0px; - top:400px; -} -#u5420_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5420_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5421_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5421 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5421_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5421_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5420_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u5420_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5422_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5422 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5422_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5422_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5423_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5423 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5423_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5423.selected { -} -#u5423_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5423_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5424_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5424 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5424_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5424.selected { -} -#u5424_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5424_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5425_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5425 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5425_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5425.selected { -} -#u5425_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5425_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5426_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5426 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5426_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5426.selected { -} -#u5426_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5426_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5427_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5427 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5427_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5427.selected { -} -#u5427_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5427_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5428_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5428 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5428_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5428.selected { -} -#u5428_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5428_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5420_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u5429 { - position:absolute; - left:0px; - top:455px; -} -#u5429_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5429_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5430_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5430 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5430_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5429_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5429_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5431_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5431 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5431_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5432_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5432 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5432_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5432.selected { -} -#u5432_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5432_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5433_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5433 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5433_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5433.selected { -} -#u5433_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5433_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5434_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5434 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5434_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5434.selected { -} -#u5434_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5434_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5435_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5435 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5435_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5435.selected { -} -#u5435_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5435_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5436_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5436 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5436_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5436.selected { -} -#u5436_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5436_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5437_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5437 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5437_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5437.selected { -} -#u5437_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5437_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5438_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5438 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5438_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5438.selected { -} -#u5438_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5438_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5439_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5439 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5439_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5439.selected { -} -#u5439_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5439_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5440 { - position:absolute; - left:0px; - top:510px; -} -#u5440_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5440_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5441_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5441 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5441_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5440_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5440_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5442_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5442 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5442_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5443_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5443 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5443_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5443.selected { -} -#u5443_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5443_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5444_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5444 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5444_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5444.selected { -} -#u5444_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5444_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5445_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5445 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5445_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5445.selected { -} -#u5445_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5445_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_固件/data.js b/public/files/_2_固件/data.js deleted file mode 100644 index 352afbb..0000000 --- a/public/files/_2_固件/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="_2_接口.html",jm="f5b83fbcd88a4567851a800fd5a157af",jn="固件",jo="在 当前窗口 打开 /2/固件",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="be04da9aec9e4e4bbd395b7fb75849a3",jU="scriptId",jV="u4893",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4894",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4895",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4896",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4897",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4898",kg="0d264741477549399c9586a19d72c94c",kh="u4899",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4900",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4901",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4902",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4903",kq="6d999717f47c45b488270f1138ce00fb",kr="u4904",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4905",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4906",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4907",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4908",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4909",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4910",kE="07e9a718986f4456b84348343c870c0a",kF="u4911",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4912",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4913",kK="5098ad65c8f7492c9069f4a964723317",kL="u4914",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4915",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4916",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4917",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4918",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4919",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4920",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4921",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4922",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4923",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4924",lg="6e3656fad051471985367dfcecd7efd8",lh="u4925",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4926",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4927",lm="620d6328a97942419ae02f8789b911e2",ln="u4928",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4929",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4930",ls="cd656119d92145688ed53bf413ed4959",lt="u4931",lu="91def88484484083927f2283fe2dcc27",lv="u4932",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4933",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4934",lA="0cc50ffea147485e97d2d81166a21165",lB="u4935",lC="0cde056acd5f48828ad1f872add05f25",lD="u4936",lE="b669d535c7094350a886008e7cef4af0",lF="u4937",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4938",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4939",lK="5b670361476844109058ee67e9e585d2",lL="u4940",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4941",lO="bbc6891697924708b5a6119bbb896bab",lP="u4942",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4943",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4944",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4945",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4946",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4947",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4948",mc="578dad9d6baf4ee69400878858762724",md="u4949",me="3d533d005742479cbd215b234aad09bb",mf="u4950",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4951",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4952",mk="1759f58887a6423abd3758fd1891a06d",ml="u4953",mm="6b1a1692e80948e5975c69cb51886278",mn="u4954",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4955",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4956",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4957",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4958",mw="541c758399da4f399c0fc58ea01feee9",mx="u4959",my="e1c46db03da5412eb06e119b69b54c88",mz="u4960",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4961",mC="6d744837c12d4451b03523db77f0de4b",mD="u4962",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4963",mG="2066d8079c694bb3971a40cbf3279606",mH="u4964",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4965",mK="77d1855694f640579e26ec450555a8a3",mL="u4966",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4967",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4968",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4969",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4970",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4971"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_固件/styles.css b/public/files/_2_固件/styles.css deleted file mode 100644 index 8f87045..0000000 --- a/public/files/_2_固件/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4894_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4894 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4894_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4895_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4895 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4895_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4896_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4896 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4896_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4897_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4897 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4897_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4898 { - position:absolute; - left:0px; - top:235px; -} -#u4898_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4898_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4899_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4899 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4899_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4899_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4898_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4898_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4900_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4900 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4900_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4900_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4901_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4901 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4901_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4901.selected { -} -#u4901_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4901_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4902_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4902 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4902_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4902.selected { -} -#u4902_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4902_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4903_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4903 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4903_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4903.selected { -} -#u4903_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4903_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4904_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4904 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4904_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4904.selected { -} -#u4904_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4904_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4905 { - position:absolute; - left:0px; - top:180px; -} -#u4905_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4905_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4906_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4906 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4906_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4906_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4905_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4905_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4907_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4907 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4907_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4907_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4908_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4908 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4908_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4908.selected { -} -#u4908_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4908_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4909_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4909 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4909_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4909.selected { -} -#u4909_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4909_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4910_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4910 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4910_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4910.selected { -} -#u4910_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4910_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4911_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4911 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4911_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4911.selected { -} -#u4911_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4911_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4905_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4912 { - position:absolute; - left:0px; - top:345px; -} -#u4912_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4912_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4913_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4913 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4913_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4913_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4912_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4912_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4914_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4914 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4914_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4914_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4915_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4915 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4915_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4915.selected { -} -#u4915_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4915_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4916_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4916 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4916_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4916.selected { -} -#u4916_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4916_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4917_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4917 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4917_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4917.selected { -} -#u4917_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4917_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4912_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4918 { - position:absolute; - left:0px; - top:70px; -} -#u4918_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4918_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4919_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4919 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4919_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4919_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4918_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4918_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4920_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4920 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4920_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4920_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4921_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4921 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4921_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4921.selected { -} -#u4921_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4921_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4922_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4922 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4922_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4922.selected { -} -#u4922_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4922_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4923_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4923 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4923_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4923.selected { -} -#u4923_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4923_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4924_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4924 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4924_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4924.selected { -} -#u4924_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4924_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4925_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4925 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4925_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4925.selected { -} -#u4925_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4925_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4926_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4926 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4926_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4926.selected { -} -#u4926_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4926_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4927_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4927 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4927_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4927.selected { -} -#u4927_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4927_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4928_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4928 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4928_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4928.selected { -} -#u4928_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4928_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4929_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4929 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4929_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4929.selected { -} -#u4929_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4929_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4918_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4930 { - position:absolute; - left:0px; - top:125px; -} -#u4930_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4930_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4931_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4931 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4931_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4931_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4930_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4930_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4932_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4932 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4932_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4932_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4933_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4933 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4933_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4933.selected { -} -#u4933_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4933_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4934_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4934 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4934_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4934.selected { -} -#u4934_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4934_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4935_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4935 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4935_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4935.selected { -} -#u4935_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4935_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4936_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4936 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4936_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4936.selected { -} -#u4936_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4936_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4937_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4937 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4937_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4937.selected { -} -#u4937_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4937_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4938_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4938 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4938_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4938.selected { -} -#u4938_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4938_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4939_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4939 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4939_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4939.selected { -} -#u4939_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4939_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4940_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4940 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4940_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4940.selected { -} -#u4940_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4940_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4930_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4941 { - position:absolute; - left:0px; - top:290px; -} -#u4941_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4941_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4942_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4942 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4942_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4942_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4941_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4941_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4943_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4943 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4943_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4943_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4944_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4944 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4944_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4944.selected { -} -#u4944_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4944_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4945_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4945 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4945_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4945.selected { -} -#u4945_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4945_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4941_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4946 { - position:absolute; - left:0px; - top:400px; -} -#u4946_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4946_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4947_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4947 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4947_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4947_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4946_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4946_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4948_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4948 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4948_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4948_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4949_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4949 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4949_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4949.selected { -} -#u4949_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4949_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4950_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4950 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4950_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4950.selected { -} -#u4950_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4950_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4951_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4951 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4951_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4951.selected { -} -#u4951_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4951_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4952_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4952 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4952_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4952.selected { -} -#u4952_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4952_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4953_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4953 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4953_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4953.selected { -} -#u4953_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4953_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4954_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4954 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4954_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4954.selected { -} -#u4954_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4954_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4946_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4955 { - position:absolute; - left:0px; - top:455px; -} -#u4955_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4955_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4956_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4956 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4956_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4955_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4955_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4957_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4957 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4957_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4958_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4958 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4958_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4958.selected { -} -#u4958_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4958_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4959_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4959 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4959_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4959.selected { -} -#u4959_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4959_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4960_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4960 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4960_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4960.selected { -} -#u4960_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4960_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4961_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4961 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4961_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4961.selected { -} -#u4961_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4961_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4962_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4962 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4962_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4962.selected { -} -#u4962_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4962_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4963_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4963 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4963_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4963.selected { -} -#u4963_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4963_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4964_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4964 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4964_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4964.selected { -} -#u4964_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4964_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4965_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4965 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4965_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4965.selected { -} -#u4965_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4965_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4966 { - position:absolute; - left:0px; - top:510px; -} -#u4966_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4966_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4967_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4967 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4967_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4966_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4966_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4968_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4968 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4968_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4969_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4969 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4969_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4969.selected { -} -#u4969_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4969_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4970_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4970 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4970_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4970.selected { -} -#u4970_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4970_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4971_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4971 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4971_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4971.selected { -} -#u4971_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4971_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_备份_恢复/data.js b/public/files/_2_备份_恢复/data.js deleted file mode 100644 index 1bdf791..0000000 --- a/public/files/_2_备份_恢复/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="_2_接口.html",jm="f5b83fbcd88a4567851a800fd5a157af",jn="固件",jo="在 当前窗口 打开 /2/固件",jp="_2_固件.html",jq="2066d8079c694bb3971a40cbf3279606",jr="备份&恢复",js="在 当前窗口 打开 /2/备份&恢复",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="da56a28f03c44cbaa03392c93c60373b",jU="scriptId",jV="u4972",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4973",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4974",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4975",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4976",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4977",kg="0d264741477549399c9586a19d72c94c",kh="u4978",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4979",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4980",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4981",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4982",kq="6d999717f47c45b488270f1138ce00fb",kr="u4983",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4984",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4985",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4986",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4987",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4988",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4989",kE="07e9a718986f4456b84348343c870c0a",kF="u4990",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4991",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4992",kK="5098ad65c8f7492c9069f4a964723317",kL="u4993",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4994",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4995",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4996",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4997",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4998",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4999",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u5000",la="7cf8bc9379a74906b78129a7c79b5204",lb="u5001",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u5002",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u5003",lg="6e3656fad051471985367dfcecd7efd8",lh="u5004",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u5005",lk="42c554bcc055434ba48c579ee60b70ef",ll="u5006",lm="620d6328a97942419ae02f8789b911e2",ln="u5007",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u5008",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u5009",ls="cd656119d92145688ed53bf413ed4959",lt="u5010",lu="91def88484484083927f2283fe2dcc27",lv="u5011",lw="4b13957666154ecda2d5e2f7d636101e",lx="u5012",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u5013",lA="0cc50ffea147485e97d2d81166a21165",lB="u5014",lC="0cde056acd5f48828ad1f872add05f25",lD="u5015",lE="b669d535c7094350a886008e7cef4af0",lF="u5016",lG="37e0281ff7f44a01940207aacde15d1d",lH="u5017",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u5018",lK="5b670361476844109058ee67e9e585d2",lL="u5019",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u5020",lO="bbc6891697924708b5a6119bbb896bab",lP="u5021",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u5022",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u5023",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u5024",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u5025",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u5026",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u5027",mc="578dad9d6baf4ee69400878858762724",md="u5028",me="3d533d005742479cbd215b234aad09bb",mf="u5029",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u5030",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u5031",mk="1759f58887a6423abd3758fd1891a06d",ml="u5032",mm="6b1a1692e80948e5975c69cb51886278",mn="u5033",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u5034",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u5035",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u5036",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u5037",mw="541c758399da4f399c0fc58ea01feee9",mx="u5038",my="e1c46db03da5412eb06e119b69b54c88",mz="u5039",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u5040",mC="6d744837c12d4451b03523db77f0de4b",mD="u5041",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u5042",mG="2066d8079c694bb3971a40cbf3279606",mH="u5043",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u5044",mK="77d1855694f640579e26ec450555a8a3",mL="u5045",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u5046",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u5047",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u5048",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u5049",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u5050"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_备份_恢复/styles.css b/public/files/_2_备份_恢复/styles.css deleted file mode 100644 index 35fce80..0000000 --- a/public/files/_2_备份_恢复/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4973_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4973 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4973_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4974_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4974 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4974_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4975_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4975 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4975_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4976_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4976 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4976_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4977 { - position:absolute; - left:0px; - top:235px; -} -#u4977_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4977_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4978_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4978 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4978_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4978_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4977_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4977_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4979_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4979 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4979_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4979_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4980_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4980 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4980_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4980.selected { -} -#u4980_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4980_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4981_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4981 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4981_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4981.selected { -} -#u4981_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4981_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4982_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4982 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4982_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4982.selected { -} -#u4982_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4982_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4983_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4983 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4983_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4983.selected { -} -#u4983_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4983_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4984 { - position:absolute; - left:0px; - top:180px; -} -#u4984_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4984_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4985_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4985 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4985_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4985_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4984_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4984_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4986_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4986 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4986_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4986_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4987_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4987 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4987_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4987.selected { -} -#u4987_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4987_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4988_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4988 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4988_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4988.selected { -} -#u4988_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4988_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4989_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4989 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4989_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4989.selected { -} -#u4989_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4989_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4990_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4990 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4990_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4990.selected { -} -#u4990_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4990_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4984_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4991 { - position:absolute; - left:0px; - top:345px; -} -#u4991_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4991_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4992_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4992 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4992_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4992_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4991_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4991_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4993_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4993 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4993_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4993_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4994_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4994 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4994_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4994.selected { -} -#u4994_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4994_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4995_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4995 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4995_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4995.selected { -} -#u4995_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4995_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4996_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4996 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4996_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4996.selected { -} -#u4996_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4996_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4991_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4997 { - position:absolute; - left:0px; - top:70px; -} -#u4997_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4997_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4998_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4998 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4998_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4998_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4997_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4997_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4999_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4999 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4999_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4999_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5000_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5000 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5000_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5000.selected { -} -#u5000_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5000_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5001_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5001 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5001_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5001.selected { -} -#u5001_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5001_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5002_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5002 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5002_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5002.selected { -} -#u5002_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5002_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5003_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5003 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5003_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5003.selected { -} -#u5003_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5003_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5004_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5004 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5004_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5004.selected { -} -#u5004_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5004_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5005_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5005 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5005_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5005.selected { -} -#u5005_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5005_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5006_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5006 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5006_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5006.selected { -} -#u5006_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5006_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5007_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5007 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5007_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5007.selected { -} -#u5007_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5007_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5008_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5008 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5008_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5008.selected { -} -#u5008_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5008_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4997_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u5009 { - position:absolute; - left:0px; - top:125px; -} -#u5009_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5009_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5010_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5010 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5010_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5010_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5009_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5009_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5011_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5011 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u5011_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5011_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5012_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5012 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u5012_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5012.selected { -} -#u5012_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5012_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5013_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5013 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5013_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5013.selected { -} -#u5013_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5013_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5014_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5014 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u5014_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5014.selected { -} -#u5014_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5014_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5015_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5015 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u5015_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5015.selected { -} -#u5015_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5015_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5016_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5016 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u5016_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5016.selected { -} -#u5016_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5016_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5017_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5017 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u5017_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5017.selected { -} -#u5017_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5017_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5018_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5018 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u5018_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5018.selected { -} -#u5018_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5018_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5019_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5019 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u5019_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5019.selected { -} -#u5019_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5019_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5009_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u5020 { - position:absolute; - left:0px; - top:290px; -} -#u5020_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5020_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5021_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5021 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5021_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5021_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5020_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u5020_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5022_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5022 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5022_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5022_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5023_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5023 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5023_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5023.selected { -} -#u5023_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5023_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5024_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5024 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5024_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5024.selected { -} -#u5024_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5024_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5020_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u5025 { - position:absolute; - left:0px; - top:400px; -} -#u5025_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5025_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5026_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5026 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5026_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5026_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5025_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u5025_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5027_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5027 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5027_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5027_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5028_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5028 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5028_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5028.selected { -} -#u5028_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5028_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5029_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5029 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5029_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5029.selected { -} -#u5029_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5029_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5030_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5030 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5030_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5030.selected { -} -#u5030_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5030_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5031_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5031 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5031_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5031.selected { -} -#u5031_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5031_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5032_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5032 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5032_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5032.selected { -} -#u5032_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5032_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5033_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5033 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5033_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5033.selected { -} -#u5033_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5033_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5025_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u5034 { - position:absolute; - left:0px; - top:455px; -} -#u5034_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5034_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5035_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5035 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5035_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5034_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5034_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5036_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5036 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5036_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5037_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5037 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5037_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5037.selected { -} -#u5037_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5037_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5038_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5038 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5038_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5038.selected { -} -#u5038_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5038_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5039_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5039 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5039_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5039.selected { -} -#u5039_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5039_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5040_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5040 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5040_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5040.selected { -} -#u5040_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5040_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5041_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5041 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5041_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5041.selected { -} -#u5041_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5041_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5042_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5042 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5042_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5042.selected { -} -#u5042_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5042_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5043_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5043 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5043_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5043.selected { -} -#u5043_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5043_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5044_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5044 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5044_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5044.selected { -} -#u5044_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5044_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5045 { - position:absolute; - left:0px; - top:510px; -} -#u5045_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5045_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5046_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5046 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5046_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5045_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5045_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5047_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5047 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5047_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5048_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5048 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5048_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5048.selected { -} -#u5048_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5048_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5049_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5049 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5049_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5049.selected { -} -#u5049_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5049_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5050_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5050 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5050_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5050.selected { -} -#u5050_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5050_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_字典管理/data.js b/public/files/_2_字典管理/data.js deleted file mode 100644 index 9943f1b..0000000 --- a/public/files/_2_字典管理/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="_2_接口.html",jm="f5b83fbcd88a4567851a800fd5a157af",jn="固件",jo="在 当前窗口 打开 /2/固件",jp="_2_固件.html",jq="2066d8079c694bb3971a40cbf3279606",jr="备份&恢复",js="在 当前窗口 打开 /2/备份&恢复",jt="_2_备份_恢复.html",ju="8f6ffa5a96a14d79ae7201eb8bbff6b5",jv="数据包捕获",jw="在 当前窗口 打开 /2/数据包捕获",jx="_2_数据包捕获.html",jy="77d1855694f640579e26ec450555a8a3",jz="后台管理",jA=510,jB="9662ce02b5004c29baa5aa3929abab43",jC="204f45f6afc34d5d99894ec9b10eb71b",jD="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jE="55332c86d1434008b455fb49c931cf9e",jF="ab9166e59a1147aeaf21e70536b34bae",jG="设置 后台管理 为 收起 push/pull widgets 向下",jH="2f23aa851a9d4d54993f66fbe1cbf708",jI="字典管理",jJ="在 当前窗口 打开 /2/字典管理",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="94e89dce8a9246e09ecb198a8897adb7",jU="scriptId",jV="u5288",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u5289",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u5290",ka="287161d6553d482dbb471a03f2b96d8d",kb="u5291",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u5292",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u5293",kg="0d264741477549399c9586a19d72c94c",kh="u5294",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u5295",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u5296",km="b03fa42397b840c7be9ac06da5567aa7",kn="u5297",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u5298",kq="6d999717f47c45b488270f1138ce00fb",kr="u5299",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u5300",ku="188a2dff382a42948e36596c4dd80f3d",kv="u5301",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u5302",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u5303",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u5304",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u5305",kE="07e9a718986f4456b84348343c870c0a",kF="u5306",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u5307",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u5308",kK="5098ad65c8f7492c9069f4a964723317",kL="u5309",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u5310",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u5311",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u5312",kS="07c280170e8b49c58503de5d9d1deda7",kT="u5313",kU="5c5a7e1a78634167985368e626cb44a6",kV="u5314",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u5315",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u5316",la="7cf8bc9379a74906b78129a7c79b5204",lb="u5317",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u5318",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u5319",lg="6e3656fad051471985367dfcecd7efd8",lh="u5320",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u5321",lk="42c554bcc055434ba48c579ee60b70ef",ll="u5322",lm="620d6328a97942419ae02f8789b911e2",ln="u5323",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u5324",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u5325",ls="cd656119d92145688ed53bf413ed4959",lt="u5326",lu="91def88484484083927f2283fe2dcc27",lv="u5327",lw="4b13957666154ecda2d5e2f7d636101e",lx="u5328",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u5329",lA="0cc50ffea147485e97d2d81166a21165",lB="u5330",lC="0cde056acd5f48828ad1f872add05f25",lD="u5331",lE="b669d535c7094350a886008e7cef4af0",lF="u5332",lG="37e0281ff7f44a01940207aacde15d1d",lH="u5333",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u5334",lK="5b670361476844109058ee67e9e585d2",lL="u5335",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u5336",lO="bbc6891697924708b5a6119bbb896bab",lP="u5337",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u5338",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u5339",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u5340",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u5341",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u5342",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u5343",mc="578dad9d6baf4ee69400878858762724",md="u5344",me="3d533d005742479cbd215b234aad09bb",mf="u5345",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u5346",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u5347",mk="1759f58887a6423abd3758fd1891a06d",ml="u5348",mm="6b1a1692e80948e5975c69cb51886278",mn="u5349",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u5350",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u5351",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u5352",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u5353",mw="541c758399da4f399c0fc58ea01feee9",mx="u5354",my="e1c46db03da5412eb06e119b69b54c88",mz="u5355",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u5356",mC="6d744837c12d4451b03523db77f0de4b",mD="u5357",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u5358",mG="2066d8079c694bb3971a40cbf3279606",mH="u5359",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u5360",mK="77d1855694f640579e26ec450555a8a3",mL="u5361",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u5362",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u5363",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u5364",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u5365",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u5366"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_字典管理/styles.css b/public/files/_2_字典管理/styles.css deleted file mode 100644 index ab4b49f..0000000 --- a/public/files/_2_字典管理/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u5289_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5289 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u5289_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5290_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5290 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5290_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u5291_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u5291 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u5291_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5292_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5292 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u5292_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5293 { - position:absolute; - left:0px; - top:235px; -} -#u5293_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5293_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5294_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5294 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5294_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5294_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5293_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5293_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5295_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5295 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5295_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5295_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5296_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5296 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5296_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5296.selected { -} -#u5296_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5296_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5297_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5297 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5297_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5297.selected { -} -#u5297_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5297_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5298_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5298 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5298_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5298.selected { -} -#u5298_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5298_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5299_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5299 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5299_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5299.selected { -} -#u5299_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5299_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5300 { - position:absolute; - left:0px; - top:180px; -} -#u5300_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5300_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5301_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5301 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5301_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5301_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5300_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5300_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5302_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5302 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5302_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5302_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5303_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5303 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5303_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5303.selected { -} -#u5303_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5303_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5304_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5304 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5304_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5304.selected { -} -#u5304_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5304_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5305_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5305 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5305_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5305.selected { -} -#u5305_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5305_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5306_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5306 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5306_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5306.selected { -} -#u5306_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5306_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5300_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5307 { - position:absolute; - left:0px; - top:345px; -} -#u5307_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5307_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5308_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5308 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5308_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5308_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5307_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5307_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5309_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5309 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5309_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5309_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5310_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5310 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5310_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5310.selected { -} -#u5310_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5310_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5311_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5311 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5311_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5311.selected { -} -#u5311_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5311_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5312_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5312 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5312_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5312.selected { -} -#u5312_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5312_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5307_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u5313 { - position:absolute; - left:0px; - top:70px; -} -#u5313_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5313_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5314_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5314 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5314_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5314_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5313_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u5313_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5315_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5315 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5315_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5315_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5316_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5316 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5316_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5316.selected { -} -#u5316_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5316_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5317_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5317 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5317_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5317.selected { -} -#u5317_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5317_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5318_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5318 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5318_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5318.selected { -} -#u5318_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5318_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5319_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5319 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5319_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5319.selected { -} -#u5319_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5319_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5320_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5320 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5320_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5320.selected { -} -#u5320_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5320_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5321_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5321 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5321_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5321.selected { -} -#u5321_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5321_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5322_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5322 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5322_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5322.selected { -} -#u5322_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5322_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5323_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5323 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5323_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5323.selected { -} -#u5323_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5323_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5324_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5324 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5324_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5324.selected { -} -#u5324_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5324_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u5313_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u5325 { - position:absolute; - left:0px; - top:125px; -} -#u5325_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5325_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5326_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5326 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5326_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5326_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5325_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5325_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5327_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5327 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u5327_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5327_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5328_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5328 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u5328_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5328.selected { -} -#u5328_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5328_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5329_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5329 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5329_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5329.selected { -} -#u5329_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5329_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5330_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5330 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u5330_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5330.selected { -} -#u5330_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5330_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5331_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5331 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u5331_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5331.selected { -} -#u5331_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5331_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5332_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5332 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u5332_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5332.selected { -} -#u5332_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5332_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5333_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5333 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u5333_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5333.selected { -} -#u5333_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5333_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5334_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5334 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u5334_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5334.selected { -} -#u5334_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5334_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5335_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5335 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u5335_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5335.selected { -} -#u5335_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5335_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5325_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u5336 { - position:absolute; - left:0px; - top:290px; -} -#u5336_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5336_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5337_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5337 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5337_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5337_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5336_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u5336_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5338_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5338 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5338_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5338_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5339_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5339 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5339_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5339.selected { -} -#u5339_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5339_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5340_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5340 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5340_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5340.selected { -} -#u5340_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5340_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5336_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u5341 { - position:absolute; - left:0px; - top:400px; -} -#u5341_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5341_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5342_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5342 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5342_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5342_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5341_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u5341_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5343_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5343 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5343_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5343_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5344_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5344 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5344_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5344.selected { -} -#u5344_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5344_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5345_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5345 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5345_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5345.selected { -} -#u5345_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5345_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5346_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5346 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5346_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5346.selected { -} -#u5346_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5346_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5347_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5347 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5347_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5347.selected { -} -#u5347_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5347_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5348_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5348 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5348_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5348.selected { -} -#u5348_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5348_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5349_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5349 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5349_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5349.selected { -} -#u5349_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5349_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5341_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u5350 { - position:absolute; - left:0px; - top:455px; -} -#u5350_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5350_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5351_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5351 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5351_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5350_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5350_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5352_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5352 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5352_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5353_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5353 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5353_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5353.selected { -} -#u5353_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5353_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5354_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5354 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5354_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5354.selected { -} -#u5354_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5354_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5355_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5355 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5355_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5355.selected { -} -#u5355_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5355_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5356_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5356 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5356_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5356.selected { -} -#u5356_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5356_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5357_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5357 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5357_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5357.selected { -} -#u5357_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5357_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5358_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5358 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5358_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5358.selected { -} -#u5358_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5358_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5359_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5359 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5359_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5359.selected { -} -#u5359_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5359_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5360_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5360 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5360_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5360.selected { -} -#u5360_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5360_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5361 { - position:absolute; - left:0px; - top:510px; -} -#u5361_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5361_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5362_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5362 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5362_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5361_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5361_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5363_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5363 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5363_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5364_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5364 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5364_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5364.selected { -} -#u5364_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5364_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5365_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5365 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5365_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5365.selected { -} -#u5365_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5365_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5366_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5366 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5366_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5366.selected { -} -#u5366_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5366_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_带宽变化/data.js b/public/files/_2_带宽变化/data.js deleted file mode 100644 index 88c89d3..0000000 --- a/public/files/_2_带宽变化/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="

      Traffic Over Time By Bandwidth

      ",fC="f7bdb45b7dd74715a5f2f96c63522835",fD="在 当前窗口 打开 高命中的策略",fE="高命中的策略.html",fF="

      Top Policy Hits

      ",fG="6e3656fad051471985367dfcecd7efd8",fH="活跃源IP排名",fI=225,fJ="在 当前窗口 打开 活跃源IP排名",fK="活跃源ip排名.html",fL="

      Top Internal Hosts By Sessions

      ",fM="85444d6bb7604745b615ea6c0be0dfbd",fN="活跃目的IP排名",fO=270,fP="在 当前窗口 打开 活跃目的IP排名",fQ="活跃目的ip排名.html",fR="

      Top External Hosts By Sessions

      ",fS="42c554bcc055434ba48c579ee60b70ef",fT="活跃域名排名",fU=315,fV="在 当前窗口 打开 活跃域名排名",fW="活跃域名排名.html",fX="

      Top Website Domains By Bandwidth

      ",fY="620d6328a97942419ae02f8789b911e2",fZ="活跃URL排名",ga=360,gb="在 当前窗口 打开 活跃URL排名",gc="活跃url排名.html",gd="

      Top HTTP/HTTPS URLS By Sessions

      ",ge="2104d7235c9d4010b05b9fb8b3945291",gf="活跃用户排名",gg=405,gh="在 当前窗口 打开 活跃用户排名",gi="活跃用户排名.html",gj="

      Top User By Bandwidth

      ",gk="ce40ad7023294c8ea02e3aaa39fe9359",gl="策略&对象",gm=125,gn="

      Policy&Objects

      ",go="

      Политика и Объекты

      ",gp="872ff99d15cd4403a36c3c0828b204fb",gq="cd656119d92145688ed53bf413ed4959",gr="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gs="e79ef6eb8bea477b951c71a1b9fe5e55",gt="91def88484484083927f2283fe2dcc27",gu="设置 策略&对象 为 收起 push/pull widgets 向下",gv="

      Политика и Объекты


      ",gw="4b13957666154ecda2d5e2f7d636101e",gx="代理拦截策略",gy="在 当前窗口 打开 代理拦截策略",gz="代理拦截策略.html",gA="

      Proxy Interception

      ",gB="

      Прокси Перехват

      ",gC="f8ae401a90f649b2b6c2a87c9c17d0dd",gD="防火墙策略",gE="在 当前窗口 打开 /2/防火墙策略",gF="_2_防火墙策略.html",gG="

      Firewall

      ",gH="

      Брандмауэр

      ",gI="0cc50ffea147485e97d2d81166a21165",gJ="代理管控策略",gK="

      Proxy Manipulation

      ",gL="

      Прокси Манипуляция

      ",gM="0cde056acd5f48828ad1f872add05f25",gN="内容检查策略",gO="在 当前窗口 打开 /2/内容检查策略",gP="_2_内容检查策略.html",gQ="

      Content Inspection

      ",gR="

      Проверка Контента

      ",gS="b669d535c7094350a886008e7cef4af0",gT="对象",gU="在 当前窗口 打开 对象",gV="对象.html",gW="

      Objects

      ",gX="

      Объекты

      ",gY="37e0281ff7f44a01940207aacde15d1d",gZ="时间计划",ha="在 当前窗口 打开 时间计划",hb="时间计划.html",hc="

      Schedule

      ",hd="

      Расписание


      ",he="1a68e2e6dc044fd0817478eea51985b1",hf="标签",hg="在 当前窗口 打开 标签",hh="标签.html",hi="

      Tags

      ",hj="

      Теги

      ",hk="5b670361476844109058ee67e9e585d2",hl="串联设备(可选)",hm="在 当前窗口 打开 /2/串联设备(可选)",hn="_2_串联设备(可选).html",ho="

      Inline Device

      ",hp="

      Последовательное Устройство

      ",hq="87b93e86784a428ebd47f511a4ba2c4f",hr="报告",hs=290,ht="b64e296b35444e11a375c42f3e6ee72d",hu="bbc6891697924708b5a6119bbb896bab",hv="设置 报告 为 展开 show if hidden push/pull widgets 向下",hw="9388ba2f489b436aa2f3851b5889d374",hx="4d3a090b203d49d1a7fb36de39828355",hy="设置 报告 为 收起 push/pull widgets 向下",hz="fbde9bbdcd704824945ab49b5beecdcb",hA="报表结果",hB="在 当前窗口 打开 /2/报表结果",hC="_2_报表结果.html",hD="

      Reports

      ",hE="

      Отчеты

      ",hF="6e04fbf50e9445d1a7a6ae3da1977530",hG="报告任务",hH="在 当前窗口 打开 /2/报告任务",hI="_2_报告任务.html",hJ="

      Report Tasks

      ",hK="

      Отчет Задачи

      ",hL="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hM="系统",hN=400,hO="83946562f27346a4a97f498a2f32bbf7",hP="c7566dc5ceae4d1ba17bd159636d896f",hQ="设置 系统 为 展开 show if hidden push/pull widgets 向下",hR="

      System

      ",hS="

      Система

      ",hT="d913d84a32c149f3a1260a92cbd43605",hU="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hV="设置 系统 为 收起 push/pull widgets 向下",hW="578dad9d6baf4ee69400878858762724",hX="角色管理",hY="在 当前窗口 打开 /2/角色管理",hZ="_2_角色管理.html",ia="

      Role Mangement

      ",ib="

      Управление Ролями

      ",ic="3d533d005742479cbd215b234aad09bb",id="用户管理",ie="在 当前窗口 打开 /2/用户管理",ig="_2_用户管理.html",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="23798d1366f049a8bcf2815b3ce4735e",jU="scriptId",jV="u247",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u248",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u249",ka="287161d6553d482dbb471a03f2b96d8d",kb="u250",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u251",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u252",kg="0d264741477549399c9586a19d72c94c",kh="u253",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u254",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u255",km="b03fa42397b840c7be9ac06da5567aa7",kn="u256",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u257",kq="6d999717f47c45b488270f1138ce00fb",kr="u258",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u259",ku="188a2dff382a42948e36596c4dd80f3d",kv="u260",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u261",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u262",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u263",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u264",kE="07e9a718986f4456b84348343c870c0a",kF="u265",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u266",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u267",kK="5098ad65c8f7492c9069f4a964723317",kL="u268",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u269",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u270",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u271",kS="07c280170e8b49c58503de5d9d1deda7",kT="u272",kU="5c5a7e1a78634167985368e626cb44a6",kV="u273",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u274",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u275",la="7cf8bc9379a74906b78129a7c79b5204",lb="u276",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u277",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u278",lg="6e3656fad051471985367dfcecd7efd8",lh="u279",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u280",lk="42c554bcc055434ba48c579ee60b70ef",ll="u281",lm="620d6328a97942419ae02f8789b911e2",ln="u282",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u283",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u284",ls="cd656119d92145688ed53bf413ed4959",lt="u285",lu="91def88484484083927f2283fe2dcc27",lv="u286",lw="4b13957666154ecda2d5e2f7d636101e",lx="u287",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u288",lA="0cc50ffea147485e97d2d81166a21165",lB="u289",lC="0cde056acd5f48828ad1f872add05f25",lD="u290",lE="b669d535c7094350a886008e7cef4af0",lF="u291",lG="37e0281ff7f44a01940207aacde15d1d",lH="u292",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u293",lK="5b670361476844109058ee67e9e585d2",lL="u294",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u295",lO="bbc6891697924708b5a6119bbb896bab",lP="u296",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u297",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u298",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u299",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u300",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u301",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u302",mc="578dad9d6baf4ee69400878858762724",md="u303",me="3d533d005742479cbd215b234aad09bb",mf="u304",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u305",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u306",mk="1759f58887a6423abd3758fd1891a06d",ml="u307",mm="6b1a1692e80948e5975c69cb51886278",mn="u308",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u309",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u310",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u311",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u312",mw="541c758399da4f399c0fc58ea01feee9",mx="u313",my="e1c46db03da5412eb06e119b69b54c88",mz="u314",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u315",mC="6d744837c12d4451b03523db77f0de4b",mD="u316",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u317",mG="2066d8079c694bb3971a40cbf3279606",mH="u318",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u319",mK="77d1855694f640579e26ec450555a8a3",mL="u320",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u321",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u322",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u323",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u324",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u325"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_带宽变化/styles.css b/public/files/_2_带宽变化/styles.css deleted file mode 100644 index 55ef815..0000000 --- a/public/files/_2_带宽变化/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u248_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u248 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u248_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u249_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u249 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u249_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u250_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u250 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u250_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u251_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u251 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u251_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u252 { - position:absolute; - left:0px; - top:235px; -} -#u252_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u252_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u253_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u253 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u253_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u253_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u252_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u252_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u254_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u254 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u254_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u254_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u255_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u255 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u255_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u255.selected { -} -#u255_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u255_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u256_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u256 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u256_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u256.selected { -} -#u256_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u256_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u257_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u257 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u257_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u257.selected { -} -#u257_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u257_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u258_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u258 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u258_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u258.selected { -} -#u258_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u258_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u259 { - position:absolute; - left:0px; - top:180px; -} -#u259_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u259_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u260_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u260 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u260_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u260_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u259_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u259_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u261_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u261 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u261_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u261_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u262_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u262 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u262_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u262.selected { -} -#u262_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u262_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u263_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u263 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u263_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u263.selected { -} -#u263_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u263_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u264_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u264 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u264_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u264.selected { -} -#u264_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u264_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u265_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u265 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u265_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u265.selected { -} -#u265_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u265_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u259_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u266 { - position:absolute; - left:0px; - top:345px; -} -#u266_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u266_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u267_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u267 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u267_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u267_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u266_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u266_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u268_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u268 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u268_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u268_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u269_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u269 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u269_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u269.selected { -} -#u269_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u269_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u270_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u270 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u270_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u270.selected { -} -#u270_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u270_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u271_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u271 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u271_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u271.selected { -} -#u271_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u271_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u266_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u272 { - position:absolute; - left:0px; - top:70px; -} -#u272_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u272_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u273_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u273 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u273_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u273_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u272_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u272_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u274_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u274 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u274_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u274_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u275_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u275 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u275_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u275.selected { -} -#u275_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u275_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u276_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u276 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u276_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u276.selected { -} -#u276_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u276_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u277_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u277 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u277_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u277.selected { -} -#u277_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u277_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u278_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u278 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u278_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u278.selected { -} -#u278_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u278_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u279_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u279 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u279_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u279.selected { -} -#u279_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u279_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u280_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u280 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u280_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u280.selected { -} -#u280_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u280_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u281_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u281 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u281_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u281.selected { -} -#u281_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u281_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u282_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u282 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u282_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u282.selected { -} -#u282_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u282_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u283_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u283 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u283_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u283.selected { -} -#u283_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u283_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u272_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u284 { - position:absolute; - left:0px; - top:125px; -} -#u284_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u284_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u285_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u285 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u285_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u285_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u284_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u284_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u286_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u286 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u286_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u286_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u287_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u287 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u287_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u287.selected { -} -#u287_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u287_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u288_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u288 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u288_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u288.selected { -} -#u288_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u288_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u289_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u289 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u289_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u289.selected { -} -#u289_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u289_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u290_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u290 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u290_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u290.selected { -} -#u290_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u290_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u291_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u291 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u291_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u291.selected { -} -#u291_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u291_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u292_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u292 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u292_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u292.selected { -} -#u292_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u292_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u293_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u293 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u293_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u293.selected { -} -#u293_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u293_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u294_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u294 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u294_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u294.selected { -} -#u294_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u294_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u284_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u295 { - position:absolute; - left:0px; - top:290px; -} -#u295_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u295_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u296_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u296 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u296_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u296_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u295_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u295_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u297_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u297 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u297_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u297_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u298_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u298 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u298_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u298.selected { -} -#u298_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u298_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u299_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u299 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u299_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u299.selected { -} -#u299_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u299_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u295_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u300 { - position:absolute; - left:0px; - top:400px; -} -#u300_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u300_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u301_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u301 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u301_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u301_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u300_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u300_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u302_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u302 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u302_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u302_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u303_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u303 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u303_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u303.selected { -} -#u303_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u303_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u304_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u304 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u304_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u304.selected { -} -#u304_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u304_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u305_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u305 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u305_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u305.selected { -} -#u305_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u305_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u306_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u306 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u306_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u306.selected { -} -#u306_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u306_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u307_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u307 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u307_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u307.selected { -} -#u307_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u307_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u308_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u308 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u308_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u308.selected { -} -#u308_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u308_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u300_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u309 { - position:absolute; - left:0px; - top:455px; -} -#u309_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u309_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u310_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u310 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u310_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u309_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u309_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u311_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u311 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u311_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u312_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u312 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u312_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u312.selected { -} -#u312_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u312_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u313_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u313 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u313_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u313.selected { -} -#u313_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u313_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u314_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u314 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u314_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u314.selected { -} -#u314_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u314_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u315_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u315 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u315_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u315.selected { -} -#u315_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u315_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u316_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u316 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u316_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u316.selected { -} -#u316_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u316_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u317_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u317 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u317_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u317.selected { -} -#u317_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u317_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u318_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u318 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u318_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u318.selected { -} -#u318_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u318_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u319_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u319 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u319_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u319.selected { -} -#u319_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u319_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u320 { - position:absolute; - left:0px; - top:510px; -} -#u320_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u320_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u321_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u321 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u321_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u320_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u320_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u322_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u322 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u322_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u323_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u323 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u323_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u323.selected { -} -#u323_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u323_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u324_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u324 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u324_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u324.selected { -} -#u324_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u324_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u325_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u325 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u325_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u325.selected { -} -#u325_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u325_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_报告任务/data.js b/public/files/_2_报告任务/data.js deleted file mode 100644 index ed6fcd9..0000000 --- a/public/files/_2_报告任务/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="

      Report Tasks

      ",hK="

      Отчет Задачи

      ",hL="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hM="系统",hN=400,hO="83946562f27346a4a97f498a2f32bbf7",hP="c7566dc5ceae4d1ba17bd159636d896f",hQ="设置 系统 为 展开 show if hidden push/pull widgets 向下",hR="

      System

      ",hS="

      Система

      ",hT="d913d84a32c149f3a1260a92cbd43605",hU="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hV="设置 系统 为 收起 push/pull widgets 向下",hW="578dad9d6baf4ee69400878858762724",hX="角色管理",hY="在 当前窗口 打开 /2/角色管理",hZ="_2_角色管理.html",ia="

      Role Mangement

      ",ib="

      Управление Ролями

      ",ic="3d533d005742479cbd215b234aad09bb",id="用户管理",ie="在 当前窗口 打开 /2/用户管理",ig="_2_用户管理.html",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="2b0632623978470f987cd04d6ea71f5c",jU="scriptId",jV="u3392",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u3393",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u3394",ka="287161d6553d482dbb471a03f2b96d8d",kb="u3395",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u3396",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u3397",kg="0d264741477549399c9586a19d72c94c",kh="u3398",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u3399",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u3400",km="b03fa42397b840c7be9ac06da5567aa7",kn="u3401",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u3402",kq="6d999717f47c45b488270f1138ce00fb",kr="u3403",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u3404",ku="188a2dff382a42948e36596c4dd80f3d",kv="u3405",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u3406",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u3407",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u3408",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u3409",kE="07e9a718986f4456b84348343c870c0a",kF="u3410",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u3411",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u3412",kK="5098ad65c8f7492c9069f4a964723317",kL="u3413",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u3414",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u3415",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u3416",kS="07c280170e8b49c58503de5d9d1deda7",kT="u3417",kU="5c5a7e1a78634167985368e626cb44a6",kV="u3418",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u3419",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u3420",la="7cf8bc9379a74906b78129a7c79b5204",lb="u3421",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u3422",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u3423",lg="6e3656fad051471985367dfcecd7efd8",lh="u3424",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u3425",lk="42c554bcc055434ba48c579ee60b70ef",ll="u3426",lm="620d6328a97942419ae02f8789b911e2",ln="u3427",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u3428",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u3429",ls="cd656119d92145688ed53bf413ed4959",lt="u3430",lu="91def88484484083927f2283fe2dcc27",lv="u3431",lw="4b13957666154ecda2d5e2f7d636101e",lx="u3432",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u3433",lA="0cc50ffea147485e97d2d81166a21165",lB="u3434",lC="0cde056acd5f48828ad1f872add05f25",lD="u3435",lE="b669d535c7094350a886008e7cef4af0",lF="u3436",lG="37e0281ff7f44a01940207aacde15d1d",lH="u3437",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u3438",lK="5b670361476844109058ee67e9e585d2",lL="u3439",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u3440",lO="bbc6891697924708b5a6119bbb896bab",lP="u3441",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u3442",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u3443",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u3444",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u3445",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u3446",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u3447",mc="578dad9d6baf4ee69400878858762724",md="u3448",me="3d533d005742479cbd215b234aad09bb",mf="u3449",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u3450",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u3451",mk="1759f58887a6423abd3758fd1891a06d",ml="u3452",mm="6b1a1692e80948e5975c69cb51886278",mn="u3453",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u3454",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u3455",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u3456",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u3457",mw="541c758399da4f399c0fc58ea01feee9",mx="u3458",my="e1c46db03da5412eb06e119b69b54c88",mz="u3459",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u3460",mC="6d744837c12d4451b03523db77f0de4b",mD="u3461",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u3462",mG="2066d8079c694bb3971a40cbf3279606",mH="u3463",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u3464",mK="77d1855694f640579e26ec450555a8a3",mL="u3465",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u3466",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u3467",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u3468",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u3469",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u3470"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_报告任务/styles.css b/public/files/_2_报告任务/styles.css deleted file mode 100644 index 1fbfc4d..0000000 --- a/public/files/_2_报告任务/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u3393_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3393 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u3393_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3394_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3394 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3394_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u3395_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u3395 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u3395_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3396_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3396 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u3396_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3397 { - position:absolute; - left:0px; - top:235px; -} -#u3397_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3397_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3398_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3398 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3398_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3398_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3397_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3397_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3399_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3399 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3399_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3399_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3400_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3400 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3400_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3400.selected { -} -#u3400_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3400_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3401_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3401 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3401_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3401.selected { -} -#u3401_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3401_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3402_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3402 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3402_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3402.selected { -} -#u3402_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3402_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3403_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3403 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3403_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3403.selected { -} -#u3403_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3403_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3404 { - position:absolute; - left:0px; - top:180px; -} -#u3404_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3404_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3405_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3405 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3405_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3405_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3404_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3404_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3406_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3406 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3406_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3406_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3407_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3407 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3407_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3407.selected { -} -#u3407_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3407_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3408_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3408 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3408_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3408.selected { -} -#u3408_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3408_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3409_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3409 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3409_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3409.selected { -} -#u3409_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3409_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3410_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3410 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3410_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3410.selected { -} -#u3410_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3410_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3404_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3411 { - position:absolute; - left:0px; - top:345px; -} -#u3411_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3411_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3412_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3412 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3412_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3412_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3411_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3411_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3413_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3413 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3413_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3413_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3414_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3414 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3414_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3414.selected { -} -#u3414_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3414_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3415_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3415 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3415_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3415.selected { -} -#u3415_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3415_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3416_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3416 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3416_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3416.selected { -} -#u3416_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3416_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3411_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u3417 { - position:absolute; - left:0px; - top:70px; -} -#u3417_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3417_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3418_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3418 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3418_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3418_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3417_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u3417_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3419_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3419 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3419_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3419_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3420_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3420 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3420_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3420.selected { -} -#u3420_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3420_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3421_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3421 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3421_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3421.selected { -} -#u3421_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3421_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3422_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3422 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3422_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3422.selected { -} -#u3422_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3422_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3423_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3423 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3423_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3423.selected { -} -#u3423_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3423_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3424_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3424 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3424_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3424.selected { -} -#u3424_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3424_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3425_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3425 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3425_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3425.selected { -} -#u3425_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3425_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3426_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3426 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3426_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3426.selected { -} -#u3426_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3426_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3427_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3427 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3427_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3427.selected { -} -#u3427_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3427_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3428_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3428 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3428_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3428.selected { -} -#u3428_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3428_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u3417_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u3429 { - position:absolute; - left:0px; - top:125px; -} -#u3429_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3429_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3430_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3430 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3430_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3430_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3429_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3429_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3431_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3431 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u3431_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3431_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3432_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3432 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u3432_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3432.selected { -} -#u3432_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3432_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3433_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3433 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3433_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3433.selected { -} -#u3433_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3433_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3434_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3434 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u3434_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3434.selected { -} -#u3434_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3434_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3435_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3435 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u3435_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3435.selected { -} -#u3435_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3435_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3436_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3436 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u3436_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3436.selected { -} -#u3436_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3436_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3437_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3437 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u3437_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3437.selected { -} -#u3437_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3437_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3438_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3438 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u3438_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3438.selected { -} -#u3438_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3438_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3439_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3439 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u3439_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3439.selected { -} -#u3439_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3439_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3429_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u3440 { - position:absolute; - left:0px; - top:290px; -} -#u3440_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3440_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3441_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3441 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3441_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3441_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3440_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u3440_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3442_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3442 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3442_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3442_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3443_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3443 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3443_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3443.selected { -} -#u3443_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3443_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3444_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3444 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3444_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3444.selected { -} -#u3444_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3444_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3440_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u3445 { - position:absolute; - left:0px; - top:400px; -} -#u3445_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3445_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3446_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3446 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3446_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3446_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3445_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u3445_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3447_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3447 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3447_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3447_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3448_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3448 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3448_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3448.selected { -} -#u3448_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3448_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3449_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3449 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3449_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3449.selected { -} -#u3449_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3449_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3450_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3450 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3450_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3450.selected { -} -#u3450_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3450_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3451_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3451 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3451_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3451.selected { -} -#u3451_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3451_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3452_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3452 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3452_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3452.selected { -} -#u3452_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3452_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3453_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3453 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3453_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3453.selected { -} -#u3453_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3453_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3445_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u3454 { - position:absolute; - left:0px; - top:455px; -} -#u3454_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3454_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3455_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3455 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3455_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3454_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3454_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3456_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3456 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3456_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3457_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3457 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3457_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3457.selected { -} -#u3457_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3457_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3458_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3458 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3458_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3458.selected { -} -#u3458_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3458_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3459_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3459 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3459_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3459.selected { -} -#u3459_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3459_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3460_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3460 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3460_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3460.selected { -} -#u3460_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3460_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3461_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3461 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3461_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3461.selected { -} -#u3461_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3461_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3462_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3462 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3462_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3462.selected { -} -#u3462_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3462_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3463_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3463 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3463_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3463.selected { -} -#u3463_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3463_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3464_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3464 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3464_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3464.selected { -} -#u3464_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3464_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3465 { - position:absolute; - left:0px; - top:510px; -} -#u3465_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3465_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3466_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3466 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3466_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3465_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3465_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3467_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3467 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3467_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3468_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3468 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3468_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3468.selected { -} -#u3468_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3468_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3469_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3469 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3469_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3469.selected { -} -#u3469_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3469_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3470_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3470 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3470_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3470.selected { -} -#u3470_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3470_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_报表结果/data.js b/public/files/_2_报表结果/data.js deleted file mode 100644 index b37d7fc..0000000 --- a/public/files/_2_报表结果/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="

      Reports

      ",hE="

      Отчеты

      ",hF="6e04fbf50e9445d1a7a6ae3da1977530",hG="报告任务",hH="在 当前窗口 打开 /2/报告任务",hI="_2_报告任务.html",hJ="

      Report Tasks

      ",hK="

      Отчет Задачи

      ",hL="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hM="系统",hN=400,hO="83946562f27346a4a97f498a2f32bbf7",hP="c7566dc5ceae4d1ba17bd159636d896f",hQ="设置 系统 为 展开 show if hidden push/pull widgets 向下",hR="

      System

      ",hS="

      Система

      ",hT="d913d84a32c149f3a1260a92cbd43605",hU="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hV="设置 系统 为 收起 push/pull widgets 向下",hW="578dad9d6baf4ee69400878858762724",hX="角色管理",hY="在 当前窗口 打开 /2/角色管理",hZ="_2_角色管理.html",ia="

      Role Mangement

      ",ib="

      Управление Ролями

      ",ic="3d533d005742479cbd215b234aad09bb",id="用户管理",ie="在 当前窗口 打开 /2/用户管理",ig="_2_用户管理.html",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="7d2b7877a712490ca9d60b933325d8af",jU="scriptId",jV="u3471",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u3472",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u3473",ka="287161d6553d482dbb471a03f2b96d8d",kb="u3474",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u3475",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u3476",kg="0d264741477549399c9586a19d72c94c",kh="u3477",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u3478",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u3479",km="b03fa42397b840c7be9ac06da5567aa7",kn="u3480",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u3481",kq="6d999717f47c45b488270f1138ce00fb",kr="u3482",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u3483",ku="188a2dff382a42948e36596c4dd80f3d",kv="u3484",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u3485",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u3486",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u3487",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u3488",kE="07e9a718986f4456b84348343c870c0a",kF="u3489",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u3490",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u3491",kK="5098ad65c8f7492c9069f4a964723317",kL="u3492",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u3493",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u3494",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u3495",kS="07c280170e8b49c58503de5d9d1deda7",kT="u3496",kU="5c5a7e1a78634167985368e626cb44a6",kV="u3497",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u3498",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u3499",la="7cf8bc9379a74906b78129a7c79b5204",lb="u3500",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u3501",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u3502",lg="6e3656fad051471985367dfcecd7efd8",lh="u3503",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u3504",lk="42c554bcc055434ba48c579ee60b70ef",ll="u3505",lm="620d6328a97942419ae02f8789b911e2",ln="u3506",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u3507",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u3508",ls="cd656119d92145688ed53bf413ed4959",lt="u3509",lu="91def88484484083927f2283fe2dcc27",lv="u3510",lw="4b13957666154ecda2d5e2f7d636101e",lx="u3511",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u3512",lA="0cc50ffea147485e97d2d81166a21165",lB="u3513",lC="0cde056acd5f48828ad1f872add05f25",lD="u3514",lE="b669d535c7094350a886008e7cef4af0",lF="u3515",lG="37e0281ff7f44a01940207aacde15d1d",lH="u3516",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u3517",lK="5b670361476844109058ee67e9e585d2",lL="u3518",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u3519",lO="bbc6891697924708b5a6119bbb896bab",lP="u3520",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u3521",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u3522",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u3523",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u3524",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u3525",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u3526",mc="578dad9d6baf4ee69400878858762724",md="u3527",me="3d533d005742479cbd215b234aad09bb",mf="u3528",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u3529",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u3530",mk="1759f58887a6423abd3758fd1891a06d",ml="u3531",mm="6b1a1692e80948e5975c69cb51886278",mn="u3532",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u3533",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u3534",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u3535",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u3536",mw="541c758399da4f399c0fc58ea01feee9",mx="u3537",my="e1c46db03da5412eb06e119b69b54c88",mz="u3538",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u3539",mC="6d744837c12d4451b03523db77f0de4b",mD="u3540",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u3541",mG="2066d8079c694bb3971a40cbf3279606",mH="u3542",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u3543",mK="77d1855694f640579e26ec450555a8a3",mL="u3544",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u3545",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u3546",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u3547",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u3548",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u3549"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_报表结果/styles.css b/public/files/_2_报表结果/styles.css deleted file mode 100644 index 5ef4fc4..0000000 --- a/public/files/_2_报表结果/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u3472_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3472 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u3472_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3473_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3473 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3473_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u3474_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u3474 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u3474_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3475_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3475 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u3475_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3476 { - position:absolute; - left:0px; - top:235px; -} -#u3476_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3476_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3477_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3477 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3477_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3477_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3476_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3476_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3478_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3478 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3478_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3478_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3479_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3479 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3479_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3479.selected { -} -#u3479_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3479_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3480_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3480 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3480_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3480.selected { -} -#u3480_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3480_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3481_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3481 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3481_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3481.selected { -} -#u3481_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3481_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3482_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3482 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3482_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3482.selected { -} -#u3482_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3482_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3483 { - position:absolute; - left:0px; - top:180px; -} -#u3483_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3483_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3484_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3484 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3484_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3484_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3483_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3483_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3485_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3485 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3485_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3485_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3486_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3486 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3486_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3486.selected { -} -#u3486_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3486_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3487_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3487 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3487_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3487.selected { -} -#u3487_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3487_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3488_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3488 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3488_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3488.selected { -} -#u3488_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3488_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3489_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3489 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3489_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3489.selected { -} -#u3489_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3489_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3483_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3490 { - position:absolute; - left:0px; - top:345px; -} -#u3490_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3490_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3491_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3491 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3491_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3491_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3490_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3490_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3492_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3492 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3492_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3492_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3493_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3493 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3493_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3493.selected { -} -#u3493_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3493_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3494_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3494 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3494_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3494.selected { -} -#u3494_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3494_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3495_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3495 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3495_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3495.selected { -} -#u3495_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3495_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3490_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u3496 { - position:absolute; - left:0px; - top:70px; -} -#u3496_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3496_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3497_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3497 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3497_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3497_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3496_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u3496_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3498_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3498 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3498_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3498_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3499_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3499 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3499_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3499.selected { -} -#u3499_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3499_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3500_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3500 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3500_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3500.selected { -} -#u3500_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3500_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3501_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3501 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3501_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3501.selected { -} -#u3501_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3501_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3502_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3502 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3502_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3502.selected { -} -#u3502_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3502_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3503_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3503 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3503_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3503.selected { -} -#u3503_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3503_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3504_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3504 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3504_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3504.selected { -} -#u3504_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3504_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3505_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3505 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3505_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3505.selected { -} -#u3505_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3505_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3506_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3506 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3506_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3506.selected { -} -#u3506_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3506_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3507_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3507 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3507_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3507.selected { -} -#u3507_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3507_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u3496_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u3508 { - position:absolute; - left:0px; - top:125px; -} -#u3508_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3508_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3509_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3509 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3509_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3509_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3508_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3508_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3510_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3510 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u3510_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3510_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3511_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3511 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u3511_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3511.selected { -} -#u3511_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3511_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3512_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3512 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3512_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3512.selected { -} -#u3512_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3512_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3513_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3513 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u3513_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3513.selected { -} -#u3513_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3513_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3514_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3514 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u3514_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3514.selected { -} -#u3514_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3514_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3515_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3515 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u3515_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3515.selected { -} -#u3515_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3515_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3516_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3516 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u3516_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3516.selected { -} -#u3516_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3516_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3517_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3517 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u3517_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3517.selected { -} -#u3517_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3517_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3518_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3518 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u3518_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3518.selected { -} -#u3518_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3518_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3508_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u3519 { - position:absolute; - left:0px; - top:290px; -} -#u3519_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3519_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3520_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3520 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3520_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3520_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3519_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u3519_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3521_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3521 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3521_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3521_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3522_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3522 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3522_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3522.selected { -} -#u3522_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3522_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3523_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3523 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3523_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3523.selected { -} -#u3523_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3523_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3519_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u3524 { - position:absolute; - left:0px; - top:400px; -} -#u3524_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3524_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3525_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3525 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3525_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3525_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3524_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u3524_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3526_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3526 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3526_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3526_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3527_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3527 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3527_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3527.selected { -} -#u3527_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3527_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3528_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3528 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3528_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3528.selected { -} -#u3528_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3528_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3529_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3529 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3529_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3529.selected { -} -#u3529_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3529_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3530_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3530 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3530_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3530.selected { -} -#u3530_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3530_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3531_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3531 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3531_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3531.selected { -} -#u3531_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3531_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3532_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3532 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3532_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3532.selected { -} -#u3532_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3532_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3524_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u3533 { - position:absolute; - left:0px; - top:455px; -} -#u3533_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3533_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3534_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3534 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3534_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3533_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3533_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3535_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3535 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3535_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3536_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3536 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3536_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3536.selected { -} -#u3536_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3536_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3537_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3537 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3537_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3537.selected { -} -#u3537_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3537_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3538_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3538 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3538_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3538.selected { -} -#u3538_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3538_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3539_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3539 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3539_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3539.selected { -} -#u3539_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3539_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3540_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3540 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3540_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3540.selected { -} -#u3540_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3540_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3541_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3541 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3541_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3541.selected { -} -#u3541_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3541_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3542_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3542 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3542_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3542.selected { -} -#u3542_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3542_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3543_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3543 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3543_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3543.selected { -} -#u3543_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3543_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3544 { - position:absolute; - left:0px; - top:510px; -} -#u3544_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3544_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3545_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3545 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3545_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3544_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3544_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3546_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3546 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3546_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3547_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3547 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3547_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3547.selected { -} -#u3547_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3547_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3548_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3548 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3548_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3548.selected { -} -#u3548_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3548_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3549_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3549 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3549_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3549.selected { -} -#u3549_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3549_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_接口/data.js b/public/files/_2_接口/data.js deleted file mode 100644 index 6a0e7de..0000000 --- a/public/files/_2_接口/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="0c0313b775654b599bce84d2b02d0549",jU="scriptId",jV="u4735",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4736",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4737",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4738",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4739",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4740",kg="0d264741477549399c9586a19d72c94c",kh="u4741",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4742",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4743",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4744",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4745",kq="6d999717f47c45b488270f1138ce00fb",kr="u4746",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4747",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4748",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4749",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4750",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4751",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4752",kE="07e9a718986f4456b84348343c870c0a",kF="u4753",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4754",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4755",kK="5098ad65c8f7492c9069f4a964723317",kL="u4756",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4757",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4758",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4759",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4760",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4761",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4762",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4763",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4764",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4765",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4766",lg="6e3656fad051471985367dfcecd7efd8",lh="u4767",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4768",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4769",lm="620d6328a97942419ae02f8789b911e2",ln="u4770",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4771",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4772",ls="cd656119d92145688ed53bf413ed4959",lt="u4773",lu="91def88484484083927f2283fe2dcc27",lv="u4774",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4775",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4776",lA="0cc50ffea147485e97d2d81166a21165",lB="u4777",lC="0cde056acd5f48828ad1f872add05f25",lD="u4778",lE="b669d535c7094350a886008e7cef4af0",lF="u4779",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4780",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4781",lK="5b670361476844109058ee67e9e585d2",lL="u4782",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4783",lO="bbc6891697924708b5a6119bbb896bab",lP="u4784",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4785",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4786",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4787",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4788",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4789",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4790",mc="578dad9d6baf4ee69400878858762724",md="u4791",me="3d533d005742479cbd215b234aad09bb",mf="u4792",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4793",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4794",mk="1759f58887a6423abd3758fd1891a06d",ml="u4795",mm="6b1a1692e80948e5975c69cb51886278",mn="u4796",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4797",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4798",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4799",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4800",mw="541c758399da4f399c0fc58ea01feee9",mx="u4801",my="e1c46db03da5412eb06e119b69b54c88",mz="u4802",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4803",mC="6d744837c12d4451b03523db77f0de4b",mD="u4804",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4805",mG="2066d8079c694bb3971a40cbf3279606",mH="u4806",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4807",mK="77d1855694f640579e26ec450555a8a3",mL="u4808",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4809",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4810",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4811",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4812",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4813"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_接口/styles.css b/public/files/_2_接口/styles.css deleted file mode 100644 index b8e1bc9..0000000 --- a/public/files/_2_接口/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4736_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4736 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4736_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4737_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4737 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4737_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4738_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4738 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4738_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4739_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4739 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4739_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4740 { - position:absolute; - left:0px; - top:235px; -} -#u4740_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4740_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4741_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4741 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4741_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4741_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4740_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4740_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4742_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4742 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4742_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4742_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4743_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4743 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4743_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4743.selected { -} -#u4743_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4743_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4744_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4744 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4744_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4744.selected { -} -#u4744_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4744_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4745_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4745 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4745_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4745.selected { -} -#u4745_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4745_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4746_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4746 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4746_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4746.selected { -} -#u4746_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4746_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4747 { - position:absolute; - left:0px; - top:180px; -} -#u4747_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4747_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4748_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4748 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4748_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4748_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4747_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4747_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4749_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4749 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4749_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4749_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4750_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4750 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4750_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4750.selected { -} -#u4750_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4750_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4751_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4751 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4751_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4751.selected { -} -#u4751_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4751_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4752_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4752 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4752_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4752.selected { -} -#u4752_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4752_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4753_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4753 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4753_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4753.selected { -} -#u4753_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4753_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4747_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4754 { - position:absolute; - left:0px; - top:345px; -} -#u4754_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4754_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4755_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4755 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4755_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4755_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4754_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4754_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4756_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4756 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4756_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4756_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4757_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4757 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4757_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4757.selected { -} -#u4757_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4757_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4758_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4758 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4758_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4758.selected { -} -#u4758_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4758_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4759_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4759 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4759_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4759.selected { -} -#u4759_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4759_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4754_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4760 { - position:absolute; - left:0px; - top:70px; -} -#u4760_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4760_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4761_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4761 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4761_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4761_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4760_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4760_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4762_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4762 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4762_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4762_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4763_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4763 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4763_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4763.selected { -} -#u4763_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4763_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4764_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4764 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4764_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4764.selected { -} -#u4764_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4764_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4765_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4765 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4765_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4765.selected { -} -#u4765_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4765_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4766_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4766 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4766_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4766.selected { -} -#u4766_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4766_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4767_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4767 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4767_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4767.selected { -} -#u4767_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4767_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4768_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4768 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4768_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4768.selected { -} -#u4768_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4768_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4769_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4769 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4769_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4769.selected { -} -#u4769_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4769_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4770_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4770 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4770_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4770.selected { -} -#u4770_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4770_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4771_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4771 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4771_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4771.selected { -} -#u4771_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4771_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4760_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4772 { - position:absolute; - left:0px; - top:125px; -} -#u4772_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4772_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4773_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4773 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4773_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4773_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4772_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4772_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4774_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4774 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4774_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4774_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4775_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4775 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4775_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4775.selected { -} -#u4775_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4775_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4776_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4776 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4776_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4776.selected { -} -#u4776_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4776_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4777_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4777 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4777_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4777.selected { -} -#u4777_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4777_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4778_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4778 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4778_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4778.selected { -} -#u4778_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4778_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4779_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4779 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4779_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4779.selected { -} -#u4779_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4779_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4780_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4780 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4780_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4780.selected { -} -#u4780_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4780_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4781_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4781 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4781_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4781.selected { -} -#u4781_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4781_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4782_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4782 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4782_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4782.selected { -} -#u4782_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4782_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4772_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4783 { - position:absolute; - left:0px; - top:290px; -} -#u4783_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4783_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4784_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4784 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4784_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4784_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4783_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4783_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4785_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4785 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4785_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4785_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4786_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4786 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4786_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4786.selected { -} -#u4786_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4786_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4787_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4787 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4787_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4787.selected { -} -#u4787_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4787_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4783_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4788 { - position:absolute; - left:0px; - top:400px; -} -#u4788_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4788_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4789_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4789 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4789_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4789_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4788_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4788_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4790_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4790 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4790_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4790_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4791_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4791 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4791_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4791.selected { -} -#u4791_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4791_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4792_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4792 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4792_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4792.selected { -} -#u4792_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4792_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4793_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4793 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4793_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4793.selected { -} -#u4793_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4793_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4794_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4794 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4794_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4794.selected { -} -#u4794_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4794_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4795_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4795 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4795_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4795.selected { -} -#u4795_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4795_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4796_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4796 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4796_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4796.selected { -} -#u4796_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4796_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4788_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4797 { - position:absolute; - left:0px; - top:455px; -} -#u4797_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4797_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4798_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4798 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4798_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4797_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4797_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4799_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4799 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4799_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4800_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4800 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4800_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4800.selected { -} -#u4800_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4800_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4801_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4801 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4801_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4801.selected { -} -#u4801_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4801_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4802_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4802 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4802_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4802.selected { -} -#u4802_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4802_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4803_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4803 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4803_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4803.selected { -} -#u4803_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4803_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4804_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4804 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4804_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4804.selected { -} -#u4804_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4804_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4805_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4805 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4805_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4805.selected { -} -#u4805_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4805_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4806_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4806 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4806_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4806.selected { -} -#u4806_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4806_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4807_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4807 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4807_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4807.selected { -} -#u4807_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4807_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4808 { - position:absolute; - left:0px; - top:510px; -} -#u4808_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4808_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4809_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4809 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4809_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4808_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4808_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4810_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4810 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4810_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4811_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4811 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4811_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4811.selected { -} -#u4811_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4811_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4812_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4812 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4812_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4812.selected { -} -#u4812_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4812_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4813_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4813 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4813_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4813.selected { -} -#u4813_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4813_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_数据包捕获/data.js b/public/files/_2_数据包捕获/data.js deleted file mode 100644 index 08ab433..0000000 --- a/public/files/_2_数据包捕获/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="_2_接口.html",jm="f5b83fbcd88a4567851a800fd5a157af",jn="固件",jo="在 当前窗口 打开 /2/固件",jp="_2_固件.html",jq="2066d8079c694bb3971a40cbf3279606",jr="备份&恢复",js="在 当前窗口 打开 /2/备份&恢复",jt="_2_备份_恢复.html",ju="8f6ffa5a96a14d79ae7201eb8bbff6b5",jv="数据包捕获",jw="在 当前窗口 打开 /2/数据包捕获",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="f77b87687980446c833c91988c2e81e4",jU="scriptId",jV="u5051",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u5052",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u5053",ka="287161d6553d482dbb471a03f2b96d8d",kb="u5054",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u5055",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u5056",kg="0d264741477549399c9586a19d72c94c",kh="u5057",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u5058",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u5059",km="b03fa42397b840c7be9ac06da5567aa7",kn="u5060",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u5061",kq="6d999717f47c45b488270f1138ce00fb",kr="u5062",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u5063",ku="188a2dff382a42948e36596c4dd80f3d",kv="u5064",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u5065",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u5066",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u5067",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u5068",kE="07e9a718986f4456b84348343c870c0a",kF="u5069",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u5070",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u5071",kK="5098ad65c8f7492c9069f4a964723317",kL="u5072",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u5073",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u5074",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u5075",kS="07c280170e8b49c58503de5d9d1deda7",kT="u5076",kU="5c5a7e1a78634167985368e626cb44a6",kV="u5077",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u5078",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u5079",la="7cf8bc9379a74906b78129a7c79b5204",lb="u5080",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u5081",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u5082",lg="6e3656fad051471985367dfcecd7efd8",lh="u5083",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u5084",lk="42c554bcc055434ba48c579ee60b70ef",ll="u5085",lm="620d6328a97942419ae02f8789b911e2",ln="u5086",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u5087",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u5088",ls="cd656119d92145688ed53bf413ed4959",lt="u5089",lu="91def88484484083927f2283fe2dcc27",lv="u5090",lw="4b13957666154ecda2d5e2f7d636101e",lx="u5091",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u5092",lA="0cc50ffea147485e97d2d81166a21165",lB="u5093",lC="0cde056acd5f48828ad1f872add05f25",lD="u5094",lE="b669d535c7094350a886008e7cef4af0",lF="u5095",lG="37e0281ff7f44a01940207aacde15d1d",lH="u5096",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u5097",lK="5b670361476844109058ee67e9e585d2",lL="u5098",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u5099",lO="bbc6891697924708b5a6119bbb896bab",lP="u5100",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u5101",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u5102",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u5103",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u5104",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u5105",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u5106",mc="578dad9d6baf4ee69400878858762724",md="u5107",me="3d533d005742479cbd215b234aad09bb",mf="u5108",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u5109",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u5110",mk="1759f58887a6423abd3758fd1891a06d",ml="u5111",mm="6b1a1692e80948e5975c69cb51886278",mn="u5112",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u5113",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u5114",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u5115",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u5116",mw="541c758399da4f399c0fc58ea01feee9",mx="u5117",my="e1c46db03da5412eb06e119b69b54c88",mz="u5118",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u5119",mC="6d744837c12d4451b03523db77f0de4b",mD="u5120",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u5121",mG="2066d8079c694bb3971a40cbf3279606",mH="u5122",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u5123",mK="77d1855694f640579e26ec450555a8a3",mL="u5124",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u5125",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u5126",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u5127",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u5128",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u5129"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_数据包捕获/styles.css b/public/files/_2_数据包捕获/styles.css deleted file mode 100644 index c3f895a..0000000 --- a/public/files/_2_数据包捕获/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u5052_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5052 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u5052_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5053_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5053 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5053_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u5054_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u5054 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u5054_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5055_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5055 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u5055_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5056 { - position:absolute; - left:0px; - top:235px; -} -#u5056_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5056_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5057_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5057 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5057_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5057_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5056_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5056_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5058_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5058 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5058_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5058_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5059_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5059 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5059_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5059.selected { -} -#u5059_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5059_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5060_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5060 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5060_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5060.selected { -} -#u5060_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5060_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5061_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5061 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5061_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5061.selected { -} -#u5061_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5061_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5062_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5062 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5062_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5062.selected { -} -#u5062_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5062_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5063 { - position:absolute; - left:0px; - top:180px; -} -#u5063_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5063_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5064_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5064 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5064_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5064_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5063_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5063_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5065_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5065 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5065_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5065_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5066_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5066 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5066_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5066.selected { -} -#u5066_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5066_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5067_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5067 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5067_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5067.selected { -} -#u5067_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5067_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5068_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5068 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5068_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5068.selected { -} -#u5068_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5068_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5069_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5069 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5069_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5069.selected { -} -#u5069_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5069_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5063_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5070 { - position:absolute; - left:0px; - top:345px; -} -#u5070_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5070_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5071_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5071 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5071_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5071_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5070_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5070_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5072_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5072 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5072_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5072_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5073_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5073 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5073_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5073.selected { -} -#u5073_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5073_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5074_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5074 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5074_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5074.selected { -} -#u5074_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5074_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5075_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5075 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5075_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5075.selected { -} -#u5075_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5075_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5070_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u5076 { - position:absolute; - left:0px; - top:70px; -} -#u5076_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5076_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5077_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5077 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5077_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5077_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5076_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u5076_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5078_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5078 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5078_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5078_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5079_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5079 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5079_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5079.selected { -} -#u5079_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5079_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5080_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5080 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5080_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5080.selected { -} -#u5080_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5080_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5081_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5081 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5081_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5081.selected { -} -#u5081_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5081_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5082_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5082 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5082_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5082.selected { -} -#u5082_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5082_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5083_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5083 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5083_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5083.selected { -} -#u5083_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5083_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5084_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5084 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5084_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5084.selected { -} -#u5084_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5084_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5085_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5085 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5085_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5085.selected { -} -#u5085_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5085_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5086_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5086 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5086_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5086.selected { -} -#u5086_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5086_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5087_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5087 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5087_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5087.selected { -} -#u5087_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5087_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u5076_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u5088 { - position:absolute; - left:0px; - top:125px; -} -#u5088_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5088_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5089_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5089 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5089_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5089_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5088_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5088_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5090_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5090 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u5090_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5090_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5091_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5091 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u5091_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5091.selected { -} -#u5091_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5091_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5092_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5092 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5092_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5092.selected { -} -#u5092_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5092_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5093_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5093 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u5093_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5093.selected { -} -#u5093_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5093_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5094_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5094 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u5094_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5094.selected { -} -#u5094_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5094_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5095_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5095 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u5095_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5095.selected { -} -#u5095_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5095_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5096_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5096 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u5096_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5096.selected { -} -#u5096_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5096_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5097_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5097 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u5097_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5097.selected { -} -#u5097_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5097_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5098_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5098 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u5098_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5098.selected { -} -#u5098_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5098_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5088_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u5099 { - position:absolute; - left:0px; - top:290px; -} -#u5099_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5099_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5100_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5100 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5100_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5100_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5099_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u5099_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5101_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5101 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5101_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5101_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5102_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5102 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5102_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5102.selected { -} -#u5102_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5102_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5103_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5103 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5103_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5103.selected { -} -#u5103_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5103_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5099_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u5104 { - position:absolute; - left:0px; - top:400px; -} -#u5104_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5104_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5105_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5105 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5105_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5105_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5104_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u5104_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5106_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5106 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5106_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5106_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5107_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5107 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5107_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5107.selected { -} -#u5107_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5107_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5108_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5108 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5108_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5108.selected { -} -#u5108_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5108_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5109_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5109 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5109_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5109.selected { -} -#u5109_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5109_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5110_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5110 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5110_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5110.selected { -} -#u5110_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5110_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5111_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5111 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5111_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5111.selected { -} -#u5111_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5111_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5112_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5112 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5112_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5112.selected { -} -#u5112_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5112_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5104_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u5113 { - position:absolute; - left:0px; - top:455px; -} -#u5113_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5113_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5114_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5114 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5114_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5113_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5113_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5115_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5115 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5115_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5116_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5116 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5116_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5116.selected { -} -#u5116_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5116_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5117_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5117 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5117_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5117.selected { -} -#u5117_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5117_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5118_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5118 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5118_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5118.selected { -} -#u5118_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5118_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5119_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5119 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5119_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5119.selected { -} -#u5119_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5119_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5120_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5120 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5120_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5120.selected { -} -#u5120_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5120_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5121_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5121 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5121_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5121.selected { -} -#u5121_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5121_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5122_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5122 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5122_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5122.selected { -} -#u5122_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5122_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5123_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5123 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5123_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5123.selected { -} -#u5123_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5123_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5124 { - position:absolute; - left:0px; - top:510px; -} -#u5124_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5124_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5125_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5125 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5125_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5124_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5124_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5126_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5126 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5126_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5127_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5127 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5127_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5127.selected { -} -#u5127_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5127_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5128_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5128 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5128_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5128.selected { -} -#u5128_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5128_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5129_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5129 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5129_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5129.selected { -} -#u5129_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5129_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_用户管理/data.js b/public/files/_2_用户管理/data.js deleted file mode 100644 index ea278d6..0000000 --- a/public/files/_2_用户管理/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="fea462d67dee4639aac3ee7d5495efdf",jU="scriptId",jV="u3945",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u3946",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u3947",ka="287161d6553d482dbb471a03f2b96d8d",kb="u3948",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u3949",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u3950",kg="0d264741477549399c9586a19d72c94c",kh="u3951",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u3952",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u3953",km="b03fa42397b840c7be9ac06da5567aa7",kn="u3954",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u3955",kq="6d999717f47c45b488270f1138ce00fb",kr="u3956",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u3957",ku="188a2dff382a42948e36596c4dd80f3d",kv="u3958",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u3959",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u3960",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u3961",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u3962",kE="07e9a718986f4456b84348343c870c0a",kF="u3963",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u3964",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u3965",kK="5098ad65c8f7492c9069f4a964723317",kL="u3966",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u3967",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u3968",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u3969",kS="07c280170e8b49c58503de5d9d1deda7",kT="u3970",kU="5c5a7e1a78634167985368e626cb44a6",kV="u3971",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u3972",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u3973",la="7cf8bc9379a74906b78129a7c79b5204",lb="u3974",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u3975",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u3976",lg="6e3656fad051471985367dfcecd7efd8",lh="u3977",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u3978",lk="42c554bcc055434ba48c579ee60b70ef",ll="u3979",lm="620d6328a97942419ae02f8789b911e2",ln="u3980",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u3981",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u3982",ls="cd656119d92145688ed53bf413ed4959",lt="u3983",lu="91def88484484083927f2283fe2dcc27",lv="u3984",lw="4b13957666154ecda2d5e2f7d636101e",lx="u3985",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u3986",lA="0cc50ffea147485e97d2d81166a21165",lB="u3987",lC="0cde056acd5f48828ad1f872add05f25",lD="u3988",lE="b669d535c7094350a886008e7cef4af0",lF="u3989",lG="37e0281ff7f44a01940207aacde15d1d",lH="u3990",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u3991",lK="5b670361476844109058ee67e9e585d2",lL="u3992",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u3993",lO="bbc6891697924708b5a6119bbb896bab",lP="u3994",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u3995",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u3996",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u3997",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u3998",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u3999",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4000",mc="578dad9d6baf4ee69400878858762724",md="u4001",me="3d533d005742479cbd215b234aad09bb",mf="u4002",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4003",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4004",mk="1759f58887a6423abd3758fd1891a06d",ml="u4005",mm="6b1a1692e80948e5975c69cb51886278",mn="u4006",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4007",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4008",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4009",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4010",mw="541c758399da4f399c0fc58ea01feee9",mx="u4011",my="e1c46db03da5412eb06e119b69b54c88",mz="u4012",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4013",mC="6d744837c12d4451b03523db77f0de4b",mD="u4014",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4015",mG="2066d8079c694bb3971a40cbf3279606",mH="u4016",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4017",mK="77d1855694f640579e26ec450555a8a3",mL="u4018",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4019",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4020",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4021",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4022",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4023"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_用户管理/styles.css b/public/files/_2_用户管理/styles.css deleted file mode 100644 index 5e2f809..0000000 --- a/public/files/_2_用户管理/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u3946_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3946 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u3946_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3947_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3947 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u3947_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u3948_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u3948 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u3948_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3949_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3949 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u3949_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u3950 { - position:absolute; - left:0px; - top:235px; -} -#u3950_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3950_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3951_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3951 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3951_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3951_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3950_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3950_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3952_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3952 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3952_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3952_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3953_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3953 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3953_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3953.selected { -} -#u3953_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3953_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3954_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3954 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3954_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3954.selected { -} -#u3954_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3954_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3955_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3955 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3955_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3955.selected { -} -#u3955_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3955_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3956_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3956 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3956_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3956.selected { -} -#u3956_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3956_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3957 { - position:absolute; - left:0px; - top:180px; -} -#u3957_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3957_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3958_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3958 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3958_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3958_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3957_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u3957_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3959_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3959 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3959_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3959_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3960_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3960 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3960_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3960.selected { -} -#u3960_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3960_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3961_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3961 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3961_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3961.selected { -} -#u3961_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3961_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3962_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3962 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3962_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3962.selected { -} -#u3962_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3962_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3963_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3963 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3963_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3963.selected { -} -#u3963_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3963_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3957_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3964 { - position:absolute; - left:0px; - top:345px; -} -#u3964_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3964_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3965_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3965 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3965_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3965_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3964_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u3964_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3966_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3966 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3966_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3966_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3967_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3967 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3967_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3967.selected { -} -#u3967_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3967_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3968_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3968 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3968_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3968.selected { -} -#u3968_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3968_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3969_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3969 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3969_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3969.selected { -} -#u3969_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3969_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3964_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u3970 { - position:absolute; - left:0px; - top:70px; -} -#u3970_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3970_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3971_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3971 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3971_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3971_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3970_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u3970_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3972_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3972 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3972_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3972_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3973_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3973 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3973_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3973.selected { -} -#u3973_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3973_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3974_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3974 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3974_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3974.selected { -} -#u3974_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3974_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3975_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3975 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3975_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3975.selected { -} -#u3975_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3975_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3976_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3976 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3976_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3976.selected { -} -#u3976_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3976_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3977_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3977 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3977_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3977.selected { -} -#u3977_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3977_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3978_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3978 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3978_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3978.selected { -} -#u3978_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3978_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3979_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3979 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3979_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3979.selected { -} -#u3979_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3979_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3980_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3980 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3980_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3980.selected { -} -#u3980_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3980_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3981_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3981 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3981_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3981.selected { -} -#u3981_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3981_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u3970_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u3982 { - position:absolute; - left:0px; - top:125px; -} -#u3982_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3982_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3983_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3983 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3983_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3983_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3982_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u3982_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3984_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3984 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u3984_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3984_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3985_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3985 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u3985_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3985.selected { -} -#u3985_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3985_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3986_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3986 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3986_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3986.selected { -} -#u3986_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3986_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3987_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3987 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u3987_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3987.selected { -} -#u3987_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3987_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u3988_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3988 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u3988_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3988.selected { -} -#u3988_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3988_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u3989_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3989 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u3989_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3989.selected { -} -#u3989_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3989_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u3990_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3990 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u3990_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3990.selected { -} -#u3990_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3990_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3991_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3991 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u3991_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3991.selected { -} -#u3991_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3991_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u3992_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3992 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u3992_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u3992.selected { -} -#u3992_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3992_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u3982_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u3993 { - position:absolute; - left:0px; - top:290px; -} -#u3993_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3993_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3994_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3994 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3994_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3994_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3993_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u3993_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3995_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3995 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3995_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3995_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3996_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3996 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3996_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3996.selected { -} -#u3996_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3996_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u3997_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3997 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3997_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3997.selected { -} -#u3997_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3997_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u3993_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u3998 { - position:absolute; - left:0px; - top:400px; -} -#u3998_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u3998_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u3999_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3999 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u3999_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u3999_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u3998_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u3998_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4000_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4000 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4000_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4000_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4001_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4001 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4001_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4001.selected { -} -#u4001_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4001_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4002_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4002 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4002_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4002.selected { -} -#u4002_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4002_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4003_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4003 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4003_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4003.selected { -} -#u4003_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4003_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4004_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4004 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4004_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4004.selected { -} -#u4004_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4004_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4005_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4005 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4005_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4005.selected { -} -#u4005_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4005_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4006_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4006 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4006_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4006.selected { -} -#u4006_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4006_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u3998_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4007 { - position:absolute; - left:0px; - top:455px; -} -#u4007_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4007_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4008_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4008 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4008_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4007_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4007_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4009_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4009 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4009_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4010_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4010 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4010_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4010.selected { -} -#u4010_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4010_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4011_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4011 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4011_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4011.selected { -} -#u4011_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4011_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4012_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4012 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4012_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4012.selected { -} -#u4012_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4012_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4013_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4013 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4013_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4013.selected { -} -#u4013_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4013_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4014_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4014 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4014_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4014.selected { -} -#u4014_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4014_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4015_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4015 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4015_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4015.selected { -} -#u4015_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4015_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4016_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4016 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4016_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4016.selected { -} -#u4016_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4016_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4017_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4017 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4017_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4017.selected { -} -#u4017_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4017_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4018 { - position:absolute; - left:0px; - top:510px; -} -#u4018_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4018_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4019_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4019 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4019_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4018_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4018_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4020_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4020 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4020_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4021_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4021 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4021_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4021.selected { -} -#u4021_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4021_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4022_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4022 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4022_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4022.selected { -} -#u4022_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4022_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4023_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4023 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4023_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4023.selected { -} -#u4023_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4023_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_登录日志/data.js b/public/files/_2_登录日志/data.js deleted file mode 100644 index 5247300..0000000 --- a/public/files/_2_登录日志/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="b0d6f80c12a444e2958143e3d4b74876",jU="scriptId",jV="u4182",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4183",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4184",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4185",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4186",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4187",kg="0d264741477549399c9586a19d72c94c",kh="u4188",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4189",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4190",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4191",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4192",kq="6d999717f47c45b488270f1138ce00fb",kr="u4193",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4194",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4195",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4196",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4197",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4198",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4199",kE="07e9a718986f4456b84348343c870c0a",kF="u4200",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4201",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4202",kK="5098ad65c8f7492c9069f4a964723317",kL="u4203",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4204",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4205",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4206",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4207",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4208",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4209",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4210",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4211",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4212",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4213",lg="6e3656fad051471985367dfcecd7efd8",lh="u4214",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4215",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4216",lm="620d6328a97942419ae02f8789b911e2",ln="u4217",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4218",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4219",ls="cd656119d92145688ed53bf413ed4959",lt="u4220",lu="91def88484484083927f2283fe2dcc27",lv="u4221",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4222",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4223",lA="0cc50ffea147485e97d2d81166a21165",lB="u4224",lC="0cde056acd5f48828ad1f872add05f25",lD="u4225",lE="b669d535c7094350a886008e7cef4af0",lF="u4226",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4227",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4228",lK="5b670361476844109058ee67e9e585d2",lL="u4229",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4230",lO="bbc6891697924708b5a6119bbb896bab",lP="u4231",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4232",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4233",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4234",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4235",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4236",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4237",mc="578dad9d6baf4ee69400878858762724",md="u4238",me="3d533d005742479cbd215b234aad09bb",mf="u4239",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4240",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4241",mk="1759f58887a6423abd3758fd1891a06d",ml="u4242",mm="6b1a1692e80948e5975c69cb51886278",mn="u4243",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4244",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4245",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4246",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4247",mw="541c758399da4f399c0fc58ea01feee9",mx="u4248",my="e1c46db03da5412eb06e119b69b54c88",mz="u4249",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4250",mC="6d744837c12d4451b03523db77f0de4b",mD="u4251",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4252",mG="2066d8079c694bb3971a40cbf3279606",mH="u4253",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4254",mK="77d1855694f640579e26ec450555a8a3",mL="u4255",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4256",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4257",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4258",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4259",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4260"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_登录日志/styles.css b/public/files/_2_登录日志/styles.css deleted file mode 100644 index 747a1c8..0000000 --- a/public/files/_2_登录日志/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4183_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4183 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4183_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4184_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4184 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4184_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4185_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4185 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4185_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4186_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4186 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4186_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4187 { - position:absolute; - left:0px; - top:235px; -} -#u4187_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4187_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4188_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4188 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4188_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4188_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4187_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4187_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4189_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4189 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4189_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4189_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4190_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4190 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4190_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4190.selected { -} -#u4190_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4190_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4191_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4191 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4191_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4191.selected { -} -#u4191_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4191_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4192_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4192 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4192_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4192.selected { -} -#u4192_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4192_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4193_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4193 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4193_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4193.selected { -} -#u4193_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4193_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4194 { - position:absolute; - left:0px; - top:180px; -} -#u4194_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4194_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4195_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4195 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4195_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4195_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4194_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4194_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4196_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4196 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4196_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4196_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4197_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4197 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4197_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4197.selected { -} -#u4197_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4197_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4198_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4198 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4198_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4198.selected { -} -#u4198_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4198_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4199_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4199 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4199_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4199.selected { -} -#u4199_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4199_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4200_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4200 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4200_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4200.selected { -} -#u4200_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4200_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4194_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4201 { - position:absolute; - left:0px; - top:345px; -} -#u4201_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4201_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4202_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4202 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4202_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4202_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4201_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4201_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4203_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4203 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4203_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4203_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4204_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4204 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4204_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4204.selected { -} -#u4204_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4204_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4205_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4205 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4205_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4205.selected { -} -#u4205_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4205_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4206_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4206 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4206_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4206.selected { -} -#u4206_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4206_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4201_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4207 { - position:absolute; - left:0px; - top:70px; -} -#u4207_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4207_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4208_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4208 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4208_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4208_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4207_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4207_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4209_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4209 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4209_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4209_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4210_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4210 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4210_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4210.selected { -} -#u4210_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4210_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4211_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4211 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4211_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4211.selected { -} -#u4211_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4211_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4212_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4212 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4212_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4212.selected { -} -#u4212_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4212_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4213_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4213 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4213_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4213.selected { -} -#u4213_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4213_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4214_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4214 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4214_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4214.selected { -} -#u4214_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4214_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4215_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4215 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4215_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4215.selected { -} -#u4215_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4215_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4216_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4216 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4216_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4216.selected { -} -#u4216_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4216_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4217_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4217 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4217_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4217.selected { -} -#u4217_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4217_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4218_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4218 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4218_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4218.selected { -} -#u4218_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4218_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4207_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4219 { - position:absolute; - left:0px; - top:125px; -} -#u4219_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4219_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4220_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4220 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4220_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4220_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4219_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4219_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4221_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4221 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4221_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4221_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4222_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4222 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4222_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4222.selected { -} -#u4222_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4222_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4223_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4223 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4223_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4223.selected { -} -#u4223_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4223_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4224_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4224 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4224_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4224.selected { -} -#u4224_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4224_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4225_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4225 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4225_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4225.selected { -} -#u4225_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4225_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4226_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4226 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4226_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4226.selected { -} -#u4226_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4226_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4227_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4227 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4227_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4227.selected { -} -#u4227_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4227_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4228_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4228 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4228_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4228.selected { -} -#u4228_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4228_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4229_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4229 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4229_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4229.selected { -} -#u4229_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4229_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4219_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4230 { - position:absolute; - left:0px; - top:290px; -} -#u4230_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4230_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4231_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4231 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4231_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4231_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4230_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4230_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4232_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4232 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4232_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4232_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4233_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4233 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4233_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4233.selected { -} -#u4233_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4233_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4234_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4234 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4234_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4234.selected { -} -#u4234_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4234_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4230_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4235 { - position:absolute; - left:0px; - top:400px; -} -#u4235_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4235_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4236_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4236 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4236_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4236_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4235_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4235_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4237_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4237 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4237_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4237_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4238_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4238 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4238_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4238.selected { -} -#u4238_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4238_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4239_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4239 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4239_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4239.selected { -} -#u4239_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4239_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4240_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4240 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4240_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4240.selected { -} -#u4240_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4240_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4241_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4241 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4241_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4241.selected { -} -#u4241_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4241_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4242_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4242 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4242_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4242.selected { -} -#u4242_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4242_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4243_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4243 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4243_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4243.selected { -} -#u4243_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4243_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4235_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4244 { - position:absolute; - left:0px; - top:455px; -} -#u4244_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4244_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4245_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4245 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4245_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4244_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4244_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4246_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4246 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4246_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4247_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4247 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4247_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4247.selected { -} -#u4247_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4247_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4248_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4248 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4248_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4248.selected { -} -#u4248_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4248_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4249_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4249 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4249_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4249.selected { -} -#u4249_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4249_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4250_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4250 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4250_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4250.selected { -} -#u4250_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4250_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4251_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4251 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4251_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4251.selected { -} -#u4251_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4251_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4252_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4252 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4252_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4252.selected { -} -#u4252_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4252_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4253_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4253 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4253_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4253.selected { -} -#u4253_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4253_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4254_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4254 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4254_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4254.selected { -} -#u4254_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4254_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4255 { - position:absolute; - left:0px; - top:510px; -} -#u4255_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4255_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4256_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4256 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4256_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4255_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4255_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4257_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4257 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4257_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4258_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4258 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4258_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4258.selected { -} -#u4258_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4258_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4259_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4259 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4259_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4259.selected { -} -#u4259_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4259_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4260_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4260 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4260_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4260.selected { -} -#u4260_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4260_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_策略审计日志/data.js b/public/files/_2_策略审计日志/data.js deleted file mode 100644 index 5063dd1..0000000 --- a/public/files/_2_策略审计日志/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="d00c77586b774e65ab85b94716d30a50",jU="scriptId",jV="u4103",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4104",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4105",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4106",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4107",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4108",kg="0d264741477549399c9586a19d72c94c",kh="u4109",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4110",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4111",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4112",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4113",kq="6d999717f47c45b488270f1138ce00fb",kr="u4114",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4115",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4116",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4117",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4118",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4119",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4120",kE="07e9a718986f4456b84348343c870c0a",kF="u4121",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4122",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4123",kK="5098ad65c8f7492c9069f4a964723317",kL="u4124",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4125",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4126",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4127",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4128",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4129",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4130",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4131",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4132",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4133",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4134",lg="6e3656fad051471985367dfcecd7efd8",lh="u4135",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4136",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4137",lm="620d6328a97942419ae02f8789b911e2",ln="u4138",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4139",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4140",ls="cd656119d92145688ed53bf413ed4959",lt="u4141",lu="91def88484484083927f2283fe2dcc27",lv="u4142",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4143",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4144",lA="0cc50ffea147485e97d2d81166a21165",lB="u4145",lC="0cde056acd5f48828ad1f872add05f25",lD="u4146",lE="b669d535c7094350a886008e7cef4af0",lF="u4147",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4148",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4149",lK="5b670361476844109058ee67e9e585d2",lL="u4150",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4151",lO="bbc6891697924708b5a6119bbb896bab",lP="u4152",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4153",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4154",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4155",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4156",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4157",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4158",mc="578dad9d6baf4ee69400878858762724",md="u4159",me="3d533d005742479cbd215b234aad09bb",mf="u4160",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4161",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4162",mk="1759f58887a6423abd3758fd1891a06d",ml="u4163",mm="6b1a1692e80948e5975c69cb51886278",mn="u4164",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4165",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4166",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4167",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4168",mw="541c758399da4f399c0fc58ea01feee9",mx="u4169",my="e1c46db03da5412eb06e119b69b54c88",mz="u4170",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4171",mC="6d744837c12d4451b03523db77f0de4b",mD="u4172",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4173",mG="2066d8079c694bb3971a40cbf3279606",mH="u4174",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4175",mK="77d1855694f640579e26ec450555a8a3",mL="u4176",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4177",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4178",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4179",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4180",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4181"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_策略审计日志/styles.css b/public/files/_2_策略审计日志/styles.css deleted file mode 100644 index 0221788..0000000 --- a/public/files/_2_策略审计日志/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4104_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4104 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4104_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4105_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4105 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4105_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4106_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4106 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4106_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4107_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4107 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4107_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4108 { - position:absolute; - left:0px; - top:235px; -} -#u4108_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4108_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4109_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4109 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4109_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4109_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4108_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4108_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4110_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4110 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4110_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4110_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4111_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4111 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4111_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4111.selected { -} -#u4111_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4111_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4112_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4112 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4112_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4112.selected { -} -#u4112_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4112_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4113_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4113 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4113_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4113.selected { -} -#u4113_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4113_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4114_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4114 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4114_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4114.selected { -} -#u4114_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4114_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4115 { - position:absolute; - left:0px; - top:180px; -} -#u4115_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4115_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4116_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4116 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4116_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4116_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4115_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4115_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4117_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4117 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4117_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4117_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4118_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4118 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4118_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4118.selected { -} -#u4118_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4118_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4119_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4119 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4119_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4119.selected { -} -#u4119_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4119_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4120_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4120 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4120_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4120.selected { -} -#u4120_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4120_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4121_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4121 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4121_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4121.selected { -} -#u4121_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4121_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4115_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4122 { - position:absolute; - left:0px; - top:345px; -} -#u4122_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4122_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4123_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4123 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4123_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4123_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4122_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4122_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4124_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4124 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4124_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4124_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4125_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4125 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4125_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4125.selected { -} -#u4125_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4125_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4126_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4126 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4126_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4126.selected { -} -#u4126_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4126_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4127_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4127 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4127_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4127.selected { -} -#u4127_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4127_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4122_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4128 { - position:absolute; - left:0px; - top:70px; -} -#u4128_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4128_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4129_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4129 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4129_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4129_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4128_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4128_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4130_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4130 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4130_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4130_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4131_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4131 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4131_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4131.selected { -} -#u4131_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4131_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4132_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4132 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4132_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4132.selected { -} -#u4132_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4132_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4133_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4133 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4133_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4133.selected { -} -#u4133_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4133_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4134_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4134 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4134_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4134.selected { -} -#u4134_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4134_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4135_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4135 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4135_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4135.selected { -} -#u4135_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4135_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4136_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4136 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4136_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4136.selected { -} -#u4136_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4136_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4137_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4137 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4137_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4137.selected { -} -#u4137_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4137_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4138_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4138 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4138_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4138.selected { -} -#u4138_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4138_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4139_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4139 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4139_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4139.selected { -} -#u4139_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4139_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4128_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4140 { - position:absolute; - left:0px; - top:125px; -} -#u4140_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4140_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4141_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4141 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4141_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4141_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4140_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4140_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4142_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4142 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4142_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4142_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4143_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4143 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4143_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4143.selected { -} -#u4143_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4143_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4144_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4144 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4144_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4144.selected { -} -#u4144_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4144_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4145_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4145 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4145_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4145.selected { -} -#u4145_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4145_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4146_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4146 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4146_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4146.selected { -} -#u4146_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4146_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4147_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4147 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4147_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4147.selected { -} -#u4147_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4147_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4148_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4148 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4148_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4148.selected { -} -#u4148_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4148_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4149_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4149 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4149_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4149.selected { -} -#u4149_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4149_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4150_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4150 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4150_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4150.selected { -} -#u4150_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4150_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4140_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4151 { - position:absolute; - left:0px; - top:290px; -} -#u4151_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4151_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4152_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4152 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4152_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4152_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4151_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4151_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4153_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4153 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4153_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4153_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4154_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4154 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4154_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4154.selected { -} -#u4154_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4154_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4155_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4155 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4155_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4155.selected { -} -#u4155_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4155_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4151_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4156 { - position:absolute; - left:0px; - top:400px; -} -#u4156_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4156_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4157_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4157 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4157_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4157_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4156_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4156_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4158_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4158 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4158_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4158_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4159_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4159 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4159_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4159.selected { -} -#u4159_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4159_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4160_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4160 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4160_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4160.selected { -} -#u4160_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4160_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4161_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4161 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4161_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4161.selected { -} -#u4161_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4161_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4162_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4162 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4162_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4162.selected { -} -#u4162_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4162_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4163_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4163 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4163_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4163.selected { -} -#u4163_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4163_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4164_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4164 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4164_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4164.selected { -} -#u4164_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4164_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4156_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4165 { - position:absolute; - left:0px; - top:455px; -} -#u4165_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4165_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4166_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4166 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4166_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4165_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4165_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4167_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4167 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4167_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4168_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4168 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4168_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4168.selected { -} -#u4168_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4168_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4169_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4169 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4169_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4169.selected { -} -#u4169_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4169_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4170_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4170 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4170_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4170.selected { -} -#u4170_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4170_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4171_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4171 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4171_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4171.selected { -} -#u4171_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4171_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4172_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4172 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4172_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4172.selected { -} -#u4172_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4172_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4173_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4173 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4173_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4173.selected { -} -#u4173_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4173_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4174_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4174 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4174_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4174.selected { -} -#u4174_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4174_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4175_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4175 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4175_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4175.selected { -} -#u4175_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4175_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4176 { - position:absolute; - left:0px; - top:510px; -} -#u4176_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4176_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4177_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4177 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4177_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4176_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4176_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4178_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4178 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4178_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4179_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4179 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4179_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4179.selected { -} -#u4179_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4179_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4180_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4180 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4180_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4180.selected { -} -#u4180_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4180_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4181_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4181 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4181_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4181.selected { -} -#u4181_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4181_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_系统参数/data.js b/public/files/_2_系统参数/data.js deleted file mode 100644 index 3a69b8e..0000000 --- a/public/files/_2_系统参数/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="e80f745bfeb24e04a1137fb99e7512db",jU="scriptId",jV="u4340",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4341",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4342",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4343",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4344",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4345",kg="0d264741477549399c9586a19d72c94c",kh="u4346",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4347",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4348",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4349",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4350",kq="6d999717f47c45b488270f1138ce00fb",kr="u4351",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4352",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4353",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4354",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4355",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4356",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4357",kE="07e9a718986f4456b84348343c870c0a",kF="u4358",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4359",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4360",kK="5098ad65c8f7492c9069f4a964723317",kL="u4361",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4362",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4363",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4364",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4365",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4366",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4367",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4368",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4369",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4370",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4371",lg="6e3656fad051471985367dfcecd7efd8",lh="u4372",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4373",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4374",lm="620d6328a97942419ae02f8789b911e2",ln="u4375",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4376",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4377",ls="cd656119d92145688ed53bf413ed4959",lt="u4378",lu="91def88484484083927f2283fe2dcc27",lv="u4379",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4380",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4381",lA="0cc50ffea147485e97d2d81166a21165",lB="u4382",lC="0cde056acd5f48828ad1f872add05f25",lD="u4383",lE="b669d535c7094350a886008e7cef4af0",lF="u4384",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4385",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4386",lK="5b670361476844109058ee67e9e585d2",lL="u4387",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4388",lO="bbc6891697924708b5a6119bbb896bab",lP="u4389",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4390",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4391",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4392",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4393",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4394",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4395",mc="578dad9d6baf4ee69400878858762724",md="u4396",me="3d533d005742479cbd215b234aad09bb",mf="u4397",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4398",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4399",mk="1759f58887a6423abd3758fd1891a06d",ml="u4400",mm="6b1a1692e80948e5975c69cb51886278",mn="u4401",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4402",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4403",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4404",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4405",mw="541c758399da4f399c0fc58ea01feee9",mx="u4406",my="e1c46db03da5412eb06e119b69b54c88",mz="u4407",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4408",mC="6d744837c12d4451b03523db77f0de4b",mD="u4409",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4410",mG="2066d8079c694bb3971a40cbf3279606",mH="u4411",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4412",mK="77d1855694f640579e26ec450555a8a3",mL="u4413",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4414",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4415",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4416",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4417",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4418"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_系统参数/styles.css b/public/files/_2_系统参数/styles.css deleted file mode 100644 index b0d6710..0000000 --- a/public/files/_2_系统参数/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4341_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4341 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4341_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4342_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4342 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4342_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4343_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4343 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4343_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4344_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4344 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4344_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4345 { - position:absolute; - left:0px; - top:235px; -} -#u4345_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4345_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4346_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4346 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4346_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4346_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4345_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4345_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4347_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4347 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4347_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4347_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4348_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4348 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4348_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4348.selected { -} -#u4348_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4348_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4349_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4349 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4349_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4349.selected { -} -#u4349_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4349_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4350_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4350 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4350_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4350.selected { -} -#u4350_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4350_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4351_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4351 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4351_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4351.selected { -} -#u4351_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4351_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4352 { - position:absolute; - left:0px; - top:180px; -} -#u4352_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4352_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4353_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4353 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4353_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4353_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4352_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4352_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4354_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4354 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4354_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4354_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4355_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4355 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4355_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4355.selected { -} -#u4355_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4355_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4356_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4356 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4356_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4356.selected { -} -#u4356_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4356_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4357_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4357 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4357_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4357.selected { -} -#u4357_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4357_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4358_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4358 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4358_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4358.selected { -} -#u4358_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4358_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4352_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4359 { - position:absolute; - left:0px; - top:345px; -} -#u4359_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4359_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4360_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4360 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4360_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4360_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4359_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4359_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4361_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4361 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4361_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4361_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4362_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4362 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4362_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4362.selected { -} -#u4362_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4362_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4363_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4363 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4363_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4363.selected { -} -#u4363_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4363_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4364_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4364 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4364_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4364.selected { -} -#u4364_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4364_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4359_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4365 { - position:absolute; - left:0px; - top:70px; -} -#u4365_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4365_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4366_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4366 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4366_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4366_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4365_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4365_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4367_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4367 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4367_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4367_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4368_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4368 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4368_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4368.selected { -} -#u4368_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4368_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4369_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4369 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4369_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4369.selected { -} -#u4369_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4369_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4370_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4370 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4370_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4370.selected { -} -#u4370_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4370_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4371_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4371 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4371_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4371.selected { -} -#u4371_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4371_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4372_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4372 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4372_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4372.selected { -} -#u4372_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4372_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4373_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4373 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4373_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4373.selected { -} -#u4373_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4373_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4374_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4374 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4374_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4374.selected { -} -#u4374_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4374_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4375_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4375 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4375_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4375.selected { -} -#u4375_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4375_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4376_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4376 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4376_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4376.selected { -} -#u4376_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4376_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4365_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4377 { - position:absolute; - left:0px; - top:125px; -} -#u4377_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4377_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4378_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4378 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4378_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4378_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4377_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4377_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4379_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4379 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4379_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4379_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4380_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4380 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4380_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4380.selected { -} -#u4380_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4380_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4381_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4381 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4381_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4381.selected { -} -#u4381_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4381_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4382_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4382 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4382_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4382.selected { -} -#u4382_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4382_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4383_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4383 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4383_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4383.selected { -} -#u4383_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4383_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4384_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4384 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4384_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4384.selected { -} -#u4384_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4384_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4385_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4385 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4385_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4385.selected { -} -#u4385_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4385_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4386_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4386 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4386_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4386.selected { -} -#u4386_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4386_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4387_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4387 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4387_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4387.selected { -} -#u4387_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4387_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4377_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4388 { - position:absolute; - left:0px; - top:290px; -} -#u4388_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4388_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4389_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4389 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4389_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4389_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4388_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4388_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4390_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4390 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4390_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4390_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4391_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4391 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4391_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4391.selected { -} -#u4391_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4391_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4392_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4392 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4392_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4392.selected { -} -#u4392_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4392_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4388_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4393 { - position:absolute; - left:0px; - top:400px; -} -#u4393_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4393_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4394_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4394 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4394_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4394_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4393_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4393_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4395_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4395 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4395_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4395_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4396_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4396 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4396_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4396.selected { -} -#u4396_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4396_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4397_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4397 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4397_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4397.selected { -} -#u4397_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4397_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4398_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4398 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4398_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4398.selected { -} -#u4398_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4398_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4399_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4399 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4399_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4399.selected { -} -#u4399_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4399_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4400_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4400 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4400_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4400.selected { -} -#u4400_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4400_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4401_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4401 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4401_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4401.selected { -} -#u4401_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4401_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4393_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4402 { - position:absolute; - left:0px; - top:455px; -} -#u4402_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4402_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4403_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4403 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4403_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4402_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4402_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4404_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4404 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4404_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4405_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4405 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4405_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4405.selected { -} -#u4405_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4405_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4406_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4406 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4406_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4406.selected { -} -#u4406_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4406_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4407_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4407 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4407_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4407.selected { -} -#u4407_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4407_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4408_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4408 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4408_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4408.selected { -} -#u4408_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4408_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4409_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4409 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4409_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4409.selected { -} -#u4409_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4409_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4410_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4410 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4410_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4410.selected { -} -#u4410_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4410_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4411_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4411 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4411_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4411.selected { -} -#u4411_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4411_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4412_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4412 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4412_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4412.selected { -} -#u4412_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4412_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4413 { - position:absolute; - left:0px; - top:510px; -} -#u4413_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4413_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4414_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4414 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4414_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4413_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4413_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4415_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4415 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4415_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4416_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4416 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4416_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4416.selected { -} -#u4416_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4416_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4417_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4417 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4417_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4417.selected { -} -#u4417_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4417_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4418_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4418 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4418_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4418.selected { -} -#u4418_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4418_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_菜单管理/data.js b/public/files/_2_菜单管理/data.js deleted file mode 100644 index 91d3972..0000000 --- a/public/files/_2_菜单管理/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="_2_设备标签.html",ji="6d744837c12d4451b03523db77f0de4b",jj="接口",jk="在 当前窗口 打开 /2/接口",jl="_2_接口.html",jm="f5b83fbcd88a4567851a800fd5a157af",jn="固件",jo="在 当前窗口 打开 /2/固件",jp="_2_固件.html",jq="2066d8079c694bb3971a40cbf3279606",jr="备份&恢复",js="在 当前窗口 打开 /2/备份&恢复",jt="_2_备份_恢复.html",ju="8f6ffa5a96a14d79ae7201eb8bbff6b5",jv="数据包捕获",jw="在 当前窗口 打开 /2/数据包捕获",jx="_2_数据包捕获.html",jy="77d1855694f640579e26ec450555a8a3",jz="后台管理",jA=510,jB="9662ce02b5004c29baa5aa3929abab43",jC="204f45f6afc34d5d99894ec9b10eb71b",jD="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jE="55332c86d1434008b455fb49c931cf9e",jF="ab9166e59a1147aeaf21e70536b34bae",jG="设置 后台管理 为 收起 push/pull widgets 向下",jH="2f23aa851a9d4d54993f66fbe1cbf708",jI="字典管理",jJ="在 当前窗口 打开 /2/字典管理",jK="_2_字典管理.html",jL="7444e1c9dc94459292cb03b8f3cd1229",jM="菜单管理",jN="在 当前窗口 打开 /2/菜单管理",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="f4f7a80226104ed1b4ff5fea564995ce",jU="scriptId",jV="u5209",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u5210",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u5211",ka="287161d6553d482dbb471a03f2b96d8d",kb="u5212",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u5213",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u5214",kg="0d264741477549399c9586a19d72c94c",kh="u5215",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u5216",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u5217",km="b03fa42397b840c7be9ac06da5567aa7",kn="u5218",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u5219",kq="6d999717f47c45b488270f1138ce00fb",kr="u5220",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u5221",ku="188a2dff382a42948e36596c4dd80f3d",kv="u5222",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u5223",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u5224",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u5225",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u5226",kE="07e9a718986f4456b84348343c870c0a",kF="u5227",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u5228",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u5229",kK="5098ad65c8f7492c9069f4a964723317",kL="u5230",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u5231",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u5232",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u5233",kS="07c280170e8b49c58503de5d9d1deda7",kT="u5234",kU="5c5a7e1a78634167985368e626cb44a6",kV="u5235",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u5236",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u5237",la="7cf8bc9379a74906b78129a7c79b5204",lb="u5238",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u5239",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u5240",lg="6e3656fad051471985367dfcecd7efd8",lh="u5241",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u5242",lk="42c554bcc055434ba48c579ee60b70ef",ll="u5243",lm="620d6328a97942419ae02f8789b911e2",ln="u5244",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u5245",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u5246",ls="cd656119d92145688ed53bf413ed4959",lt="u5247",lu="91def88484484083927f2283fe2dcc27",lv="u5248",lw="4b13957666154ecda2d5e2f7d636101e",lx="u5249",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u5250",lA="0cc50ffea147485e97d2d81166a21165",lB="u5251",lC="0cde056acd5f48828ad1f872add05f25",lD="u5252",lE="b669d535c7094350a886008e7cef4af0",lF="u5253",lG="37e0281ff7f44a01940207aacde15d1d",lH="u5254",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u5255",lK="5b670361476844109058ee67e9e585d2",lL="u5256",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u5257",lO="bbc6891697924708b5a6119bbb896bab",lP="u5258",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u5259",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u5260",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u5261",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u5262",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u5263",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u5264",mc="578dad9d6baf4ee69400878858762724",md="u5265",me="3d533d005742479cbd215b234aad09bb",mf="u5266",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u5267",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u5268",mk="1759f58887a6423abd3758fd1891a06d",ml="u5269",mm="6b1a1692e80948e5975c69cb51886278",mn="u5270",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u5271",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u5272",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u5273",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u5274",mw="541c758399da4f399c0fc58ea01feee9",mx="u5275",my="e1c46db03da5412eb06e119b69b54c88",mz="u5276",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u5277",mC="6d744837c12d4451b03523db77f0de4b",mD="u5278",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u5279",mG="2066d8079c694bb3971a40cbf3279606",mH="u5280",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u5281",mK="77d1855694f640579e26ec450555a8a3",mL="u5282",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u5283",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u5284",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u5285",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u5286",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u5287"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_菜单管理/styles.css b/public/files/_2_菜单管理/styles.css deleted file mode 100644 index 0573d7f..0000000 --- a/public/files/_2_菜单管理/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u5210_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5210 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u5210_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5211_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5211 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u5211_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u5212_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u5212 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u5212_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5213_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5213 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u5213_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u5214 { - position:absolute; - left:0px; - top:235px; -} -#u5214_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5214_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5215_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5215 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5215_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5215_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5214_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5214_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5216_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5216 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5216_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5216_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5217_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5217 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5217_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5217.selected { -} -#u5217_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5217_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5218_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5218 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5218_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5218.selected { -} -#u5218_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5218_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5219_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5219 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5219_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5219.selected { -} -#u5219_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5219_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5220_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5220 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5220_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5220.selected { -} -#u5220_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5220_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5221 { - position:absolute; - left:0px; - top:180px; -} -#u5221_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5221_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5222_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5222 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5222_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5222_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5221_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u5221_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5223_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5223 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5223_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5223_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5224_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5224 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5224_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5224.selected { -} -#u5224_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5224_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5225_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5225 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5225_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5225.selected { -} -#u5225_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5225_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5226_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5226 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5226_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5226.selected { -} -#u5226_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5226_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5227_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5227 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5227_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5227.selected { -} -#u5227_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5227_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5221_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5228 { - position:absolute; - left:0px; - top:345px; -} -#u5228_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5228_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5229_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5229 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5229_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5229_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5228_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5228_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5230_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5230 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5230_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5230_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5231_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5231 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5231_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5231.selected { -} -#u5231_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5231_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5232_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5232 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5232_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5232.selected { -} -#u5232_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5232_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5233_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5233 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5233_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5233.selected { -} -#u5233_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5233_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5228_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u5234 { - position:absolute; - left:0px; - top:70px; -} -#u5234_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5234_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5235_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5235 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5235_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5235_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5234_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u5234_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5236_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5236 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5236_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5236_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5237_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5237 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5237_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5237.selected { -} -#u5237_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5237_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5238_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5238 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5238_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5238.selected { -} -#u5238_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5238_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5239_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5239 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5239_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5239.selected { -} -#u5239_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5239_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5240_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5240 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5240_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5240.selected { -} -#u5240_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5240_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5241_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5241 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5241_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5241.selected { -} -#u5241_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5241_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5242_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5242 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5242_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5242.selected { -} -#u5242_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5242_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5243_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5243 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5243_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5243.selected { -} -#u5243_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5243_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5244_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5244 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5244_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5244.selected { -} -#u5244_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5244_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5245_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5245 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5245_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5245.selected { -} -#u5245_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5245_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u5234_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u5246 { - position:absolute; - left:0px; - top:125px; -} -#u5246_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5246_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5247_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5247 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5247_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5247_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5246_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5246_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5248_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5248 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u5248_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5248_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5249_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5249 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u5249_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5249.selected { -} -#u5249_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5249_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5250_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5250 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5250_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5250.selected { -} -#u5250_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5250_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5251_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5251 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u5251_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5251.selected { -} -#u5251_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5251_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5252_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5252 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u5252_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5252.selected { -} -#u5252_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5252_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5253_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5253 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u5253_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5253.selected { -} -#u5253_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5253_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5254_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5254 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u5254_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5254.selected { -} -#u5254_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5254_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5255_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5255 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u5255_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5255.selected { -} -#u5255_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5255_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5256_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5256 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u5256_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u5256.selected { -} -#u5256_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5256_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5246_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u5257 { - position:absolute; - left:0px; - top:290px; -} -#u5257_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5257_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5258_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5258 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5258_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5258_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5257_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u5257_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5259_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5259 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5259_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5259_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5260_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5260 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5260_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5260.selected { -} -#u5260_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5260_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5261_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5261 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5261_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5261.selected { -} -#u5261_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5261_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5257_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u5262 { - position:absolute; - left:0px; - top:400px; -} -#u5262_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5262_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5263_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5263 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5263_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5263_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5262_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u5262_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5264_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5264 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5264_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5264_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u5265_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5265 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5265_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5265.selected { -} -#u5265_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5265_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5266_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5266 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5266_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5266.selected { -} -#u5266_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5266_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5267_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5267 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5267_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5267.selected { -} -#u5267_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5267_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5268_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5268 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5268_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5268.selected { -} -#u5268_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5268_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5269_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5269 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5269_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5269.selected { -} -#u5269_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5269_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5270_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5270 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5270_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5270.selected { -} -#u5270_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5270_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5262_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u5271 { - position:absolute; - left:0px; - top:455px; -} -#u5271_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5271_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5272_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5272 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5272_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5271_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u5271_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5273_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5273 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5273_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5274_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5274 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5274_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5274.selected { -} -#u5274_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5274_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5275_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5275 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5275_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5275.selected { -} -#u5275_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5275_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5276_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5276 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5276_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5276.selected { -} -#u5276_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5276_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u5277_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5277 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5277_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5277.selected { -} -#u5277_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5277_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u5278_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5278 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5278_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5278.selected { -} -#u5278_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5278_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u5279_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5279 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5279_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5279.selected { -} -#u5279_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5279_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u5280_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5280 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5280_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5280.selected { -} -#u5280_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5280_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u5281_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5281 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5281_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5281.selected { -} -#u5281_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5281_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u5282 { - position:absolute; - left:0px; - top:510px; -} -#u5282_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u5282_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5283_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5283 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5283_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5282_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u5282_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u5284_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5284 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5284_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5285_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5285 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5285_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5285.selected { -} -#u5285_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5285_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u5286_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5286 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5286_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5286.selected { -} -#u5286_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5286_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u5287_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5287 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5287_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u5287.selected { -} -#u5287_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u5287_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_角色管理/data.js b/public/files/_2_角色管理/data.js deleted file mode 100644 index 956bcec..0000000 --- a/public/files/_2_角色管理/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="

      Role Mangement

      ",ib="

      Управление Ролями

      ",ic="3d533d005742479cbd215b234aad09bb",id="用户管理",ie="在 当前窗口 打开 /2/用户管理",ig="_2_用户管理.html",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="32fe8f17154946ea8ca7a68d41365d55",jU="scriptId",jV="u4024",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4025",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4026",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4027",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4028",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4029",kg="0d264741477549399c9586a19d72c94c",kh="u4030",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4031",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4032",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4033",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4034",kq="6d999717f47c45b488270f1138ce00fb",kr="u4035",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4036",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4037",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4038",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4039",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4040",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4041",kE="07e9a718986f4456b84348343c870c0a",kF="u4042",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4043",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4044",kK="5098ad65c8f7492c9069f4a964723317",kL="u4045",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4046",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4047",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4048",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4049",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4050",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4051",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4052",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4053",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4054",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4055",lg="6e3656fad051471985367dfcecd7efd8",lh="u4056",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4057",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4058",lm="620d6328a97942419ae02f8789b911e2",ln="u4059",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4060",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4061",ls="cd656119d92145688ed53bf413ed4959",lt="u4062",lu="91def88484484083927f2283fe2dcc27",lv="u4063",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4064",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4065",lA="0cc50ffea147485e97d2d81166a21165",lB="u4066",lC="0cde056acd5f48828ad1f872add05f25",lD="u4067",lE="b669d535c7094350a886008e7cef4af0",lF="u4068",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4069",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4070",lK="5b670361476844109058ee67e9e585d2",lL="u4071",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4072",lO="bbc6891697924708b5a6119bbb896bab",lP="u4073",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4074",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4075",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4076",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4077",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4078",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4079",mc="578dad9d6baf4ee69400878858762724",md="u4080",me="3d533d005742479cbd215b234aad09bb",mf="u4081",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4082",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4083",mk="1759f58887a6423abd3758fd1891a06d",ml="u4084",mm="6b1a1692e80948e5975c69cb51886278",mn="u4085",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4086",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4087",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4088",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4089",mw="541c758399da4f399c0fc58ea01feee9",mx="u4090",my="e1c46db03da5412eb06e119b69b54c88",mz="u4091",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4092",mC="6d744837c12d4451b03523db77f0de4b",mD="u4093",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4094",mG="2066d8079c694bb3971a40cbf3279606",mH="u4095",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4096",mK="77d1855694f640579e26ec450555a8a3",mL="u4097",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4098",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4099",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4100",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4101",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4102"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_角色管理/styles.css b/public/files/_2_角色管理/styles.css deleted file mode 100644 index e5937ed..0000000 --- a/public/files/_2_角色管理/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4025_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4025 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4025_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4026_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4026 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4026_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4027_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4027 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4027_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4028_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4028 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4028_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4029 { - position:absolute; - left:0px; - top:235px; -} -#u4029_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4029_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4030_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4030 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4030_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4030_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4029_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4029_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4031_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4031 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4031_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4031_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4032_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4032 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4032_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4032.selected { -} -#u4032_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4032_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4033_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4033 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4033_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4033.selected { -} -#u4033_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4033_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4034_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4034 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4034_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4034.selected { -} -#u4034_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4034_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4035_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4035 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4035_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4035.selected { -} -#u4035_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4035_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4036 { - position:absolute; - left:0px; - top:180px; -} -#u4036_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4036_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4037_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4037 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4037_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4037_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4036_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4036_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4038_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4038 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4038_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4038_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4039_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4039 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4039_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4039.selected { -} -#u4039_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4039_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4040_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4040 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4040_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4040.selected { -} -#u4040_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4040_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4041_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4041 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4041_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4041.selected { -} -#u4041_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4041_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4042_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4042 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4042_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4042.selected { -} -#u4042_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4042_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4036_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4043 { - position:absolute; - left:0px; - top:345px; -} -#u4043_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4043_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4044_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4044 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4044_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4044_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4043_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4043_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4045_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4045 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4045_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4045_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4046_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4046 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4046_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4046.selected { -} -#u4046_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4046_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4047_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4047 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4047_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4047.selected { -} -#u4047_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4047_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4048_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4048 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4048_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4048.selected { -} -#u4048_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4048_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4043_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4049 { - position:absolute; - left:0px; - top:70px; -} -#u4049_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4049_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4050_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4050 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4050_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4050_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4049_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4049_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4051_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4051 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4051_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4051_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4052_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4052 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4052_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4052.selected { -} -#u4052_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4052_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4053_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4053 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4053_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4053.selected { -} -#u4053_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4053_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4054_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4054 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4054_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4054.selected { -} -#u4054_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4054_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4055_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4055 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4055_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4055.selected { -} -#u4055_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4055_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4056_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4056 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4056_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4056.selected { -} -#u4056_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4056_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4057_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4057 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4057_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4057.selected { -} -#u4057_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4057_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4058_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4058 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4058_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4058.selected { -} -#u4058_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4058_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4059_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4059 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4059_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4059.selected { -} -#u4059_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4059_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4060_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4060 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4060_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4060.selected { -} -#u4060_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4060_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4049_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4061 { - position:absolute; - left:0px; - top:125px; -} -#u4061_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4061_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4062_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4062 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4062_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4062_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4061_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4061_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4063_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4063 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4063_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4063_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4064_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4064 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4064_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4064.selected { -} -#u4064_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4064_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4065_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4065 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4065_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4065.selected { -} -#u4065_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4065_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4066_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4066 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4066_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4066.selected { -} -#u4066_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4066_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4067_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4067 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4067_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4067.selected { -} -#u4067_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4067_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4068_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4068 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4068_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4068.selected { -} -#u4068_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4068_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4069_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4069 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4069_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4069.selected { -} -#u4069_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4069_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4070_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4070 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4070_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4070.selected { -} -#u4070_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4070_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4071_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4071 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4071_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4071.selected { -} -#u4071_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4071_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4061_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4072 { - position:absolute; - left:0px; - top:290px; -} -#u4072_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4072_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4073_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4073 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4073_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4073_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4072_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4072_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4074_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4074 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4074_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4074_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4075_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4075 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4075_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4075.selected { -} -#u4075_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4075_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4076_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4076 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4076_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4076.selected { -} -#u4076_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4076_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4072_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4077 { - position:absolute; - left:0px; - top:400px; -} -#u4077_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4077_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4078_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4078 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4078_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4078_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4077_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4077_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4079_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4079 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4079_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4079_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4080_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4080 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4080_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4080.selected { -} -#u4080_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4080_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4081_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4081 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4081_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4081.selected { -} -#u4081_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4081_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4082_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4082 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4082_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4082.selected { -} -#u4082_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4082_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4083_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4083 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4083_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4083.selected { -} -#u4083_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4083_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4084_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4084 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4084_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4084.selected { -} -#u4084_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4084_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4085_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4085 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4085_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4085.selected { -} -#u4085_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4085_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4077_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4086 { - position:absolute; - left:0px; - top:455px; -} -#u4086_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4086_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4087_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4087 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4087_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4086_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4086_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4088_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4088 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4088_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4089_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4089 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4089_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4089.selected { -} -#u4089_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4089_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4090_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4090 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4090_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4090.selected { -} -#u4090_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4090_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4091_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4091 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4091_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4091.selected { -} -#u4091_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4091_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4092_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4092 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4092_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4092.selected { -} -#u4092_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4092_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4093_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4093 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4093_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4093.selected { -} -#u4093_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4093_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4094_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4094 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4094_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4094.selected { -} -#u4094_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4094_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4095_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4095 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4095_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4095.selected { -} -#u4095_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4095_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4096_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4096 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4096_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4096.selected { -} -#u4096_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4096_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4097 { - position:absolute; - left:0px; - top:510px; -} -#u4097_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4097_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4098_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4098 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4098_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4097_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4097_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4099_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4099 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4099_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4100_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4100 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4100_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4100.selected { -} -#u4100_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4100_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4101_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4101 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4101_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4101.selected { -} -#u4101_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4101_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4102_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4102 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4102_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4102.selected { -} -#u4102_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4102_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_设备列表/data.js b/public/files/_2_设备列表/data.js deleted file mode 100644 index 9a1cda7..0000000 --- a/public/files/_2_设备列表/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="ee80c5821af2452aadef6fbad8d3d26d",jU="scriptId",jV="u4498",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4499",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4500",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4501",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4502",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4503",kg="0d264741477549399c9586a19d72c94c",kh="u4504",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4505",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4506",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4507",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4508",kq="6d999717f47c45b488270f1138ce00fb",kr="u4509",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4510",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4511",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4512",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4513",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4514",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4515",kE="07e9a718986f4456b84348343c870c0a",kF="u4516",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4517",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4518",kK="5098ad65c8f7492c9069f4a964723317",kL="u4519",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4520",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4521",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4522",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4523",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4524",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4525",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4526",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4527",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4528",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4529",lg="6e3656fad051471985367dfcecd7efd8",lh="u4530",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4531",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4532",lm="620d6328a97942419ae02f8789b911e2",ln="u4533",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4534",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4535",ls="cd656119d92145688ed53bf413ed4959",lt="u4536",lu="91def88484484083927f2283fe2dcc27",lv="u4537",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4538",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4539",lA="0cc50ffea147485e97d2d81166a21165",lB="u4540",lC="0cde056acd5f48828ad1f872add05f25",lD="u4541",lE="b669d535c7094350a886008e7cef4af0",lF="u4542",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4543",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4544",lK="5b670361476844109058ee67e9e585d2",lL="u4545",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4546",lO="bbc6891697924708b5a6119bbb896bab",lP="u4547",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4548",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4549",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4550",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4551",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4552",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4553",mc="578dad9d6baf4ee69400878858762724",md="u4554",me="3d533d005742479cbd215b234aad09bb",mf="u4555",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4556",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4557",mk="1759f58887a6423abd3758fd1891a06d",ml="u4558",mm="6b1a1692e80948e5975c69cb51886278",mn="u4559",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4560",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4561",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4562",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4563",mw="541c758399da4f399c0fc58ea01feee9",mx="u4564",my="e1c46db03da5412eb06e119b69b54c88",mz="u4565",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4566",mC="6d744837c12d4451b03523db77f0de4b",mD="u4567",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4568",mG="2066d8079c694bb3971a40cbf3279606",mH="u4569",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4570",mK="77d1855694f640579e26ec450555a8a3",mL="u4571",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4572",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4573",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4574",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4575",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4576"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_设备列表/styles.css b/public/files/_2_设备列表/styles.css deleted file mode 100644 index 917a31b..0000000 --- a/public/files/_2_设备列表/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4499_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4499 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4499_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4500_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4500 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4500_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4501_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4501 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4501_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4502_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4502 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4502_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4503 { - position:absolute; - left:0px; - top:235px; -} -#u4503_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4503_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4504_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4504 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4504_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4504_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4503_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4503_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4505_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4505 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4505_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4505_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4506_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4506 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4506_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4506.selected { -} -#u4506_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4506_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4507_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4507 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4507_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4507.selected { -} -#u4507_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4507_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4508_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4508 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4508_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4508.selected { -} -#u4508_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4508_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4509_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4509 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4509_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4509.selected { -} -#u4509_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4509_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4510 { - position:absolute; - left:0px; - top:180px; -} -#u4510_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4510_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4511_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4511 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4511_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4511_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4510_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4510_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4512_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4512 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4512_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4512_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4513_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4513 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4513_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4513.selected { -} -#u4513_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4513_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4514_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4514 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4514_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4514.selected { -} -#u4514_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4514_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4515_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4515 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4515_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4515.selected { -} -#u4515_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4515_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4516_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4516 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4516_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4516.selected { -} -#u4516_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4516_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4510_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4517 { - position:absolute; - left:0px; - top:345px; -} -#u4517_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4517_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4518_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4518 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4518_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4518_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4517_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4517_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4519_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4519 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4519_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4519_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4520_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4520 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4520_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4520.selected { -} -#u4520_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4520_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4521_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4521 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4521_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4521.selected { -} -#u4521_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4521_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4522_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4522 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4522_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4522.selected { -} -#u4522_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4522_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4517_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4523 { - position:absolute; - left:0px; - top:70px; -} -#u4523_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4523_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4524_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4524 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4524_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4524_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4523_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4523_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4525_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4525 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4525_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4525_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4526_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4526 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4526_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4526.selected { -} -#u4526_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4526_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4527_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4527 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4527_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4527.selected { -} -#u4527_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4527_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4528_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4528 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4528_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4528.selected { -} -#u4528_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4528_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4529_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4529 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4529_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4529.selected { -} -#u4529_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4529_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4530_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4530 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4530_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4530.selected { -} -#u4530_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4530_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4531_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4531 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4531_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4531.selected { -} -#u4531_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4531_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4532_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4532 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4532_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4532.selected { -} -#u4532_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4532_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4533_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4533 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4533_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4533.selected { -} -#u4533_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4533_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4534_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4534 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4534_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4534.selected { -} -#u4534_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4534_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4523_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4535 { - position:absolute; - left:0px; - top:125px; -} -#u4535_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4535_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4536_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4536 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4536_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4536_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4535_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4535_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4537_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4537 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4537_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4537_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4538_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4538 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4538_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4538.selected { -} -#u4538_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4538_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4539_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4539 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4539_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4539.selected { -} -#u4539_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4539_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4540_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4540 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4540_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4540.selected { -} -#u4540_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4540_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4541_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4541 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4541_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4541.selected { -} -#u4541_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4541_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4542_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4542 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4542_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4542.selected { -} -#u4542_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4542_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4543_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4543 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4543_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4543.selected { -} -#u4543_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4543_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4544_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4544 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4544_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4544.selected { -} -#u4544_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4544_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4545_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4545 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4545_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4545.selected { -} -#u4545_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4545_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4535_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4546 { - position:absolute; - left:0px; - top:290px; -} -#u4546_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4546_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4547_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4547 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4547_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4547_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4546_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4546_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4548_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4548 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4548_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4548_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4549_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4549 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4549_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4549.selected { -} -#u4549_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4549_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4550_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4550 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4550_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4550.selected { -} -#u4550_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4550_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4546_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4551 { - position:absolute; - left:0px; - top:400px; -} -#u4551_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4551_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4552_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4552 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4552_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4552_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4551_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4551_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4553_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4553 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4553_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4553_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4554_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4554 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4554_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4554.selected { -} -#u4554_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4554_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4555_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4555 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4555_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4555.selected { -} -#u4555_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4555_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4556_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4556 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4556_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4556.selected { -} -#u4556_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4556_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4557_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4557 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4557_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4557.selected { -} -#u4557_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4557_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4558_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4558 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4558_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4558.selected { -} -#u4558_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4558_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4559_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4559 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4559_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4559.selected { -} -#u4559_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4559_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4551_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4560 { - position:absolute; - left:0px; - top:455px; -} -#u4560_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4560_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4561_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4561 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4561_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4560_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4560_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4562_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4562 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4562_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4563_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4563 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4563_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4563.selected { -} -#u4563_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4563_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4564_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4564 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4564_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4564.selected { -} -#u4564_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4564_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4565_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4565 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4565_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4565.selected { -} -#u4565_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4565_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4566_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4566 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4566_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4566.selected { -} -#u4566_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4566_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4567_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4567 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4567_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4567.selected { -} -#u4567_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4567_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4568_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4568 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4568_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4568.selected { -} -#u4568_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4568_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4569_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4569 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4569_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4569.selected { -} -#u4569_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4569_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4570_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4570 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4570_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4570.selected { -} -#u4570_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4570_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4571 { - position:absolute; - left:0px; - top:510px; -} -#u4571_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4571_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4572_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4572 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4572_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4571_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4571_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4573_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4573 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4573_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4574_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4574 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4574_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4574.selected { -} -#u4574_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4574_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4575_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4575 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4575_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4575.selected { -} -#u4575_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4575_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4576_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4576 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4576_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4576.selected { -} -#u4576_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4576_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_设备标签/data.js b/public/files/_2_设备标签/data.js deleted file mode 100644 index a11d272..0000000 --- a/public/files/_2_设备标签/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="_2_邮件服务器.html",iv="

      Mail Server

      ",iw="

      Сервер Почты

      ",ix="1759f58887a6423abd3758fd1891a06d",iy="登录日志",iz="在 当前窗口 打开 /2/登录日志",iA="_2_登录日志.html",iB="

      Login Log

      ",iC="

      Жунрал Входа

      ",iD="6b1a1692e80948e5975c69cb51886278",iE="系统参数",iF="在 当前窗口 打开 /2/系统参数",iG="_2_系统参数.html",iH="

      Global Parameters

      ",iI="

      Глобальный Параметр

      ",iJ="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iK="设备",iL=455,iM="f123854da4504481a447ef17b01fea34",iN="6aa0ab27ba354ae39d709c8435b01487",iO="设置 设备 为 展开 show if hidden push/pull widgets 向下",iP="b1d51b124421409389fead17347a84af",iQ="fbc0262d53ef4d38b0d2a94729c7b223",iR="设置 设备 为 收起 push/pull widgets 向下",iS="ea544146c7bf4ba188c4f9980acc50da",iT="SNMP",iU="在 当前窗口 打开 /2/SNMP",iV="_2_snmp.html",iW="541c758399da4f399c0fc58ea01feee9",iX="设备列表",iY="在 当前窗口 打开 /2/设备列表",iZ="_2_设备列表.html",ja="e1c46db03da5412eb06e119b69b54c88",jb="NTP设置",jc="在 当前窗口 打开 /2/NTP设置",jd="_2_ntp设置.html",je="5ed2f732332d4a95a939c27caf2fbc9f",jf="设备标签",jg="在 当前窗口 打开 /2/设备标签",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="b67a3adbe7c94322ac64f558809cfe8d",jU="scriptId",jV="u4814",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4815",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4816",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4817",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4818",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4819",kg="0d264741477549399c9586a19d72c94c",kh="u4820",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4821",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4822",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4823",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4824",kq="6d999717f47c45b488270f1138ce00fb",kr="u4825",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4826",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4827",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4828",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4829",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4830",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4831",kE="07e9a718986f4456b84348343c870c0a",kF="u4832",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4833",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4834",kK="5098ad65c8f7492c9069f4a964723317",kL="u4835",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4836",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4837",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4838",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4839",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4840",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4841",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4842",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4843",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4844",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4845",lg="6e3656fad051471985367dfcecd7efd8",lh="u4846",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4847",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4848",lm="620d6328a97942419ae02f8789b911e2",ln="u4849",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4850",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4851",ls="cd656119d92145688ed53bf413ed4959",lt="u4852",lu="91def88484484083927f2283fe2dcc27",lv="u4853",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4854",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4855",lA="0cc50ffea147485e97d2d81166a21165",lB="u4856",lC="0cde056acd5f48828ad1f872add05f25",lD="u4857",lE="b669d535c7094350a886008e7cef4af0",lF="u4858",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4859",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4860",lK="5b670361476844109058ee67e9e585d2",lL="u4861",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4862",lO="bbc6891697924708b5a6119bbb896bab",lP="u4863",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4864",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4865",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4866",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4867",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4868",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4869",mc="578dad9d6baf4ee69400878858762724",md="u4870",me="3d533d005742479cbd215b234aad09bb",mf="u4871",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4872",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4873",mk="1759f58887a6423abd3758fd1891a06d",ml="u4874",mm="6b1a1692e80948e5975c69cb51886278",mn="u4875",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4876",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4877",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4878",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4879",mw="541c758399da4f399c0fc58ea01feee9",mx="u4880",my="e1c46db03da5412eb06e119b69b54c88",mz="u4881",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4882",mC="6d744837c12d4451b03523db77f0de4b",mD="u4883",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4884",mG="2066d8079c694bb3971a40cbf3279606",mH="u4885",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4886",mK="77d1855694f640579e26ec450555a8a3",mL="u4887",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4888",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4889",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4890",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4891",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4892"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_设备标签/styles.css b/public/files/_2_设备标签/styles.css deleted file mode 100644 index 95d9736..0000000 --- a/public/files/_2_设备标签/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4815_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4815 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4815_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4816_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4816 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4816_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4817_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4817 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4817_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4818_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4818 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4818_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4819 { - position:absolute; - left:0px; - top:235px; -} -#u4819_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4819_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4820_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4820 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4820_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4820_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4819_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4819_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4821_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4821 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4821_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4821_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4822_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4822 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4822_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4822.selected { -} -#u4822_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4822_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4823_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4823 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4823_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4823.selected { -} -#u4823_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4823_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4824_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4824 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4824_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4824.selected { -} -#u4824_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4824_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4825_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4825 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4825_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4825.selected { -} -#u4825_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4825_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4826 { - position:absolute; - left:0px; - top:180px; -} -#u4826_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4826_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4827_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4827 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4827_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4827_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4826_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4826_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4828_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4828 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4828_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4828_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4829_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4829 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4829_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4829.selected { -} -#u4829_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4829_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4830_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4830 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4830_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4830.selected { -} -#u4830_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4830_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4831_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4831 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4831_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4831.selected { -} -#u4831_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4831_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4832_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4832 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4832_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4832.selected { -} -#u4832_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4832_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4826_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4833 { - position:absolute; - left:0px; - top:345px; -} -#u4833_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4833_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4834_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4834 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4834_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4834_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4833_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4833_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4835_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4835 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4835_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4835_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4836_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4836 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4836_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4836.selected { -} -#u4836_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4836_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4837_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4837 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4837_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4837.selected { -} -#u4837_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4837_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4838_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4838 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4838_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4838.selected { -} -#u4838_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4838_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4833_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4839 { - position:absolute; - left:0px; - top:70px; -} -#u4839_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4839_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4840_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4840 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4840_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4840_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4839_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4839_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4841_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4841 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4841_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4841_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4842_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4842 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4842_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4842.selected { -} -#u4842_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4842_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4843_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4843 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4843_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4843.selected { -} -#u4843_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4843_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4844_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4844 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4844_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4844.selected { -} -#u4844_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4844_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4845_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4845 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4845_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4845.selected { -} -#u4845_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4845_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4846_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4846 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4846_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4846.selected { -} -#u4846_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4846_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4847_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4847 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4847_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4847.selected { -} -#u4847_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4847_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4848_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4848 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4848_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4848.selected { -} -#u4848_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4848_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4849_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4849 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4849_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4849.selected { -} -#u4849_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4849_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4850_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4850 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4850_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4850.selected { -} -#u4850_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4850_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4839_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4851 { - position:absolute; - left:0px; - top:125px; -} -#u4851_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4851_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4852_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4852 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4852_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4852_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4851_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4851_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4853_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4853 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4853_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4853_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4854_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4854 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4854_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4854.selected { -} -#u4854_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4854_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4855_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4855 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4855_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4855.selected { -} -#u4855_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4855_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4856_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4856 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4856_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4856.selected { -} -#u4856_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4856_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4857_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4857 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4857_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4857.selected { -} -#u4857_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4857_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4858_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4858 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4858_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4858.selected { -} -#u4858_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4858_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4859_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4859 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4859_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4859.selected { -} -#u4859_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4859_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4860_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4860 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4860_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4860.selected { -} -#u4860_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4860_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4861_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4861 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4861_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4861.selected { -} -#u4861_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4861_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4851_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4862 { - position:absolute; - left:0px; - top:290px; -} -#u4862_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4862_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4863_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4863 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4863_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4863_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4862_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4862_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4864_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4864 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4864_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4864_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4865_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4865 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4865_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4865.selected { -} -#u4865_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4865_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4866_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4866 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4866_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4866.selected { -} -#u4866_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4866_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4862_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4867 { - position:absolute; - left:0px; - top:400px; -} -#u4867_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4867_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4868_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4868 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4868_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4868_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4867_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4867_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4869_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4869 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4869_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4869_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4870_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4870 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4870_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4870.selected { -} -#u4870_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4870_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4871_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4871 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4871_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4871.selected { -} -#u4871_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4871_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4872_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4872 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4872_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4872.selected { -} -#u4872_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4872_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4873_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4873 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4873_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4873.selected { -} -#u4873_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4873_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4874_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4874 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4874_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4874.selected { -} -#u4874_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4874_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4875_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4875 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4875_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4875.selected { -} -#u4875_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4875_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4867_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4876 { - position:absolute; - left:0px; - top:455px; -} -#u4876_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4876_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4877_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4877 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4877_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4876_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4876_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4878_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4878 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4878_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4879_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4879 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4879_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4879.selected { -} -#u4879_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4879_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4880_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4880 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4880_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4880.selected { -} -#u4880_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4880_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4881_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4881 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4881_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4881.selected { -} -#u4881_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4881_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4882_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4882 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4882_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4882.selected { -} -#u4882_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4882_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4883_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4883 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4883_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4883.selected { -} -#u4883_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4883_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4884_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4884 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4884_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4884.selected { -} -#u4884_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4884_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4885_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4885 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4885_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4885.selected { -} -#u4885_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4885_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4886_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4886 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4886_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4886.selected { -} -#u4886_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4886_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4887 { - position:absolute; - left:0px; - top:510px; -} -#u4887_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4887_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4888_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4888 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4888_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4887_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4887_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4889_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4889 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4889_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4890_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4890 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4890_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4890.selected { -} -#u4890_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4890_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4891_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4891 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4891_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4891.selected { -} -#u4891_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4891_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4892_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4892 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4892_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4892.selected { -} -#u4892_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4892_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_设备状态/data.js b/public/files/_2_设备状态/data.js deleted file mode 100644 index 10cdd9a..0000000 --- a/public/files/_2_设备状态/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="

      Devices

      ",fs="7cf8bc9379a74906b78129a7c79b5204",ft="带宽、新建、活跃、丢弃、通过",fu="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fv="带宽、新建、活跃、丢弃、通过.html",fw="

      BandwidthNewLiveDropPass

      ",fx="644cfa35fe994f0daf01c43e46cadc55",fy="带宽变化",fz="在 当前窗口 打开 /2/带宽变化",fA="_2_带宽变化.html",fB="

      Traffic Over Time By Bandwidth

      ",fC="f7bdb45b7dd74715a5f2f96c63522835",fD="在 当前窗口 打开 高命中的策略",fE="高命中的策略.html",fF="

      Top Policy Hits

      ",fG="6e3656fad051471985367dfcecd7efd8",fH="活跃源IP排名",fI=225,fJ="在 当前窗口 打开 活跃源IP排名",fK="活跃源ip排名.html",fL="

      Top Internal Hosts By Sessions

      ",fM="85444d6bb7604745b615ea6c0be0dfbd",fN="活跃目的IP排名",fO=270,fP="在 当前窗口 打开 活跃目的IP排名",fQ="活跃目的ip排名.html",fR="

      Top External Hosts By Sessions

      ",fS="42c554bcc055434ba48c579ee60b70ef",fT="活跃域名排名",fU=315,fV="在 当前窗口 打开 活跃域名排名",fW="活跃域名排名.html",fX="

      Top Website Domains By Bandwidth

      ",fY="620d6328a97942419ae02f8789b911e2",fZ="活跃URL排名",ga=360,gb="在 当前窗口 打开 活跃URL排名",gc="活跃url排名.html",gd="

      Top HTTP/HTTPS URLS By Sessions

      ",ge="2104d7235c9d4010b05b9fb8b3945291",gf="活跃用户排名",gg=405,gh="在 当前窗口 打开 活跃用户排名",gi="活跃用户排名.html",gj="

      Top User By Bandwidth

      ",gk="ce40ad7023294c8ea02e3aaa39fe9359",gl="策略&对象",gm=125,gn="

      Policy&Objects

      ",go="

      Политика и Объекты

      ",gp="872ff99d15cd4403a36c3c0828b204fb",gq="cd656119d92145688ed53bf413ed4959",gr="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gs="e79ef6eb8bea477b951c71a1b9fe5e55",gt="91def88484484083927f2283fe2dcc27",gu="设置 策略&对象 为 收起 push/pull widgets 向下",gv="

      Политика и Объекты


      ",gw="4b13957666154ecda2d5e2f7d636101e",gx="代理拦截策略",gy="在 当前窗口 打开 代理拦截策略",gz="代理拦截策略.html",gA="

      Proxy Interception

      ",gB="

      Прокси Перехват

      ",gC="f8ae401a90f649b2b6c2a87c9c17d0dd",gD="防火墙策略",gE="在 当前窗口 打开 /2/防火墙策略",gF="_2_防火墙策略.html",gG="

      Firewall

      ",gH="

      Брандмауэр

      ",gI="0cc50ffea147485e97d2d81166a21165",gJ="代理管控策略",gK="

      Proxy Manipulation

      ",gL="

      Прокси Манипуляция

      ",gM="0cde056acd5f48828ad1f872add05f25",gN="内容检查策略",gO="在 当前窗口 打开 /2/内容检查策略",gP="_2_内容检查策略.html",gQ="

      Content Inspection

      ",gR="

      Проверка Контента

      ",gS="b669d535c7094350a886008e7cef4af0",gT="对象",gU="在 当前窗口 打开 对象",gV="对象.html",gW="

      Objects

      ",gX="

      Объекты

      ",gY="37e0281ff7f44a01940207aacde15d1d",gZ="时间计划",ha="在 当前窗口 打开 时间计划",hb="时间计划.html",hc="

      Schedule

      ",hd="

      Расписание


      ",he="1a68e2e6dc044fd0817478eea51985b1",hf="标签",hg="在 当前窗口 打开 标签",hh="标签.html",hi="

      Tags

      ",hj="

      Теги

      ",hk="5b670361476844109058ee67e9e585d2",hl="串联设备(可选)",hm="在 当前窗口 打开 /2/串联设备(可选)",hn="_2_串联设备(可选).html",ho="

      Inline Device

      ",hp="

      Последовательное Устройство

      ",hq="87b93e86784a428ebd47f511a4ba2c4f",hr="报告",hs=290,ht="b64e296b35444e11a375c42f3e6ee72d",hu="bbc6891697924708b5a6119bbb896bab",hv="设置 报告 为 展开 show if hidden push/pull widgets 向下",hw="9388ba2f489b436aa2f3851b5889d374",hx="4d3a090b203d49d1a7fb36de39828355",hy="设置 报告 为 收起 push/pull widgets 向下",hz="fbde9bbdcd704824945ab49b5beecdcb",hA="报表结果",hB="在 当前窗口 打开 /2/报表结果",hC="_2_报表结果.html",hD="

      Reports

      ",hE="

      Отчеты

      ",hF="6e04fbf50e9445d1a7a6ae3da1977530",hG="报告任务",hH="在 当前窗口 打开 /2/报告任务",hI="_2_报告任务.html",hJ="

      Report Tasks

      ",hK="

      Отчет Задачи

      ",hL="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hM="系统",hN=400,hO="83946562f27346a4a97f498a2f32bbf7",hP="c7566dc5ceae4d1ba17bd159636d896f",hQ="设置 系统 为 展开 show if hidden push/pull widgets 向下",hR="

      System

      ",hS="

      Система

      ",hT="d913d84a32c149f3a1260a92cbd43605",hU="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hV="设置 系统 为 收起 push/pull widgets 向下",hW="578dad9d6baf4ee69400878858762724",hX="角色管理",hY="在 当前窗口 打开 /2/角色管理",hZ="_2_角色管理.html",ia="

      Role Mangement

      ",ib="

      Управление Ролями

      ",ic="3d533d005742479cbd215b234aad09bb",id="用户管理",ie="在 当前窗口 打开 /2/用户管理",ig="_2_用户管理.html",ih="

      User Management

      ",ii="

      Управление Пользователями

      ",ij="bab311fc9467417cb7b7a58f2d22372f",ik="策略审计日志",il="在 当前窗口 打开 /2/策略审计日志",im="_2_策略审计日志.html",io="

      Policy Configuration Log

      ",ip="

      Журнал Конфигурации Политики

      ",iq="f48a23f842a64b2fa5e6418008bd4d68",ir="邮件服务器",is="在 当前窗口 打开 /2/邮件服务器",it="_2_邮件服务器.html",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="3313d9635df649489e3dbf44d41439c5",jU="scriptId",jV="u168",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u169",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u170",ka="287161d6553d482dbb471a03f2b96d8d",kb="u171",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u172",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u173",kg="0d264741477549399c9586a19d72c94c",kh="u174",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u175",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u176",km="b03fa42397b840c7be9ac06da5567aa7",kn="u177",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u178",kq="6d999717f47c45b488270f1138ce00fb",kr="u179",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u180",ku="188a2dff382a42948e36596c4dd80f3d",kv="u181",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u182",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u183",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u184",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u185",kE="07e9a718986f4456b84348343c870c0a",kF="u186",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u187",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u188",kK="5098ad65c8f7492c9069f4a964723317",kL="u189",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u190",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u191",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u192",kS="07c280170e8b49c58503de5d9d1deda7",kT="u193",kU="5c5a7e1a78634167985368e626cb44a6",kV="u194",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u195",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u196",la="7cf8bc9379a74906b78129a7c79b5204",lb="u197",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u198",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u199",lg="6e3656fad051471985367dfcecd7efd8",lh="u200",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u201",lk="42c554bcc055434ba48c579ee60b70ef",ll="u202",lm="620d6328a97942419ae02f8789b911e2",ln="u203",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u204",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u205",ls="cd656119d92145688ed53bf413ed4959",lt="u206",lu="91def88484484083927f2283fe2dcc27",lv="u207",lw="4b13957666154ecda2d5e2f7d636101e",lx="u208",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u209",lA="0cc50ffea147485e97d2d81166a21165",lB="u210",lC="0cde056acd5f48828ad1f872add05f25",lD="u211",lE="b669d535c7094350a886008e7cef4af0",lF="u212",lG="37e0281ff7f44a01940207aacde15d1d",lH="u213",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u214",lK="5b670361476844109058ee67e9e585d2",lL="u215",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u216",lO="bbc6891697924708b5a6119bbb896bab",lP="u217",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u218",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u219",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u220",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u221",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u222",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u223",mc="578dad9d6baf4ee69400878858762724",md="u224",me="3d533d005742479cbd215b234aad09bb",mf="u225",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u226",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u227",mk="1759f58887a6423abd3758fd1891a06d",ml="u228",mm="6b1a1692e80948e5975c69cb51886278",mn="u229",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u230",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u231",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u232",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u233",mw="541c758399da4f399c0fc58ea01feee9",mx="u234",my="e1c46db03da5412eb06e119b69b54c88",mz="u235",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u236",mC="6d744837c12d4451b03523db77f0de4b",mD="u237",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u238",mG="2066d8079c694bb3971a40cbf3279606",mH="u239",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u240",mK="77d1855694f640579e26ec450555a8a3",mL="u241",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u242",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u243",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u244",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u245",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u246"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_设备状态/styles.css b/public/files/_2_设备状态/styles.css deleted file mode 100644 index 43000da..0000000 --- a/public/files/_2_设备状态/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u169_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u169 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u169_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u170_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u170 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u170_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u171_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u171 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u171_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u172_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u172 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u172_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u173 { - position:absolute; - left:0px; - top:235px; -} -#u173_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u173_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u174_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u174 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u174_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u174_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u173_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u173_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u175_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u175 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u175_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u175_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u176_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u176 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u176_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u176.selected { -} -#u176_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u176_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u177_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u177 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u177_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u177.selected { -} -#u177_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u177_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u178_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u178 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u178_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u178.selected { -} -#u178_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u178_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u179_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u179 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u179_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u179.selected { -} -#u179_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u179_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u180 { - position:absolute; - left:0px; - top:180px; -} -#u180_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u180_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u181_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u181 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u181_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u181_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u180_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u180_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u182_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u182 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u182_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u182_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u183_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u183 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u183_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u183.selected { -} -#u183_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u183_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u184_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u184 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u184_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u184.selected { -} -#u184_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u184_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u185_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u185 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u185_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u185.selected { -} -#u185_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u185_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u186_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u186 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u186_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u186.selected { -} -#u186_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u186_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u180_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u187 { - position:absolute; - left:0px; - top:345px; -} -#u187_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u187_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u188_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u188 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u188_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u188_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u187_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u187_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u189_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u189 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u189_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u189_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u190_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u190 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u190_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u190.selected { -} -#u190_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u190_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u191_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u191 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u191_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u191.selected { -} -#u191_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u191_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u192_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u192 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u192_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u192.selected { -} -#u192_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u192_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u187_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u193 { - position:absolute; - left:0px; - top:70px; -} -#u193_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u193_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u194_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u194 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u194_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u194_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u193_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u193_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u195_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u195 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u195_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u195_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u196_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u196 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u196_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u196.selected { -} -#u196_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u196_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u197_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u197 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u197_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u197.selected { -} -#u197_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u197_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u198_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u198 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u198_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u198.selected { -} -#u198_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u198_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u199_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u199 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u199_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u199.selected { -} -#u199_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u199_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u200_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u200 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u200_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u200.selected { -} -#u200_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u200_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u201_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u201 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u201_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u201.selected { -} -#u201_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u201_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u202_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u202 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u202_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u202.selected { -} -#u202_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u202_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u203_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u203 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u203_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u203.selected { -} -#u203_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u203_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u204_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u204 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u204_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u204.selected { -} -#u204_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u204_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u193_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u205 { - position:absolute; - left:0px; - top:125px; -} -#u205_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u205_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u206_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u206 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u206_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u206_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u205_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u205_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u207_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u207 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u207_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u207_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u208_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u208 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u208_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u208.selected { -} -#u208_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u208_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u209_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u209 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u209_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u209.selected { -} -#u209_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u209_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u210_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u210 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u210_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u210.selected { -} -#u210_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u210_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u211_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u211 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u211_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u211.selected { -} -#u211_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u211_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u212_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u212 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u212_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u212.selected { -} -#u212_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u212_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u213_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u213 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u213_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u213.selected { -} -#u213_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u213_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u214_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u214 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u214_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u214.selected { -} -#u214_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u214_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u215_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u215 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u215_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u215.selected { -} -#u215_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u215_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u205_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u216 { - position:absolute; - left:0px; - top:290px; -} -#u216_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u216_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u217_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u217 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u217_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u217_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u216_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u216_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u218_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u218 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u218_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u218_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u219_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u219 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u219_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u219.selected { -} -#u219_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u219_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u220_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u220 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u220_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u220.selected { -} -#u220_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u220_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u216_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u221 { - position:absolute; - left:0px; - top:400px; -} -#u221_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u221_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u222_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u222 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u222_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u222_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u221_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u221_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u223_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u223 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u223_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u223_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u224_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u224 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u224_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u224.selected { -} -#u224_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u224_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u225_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u225 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u225_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u225.selected { -} -#u225_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u225_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u226_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u226 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u226_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u226.selected { -} -#u226_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u226_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u227_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u227 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u227_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u227.selected { -} -#u227_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u227_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u228_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u228 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u228_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u228.selected { -} -#u228_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u228_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u229_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u229 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u229_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u229.selected { -} -#u229_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u229_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u221_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u230 { - position:absolute; - left:0px; - top:455px; -} -#u230_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u230_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u231_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u231 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u231_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u230_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u230_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u232_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u232 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u232_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u233_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u233 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u233_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u233.selected { -} -#u233_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u233_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u234_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u234 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u234_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u234.selected { -} -#u234_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u234_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u235_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u235 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u235_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u235.selected { -} -#u235_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u235_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u236_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u236 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u236_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u236.selected { -} -#u236_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u236_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u237_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u237 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u237_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u237.selected { -} -#u237_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u237_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u238_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u238 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u238_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u238.selected { -} -#u238_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u238_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u239_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u239 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u239_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u239.selected { -} -#u239_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u239_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u240_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u240 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u240_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u240.selected { -} -#u240_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u240_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u241 { - position:absolute; - left:0px; - top:510px; -} -#u241_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u241_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u242_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u242 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u242_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u241_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u241_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u243_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u243 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u243_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u244_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u244 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u244_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u244.selected { -} -#u244_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u244_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u245_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u245 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u245_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u245.selected { -} -#u245_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u245_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u246_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u246 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u246_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u246.selected { -} -#u246_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u246_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_邮件服务器/data.js b/public/files/_2_邮件服务器/data.js deleted file mode 100644 index 5b3a631..0000000 --- a/public/files/_2_邮件服务器/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iCertificate Management

      ",db="俄文",dc="

      Управление Сертификатами

      ",dd="2799bea5c4114178b4e043a05b69c41f",de="展开",df="41b95c6a240b48839df8cf0f47b01ec9",dg=1,dh="设置 证书管理 为 收起 push/pull widgets 向下",di="eca4fcd504c743719d5ec6952c6e3ef5",dj="Key Rings",dk=90,dl="stateStyles",dm="selected",dn=0xFF30749C,dp="linkWindow",dq="在 当前窗口 打开 KeyRing(+)",dr="target",ds="targetType",dt="keyring___.html",du="includeVariables",dv="linkType",dw="current",dx="

      Keyrings

      ",dy="

      Кольцо Ключей

      ",dz="b03fa42397b840c7be9ac06da5567aa7",dA="默认的信任证书权威机构",dB="在 当前窗口 打开 默认的信任证书权威机构(+)",dC="默认的信任证书权威机构(_).html",dD="

      Default Trusted Certificate Authorities

      ",dE="

      Доверенные Центры Сертификации По Умолчанию

      ",dF="d03aa63ff5454a8b98a74e97f8175c02",dG="默认的根证书",dH=135,dI="在 当前窗口 打开 默认的根证书(+)",dJ="默认的根证书(_).html",dK="

      Default Root Certificate

      ",dL="

      Корневой Сертификат По Умолчанию

      ",dM="6d999717f47c45b488270f1138ce00fb",dN="默认证书校验方式",dO=180,dP="在 当前窗口 打开 默认证书校验方式(+)",dQ="默认证书校验方式(_).html",dR="

      Global Certificate Verification Options

      ",dS="8ff58e28196a405dac8f7bd8af6f770a",dT="配置文件",dU="

      Profile

      ",dV="

      Профиль

      ",dW="7abef24f9bdb4a949ab45ee2ea2241b6",dX="188a2dff382a42948e36596c4dd80f3d",dY="设置 配置文件 为 展开 show if hidden push/pull widgets 向下",dZ="ba114aa7cb9d4e9d929831a92a126553",ea="4d68f01a79b24a14baeb98a69d9e9bd2",eb="设置 配置文件 为 收起 push/pull widgets 向下",ec="7ef6dd287cf74733a7ae6e065076ea7f",ed="注入脚本",ee="在 当前窗口 打开 注入脚本(+)",ef="注入脚本(_).html",eg="

      Insert Scripts

      ",eh="

      Вставка Скриптов

      ",ei="92f4c3ac20374e81a86252a8ba0b8174",ej="应答页面",ek="在 当前窗口 打开 应答页面(+)",el="应答页面(_).html",em="

      Response Pages

      ",en="

      Страницы Ответов

      ",eo="f7505cc4eee0416b9dcf6d00c93073d3",ep="劫持文件",eq="在 当前窗口 打开 劫持文件(+)",er="劫持文件(_).html",es="

      Hijack Files

      ",et="

      Угон Файлов

      ",eu="07e9a718986f4456b84348343c870c0a",ev="解密流量转发",ew="在 当前窗口 打开 解密流量转发(+)",ex="解密流量转发(_).html",ey="

      Traffic Mirror Profiles

      ",ez="

      Пересылка Расшифрованного Трафика

      ",eA="d38e8fab4f69464e946b74a9c5954fa3",eB="日志",eC=345,eD="

      Log

      ",eE="

      Журнал

      ",eF="92908311830947e2931ebbb7a2eb6e87",eG="dd256d79a7234a1bad48df3c04a4a89f",eH="设置 日志 为 展开 show if hidden push/pull widgets 向下",eI="a2eb2ac6a13141d3a531467150b1cb4d",eJ="5098ad65c8f7492c9069f4a964723317",eK="设置 日志 为 收起 push/pull widgets 向下",eL="2fa6203e493a47e5ae91b989dfbf007a",eM="通联日志",eN="在 当前窗口 打开 通联日志",eO="通联日志.html",eP="

      Sesssion Records

      ",eQ="

      Сеанс Записи

      ",eR="8e9a92093e3244f398b54ba29c09ae30",eS="事件日志",eT="在 当前窗口 打开 事件日志",eU="事件日志.html",eV="

      Event Logs

      ",eW="

      Журнал Событий

      ",eX="4e623a4576bc46daaa08924cc0df54bd",eY="Radius日志",eZ="在 当前窗口 打开 /2/Radius日志",fa="_2_radius__.html",fb="

      Radius Logs

      ",fc="

      Журнал Radius

      ",fd="07c280170e8b49c58503de5d9d1deda7",fe="仪表盘",ff="

      Dashboard

      ",fg="

      Приборная Панель

      ",fh="1da2375e875b48bd9eb61de648bb6ddf",fi="5c5a7e1a78634167985368e626cb44a6",fj="在 当前窗口 打开 仪表盘",fk="仪表盘.html",fl="0f86adf618534aaabfeb0b967b646569",fm="ab09bc9722fc4b43a1a8bc75801a528e",fn="设置 仪表盘 为 收起 push/pull widgets 向下",fo="9a0dd654c7174c5abaf14732f23e6535",fp="设备状态",fq="在 当前窗口 打开 /2/设备状态",fr="_2_设备状态.html",fs="

      Devices

      ",ft="7cf8bc9379a74906b78129a7c79b5204",fu="带宽、新建、活跃、丢弃、通过",fv="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fw="带宽、新建、活跃、丢弃、通过.html",fx="

      BandwidthNewLiveDropPass

      ",fy="644cfa35fe994f0daf01c43e46cadc55",fz="带宽变化",fA="在 当前窗口 打开 /2/带宽变化",fB="_2_带宽变化.html",fC="

      Traffic Over Time By Bandwidth

      ",fD="f7bdb45b7dd74715a5f2f96c63522835",fE="在 当前窗口 打开 高命中的策略",fF="高命中的策略.html",fG="

      Top Policy Hits

      ",fH="6e3656fad051471985367dfcecd7efd8",fI="活跃源IP排名",fJ=225,fK="在 当前窗口 打开 活跃源IP排名",fL="活跃源ip排名.html",fM="

      Top Internal Hosts By Sessions

      ",fN="85444d6bb7604745b615ea6c0be0dfbd",fO="活跃目的IP排名",fP=270,fQ="在 当前窗口 打开 活跃目的IP排名",fR="活跃目的ip排名.html",fS="

      Top External Hosts By Sessions

      ",fT="42c554bcc055434ba48c579ee60b70ef",fU="活跃域名排名",fV=315,fW="在 当前窗口 打开 活跃域名排名",fX="活跃域名排名.html",fY="

      Top Website Domains By Bandwidth

      ",fZ="620d6328a97942419ae02f8789b911e2",ga="活跃URL排名",gb=360,gc="在 当前窗口 打开 活跃URL排名",gd="活跃url排名.html",ge="

      Top HTTP/HTTPS URLS By Sessions

      ",gf="2104d7235c9d4010b05b9fb8b3945291",gg="活跃用户排名",gh=405,gi="在 当前窗口 打开 活跃用户排名",gj="活跃用户排名.html",gk="

      Top User By Bandwidth

      ",gl="ce40ad7023294c8ea02e3aaa39fe9359",gm="策略&对象",gn=125,go="

      Policy&Objects

      ",gp="

      Политика и Объекты

      ",gq="872ff99d15cd4403a36c3c0828b204fb",gr="cd656119d92145688ed53bf413ed4959",gs="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gt="e79ef6eb8bea477b951c71a1b9fe5e55",gu="91def88484484083927f2283fe2dcc27",gv="设置 策略&对象 为 收起 push/pull widgets 向下",gw="

      Политика и Объекты


      ",gx="4b13957666154ecda2d5e2f7d636101e",gy="代理拦截策略",gz="在 当前窗口 打开 代理拦截策略",gA="代理拦截策略.html",gB="

      Proxy Interception

      ",gC="

      Прокси Перехват

      ",gD="f8ae401a90f649b2b6c2a87c9c17d0dd",gE="防火墙策略",gF="在 当前窗口 打开 /2/防火墙策略",gG="_2_防火墙策略.html",gH="

      Firewall

      ",gI="

      Брандмауэр

      ",gJ="0cc50ffea147485e97d2d81166a21165",gK="代理管控策略",gL="

      Proxy Manipulation

      ",gM="

      Прокси Манипуляция

      ",gN="0cde056acd5f48828ad1f872add05f25",gO="内容检查策略",gP="在 当前窗口 打开 /2/内容检查策略",gQ="_2_内容检查策略.html",gR="

      Content Inspection

      ",gS="

      Проверка Контента

      ",gT="b669d535c7094350a886008e7cef4af0",gU="对象",gV="在 当前窗口 打开 对象",gW="对象.html",gX="

      Objects

      ",gY="

      Объекты

      ",gZ="37e0281ff7f44a01940207aacde15d1d",ha="时间计划",hb="在 当前窗口 打开 时间计划",hc="时间计划.html",hd="

      Schedule

      ",he="

      Расписание


      ",hf="1a68e2e6dc044fd0817478eea51985b1",hg="标签",hh="在 当前窗口 打开 标签",hi="标签.html",hj="

      Tags

      ",hk="

      Теги

      ",hl="5b670361476844109058ee67e9e585d2",hm="串联设备(可选)",hn="在 当前窗口 打开 /2/串联设备(可选)",ho="_2_串联设备(可选).html",hp="

      Inline Device

      ",hq="

      Последовательное Устройство

      ",hr="87b93e86784a428ebd47f511a4ba2c4f",hs="报告",ht=290,hu="b64e296b35444e11a375c42f3e6ee72d",hv="bbc6891697924708b5a6119bbb896bab",hw="设置 报告 为 展开 show if hidden push/pull widgets 向下",hx="9388ba2f489b436aa2f3851b5889d374",hy="4d3a090b203d49d1a7fb36de39828355",hz="设置 报告 为 收起 push/pull widgets 向下",hA="fbde9bbdcd704824945ab49b5beecdcb",hB="报表结果",hC="在 当前窗口 打开 /2/报表结果",hD="_2_报表结果.html",hE="

      Reports

      ",hF="

      Отчеты

      ",hG="6e04fbf50e9445d1a7a6ae3da1977530",hH="报告任务",hI="在 当前窗口 打开 /2/报告任务",hJ="_2_报告任务.html",hK="

      Report Tasks

      ",hL="

      Отчет Задачи

      ",hM="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hN="系统",hO=400,hP="83946562f27346a4a97f498a2f32bbf7",hQ="c7566dc5ceae4d1ba17bd159636d896f",hR="设置 系统 为 展开 show if hidden push/pull widgets 向下",hS="

      System

      ",hT="

      Система

      ",hU="d913d84a32c149f3a1260a92cbd43605",hV="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hW="设置 系统 为 收起 push/pull widgets 向下",hX="578dad9d6baf4ee69400878858762724",hY="角色管理",hZ="在 当前窗口 打开 /2/角色管理",ia="_2_角色管理.html",ib="

      Role Mangement

      ",ic="

      Управление Ролями

      ",id="3d533d005742479cbd215b234aad09bb",ie="用户管理",ig="在 当前窗口 打开 /2/用户管理",ih="_2_用户管理.html",ii="

      User Management

      ",ij="

      Управление Пользователями

      ",ik="bab311fc9467417cb7b7a58f2d22372f",il="策略审计日志",im="在 当前窗口 打开 /2/策略审计日志",io="_2_策略审计日志.html",ip="

      Policy Configuration Log

      ",iq="

      Журнал Конфигурации Политики

      ",ir="f48a23f842a64b2fa5e6418008bd4d68",is="邮件服务器",it="在 当前窗口 打开 /2/邮件服务器",iu="

      Mail Server

      ",iv="

      Сервер Почты

      ",iw="1759f58887a6423abd3758fd1891a06d",ix="登录日志",iy="在 当前窗口 打开 /2/登录日志",iz="_2_登录日志.html",iA="

      Login Log

      ",iB="

      Жунрал Входа

      ",iC="6b1a1692e80948e5975c69cb51886278",iD="系统参数",iE="在 当前窗口 打开 /2/系统参数",iF="_2_系统参数.html",iG="

      Global Parameters

      ",iH="

      Глобальный Параметр

      ",iI="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iJ="设备",iK=455,iL="f123854da4504481a447ef17b01fea34",iM="6aa0ab27ba354ae39d709c8435b01487",iN="设置 设备 为 展开 show if hidden push/pull widgets 向下",iO="b1d51b124421409389fead17347a84af",iP="fbc0262d53ef4d38b0d2a94729c7b223",iQ="设置 设备 为 收起 push/pull widgets 向下",iR="ea544146c7bf4ba188c4f9980acc50da",iS="SNMP",iT="在 当前窗口 打开 /2/SNMP",iU="_2_snmp.html",iV="541c758399da4f399c0fc58ea01feee9",iW="设备列表",iX="在 当前窗口 打开 /2/设备列表",iY="_2_设备列表.html",iZ="e1c46db03da5412eb06e119b69b54c88",ja="NTP设置",jb="在 当前窗口 打开 /2/NTP设置",jc="_2_ntp设置.html",jd="5ed2f732332d4a95a939c27caf2fbc9f",je="设备标签",jf="在 当前窗口 打开 /2/设备标签",jg="_2_设备标签.html",jh="6d744837c12d4451b03523db77f0de4b",ji="接口",jj="在 当前窗口 打开 /2/接口",jk="_2_接口.html",jl="f5b83fbcd88a4567851a800fd5a157af",jm="固件",jn="在 当前窗口 打开 /2/固件",jo="_2_固件.html",jp="2066d8079c694bb3971a40cbf3279606",jq="备份&恢复",jr="在 当前窗口 打开 /2/备份&恢复",js="_2_备份_恢复.html",jt="8f6ffa5a96a14d79ae7201eb8bbff6b5",ju="数据包捕获",jv="在 当前窗口 打开 /2/数据包捕获",jw="_2_数据包捕获.html",jx="77d1855694f640579e26ec450555a8a3",jy="后台管理",jz=510,jA="9662ce02b5004c29baa5aa3929abab43",jB="204f45f6afc34d5d99894ec9b10eb71b",jC="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jD="55332c86d1434008b455fb49c931cf9e",jE="ab9166e59a1147aeaf21e70536b34bae",jF="设置 后台管理 为 收起 push/pull widgets 向下",jG="2f23aa851a9d4d54993f66fbe1cbf708",jH="字典管理",jI="在 当前窗口 打开 /2/字典管理",jJ="_2_字典管理.html",jK="7444e1c9dc94459292cb03b8f3cd1229",jL="菜单管理",jM="在 当前窗口 打开 /2/菜单管理",jN="_2_菜单管理.html",jO="d4c7fb622cfc47f4a2791478a3eea221",jP="参数管理",jQ="在 当前窗口 打开 /2/参数管理",jR="_2_参数管理.html",jS="objectPaths",jT="38ebe5697f62463a930011ca971d4449",jU="scriptId",jV="u4261",jW="f0f1aca662f44078a3907d7b6fca671b",jX="u4262",jY="3ad4cf8772cd49049b30415198f796d4",jZ="u4263",ka="287161d6553d482dbb471a03f2b96d8d",kb="u4264",kc="1d8fcbafe0304b998b0c190507cb5f1c",kd="u4265",ke="7d3b028bbf294c8c9679a130bddc8177",kf="u4266",kg="0d264741477549399c9586a19d72c94c",kh="u4267",ki="41b95c6a240b48839df8cf0f47b01ec9",kj="u4268",kk="eca4fcd504c743719d5ec6952c6e3ef5",kl="u4269",km="b03fa42397b840c7be9ac06da5567aa7",kn="u4270",ko="d03aa63ff5454a8b98a74e97f8175c02",kp="u4271",kq="6d999717f47c45b488270f1138ce00fb",kr="u4272",ks="8ff58e28196a405dac8f7bd8af6f770a",kt="u4273",ku="188a2dff382a42948e36596c4dd80f3d",kv="u4274",kw="4d68f01a79b24a14baeb98a69d9e9bd2",kx="u4275",ky="7ef6dd287cf74733a7ae6e065076ea7f",kz="u4276",kA="92f4c3ac20374e81a86252a8ba0b8174",kB="u4277",kC="f7505cc4eee0416b9dcf6d00c93073d3",kD="u4278",kE="07e9a718986f4456b84348343c870c0a",kF="u4279",kG="d38e8fab4f69464e946b74a9c5954fa3",kH="u4280",kI="dd256d79a7234a1bad48df3c04a4a89f",kJ="u4281",kK="5098ad65c8f7492c9069f4a964723317",kL="u4282",kM="2fa6203e493a47e5ae91b989dfbf007a",kN="u4283",kO="8e9a92093e3244f398b54ba29c09ae30",kP="u4284",kQ="4e623a4576bc46daaa08924cc0df54bd",kR="u4285",kS="07c280170e8b49c58503de5d9d1deda7",kT="u4286",kU="5c5a7e1a78634167985368e626cb44a6",kV="u4287",kW="ab09bc9722fc4b43a1a8bc75801a528e",kX="u4288",kY="9a0dd654c7174c5abaf14732f23e6535",kZ="u4289",la="7cf8bc9379a74906b78129a7c79b5204",lb="u4290",lc="644cfa35fe994f0daf01c43e46cadc55",ld="u4291",le="f7bdb45b7dd74715a5f2f96c63522835",lf="u4292",lg="6e3656fad051471985367dfcecd7efd8",lh="u4293",li="85444d6bb7604745b615ea6c0be0dfbd",lj="u4294",lk="42c554bcc055434ba48c579ee60b70ef",ll="u4295",lm="620d6328a97942419ae02f8789b911e2",ln="u4296",lo="2104d7235c9d4010b05b9fb8b3945291",lp="u4297",lq="ce40ad7023294c8ea02e3aaa39fe9359",lr="u4298",ls="cd656119d92145688ed53bf413ed4959",lt="u4299",lu="91def88484484083927f2283fe2dcc27",lv="u4300",lw="4b13957666154ecda2d5e2f7d636101e",lx="u4301",ly="f8ae401a90f649b2b6c2a87c9c17d0dd",lz="u4302",lA="0cc50ffea147485e97d2d81166a21165",lB="u4303",lC="0cde056acd5f48828ad1f872add05f25",lD="u4304",lE="b669d535c7094350a886008e7cef4af0",lF="u4305",lG="37e0281ff7f44a01940207aacde15d1d",lH="u4306",lI="1a68e2e6dc044fd0817478eea51985b1",lJ="u4307",lK="5b670361476844109058ee67e9e585d2",lL="u4308",lM="87b93e86784a428ebd47f511a4ba2c4f",lN="u4309",lO="bbc6891697924708b5a6119bbb896bab",lP="u4310",lQ="4d3a090b203d49d1a7fb36de39828355",lR="u4311",lS="fbde9bbdcd704824945ab49b5beecdcb",lT="u4312",lU="6e04fbf50e9445d1a7a6ae3da1977530",lV="u4313",lW="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lX="u4314",lY="c7566dc5ceae4d1ba17bd159636d896f",lZ="u4315",ma="5f4ec06fb27c4cd1b4820b9f2f6b2b77",mb="u4316",mc="578dad9d6baf4ee69400878858762724",md="u4317",me="3d533d005742479cbd215b234aad09bb",mf="u4318",mg="bab311fc9467417cb7b7a58f2d22372f",mh="u4319",mi="f48a23f842a64b2fa5e6418008bd4d68",mj="u4320",mk="1759f58887a6423abd3758fd1891a06d",ml="u4321",mm="6b1a1692e80948e5975c69cb51886278",mn="u4322",mo="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mp="u4323",mq="6aa0ab27ba354ae39d709c8435b01487",mr="u4324",ms="fbc0262d53ef4d38b0d2a94729c7b223",mt="u4325",mu="ea544146c7bf4ba188c4f9980acc50da",mv="u4326",mw="541c758399da4f399c0fc58ea01feee9",mx="u4327",my="e1c46db03da5412eb06e119b69b54c88",mz="u4328",mA="5ed2f732332d4a95a939c27caf2fbc9f",mB="u4329",mC="6d744837c12d4451b03523db77f0de4b",mD="u4330",mE="f5b83fbcd88a4567851a800fd5a157af",mF="u4331",mG="2066d8079c694bb3971a40cbf3279606",mH="u4332",mI="8f6ffa5a96a14d79ae7201eb8bbff6b5",mJ="u4333",mK="77d1855694f640579e26ec450555a8a3",mL="u4334",mM="204f45f6afc34d5d99894ec9b10eb71b",mN="u4335",mO="ab9166e59a1147aeaf21e70536b34bae",mP="u4336",mQ="2f23aa851a9d4d54993f66fbe1cbf708",mR="u4337",mS="7444e1c9dc94459292cb03b8f3cd1229",mT="u4338",mU="d4c7fb622cfc47f4a2791478a3eea221",mV="u4339"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_邮件服务器/styles.css b/public/files/_2_邮件服务器/styles.css deleted file mode 100644 index 0905dc8..0000000 --- a/public/files/_2_邮件服务器/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u4262_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4262 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u4262_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4263_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4263 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u4263_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u4264_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u4264 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u4264_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4265_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4265 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u4265_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u4266 { - position:absolute; - left:0px; - top:235px; -} -#u4266_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4266_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4267_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4267 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4267_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4267_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4266_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4266_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4268_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4268 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4268_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4268_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4269_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4269 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4269_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4269.selected { -} -#u4269_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4269_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4270_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4270 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4270_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4270.selected { -} -#u4270_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4270_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4271_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4271 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4271_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4271.selected { -} -#u4271_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4271_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4272_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4272 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4272_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4272.selected { -} -#u4272_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4272_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4273 { - position:absolute; - left:0px; - top:180px; -} -#u4273_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4273_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4274_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4274 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4274_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4274_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4273_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u4273_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4275_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4275 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4275_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4275_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4276_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4276 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4276_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4276.selected { -} -#u4276_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4276_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4277_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4277 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4277_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4277.selected { -} -#u4277_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4277_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4278_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4278 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4278_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4278.selected { -} -#u4278_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4278_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4279_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4279 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4279_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4279.selected { -} -#u4279_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4279_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4273_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4280 { - position:absolute; - left:0px; - top:345px; -} -#u4280_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4280_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4281_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4281 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4281_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4281_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4280_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4280_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4282_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4282 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4282_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4282_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4283_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4283 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4283_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4283.selected { -} -#u4283_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4283_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4284_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4284 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4284_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4284.selected { -} -#u4284_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4284_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4285_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4285 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4285_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4285.selected { -} -#u4285_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4285_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4280_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u4286 { - position:absolute; - left:0px; - top:70px; -} -#u4286_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4286_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4287_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4287 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4287_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4287_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4286_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u4286_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4288_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4288 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4288_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4288_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4289_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4289 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4289_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4289.selected { -} -#u4289_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4289_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4290_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4290 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4290_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4290.selected { -} -#u4290_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4290_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4291_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4291 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4291_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4291.selected { -} -#u4291_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4291_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4292_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4292 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4292_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4292.selected { -} -#u4292_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4292_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4293_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4293 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4293_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4293.selected { -} -#u4293_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4293_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4294_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4294 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4294_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4294.selected { -} -#u4294_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4294_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4295_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4295 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4295_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4295.selected { -} -#u4295_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4295_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4296_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4296 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4296_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4296.selected { -} -#u4296_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4296_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4297_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4297 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4297_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4297.selected { -} -#u4297_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4297_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u4286_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u4298 { - position:absolute; - left:0px; - top:125px; -} -#u4298_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4298_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4299_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4299 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4299_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4299_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4298_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4298_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4300_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4300 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u4300_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4300_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4301_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4301 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u4301_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4301.selected { -} -#u4301_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4301_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4302_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4302 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4302_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4302.selected { -} -#u4302_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4302_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4303_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4303 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u4303_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4303.selected { -} -#u4303_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4303_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4304_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4304 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u4304_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4304.selected { -} -#u4304_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4304_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4305_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4305 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u4305_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4305.selected { -} -#u4305_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4305_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4306_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4306 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u4306_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4306.selected { -} -#u4306_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4306_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4307_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4307 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u4307_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4307.selected { -} -#u4307_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4307_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4308_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4308 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u4308_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u4308.selected { -} -#u4308_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4308_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4298_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u4309 { - position:absolute; - left:0px; - top:290px; -} -#u4309_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4309_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4310_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4310 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4310_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4310_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4309_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u4309_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4311_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4311 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4311_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4311_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4312_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4312 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4312_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4312.selected { -} -#u4312_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4312_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4313_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4313 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4313_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4313.selected { -} -#u4313_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4313_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4309_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u4314 { - position:absolute; - left:0px; - top:400px; -} -#u4314_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4314_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4315_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4315 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4315_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4315_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4314_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u4314_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4316_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4316 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4316_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4316_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u4317_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4317 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4317_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4317.selected { -} -#u4317_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4317_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4318_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4318 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4318_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4318.selected { -} -#u4318_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4318_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4319_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4319 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4319_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4319.selected { -} -#u4319_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4319_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4320_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4320 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4320_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4320.selected { -} -#u4320_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4320_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4321_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4321 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4321_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4321.selected { -} -#u4321_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4321_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4322_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4322 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4322_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4322.selected { -} -#u4322_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4322_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4314_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u4323 { - position:absolute; - left:0px; - top:455px; -} -#u4323_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4323_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4324_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4324 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4324_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4323_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u4323_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4325_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4325 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4325_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4326_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4326 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4326_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4326.selected { -} -#u4326_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4326_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4327_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4327 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4327_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4327.selected { -} -#u4327_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4327_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4328_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4328 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4328_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4328.selected { -} -#u4328_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4328_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u4329_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4329 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4329_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4329.selected { -} -#u4329_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4329_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u4330_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4330 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4330_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4330.selected { -} -#u4330_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4330_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u4331_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4331 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4331_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4331.selected { -} -#u4331_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4331_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u4332_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4332 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4332_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4332.selected { -} -#u4332_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4332_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u4333_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4333 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4333_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4333.selected { -} -#u4333_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4333_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u4334 { - position:absolute; - left:0px; - top:510px; -} -#u4334_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u4334_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4335_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4335 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4335_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4334_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u4334_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u4336_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4336 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4336_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4337_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4337 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4337_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4337.selected { -} -#u4337_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4337_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u4338_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4338 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4338_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4338.selected { -} -#u4338_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4338_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u4339_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4339 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4339_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u4339.selected { -} -#u4339_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u4339_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/_2_防火墙策略/data.js b/public/files/_2_防火墙策略/data.js deleted file mode 100644 index 512a2dc..0000000 --- a/public/files/_2_防火墙策略/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; iLog

      ",eH="

      Журнал

      ",eI="92908311830947e2931ebbb7a2eb6e87",eJ="dd256d79a7234a1bad48df3c04a4a89f",eK="设置 日志 为 展开 show if hidden push/pull widgets 向下",eL="a2eb2ac6a13141d3a531467150b1cb4d",eM="5098ad65c8f7492c9069f4a964723317",eN="设置 日志 为 收起 push/pull widgets 向下",eO="2fa6203e493a47e5ae91b989dfbf007a",eP="通联日志",eQ="在 当前窗口 打开 通联日志",eR="通联日志.html",eS="

      Sesssion Records

      ",eT="

      Сеанс Записи

      ",eU="8e9a92093e3244f398b54ba29c09ae30",eV="事件日志",eW="在 当前窗口 打开 事件日志",eX="事件日志.html",eY="

      Event Logs

      ",eZ="

      Журнал Событий

      ",fa="4e623a4576bc46daaa08924cc0df54bd",fb="Radius日志",fc="在 当前窗口 打开 /2/Radius日志",fd="_2_radius__.html",fe="

      Radius Logs

      ",ff="

      Журнал Radius

      ",fg="07c280170e8b49c58503de5d9d1deda7",fh="仪表盘",fi="

      Dashboard

      ",fj="

      Приборная Панель

      ",fk="1da2375e875b48bd9eb61de648bb6ddf",fl="5c5a7e1a78634167985368e626cb44a6",fm="在 当前窗口 打开 仪表盘",fn="仪表盘.html",fo="0f86adf618534aaabfeb0b967b646569",fp="ab09bc9722fc4b43a1a8bc75801a528e",fq="设置 仪表盘 为 收起 push/pull widgets 向下",fr="9a0dd654c7174c5abaf14732f23e6535",fs="设备状态",ft="在 当前窗口 打开 /2/设备状态",fu="_2_设备状态.html",fv="

      Devices

      ",fw="7cf8bc9379a74906b78129a7c79b5204",fx="带宽、新建、活跃、丢弃、通过",fy="在 当前窗口 打开 带宽、新建、活跃、丢弃、通过",fz="带宽、新建、活跃、丢弃、通过.html",fA="

      BandwidthNewLiveDropPass

      ",fB="644cfa35fe994f0daf01c43e46cadc55",fC="带宽变化",fD="在 当前窗口 打开 /2/带宽变化",fE="_2_带宽变化.html",fF="

      Traffic Over Time By Bandwidth

      ",fG="f7bdb45b7dd74715a5f2f96c63522835",fH="在 当前窗口 打开 高命中的策略",fI="高命中的策略.html",fJ="

      Top Policy Hits

      ",fK="6e3656fad051471985367dfcecd7efd8",fL="活跃源IP排名",fM=225,fN="在 当前窗口 打开 活跃源IP排名",fO="活跃源ip排名.html",fP="

      Top Internal Hosts By Sessions

      ",fQ="85444d6bb7604745b615ea6c0be0dfbd",fR="活跃目的IP排名",fS=270,fT="在 当前窗口 打开 活跃目的IP排名",fU="活跃目的ip排名.html",fV="

      Top External Hosts By Sessions

      ",fW="42c554bcc055434ba48c579ee60b70ef",fX="活跃域名排名",fY=315,fZ="在 当前窗口 打开 活跃域名排名",ga="活跃域名排名.html",gb="

      Top Website Domains By Bandwidth

      ",gc="620d6328a97942419ae02f8789b911e2",gd="活跃URL排名",ge=360,gf="在 当前窗口 打开 活跃URL排名",gg="活跃url排名.html",gh="

      Top HTTP/HTTPS URLS By Sessions

      ",gi="2104d7235c9d4010b05b9fb8b3945291",gj="活跃用户排名",gk=405,gl="在 当前窗口 打开 活跃用户排名",gm="活跃用户排名.html",gn="

      Top User By Bandwidth

      ",go="策略&对象",gp=125,gq="

      Policy&Objects

      ",gr="

      Политика и Объекты

      ",gs="872ff99d15cd4403a36c3c0828b204fb",gt="cd656119d92145688ed53bf413ed4959",gu="设置 策略&对象 为 展开 show if hidden push/pull widgets 向下",gv="e79ef6eb8bea477b951c71a1b9fe5e55",gw="91def88484484083927f2283fe2dcc27",gx="设置 策略&对象 为 收起 push/pull widgets 向下",gy="

      Политика и Объекты


      ",gz="4b13957666154ecda2d5e2f7d636101e",gA="代理拦截策略",gB="在 当前窗口 打开 代理拦截策略",gC="代理拦截策略.html",gD="

      Proxy Interception

      ",gE="

      Прокси Перехват

      ",gF="f8ae401a90f649b2b6c2a87c9c17d0dd",gG="防火墙策略",gH="在 当前窗口 打开 /2/防火墙策略",gI="

      Firewall

      ",gJ="

      Брандмауэр

      ",gK="0cc50ffea147485e97d2d81166a21165",gL="代理管控策略",gM="

      Proxy Manipulation

      ",gN="

      Прокси Манипуляция

      ",gO="0cde056acd5f48828ad1f872add05f25",gP="内容检查策略",gQ="在 当前窗口 打开 /2/内容检查策略",gR="_2_内容检查策略.html",gS="

      Content Inspection

      ",gT="

      Проверка Контента

      ",gU="b669d535c7094350a886008e7cef4af0",gV="对象",gW="在 当前窗口 打开 对象",gX="对象.html",gY="

      Objects

      ",gZ="

      Объекты

      ",ha="37e0281ff7f44a01940207aacde15d1d",hb="时间计划",hc="在 当前窗口 打开 时间计划",hd="时间计划.html",he="

      Schedule

      ",hf="

      Расписание


      ",hg="1a68e2e6dc044fd0817478eea51985b1",hh="标签",hi="在 当前窗口 打开 标签",hj="标签.html",hk="

      Tags

      ",hl="

      Теги

      ",hm="5b670361476844109058ee67e9e585d2",hn="串联设备(可选)",ho="在 当前窗口 打开 /2/串联设备(可选)",hp="_2_串联设备(可选).html",hq="

      Inline Device

      ",hr="

      Последовательное Устройство

      ",hs="87b93e86784a428ebd47f511a4ba2c4f",ht="报告",hu=290,hv="b64e296b35444e11a375c42f3e6ee72d",hw="bbc6891697924708b5a6119bbb896bab",hx="设置 报告 为 展开 show if hidden push/pull widgets 向下",hy="9388ba2f489b436aa2f3851b5889d374",hz="4d3a090b203d49d1a7fb36de39828355",hA="设置 报告 为 收起 push/pull widgets 向下",hB="fbde9bbdcd704824945ab49b5beecdcb",hC="报表结果",hD="在 当前窗口 打开 /2/报表结果",hE="_2_报表结果.html",hF="

      Reports

      ",hG="

      Отчеты

      ",hH="6e04fbf50e9445d1a7a6ae3da1977530",hI="报告任务",hJ="在 当前窗口 打开 /2/报告任务",hK="_2_报告任务.html",hL="

      Report Tasks

      ",hM="

      Отчет Задачи

      ",hN="d44d7a9a8b4f4a77a9458a55d3eeb7e3",hO="系统",hP=400,hQ="83946562f27346a4a97f498a2f32bbf7",hR="c7566dc5ceae4d1ba17bd159636d896f",hS="设置 系统 为 展开 show if hidden push/pull widgets 向下",hT="

      System

      ",hU="

      Система

      ",hV="d913d84a32c149f3a1260a92cbd43605",hW="5f4ec06fb27c4cd1b4820b9f2f6b2b77",hX="设置 系统 为 收起 push/pull widgets 向下",hY="578dad9d6baf4ee69400878858762724",hZ="角色管理",ia="在 当前窗口 打开 /2/角色管理",ib="_2_角色管理.html",ic="

      Role Mangement

      ",id="

      Управление Ролями

      ",ie="3d533d005742479cbd215b234aad09bb",ig="用户管理",ih="在 当前窗口 打开 /2/用户管理",ii="_2_用户管理.html",ij="

      User Management

      ",ik="

      Управление Пользователями

      ",il="bab311fc9467417cb7b7a58f2d22372f",im="策略审计日志",io="在 当前窗口 打开 /2/策略审计日志",ip="_2_策略审计日志.html",iq="

      Policy Configuration Log

      ",ir="

      Журнал Конфигурации Политики

      ",is="f48a23f842a64b2fa5e6418008bd4d68",it="邮件服务器",iu="在 当前窗口 打开 /2/邮件服务器",iv="_2_邮件服务器.html",iw="

      Mail Server

      ",ix="

      Сервер Почты

      ",iy="1759f58887a6423abd3758fd1891a06d",iz="登录日志",iA="在 当前窗口 打开 /2/登录日志",iB="_2_登录日志.html",iC="

      Login Log

      ",iD="

      Жунрал Входа

      ",iE="6b1a1692e80948e5975c69cb51886278",iF="系统参数",iG="在 当前窗口 打开 /2/系统参数",iH="_2_系统参数.html",iI="

      Global Parameters

      ",iJ="

      Глобальный Параметр

      ",iK="c40f5f56305b4d69a5e9a2f2cbd1cb6b",iL="设备",iM=455,iN="f123854da4504481a447ef17b01fea34",iO="6aa0ab27ba354ae39d709c8435b01487",iP="设置 设备 为 展开 show if hidden push/pull widgets 向下",iQ="b1d51b124421409389fead17347a84af",iR="fbc0262d53ef4d38b0d2a94729c7b223",iS="设置 设备 为 收起 push/pull widgets 向下",iT="ea544146c7bf4ba188c4f9980acc50da",iU="SNMP",iV="在 当前窗口 打开 /2/SNMP",iW="_2_snmp.html",iX="541c758399da4f399c0fc58ea01feee9",iY="设备列表",iZ="在 当前窗口 打开 /2/设备列表",ja="_2_设备列表.html",jb="e1c46db03da5412eb06e119b69b54c88",jc="NTP设置",jd="在 当前窗口 打开 /2/NTP设置",je="_2_ntp设置.html",jf="5ed2f732332d4a95a939c27caf2fbc9f",jg="设备标签",jh="在 当前窗口 打开 /2/设备标签",ji="_2_设备标签.html",jj="6d744837c12d4451b03523db77f0de4b",jk="接口",jl="在 当前窗口 打开 /2/接口",jm="_2_接口.html",jn="f5b83fbcd88a4567851a800fd5a157af",jo="固件",jp="在 当前窗口 打开 /2/固件",jq="_2_固件.html",jr="2066d8079c694bb3971a40cbf3279606",js="备份&恢复",jt="在 当前窗口 打开 /2/备份&恢复",ju="_2_备份_恢复.html",jv="8f6ffa5a96a14d79ae7201eb8bbff6b5",jw="数据包捕获",jx="在 当前窗口 打开 /2/数据包捕获",jy="_2_数据包捕获.html",jz="77d1855694f640579e26ec450555a8a3",jA="后台管理",jB=510,jC="9662ce02b5004c29baa5aa3929abab43",jD="204f45f6afc34d5d99894ec9b10eb71b",jE="设置 后台管理 为 展开 show if hidden push/pull widgets 向下",jF="55332c86d1434008b455fb49c931cf9e",jG="ab9166e59a1147aeaf21e70536b34bae",jH="设置 后台管理 为 收起 push/pull widgets 向下",jI="2f23aa851a9d4d54993f66fbe1cbf708",jJ="字典管理",jK="在 当前窗口 打开 /2/字典管理",jL="_2_字典管理.html",jM="7444e1c9dc94459292cb03b8f3cd1229",jN="菜单管理",jO="在 当前窗口 打开 /2/菜单管理",jP="_2_菜单管理.html",jQ="d4c7fb622cfc47f4a2791478a3eea221",jR="参数管理",jS="在 当前窗口 打开 /2/参数管理",jT="_2_参数管理.html",jU="objectPaths",jV="b85672d840c74db28fff67f3fa74edf3",jW="scriptId",jX="u879",jY="f0f1aca662f44078a3907d7b6fca671b",jZ="u880",ka="3ad4cf8772cd49049b30415198f796d4",kb="u881",kc="287161d6553d482dbb471a03f2b96d8d",kd="u882",ke="1d8fcbafe0304b998b0c190507cb5f1c",kf="u883",kg="7d3b028bbf294c8c9679a130bddc8177",kh="u884",ki="0d264741477549399c9586a19d72c94c",kj="u885",kk="41b95c6a240b48839df8cf0f47b01ec9",kl="u886",km="eca4fcd504c743719d5ec6952c6e3ef5",kn="u887",ko="b03fa42397b840c7be9ac06da5567aa7",kp="u888",kq="d03aa63ff5454a8b98a74e97f8175c02",kr="u889",ks="6d999717f47c45b488270f1138ce00fb",kt="u890",ku="8ff58e28196a405dac8f7bd8af6f770a",kv="u891",kw="188a2dff382a42948e36596c4dd80f3d",kx="u892",ky="4d68f01a79b24a14baeb98a69d9e9bd2",kz="u893",kA="7ef6dd287cf74733a7ae6e065076ea7f",kB="u894",kC="92f4c3ac20374e81a86252a8ba0b8174",kD="u895",kE="f7505cc4eee0416b9dcf6d00c93073d3",kF="u896",kG="07e9a718986f4456b84348343c870c0a",kH="u897",kI="d38e8fab4f69464e946b74a9c5954fa3",kJ="u898",kK="dd256d79a7234a1bad48df3c04a4a89f",kL="u899",kM="5098ad65c8f7492c9069f4a964723317",kN="u900",kO="2fa6203e493a47e5ae91b989dfbf007a",kP="u901",kQ="8e9a92093e3244f398b54ba29c09ae30",kR="u902",kS="4e623a4576bc46daaa08924cc0df54bd",kT="u903",kU="07c280170e8b49c58503de5d9d1deda7",kV="u904",kW="5c5a7e1a78634167985368e626cb44a6",kX="u905",kY="ab09bc9722fc4b43a1a8bc75801a528e",kZ="u906",la="9a0dd654c7174c5abaf14732f23e6535",lb="u907",lc="7cf8bc9379a74906b78129a7c79b5204",ld="u908",le="644cfa35fe994f0daf01c43e46cadc55",lf="u909",lg="f7bdb45b7dd74715a5f2f96c63522835",lh="u910",li="6e3656fad051471985367dfcecd7efd8",lj="u911",lk="85444d6bb7604745b615ea6c0be0dfbd",ll="u912",lm="42c554bcc055434ba48c579ee60b70ef",ln="u913",lo="620d6328a97942419ae02f8789b911e2",lp="u914",lq="2104d7235c9d4010b05b9fb8b3945291",lr="u915",ls="ce40ad7023294c8ea02e3aaa39fe9359",lt="u916",lu="cd656119d92145688ed53bf413ed4959",lv="u917",lw="91def88484484083927f2283fe2dcc27",lx="u918",ly="4b13957666154ecda2d5e2f7d636101e",lz="u919",lA="f8ae401a90f649b2b6c2a87c9c17d0dd",lB="u920",lC="0cc50ffea147485e97d2d81166a21165",lD="u921",lE="0cde056acd5f48828ad1f872add05f25",lF="u922",lG="b669d535c7094350a886008e7cef4af0",lH="u923",lI="37e0281ff7f44a01940207aacde15d1d",lJ="u924",lK="1a68e2e6dc044fd0817478eea51985b1",lL="u925",lM="5b670361476844109058ee67e9e585d2",lN="u926",lO="87b93e86784a428ebd47f511a4ba2c4f",lP="u927",lQ="bbc6891697924708b5a6119bbb896bab",lR="u928",lS="4d3a090b203d49d1a7fb36de39828355",lT="u929",lU="fbde9bbdcd704824945ab49b5beecdcb",lV="u930",lW="6e04fbf50e9445d1a7a6ae3da1977530",lX="u931",lY="d44d7a9a8b4f4a77a9458a55d3eeb7e3",lZ="u932",ma="c7566dc5ceae4d1ba17bd159636d896f",mb="u933",mc="5f4ec06fb27c4cd1b4820b9f2f6b2b77",md="u934",me="578dad9d6baf4ee69400878858762724",mf="u935",mg="3d533d005742479cbd215b234aad09bb",mh="u936",mi="bab311fc9467417cb7b7a58f2d22372f",mj="u937",mk="f48a23f842a64b2fa5e6418008bd4d68",ml="u938",mm="1759f58887a6423abd3758fd1891a06d",mn="u939",mo="6b1a1692e80948e5975c69cb51886278",mp="u940",mq="c40f5f56305b4d69a5e9a2f2cbd1cb6b",mr="u941",ms="6aa0ab27ba354ae39d709c8435b01487",mt="u942",mu="fbc0262d53ef4d38b0d2a94729c7b223",mv="u943",mw="ea544146c7bf4ba188c4f9980acc50da",mx="u944",my="541c758399da4f399c0fc58ea01feee9",mz="u945",mA="e1c46db03da5412eb06e119b69b54c88",mB="u946",mC="5ed2f732332d4a95a939c27caf2fbc9f",mD="u947",mE="6d744837c12d4451b03523db77f0de4b",mF="u948",mG="f5b83fbcd88a4567851a800fd5a157af",mH="u949",mI="2066d8079c694bb3971a40cbf3279606",mJ="u950",mK="8f6ffa5a96a14d79ae7201eb8bbff6b5",mL="u951",mM="77d1855694f640579e26ec450555a8a3",mN="u952",mO="204f45f6afc34d5d99894ec9b10eb71b",mP="u953",mQ="ab9166e59a1147aeaf21e70536b34bae",mR="u954",mS="2f23aa851a9d4d54993f66fbe1cbf708",mT="u955",mU="7444e1c9dc94459292cb03b8f3cd1229",mV="u956",mW="d4c7fb622cfc47f4a2791478a3eea221",mX="u957"; -return _creator(); -})()); \ No newline at end of file diff --git a/public/files/_2_防火墙策略/styles.css b/public/files/_2_防火墙策略/styles.css deleted file mode 100644 index 2c8a287..0000000 --- a/public/files/_2_防火墙策略/styles.css +++ /dev/null @@ -1,4296 +0,0 @@ -body { - margin:0px; - background-image:none; - position:static; - left:auto; - width:1920px; - margin-left:0; - margin-right:0; - text-align:left; -} -#base { - position:absolute; - z-index:0; -} -#u880_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; - background:inherit; - background-color:rgba(48, 116, 155, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u880 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1920px; - height:70px; -} -#u880_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u881_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - height:25px; - background:inherit; - background-color:rgba(255, 255, 255, 0); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u881 { - border-width:0px; - position:absolute; - left:36px; - top:22px; - width:37px; - height:25px; - font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; - font-weight:650; - font-style:normal; - color:#FFFFFF; -} -#u881_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:37px; - white-space:nowrap; -} -#u882_img { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:1010px; -} -#u882 { - border-width:0px; - position:absolute; - left:0px; - top:70px; - width:250px; - height:1010px; -} -#u882_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u883_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1670px; - height:1010px; - background:inherit; - background-color:rgba(242, 248, 248, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u883 { - border-width:0px; - position:absolute; - left:250px; - top:70px; - width:1670px; - height:1010px; -} -#u883_text { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:0px; - visibility:hidden; - word-wrap:break-word; -} -#u884 { - position:absolute; - left:0px; - top:235px; -} -#u884_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u884_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u885_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u885 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u885_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u885_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u884_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u884_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u886_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u886 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u886_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u886_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u887_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u887 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u887_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u887.selected { -} -#u887_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u887_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u888_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u888 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u888_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u888.selected { -} -#u888_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u888_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u889_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u889 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u889_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u889.selected { -} -#u889_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u889_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u890_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u890 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u890_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u890.selected { -} -#u890_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u890_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u891 { - position:absolute; - left:0px; - top:180px; -} -#u891_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u891_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u892_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u892 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u892_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u892_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u891_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:225px; - visibility:hidden; - background-image:none; -} -#u891_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u893_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u893 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u893_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u893_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u894_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u894 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u894_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u894.selected { -} -#u894_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u894_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u895_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u895 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u895_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u895.selected { -} -#u895_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u895_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u896_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u896 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u896_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u896.selected { -} -#u896_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u896_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u897_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u897 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u897_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u897.selected { -} -#u897_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u897_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u891_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u898 { - position:absolute; - left:0px; - top:345px; -} -#u898_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u898_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u899_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u899 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u899_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u899_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u898_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u898_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u900_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u900 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u900_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u900_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u901_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u901 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u901_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u901.selected { -} -#u901_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u901_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u902_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u902 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u902_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u902.selected { -} -#u902_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u902_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u903_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u903 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u903_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u903.selected { -} -#u903_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u903_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u898_ann { - border-width:0px; - position:absolute; - left:243px; - top:341px; - width:1px; - height:1px; -} -#u904 { - position:absolute; - left:0px; - top:70px; -} -#u904_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u904_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u905_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u905 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u905_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u905_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u904_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:450px; - visibility:hidden; - background-image:none; -} -#u904_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u906_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u906 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u906_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u906_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u907_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u907 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u907_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u907.selected { -} -#u907_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u907_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u908_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u908 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u908_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u908.selected { -} -#u908_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u908_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u909_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u909 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u909_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u909.selected { -} -#u909_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u909_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u910_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u910 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u910_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u910.selected { -} -#u910_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u910_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u911_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u911 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u911_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u911.selected { -} -#u911_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u911_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u912_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u912 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u912_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u912.selected { -} -#u912_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u912_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u913_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u913 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u913_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u913.selected { -} -#u913_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u913_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u914_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u914 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u914_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u914.selected { -} -#u914_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u914_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u915_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u915 { - border-width:0px; - position:absolute; - left:0px; - top:405px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u915_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u915.selected { -} -#u915_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u915_ann { - border-width:0px; - position:absolute; - left:243px; - top:401px; - width:1px; - height:1px; -} -#u904_ann { - border-width:0px; - position:absolute; - left:243px; - top:66px; - width:1px; - height:1px; -} -#u916 { - position:absolute; - left:0px; - top:125px; -} -#u916_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u916_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u917_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u917 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u917_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u917_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u916_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u916_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u918_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u918 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; -} -#u918_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u918_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u919_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u919 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; -} -#u919_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u919.selected { -} -#u919_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u919_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u920_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u920 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u920_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u920.selected { -} -#u920_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u920_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u921_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u921 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; -} -#u921_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u921.selected { -} -#u921_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u921_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u922_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u922 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; -} -#u922_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u922.selected { -} -#u922_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u922_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u923_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u923 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; -} -#u923_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u923.selected { -} -#u923_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u923_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u924_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u924 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; -} -#u924_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u924.selected { -} -#u924_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u924_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u925_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u925 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; -} -#u925_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u925.selected { -} -#u925_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u925_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u926_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u926 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; -} -#u926_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; -} -#u926.selected { -} -#u926_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u926_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u916_ann { - border-width:0px; - position:absolute; - left:243px; - top:121px; - width:1px; - height:1px; -} -#u927 { - position:absolute; - left:0px; - top:290px; -} -#u927_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u927_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u928_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u928 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u928_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u928_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u927_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:135px; - visibility:hidden; - background-image:none; -} -#u927_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u929_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u929 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u929_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u929_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u930_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u930 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u930_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u930.selected { -} -#u930_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u930_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u931_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u931 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u931_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u931.selected { -} -#u931_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u931_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u927_ann { - border-width:0px; - position:absolute; - left:243px; - top:286px; - width:1px; - height:1px; -} -#u932 { - position:absolute; - left:0px; - top:400px; -} -#u932_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u932_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u933_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u933 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u933_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u933_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u932_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:315px; - visibility:hidden; - background-image:none; -} -#u932_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u934_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u934 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u934_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u934_ann { - border-width:0px; - position:absolute; - left:243px; - top:-4px; - width:1px; - height:1px; -} -#u935_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u935 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u935_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u935.selected { -} -#u935_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u935_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u936_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u936 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u936_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u936.selected { -} -#u936_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u936_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u937_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u937 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u937_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u937.selected { -} -#u937_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u937_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u938_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u938 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u938_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u938.selected { -} -#u938_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u938_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u939_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u939 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u939_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u939.selected { -} -#u939_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u939_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u940_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u940 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u940_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u940.selected { -} -#u940_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u940_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u932_ann { - border-width:0px; - position:absolute; - left:243px; - top:396px; - width:1px; - height:1px; -} -#u941 { - position:absolute; - left:0px; - top:455px; -} -#u941_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u941_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u942_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u942 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u942_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u941_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:405px; - visibility:hidden; - background-image:none; -} -#u941_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u943_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u943 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u943_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u944_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u944 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u944_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u944.selected { -} -#u944_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u944_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u945_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u945 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u945_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u945.selected { -} -#u945_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u945_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u946_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u946 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u946_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u946.selected { -} -#u946_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u946_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} -#u947_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u947 { - border-width:0px; - position:absolute; - left:0px; - top:225px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u947_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u947.selected { -} -#u947_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u947_ann { - border-width:0px; - position:absolute; - left:243px; - top:221px; - width:1px; - height:1px; -} -#u948_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u948 { - border-width:0px; - position:absolute; - left:0px; - top:180px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u948_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u948.selected { -} -#u948_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u948_ann { - border-width:0px; - position:absolute; - left:243px; - top:176px; - width:1px; - height:1px; -} -#u949_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u949 { - border-width:0px; - position:absolute; - left:0px; - top:270px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u949_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u949.selected { -} -#u949_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u949_ann { - border-width:0px; - position:absolute; - left:243px; - top:266px; - width:1px; - height:1px; -} -#u950_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u950 { - border-width:0px; - position:absolute; - left:0px; - top:315px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u950_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u950.selected { -} -#u950_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u950_ann { - border-width:0px; - position:absolute; - left:243px; - top:311px; - width:1px; - height:1px; -} -#u951_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u951 { - border-width:0px; - position:absolute; - left:0px; - top:360px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u951_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u951.selected { -} -#u951_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u951_ann { - border-width:0px; - position:absolute; - left:243px; - top:356px; - width:1px; - height:1px; -} -#u952 { - position:absolute; - left:0px; - top:510px; -} -#u952_state0 { - position:relative; - left:0px; - top:0px; - width:250px; - height:45px; - background-image:none; -} -#u952_state0_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u953_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u953 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u953_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u952_state1 { - position:relative; - left:0px; - top:0px; - width:250px; - height:180px; - visibility:hidden; - background-image:none; -} -#u952_state1_content { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:1px; - height:1px; -} -#u954_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(255, 255, 255, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u954 { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u954_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u955_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u955 { - border-width:0px; - position:absolute; - left:0px; - top:90px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u955_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u955.selected { -} -#u955_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u955_ann { - border-width:0px; - position:absolute; - left:243px; - top:86px; - width:1px; - height:1px; -} -#u956_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u956 { - border-width:0px; - position:absolute; - left:0px; - top:45px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u956_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u956.selected { -} -#u956_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u956_ann { - border-width:0px; - position:absolute; - left:243px; - top:41px; - width:1px; - height:1px; -} -#u957_div { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(242, 242, 242, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u957 { - border-width:0px; - position:absolute; - left:0px; - top:135px; - width:250px; - height:45px; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u957_div.selected { - border-width:0px; - position:absolute; - left:0px; - top:0px; - width:250px; - height:45px; - background:inherit; - background-color:rgba(48, 116, 156, 1); - border:none; - border-radius:0px; - -moz-box-shadow:none; - -webkit-box-shadow:none; - box-shadow:none; - font-family:'PingFangSC-Regular', 'PingFang SC'; - font-weight:400; - font-style:normal; -} -#u957.selected { -} -#u957_text { - border-width:0px; - position:absolute; - left:2px; - top:14px; - width:246px; - word-wrap:break-word; -} -#u957_ann { - border-width:0px; - position:absolute; - left:243px; - top:131px; - width:1px; - height:1px; -} diff --git a/public/files/keyring___/data.js b/public/files/keyring___/data.js deleted file mode 100644 index 0c89499..0000000 --- a/public/files/keyring___/data.js +++ /dev/null @@ -1,7 +0,0 @@ -$axure.loadCurrentPage( -(function() { - var _ = function() { var r={},a=arguments; for(var i=0; i