@@ -147,12 +252,13 @@ local api = require "luci.passwall.api"
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
+ margin-bottom: -10px;
}
#nodes_link_text {
color: red;
font-size: 14px;
- margin-top: 5px;
+ margin-top: 0;
text-align: center;
width: 100%;
}
@@ -164,4 +270,99 @@ local api = require "luci.passwall.api"
max-width: 300px;
margin-top: 10px;
}
+
+ #add_link_modal_container .modal-center {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: center;
+ gap: 10px;
+ margin-bottom: 15px;
+ width: auto;
+ }
+
+ #add_link_modal_container .modal-center .cbi-value-title {
+ display: inline-block;
+ width: 80px;
+ text-align: right;
+ font-size: 13px;
+ line-height: 28px;
+ margin: 0;
+ white-space: nowrap;
+ flex-shrink: 0;
+ }
+
+ #add_link_modal_container .modal-center .cbi-value-field {
+ display: flex;
+ justify-content: flex-start;
+ width: 200px;
+ }
+
+ .custom-dropdown {
+ position: relative;
+ border: 1px solid #d9d9d9;
+ border-radius: 2px;
+ width: 200px;
+ font-size: 13px;
+ background: #fff;
+ cursor: pointer;
+ box-sizing: border-box;
+ height: 28px;
+ }
+
+ .selected-display {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0 8px;
+ height: 100%;
+ }
+
+ .selected-display:hover {
+ background-color: #f7f7f7;
+ }
+
+ .selected-display .arrow {
+ font-size: 12px;
+ color: #666;
+ }
+
+ .dropdown-list {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ border: 1px solid #d9d9d9;
+ border-top: none;
+ box-shadow: 0 1px 3px rgba(0,0,0,0.15);
+ background: #fff;
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ max-height: 250px;
+ overflow-y: auto;
+ overflow-x: hidden;
+ z-index: 100;
+ box-sizing: border-box;
+ }
+
+ .dropdown-item {
+ padding: 4px 8px;
+ line-height: 20px;
+ }
+
+ .dropdown-item.selected {
+ background-color: #1e90ff;
+ color: #fff;
+ }
+
+ .dropdown-item.custom-input input {
+ width: 100%;
+ max-width: 200px;
+ box-sizing: border-box;
+ padding: 3px;
+ font-size: 13px;
+ line-height: 20px;
+ border: 1px solid #ccc;
+ }
diff --git a/luci-app-passwall/luasrc/view/passwall/node_list/node_list.htm b/luci-app-passwall/luasrc/view/passwall/node_list/node_list.htm
index b1bd04a..94e231c 100644
--- a/luci-app-passwall/luasrc/view/passwall/node_list/node_list.htm
+++ b/luci-app-passwall/luasrc/view/passwall/node_list/node_list.htm
@@ -568,7 +568,7 @@ table td, .table .td {
for (let i = 0; i < node_list.length; i++) {
let _node = node_list[i]
if (!_node.group || _node.group === "") {
- _node.group = "<%:default%>"
+ _node.group = "default"
}
if (!group_nodes[_node.group]) {
group_nodes[_node.group] = []
@@ -630,10 +630,15 @@ table td, .table .td {
_html = _html.split("{{node-tr}}").join(node_tr_html);
table_html = _html;
}
+
+ var group_name = group
+ if (group === "default") {
+ group_name = "<%:default%>"
+ }
tab_ul_li_html +=
'
' +
diff --git a/luci-app-passwall/root/usr/share/passwall/app.sh b/luci-app-passwall/root/usr/share/passwall/app.sh
index 2af28dc..db6ccbe 100755
--- a/luci-app-passwall/root/usr/share/passwall/app.sh
+++ b/luci-app-passwall/root/usr/share/passwall/app.sh
@@ -2147,6 +2147,24 @@ stop() {
rm -rf /tmp/lock/${CONFIG}_socks_auto_switch*
rm -rf /tmp/lock/${CONFIG}_lease2hosts*
echolog "清空并关闭相关程序和缓存完成。"
+ # 根据分流节点类型自动调整 DNS 过滤模式
+ local _tcp_node=$(config_t_get global tcp_node)
+ if [ -n "$_tcp_node" ]; then
+ local _protocol=$(config_n_get $_tcp_node protocol)
+ if [ "$_protocol" = "_shunt" ]; then
+ local _type=$(config_n_get $_tcp_node type)
+ local _dns_mode=$(config_t_get global dns_mode)
+ local _new_dns_mode
+ [ "$_type" = "Xray" ] && _new_dns_mode="xray"
+ [ "$_type" = "sing-box" ] && _new_dns_mode="sing-box"
+ if [ -n "$_new_dns_mode" ] && [ "$_dns_mode" != "$_new_dns_mode" ]; then
+ uci -q set ${CONFIG}.@global[0].dns_mode="$_new_dns_mode"
+ uci -q set ${CONFIG}.@global[0].v2ray_dns_mode="tcp"
+ uci -q commit ${CONFIG}
+ echolog "* 检测到 TCP 节点为 $_type 分流,强制修改 DNS 过滤模式为 $_type !"
+ fi
+ fi
+ fi
exit 0
}
diff --git a/luci-app-passwall/root/usr/share/passwall/iptables.sh b/luci-app-passwall/root/usr/share/passwall/iptables.sh
index a16d9e1..526ddaf 100755
--- a/luci-app-passwall/root/usr/share/passwall/iptables.sh
+++ b/luci-app-passwall/root/usr/share/passwall/iptables.sh
@@ -1067,7 +1067,6 @@ add_firewall_rule() {
unset WAN6_IP
insert_rule_before "$ip6t_m" "PREROUTING" "mwan3" "-j PSW"
- insert_rule_before "$ip6t_m" "PREROUTING" "PSW" "-p tcp -m socket -j PSW_DIVERT"
$ip6t_m -N PSW_OUTPUT
$ip6t_m -A PSW_OUTPUT -m mark --mark 0xff -j RETURN
diff --git a/luci-app-passwall/root/usr/share/passwall/nftables.sh b/luci-app-passwall/root/usr/share/passwall/nftables.sh
index ed6ecb5..e2db320 100755
--- a/luci-app-passwall/root/usr/share/passwall/nftables.sh
+++ b/luci-app-passwall/root/usr/share/passwall/nftables.sh
@@ -580,8 +580,8 @@ load_acl() {
}
[ "$UDP_NO_REDIR_PORTS" != "disable" ] && {
- nft "add $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_NO_REDIR_PORTS "udp dport") counter return comment \"默认\""
- nft "add $NFTABLE_NAME PSW_MANGLE_V6 counter meta l4proto udp $(factor $UDP_NO_REDIR_PORTS "udp dport") counter return comment \"默认\""
+ nft "add rule $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_NO_REDIR_PORTS "udp dport") counter return comment \"默认\""
+ nft "add rule $NFTABLE_NAME PSW_MANGLE_V6 counter meta l4proto udp $(factor $UDP_NO_REDIR_PORTS "udp dport") counter return comment \"默认\""
if ! has_1_65535 "$UDP_NO_REDIR_PORTS"; then
echolog " - ${msg}不代理 UDP 端口[${UDP_NO_REDIR_PORTS}]"
else
@@ -629,12 +629,12 @@ load_acl() {
[ "${TCP_PROXY_MODE}" != "disable" ] && nft "add rule $NFTABLE_NAME PSW_MANGLE_V6 meta l4proto tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") counter drop comment \"默认\""
}
- nft "add $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr $FAKE_IP counter drop comment \"默认\""
- [ "${USE_PROXY_LIST}" = "1" ] && nft "add $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_BLACK counter drop comment \"默认\""
- [ "${USE_GFW_LIST}" = "1" ] && nft "add $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_GFW counter drop comment \"默认\""
- [ "${CHN_LIST}" != "0" ] && nft "add $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_CHN $(get_jump_ipt ${CHN_LIST} "counter drop") comment \"默认\""
- [ "${USE_SHUNT_TCP}" = "1" ] && nft "add $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_SHUNT counter drop comment \"默认\""
- [ "${TCP_PROXY_MODE}" != "disable" ] && nft "add $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") counter drop comment \"默认\""
+ nft "add rule $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr $FAKE_IP counter drop comment \"默认\""
+ [ "${USE_PROXY_LIST}" = "1" ] && nft "add rule $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_BLACK counter drop comment \"默认\""
+ [ "${USE_GFW_LIST}" = "1" ] && nft "add rule $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_GFW counter drop comment \"默认\""
+ [ "${CHN_LIST}" != "0" ] && nft "add rule $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_CHN $(get_jump_ipt ${CHN_LIST} "counter drop") comment \"默认\""
+ [ "${USE_SHUNT_TCP}" = "1" ] && nft "add rule $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") ip daddr @$NFTSET_SHUNT counter drop comment \"默认\""
+ [ "${TCP_PROXY_MODE}" != "disable" ] && nft "add rule $NFTABLE_NAME $nft_prerouting_chain ip protocol tcp $(factor $TCP_PROXY_DROP_PORTS "tcp dport") counter drop comment \"默认\""
echolog " - ${msg}屏蔽代理 TCP 端口[${TCP_PROXY_DROP_PORTS}]"
}
@@ -652,7 +652,7 @@ load_acl() {
[ "${USE_GFW_LIST}" = "1" ] && nft "add rule $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_PROXY_DROP_PORTS "udp dport") ip daddr @$NFTSET_GFW counter drop comment \"默认\""
[ "${CHN_LIST}" != "0" ] && nft "add rule $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_PROXY_DROP_PORTS "udp dport") ip daddr @$NFTSET_CHN $(get_jump_ipt ${CHN_LIST} "counter drop") comment \"默认\""
[ "${USE_SHUNT_UDP}" = "1" ] && nft "add rule $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_PROXY_DROP_PORTS "udp dport") ip daddr @$NFTSET_SHUNT counter drop comment \"默认\""
- [ "${UDP_PROXY_MODE}" != "disable" ] && nft "add $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_PROXY_DROP_PORTS "udp dport") counter drop comment \"默认\""
+ [ "${UDP_PROXY_MODE}" != "disable" ] && nft "add rule $NFTABLE_NAME PSW_MANGLE ip protocol udp $(factor $UDP_PROXY_DROP_PORTS "udp dport") counter drop comment \"默认\""
echolog " - ${msg}屏蔽代理 UDP 端口[${UDP_PROXY_DROP_PORTS}]"
}
}
@@ -1279,7 +1279,7 @@ add_firewall_rule() {
return 0
}
nft "insert rule $NFTABLE_NAME PSW_OUTPUT_MANGLE_V6 meta l4proto udp ip6 daddr ${2} udp dport ${3} counter jump PSW_RULE"
- nft "insert rule $NFTABLE_NAME PSW_MANGLE_V6 meta l4proto tcp iif lo ip6 daddr ${2} $(REDIRECT $UDP_REDIR_PORT TPROXY6) comment \"本机\""
+ nft "insert rule $NFTABLE_NAME PSW_MANGLE_V6 meta l4proto udp iif lo ip6 daddr ${2} $(REDIRECT $UDP_REDIR_PORT TPROXY6) comment \"本机\""
echolog " - [$?]将上游 DNS 服务器 [${2}]:${3} 加入到路由器自身代理的 UDP 转发链,请确保您的节点支持IPv6,并开启IPv6透明代理!"
fi
}
@@ -1416,7 +1416,7 @@ gen_include() {
PR_INDEX=\$(sh ${MY_PATH} RULE_LAST_INDEX "$NFTABLE_NAME" PSW_MANGLE_V6 WAN6_IP_RETURN -1)
if [ \$PR_INDEX -ge 0 ]; then
WAN6_IP=\$(sh ${MY_PATH} get_wan6_ip)
- [ ! -z "\${WAN_IP}" ] && nft "replace rule $NFTABLE_NAME PSW_MANGLE_V6 handle \$PR_INDEX ip6 daddr "\${WAN6_IP}" counter return comment \"WAN6_IP_RETURN\""
+ [ ! -z "\${WAN6_IP}" ] && nft "replace rule $NFTABLE_NAME PSW_MANGLE_V6 handle \$PR_INDEX ip6 daddr "\${WAN6_IP}" counter return comment \"WAN6_IP_RETURN\""
fi
}
EOF
diff --git a/luci-app-passwall/root/usr/share/passwall/subscribe.lua b/luci-app-passwall/root/usr/share/passwall/subscribe.lua
index 927b721..557b1b1 100755
--- a/luci-app-passwall/root/usr/share/passwall/subscribe.lua
+++ b/luci-app-passwall/root/usr/share/passwall/subscribe.lua
@@ -1734,7 +1734,9 @@ local function update_node(manual)
if type(vvv) == "table" and next(vvv) ~= nil then
uci:set_list(appname, cfgid, kkk, vvv)
else
- uci:set(appname, cfgid, kkk, vvv)
+ if kkk ~= "group" or vvv ~= "default" then
+ uci:set(appname, cfgid, kkk, vvv)
+ end
-- sing-box 域名解析策略
if kkk == "type" and vvv == "sing-box" then
uci:set(appname, cfgid, "domain_strategy", domain_strategy_node)
@@ -2031,7 +2033,7 @@ if arg[1] then
local f = assert(io.open("/tmp/links.conf", 'r'))
local raw = f:read('*all')
f:close()
- parse_link(raw, "1", "导入")
+ parse_link(raw, "1", arg[2])
update_node(1)
luci.sys.call("rm -f /tmp/links.conf")
elseif arg[1] == "truncate" then
diff --git a/luci-app-quickstart/Makefile b/luci-app-quickstart/Makefile
index a3b876c..76d332d 100644
--- a/luci-app-quickstart/Makefile
+++ b/luci-app-quickstart/Makefile
@@ -9,7 +9,7 @@ LUCI_TITLE:=LuCI support for quickstart
LUCI_DEPENDS:=+quickstart +luci-app-store
LUCI_PKGARCH:=all
-PKG_VERSION:=0.12.1-r1
+PKG_VERSION:=0.12.2-r1
# PKG_RELEASE MUST be empty for luci.mk
PKG_RELEASE:=
diff --git a/luci-app-quickstart/htdocs/luci-static/quickstart/index.js b/luci-app-quickstart/htdocs/luci-static/quickstart/index.js
index cef7fb7..342e07d 100644
--- a/luci-app-quickstart/htdocs/luci-static/quickstart/index.js
+++ b/luci-app-quickstart/htdocs/luci-static/quickstart/index.js
@@ -1,3 +1,3 @@
-var uo=Object.defineProperty,co=Object.defineProperties;var po=Object.getOwnPropertyDescriptors;var ha=Object.getOwnPropertySymbols;var fo=Object.prototype.hasOwnProperty,mo=Object.prototype.propertyIsEnumerable;var Re=(o,n,a)=>n in o?uo(o,n,{enumerable:!0,configurable:!0,writable:!0,value:a}):o[n]=a,lt=(o,n)=>{for(var a in n||(n={}))fo.call(n,a)&&Re(o,a,n[a]);if(ha)for(var a of ha(n))mo.call(n,a)&&Re(o,a,n[a]);return o},pt=(o,n)=>co(o,po(n));var go=(o,n)=>()=>(n||o((n={exports:{}}).exports,n),n.exports);var ve=(o,n,a)=>(Re(o,typeof n!="symbol"?n+"":n,a),a);var O=(o,n,a)=>new Promise((l,u)=>{var s=v=>{try{x(a.next(v))}catch(p){u(p)}},c=v=>{try{x(a.throw(v))}catch(p){u(p)}},x=v=>v.done?l(v.value):Promise.resolve(v.value).then(s,c);x((a=a.apply(o,n)).next())});import{a as vo,c as bo,d as we,b as T,e as Q,u as e,o as r,f as d,g as t,t as i,n as ft,h as C,i as D,r as ht,j as st,k as Et,w as L,v as qt,l as ho,m as J,p as G,q as E,s as Yt,x as At,y as dt,F as U,z as tt,A as et,B as Vt,C as it,D as rt,E as ke,G as te,T as $t,H as Mt,I as ut,J as vt,K as nt,L as mt,M as Ft,N as Qe,O as Ya,P as Aa,Q as Sa,R as Xe,S as ta,U as za,V as ea,W as aa,X as _o,Y as Pa,Z as ye,_ as xo,$ as wo,a0 as oa,a1 as Pe,a2 as ko,a3 as Te,a4 as yo,a5 as Fo,a6 as Eo,a7 as $o,a8 as Co,a9 as Do,aa as Bo,ab as Yo,ac as Ao}from"./vendor.js?v=7154674e";var UP=go(ae=>{const So=function(){const n=document.createElement("link").relList;if(n&&n.supports&&n.supports("modulepreload"))return;for(const u of document.querySelectorAll('link[rel="modulepreload"]'))l(u);new MutationObserver(u=>{for(const s of u)if(s.type==="childList")for(const c of s.addedNodes)c.tagName==="LINK"&&c.rel==="modulepreload"&&l(c)}).observe(document,{childList:!0,subtree:!0});function a(u){const s={};return u.integrity&&(s.integrity=u.integrity),u.referrerpolicy&&(s.referrerPolicy=u.referrerpolicy),u.crossorigin==="use-credentials"?s.credentials="include":u.crossorigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function l(u){if(u.ep)return;u.ep=!0;const s=a(u);fetch(u.href,s)}};So();const Nt={language:void 0,numberFormat:new Intl.NumberFormat("en",{notation:"compact"})},zo=o=>O(ae,null,function*(){const n=window.vue_lang;new Date().getTime();let a={};try{const s=yield vo({url:window.vue_lang_data,method:"GET"});s.data&&(a=s.data)}catch(s){console.log(s)}const l=bo({defaultLanguage:n,mutedLanguages:["zh-cn"],translations:a,setGlobalProperties:!1,provideDirective:!1,provideComponent:!1});o.use(l),Nt.language=l;const{$gettext:u}=l;window.$i18n=u;try{Nt.numberFormat=new Intl.NumberFormat(n,{notation:"compact"})}catch(s){console.error("Intl.NumberFormat unsupported lang",n,s)}}),W=()=>{if(Nt.language)return Nt.language;throw new Error("I18N Uninitialized!")},Ie=()=>({$gettext:(o,n,a)=>{if(Nt.language)return Nt.language.$gettext(o,n,a);throw new Error("I18N Uninitialized!")},$ngettext:(o,n,a,l,u)=>{if(Nt.language)return Nt.language.$ngettext(o,n,a,l,u);throw new Error("I18N Uninitialized!")}}),De=o=>typeof o=="number"?Nt.numberFormat.format(o):"?",{$gettext:Po,$ngettext:HP}=Ie(),Ta=(o,n)=>O(ae,null,function*(){return new Promise((a,l)=>O(ae,null,function*(){try{const u=yield fetch(o,n);if(Math.floor(u.status/100)!=2)throw u.status+" "+u.statusText;const s=lt({},u);s.data=yield u.json(),a(s)}catch(u){const s=u;l(Po("\u7F51\u7EDC\u5F02\u5E38\uFF1A")+((s==null?void 0:s.message)||u))}}))});class na{constructor(n){ve(this,"config",{baseURL:"",headers:{}});ve(this,"useRequest",n=>n);ve(this,"useResponse",n=>n);ve(this,"useError",n=>n);n.baseURL&&(this.config.baseURL=n.baseURL),n.headers&&(this.config.headers=n.headers)}static create(n){return new na(n)}Do(n,a){return O(this,null,function*(){return new Promise((l,u)=>O(this,null,function*(){try{const s=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});n=`${s.baseURL||""}${n}`,a.headers==null&&(a.headers={}),s.headers&&(a.headers=lt({},s.headers));const x=yield fetch(n,a),v=lt({},x);v.data=yield x.json(),l(this.useResponse(v))}catch(s){this.useError(s),u(s)}}))})}TEXT(n,a){return O(this,null,function*(){return new Promise((l,u)=>O(this,null,function*(){try{const s=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});n=`${s.baseURL||""}${n}`,a.headers==null&&(a.headers={}),s.headers&&(a.headers=lt({},s.headers));const x=yield fetch(n,a),v=lt({},x);v.data=yield x.text(),l(v)}catch(s){this.useError(s),u(s)}}))})}interceptors(){const n=this;return{requset:{use(a){n.useRequest=a}},response:{use(a,l){n.useResponse=a,l&&(n.useError=l)}}}}}const Ia=na.create({});Ia.interceptors().requset.use(o=>o);Ia.interceptors().response.use(o=>(o.data&&o.data.success==null&&o.data.success==0,o));const{$gettext:Ma,$ngettext:WP}=Ie(),To="/cgi-bin/luci/istore",Io="/cgi-bin/luci/admin";let Ae=!1;const q=(o,n)=>(o.indexOf("//")==-1&&(o=`${To}${o}`),Ta(o,n).then(a=>(a!=null&&a.data&&a.data.success==-1001&&a.data.error=="Forbidden"&&(Ae||(Ae=!0,alert(Ma("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55")),location.reload())),a))),Mo=(o,n)=>(o.indexOf("//")==-1&&(o=`${Io}${o}`),Ta(o,n).then(a=>(a!=null&&a.data&&a.data.success==-1001&&a.data.error=="Forbidden"&&(Ae||(Ae=!0,alert(Ma("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55")),location.reload())),a))),Lo={Statistics:{GET(){return q("/u/network/statistics/",{method:"GET"})}},Status:{GET(){return q("/u/network/status/",{method:"GET"})}},Device:{List:{GET(){return q("/network/device/list/",{method:"GET"})}}},Homebox:{Enable:{POST(){return q("/network/homebox/enable/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},CheckPublickNet:{POST(o){return q("/network/checkPublicNet/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetInterfaceConfig:{GET(){return q("/network/interface/config/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}},POSTInterfaceConfig:{POST(o){return q("/network/interface/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},PortList:{GET(){return q("/network/port/list/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},No={Version:{GET(){return q("/u/system/version/",{method:"GET"})}},CheckUpdate:{GET(){return q("/system/check-update/",{method:"GET"})}},AutoCheckUpdate:{POST(o){return q("/system/auto-check-update/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Reboot:{POST(o){return q("/system/reboot/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Status:{GET(){return q("/system/status/",{method:"GET"})}}},Oo={Disk:{Status:{GET(){return q("/nas/disk/status/",{method:"GET"})}},Erase:{POST(o){return q("/nas/disk/erase",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Init:{POST:o=>q("/nas/disk/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},InitRest:{POST:o=>q("/nas/disk/initrest/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},Partition:{Format:{POST:o=>q("/nas/disk/partition/format",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},Mount:{POST:o=>q("/nas/disk/partition/mount",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Service:{Status:{GET(){return q("/u/nas/service/status/",{method:"GET"})}}},Samba:{Create:{POST(o){return q("/nas/samba/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Webdav:{Create:{POST(o){return q("/nas/webdav/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Status:{GET(){return q("/nas/webdav/status/",{method:"GET"})}}},Linkease:{Enable:{POST(){return q("/u/nas/linkease/enable",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Sandbox:{POST(o){return q("/nas/sandbox/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetSandbox:{GET(){return q("/nas/sandbox/",{method:"GET"})}},SandboxDisks:{GET(){return q("/nas/sandbox/disks/",{method:"GET"})}},SandboxCommit:{POST(){return q("/u/nas/sandbox/commit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify({})})}},SandboxReset:{POST(){return q("/nas/sandbox/reset/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}},SandboxExit:{POST(){return q("/nas/sandbox/exit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Vo={Check:{POST(o){return q("/app/check/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Install:{POST(o){return q("/app/install/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Go={Pppoe:{GET(){return q("/guide/pppoe/",{method:"GET"})},POST(o){return q("/guide/pppoe/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DnsConfig:{GET(){return q("/guide/dns-config/",{method:"GET"})},POST(o){return q("/guide/dns-config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DhcpClient:{POST(o){return q("/guide/dhcp-client/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},ClientModel:{GET(){return q("/guide/client-mode/",{method:"GET"})},POST(o){return q("/guide/client-mode/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GatewayRouter:{POST(o){return q("/guide/gateway-router/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DockerStatus:{GET(){return q("/guide/docker/status/",{method:"GET"})}},DockerPartitionList:{GET(){return q("/guide/docker/partition/list/",{method:"GET"})}},DockerTransfer:{POST(o){return q("/guide/docker/transfer/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DockerSwitch:{POST(o){return q("/guide/docker/switch/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DownloadService:{Status:{GET(){return q("/guide/download-service/status/",{method:"GET"})}}},DownloadPartition:{List:{GET(){return q("/guide/download/partition/list/",{method:"GET"})}}},Aria2Init:{POST(o){return q("/guide/aria2/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},qbitorrentInit:{POST(o){return q("/guide/qbittorrent/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},transmissionInit:{POST(o){return q("/guide/transmission/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetLan:{GET(){return q("/guide/lan/",{method:"GET"})}},LanIp:{POST(o){return q("/guide/lan/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},SoftSource:{POST(o){return q("/guide/soft-source/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetSoftSource:{GET(){return q("/guide/soft-source/",{method:"GET"})}},SoftSourceList:{GET(){return q("/guide/soft-source/list/",{method:"GET"})}},PostDdns:{POST(o){return q("/u/guide/ddns/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetDdns:{GET(){return q("/u/guide/ddns/",{method:"GET"})}},Ddnsto:{POST(o){return q("/guide/ddnsto/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DdntoConfig:{GET(){return q("/guide/ddnsto/config/",{method:"GET"})}},DdnstoAddress:{POST(o){return q("/guide/ddnsto/address/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},jo={Create:{POST(o){return q("/raid/create/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Delete:{POST(o){return q("/raid/delete/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Add:{POST(o){return q("/raid/add/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Remove:{POST(o){return q("/raid/remove/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Recover:{POST(o){return q("/raid/recover/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Detail:{POST(o){return q("/raid/detail/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},List:{GET(){return q("/raid/list/",{method:"GET"})}},CreateList:{GET(){return q("/raid/create/list/",{method:"GET"})}},Autofix:{GET(){return q("/raid/autofix/",{method:"GET"})}}},Uo={Log:{GET(){return q("/smart/log/",{method:"GET"})}},List:{GET(){return q("/u/smart/list/",{method:"GET"})}},Config:{GET(){return q("/smart/config/",{method:"GET"})},POST(o){return q("/smart/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Test:{POST(o){return q("/u/smart/test/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},Result:{POST(o){return q("/smart/test/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Attribute:{Result:{POST(o){return q("/smart/attribute/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Extend:{Result:{POST(o){return q("/smart/extend/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}}},qo={List:{GET(){return q("/wireless/list-iface/",{method:"GET"})}},Switch:{POST(o){return q("/wireless/enable-iface/",{body:JSON.stringify(o),method:"POST"})}},Power:{POST(o){return q("/wireless/set-device-power/",{body:JSON.stringify(o),method:"POST"})}},Edit:{POST(o){return q("/wireless/edit-iface/",{body:JSON.stringify(o),method:"POST"})}},Setup:{POST(o){return q("/wireless/setup/",{body:JSON.stringify(o),method:"POST"})}}},Ro={getInstalled:{GET(){return Mo("/store/installed/",{method:"GET"})}},needSetup:{GET(){return q("/guide/need/setup/",{method:"GET"})}},setPassword:{POST(o){return q("/system/setPassword/",{body:JSON.stringify(o),method:"POST"})}},completeGuide:{POST(){return q("/guide/finish/setup/",{method:"POST"})}}},Ho={listDevices:{GET(){return q("/lanctrl/listDevices/",{method:"GET"})}},staticDeviceConfig:{POST(o){return q("/lanctrl/staticDeviceConfig/",{body:JSON.stringify(o),method:"POST"})}},globalConfigs:{GET(){return q("/lanctrl/globalConfigs/",{method:"GET"})}},speedLimitConfig:{POST(o){return q("/lanctrl/speedLimitConfig/",{body:JSON.stringify(o),method:"POST"})}},listStaticDevices:{GET(){return q("/lanctrl/listStaticDevices/",{method:"GET"})}},listSpeedLimitedDevices:{GET(){return q("/lanctrl/listSpeedLimitedDevices/",{method:"GET"})}},dhcpGatewayConfig:{POST(o){return q("/lanctrl/dhcpGatewayConfig/",{body:JSON.stringify(o),method:"POST"})}},dhcpTagsConfig:{POST(o){return q("/lanctrl/dhcpTagsConfig/",{body:JSON.stringify(o),method:"POST"})}},enableSpeedLimit:{POST(o){return q("/lanctrl/enableSpeedLimit/",{body:JSON.stringify(o),method:"POST"})}},enableFloatGateway:{POST(o){return q("/lanctrl/enableFloatGateway/",{body:JSON.stringify(o),method:"POST"})}},speedsForDevices:{GET(){return q("/lanctrl/speedsForDevices/",{method:"GET"})}},speedsForOneDevice:{POST(o){return q("/lanctrl/speedsForOneDevice/",{body:JSON.stringify(o),method:"POST"})}}};var Wo=Object.freeze(Object.defineProperty({__proto__:null,Network:Lo,System:No,Nas:Oo,App:Vo,Guide:Go,Raid:jo,Smart:Uo,Quickwifi:qo,GuidePage:Ro,DeviceMangement:Ho},Symbol.toStringTag,{value:"Module"})),j=lt({},Wo);const ia=we("app",{state:()=>({portitemStyle:{show:!1,left:0,top:0,portitem:{name:"",macAddress:"",linkSpeed:"",linkState:"",rx_packets:"",tx_packets:"",interfaceNames:[],master:"",duplex:""}}})});we("guide",{});const Jo=we("nas",{state:()=>({webdav:{}})}),Fe=we("network",{state:()=>({status:{},deviceList:{}}),getters:{},actions:{updateNetworkStatus(o){this.status=o},requestDeviceList(){j.Network.Device.List.GET().then(o=>{if(o!=null&&o.data){const{result:n}=o==null?void 0:o.data;n&&(this.deviceList=n)}})},incrTime(){this.status.uptimeStamp&&this.status.uptimeStamp++}}}),Me=we("system",{state:()=>({version:{},checkUpdate:null,updateChecked:!1,systemStatus:{}}),getters:{},actions:{incrTime(){var o;(o=this.systemStatus)!=null&&o.uptime&&this.systemStatus.uptime++},requestVersion(){j.System.Version.GET().then(o=>{var n;(n=o==null?void 0:o.data)!=null&&n.result&&(this.version=o.data.result)})},requestCheckUpdate(){this.updateChecked||(this.updateChecked=!0,j.System.CheckUpdate.GET().then(o=>{var n;(n=o==null?void 0:o.data)!=null&&n.result&&(this.checkUpdate=o.data.result)}).finally(()=>{this.checkUpdate==null&&(this.checkUpdate={needUpdate:!1,msg:"skip"})}))},updateSystemStatus(o){this.systemStatus=o}}});let _a=!1;const Zo=()=>{if(_a)return;_a=!0;let o=!0,n=!0;const a=Fe(),l=Me(),u=function(){return(!o&&document.hidden?Promise.resolve():j.System.Status.GET().then(c=>{c!=null&&c.data.result&&l.updateSystemStatus(c.data.result)})).finally(()=>{setTimeout(u,5e3),o&&(setInterval(()=>{l.incrTime()},1e3),o=!1)})},s=function(){return(!n&&document.hidden?Promise.resolve():j.Network.Status.GET().then(c=>{if(c!=null&&c.data){const{result:x}=c==null?void 0:c.data;x&&a.updateNetworkStatus(x)}})).finally(()=>{setTimeout(s,5e3),n&&(setInterval(()=>{a.incrTime()},1e3),n=!1)})};s(),a.requestDeviceList(),setTimeout(()=>{l.requestVersion(),u()},1100)};var N=(o,n)=>{const a=o.__vccOpts||o;for(const[l,u]of n)a[l]=u;return a};const Ko=T({setup(o){const{$gettext:n,$ngettext:a}=W(),l=ia(),u=Q(()=>l.portitemStyle.portitem),s=Q(()=>l.portitemStyle.show),c=Q(()=>({bottom:`calc(100% - ${l.portitemStyle.top}px)`,left:`${l.portitemStyle.left}px`})),x=f=>{switch(f){case"full":return n("\u5168\u53CC\u5DE5");case"half":return n("\u534A\u53CC\u5DE5")}},v=f=>{l.portitemStyle.show=!0},p=f=>{l.portitemStyle.show=!1};return(f,m)=>e(s)?(r(),d("div",{key:0,class:"disk-item-tooltip",style:ft(e(c)),onMouseenter:v,onMouseleave:p},[t("div",null,i(x(e(u).duplex)),1),t("div",null,i(e(n)("\u540D\u79F0\uFF1A"))+i(e(u).name||"--"),1),t("div",null,i(e(n)("MAC\uFF1A"))+i(e(u).macAddress||"--"),1),t("div",null,i(e(n)("\u63A5\u6536\uFF1A"))+i(e(u).rx_packets||"--"),1),t("div",null,i(e(n)("\u53D1\u9001\uFF1A"))+i(e(u).tx_packets||"--"),1)],36)):C("",!0)}});var Qo=N(Ko,[["__scopeId","data-v-41cbce66"]]);const Xo={id:"main"},tn=T({setup(o){return(n,a)=>{const l=ht("router-view");return r(),d("div",Xo,[D(l),D(Qo)])}}});var en=N(tn,[["__scopeId","data-v-2d97dedc"]]);const an={},on={t:"1640593669834",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"54870",width:"128",height:"128"},nn=t("path",{d:"M148.7872 57.4464h177.152c64.9216 0 118.0672 53.1456 118.0672 118.0672v295.2192H148.7872C83.8656 470.7328 30.72 417.5872 30.72 352.5632v-177.152C30.72 110.592 83.8656 57.4464 148.7872 57.4464z m0 531.3536h295.2192v295.2192c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152C83.8656 1001.984 30.72 948.9408 30.72 883.9168v-177.152C30.72 641.9456 83.8656 588.8 148.7872 588.8z m0 0M768.7168 559.2064L562.0736 346.7264c-23.6544-17.7152-35.4304-53.1456-35.4304-82.6368s11.776-59.0848 35.4304-82.6368L686.08 57.4464C733.2864 10.24 810.0864 10.24 851.3536 57.4464l124.0064 124.0064c23.6544 23.6544 35.4304 53.1456 35.4304 82.6368s-11.776 59.0848-35.4304 82.6368L768.7168 559.2064z m0-478.208c-17.7152 0-29.4912 5.9392-41.3696 17.7152l-123.904 124.0064c-11.776 11.776-17.7152 23.6544-17.7152 41.3696s5.9392 29.4912 17.7152 41.3696l165.2736 165.2736 165.2736-165.2736c11.776-11.776 17.7152-23.6544 17.7152-41.3696s-5.9392-29.4912-17.7152-41.3696L809.984 98.7136c-11.776-11.776-23.552-17.7152-41.2672-17.7152z m0 0","p-id":"54871"},null,-1),rn=t("path",{d:"M562.0736 588.8h295.2192c64.9216 0 118.0672 53.1456 118.0672 118.0672v177.152c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152c-64.9216 0-118.0672-53.1456-118.0672-118.0672V588.8z m0 0","p-id":"54872"},null,-1),sn=[nn,rn];function dn(o,n){return r(),d("svg",on,sn)}var ln=N(an,[["render",dn]]);const un={},cn={t:"1640598743438",class:"icon",viewBox:"0 0 1036 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"65341",width:"128",height:"128"},pn=t("path",{d:"M984.177778 432.355556l-45.511111 0c-22.755556 0-45.511111-17.066667-51.2-39.822222l-28.444444-68.266667C847.644444 312.888889 853.333333 284.444444 870.4 267.377778l34.133333-34.133333c17.066667-17.066667 17.066667-39.822222 0-56.888889l-56.888889-56.888889c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-34.133333 34.133333C739.555556 170.666667 711.111111 176.355556 694.044444 164.977778L625.777778 136.533333c-22.755556-5.688889-39.822222-28.444444-39.822222-51.2L585.955556 39.822222c0-22.755556-17.066667-39.822222-39.822222-39.822222L472.177778 0C449.422222 0 432.355556 17.066667 432.355556 39.822222l0 45.511111c0 22.755556-17.066667 45.511111-39.822222 51.2L329.955556 164.977778C312.888889 176.355556 284.444444 170.666667 267.377778 153.6L233.244444 119.466667c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-56.888889 56.888889c-17.066667 17.066667-17.066667 39.822222 0 56.888889l34.133333 34.133333C170.666667 284.444444 176.355556 312.888889 164.977778 329.955556L136.533333 398.222222C130.844444 415.288889 108.088889 432.355556 85.333333 432.355556l-45.511111 0C17.066667 432.355556 0 449.422222 0 472.177778l0 79.644444c0 22.755556 17.066667 39.822222 39.822222 39.822222l45.511111 0c22.755556 0 45.511111 17.066667 51.2 39.822222l28.444444 68.266667C176.355556 711.111111 170.666667 739.555556 153.6 756.622222l-34.133333 34.133333c-17.066667 17.066667-17.066667 39.822222 0 56.888889l56.888889 56.888889c17.066667 17.066667 39.822222 17.066667 56.888889 0l34.133333-34.133333C284.444444 853.333333 312.888889 847.644444 329.955556 859.022222L398.222222 887.466667c22.755556 5.688889 39.822222 28.444444 39.822222 51.2l0 45.511111c0 22.755556 17.066667 39.822222 39.822222 39.822222l79.644444 0c22.755556 0 39.822222-17.066667 39.822222-39.822222l0-45.511111c0-22.755556 17.066667-45.511111 39.822222-51.2l68.266667-28.444444c17.066667-11.377778 45.511111-5.688889 62.577778 11.377778l34.133333 34.133333c17.066667 17.066667 39.822222 17.066667 56.888889 0l56.888889-56.888889c17.066667-17.066667 17.066667-39.822222 0-56.888889l-34.133333-34.133333c-17.066667-17.066667-17.066667-45.511111-11.377778-62.577778l28.444444-68.266667c5.688889-22.755556 28.444444-39.822222 51.2-39.822222l45.511111 0c22.755556 0 39.822222-17.066667 39.822222-39.822222L1035.377778 472.177778C1024 449.422222 1006.933333 432.355556 984.177778 432.355556L984.177778 432.355556zM711.111111 512c0 108.088889-91.022222 199.111111-199.111111 199.111111-108.088889 0-199.111111-85.333333-199.111111-199.111111 0-108.088889 85.333333-199.111111 199.111111-199.111111C620.088889 312.888889 711.111111 403.911111 711.111111 512L711.111111 512zM711.111111 512","p-id":"65342"},null,-1),fn=[pn];function mn(o,n){return r(),d("svg",cn,fn)}var gn=N(un,[["render",mn]]);const vn={},bn={t:"1640599890701",class:"icon",viewBox:"0 0 1565 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"76947",width:"128",height:"128"},hn=t("path",{d:"M1206.477959 299.331595c-27.357038 0-53.867311 3.354494-79.465683 9.151581C1078.518669 130.792698 916.428217 0 723.365689 0 492.068443 0 304.575027 187.493416 304.575027 418.790662c0 16.055976 1.074741 31.786273 2.865975 47.386299-9.184149-0.911901-18.400865-1.40042-27.812989-1.40042C125.191018 464.743973 0 589.934991 0 744.371987c0 154.469563 125.191018 279.628013 279.595446 279.628013 59.990077 0 221.233764 0 394.527575 0l0-302.295274L496.986197 721.704726l285.457668-339.031868 285.457668 339.031868-177.136823 0 0 302.295274c139.748871 0 262.204185 0 315.71325 0 197.947713 0 358.40977-168.34349 358.40977-366.291203S1404.425673 299.331595 1206.477959 299.331595z","p-id":"76948"},null,-1),_n=[hn];function xn(o,n){return r(),d("svg",bn,_n)}var wn=N(vn,[["render",xn]]);const kn={},yn={t:"1640599792937",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"68605",width:"128",height:"128"},Fn=t("path",{d:"M512 825.6c-211.2 0-377.6-57.6-377.6-128l0 0L134.4 896l0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0 0-204.8 0 0C889.6 768 723.2 825.6 512 825.6L512 825.6z","p-id":"68606"},null,-1),En=t("path",{d:"M512 544c-211.2 0-377.6-57.6-377.6-128l0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 416l0 0C889.6 486.4 723.2 544 512 544L512 544z","p-id":"68607"},null,-1),$n=t("path",{d:"M889.6 128 889.6 128c0-70.4-166.4-128-377.6-128C300.8 0 134.4 57.6 134.4 128l0 0 0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 128 889.6 128 889.6 128zM512 217.6c-153.6 0-281.6-44.8-281.6-96 0-51.2 128-96 281.6-96 153.6 0 281.6 44.8 281.6 96C793.6 179.2 665.6 217.6 512 217.6L512 217.6z","p-id":"68608"},null,-1),Cn=[Fn,En,$n];function Dn(o,n){return r(),d("svg",yn,Cn)}var Bn=N(kn,[["render",Dn]]);const Yn={},An={t:"1640575557247",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4211",width:"128",height:"128"},Sn=t("path",{d:"M560 800l-10.464-416h-75.072L464 800h96z m-14.144-493.984c9.44-9.312 14.144-20.672 14.144-34.016 0-13.6-4.704-24.992-14.144-34.208A46.784 46.784 0 0 0 512 224c-13.12 0-24.448 4.608-33.856 13.792A45.856 45.856 0 0 0 464 272c0 13.344 4.704 24.704 14.144 34.016 9.408 9.312 20.704 13.984 33.856 13.984 13.12 0 24.448-4.672 33.856-13.984zM512 32C246.912 32 32 246.912 32 512c0 265.088 214.912 480 480 480 265.088 0 480-214.912 480-480 0-265.088-214.912-480-480-480z m0 64c229.76 0 416 186.24 416 416s-186.24 416-416 416S96 741.76 96 512 282.24 96 512 96z","p-id":"4212"},null,-1),zn=[Sn];function Pn(o,n){return r(),d("svg",An,zn)}var Tn=N(Yn,[["render",Pn]]);const In={},Mn={t:"1640681742480",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"80687",width:"128",height:"128"},Ln=t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"80688"},null,-1),Nn=t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"80689"},null,-1),On=t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"80690"},null,-1),Vn=t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"80691"},null,-1),Gn=t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"80692"},null,-1),jn=t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"80693"},null,-1),Un=t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"80694"},null,-1),qn=t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"80695"},null,-1),Rn=t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"80696"},null,-1),Hn=t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"80697"},null,-1),Wn=t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80698"},null,-1),Jn=t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80699"},null,-1),Zn=t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80700"},null,-1),Kn=t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80701"},null,-1),Qn=t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80702"},null,-1),Xn=t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"80703"},null,-1),ti=t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"80704"},null,-1),ei=t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"80705"},null,-1),ai=t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"80706"},null,-1),oi=[Ln,Nn,On,Vn,Gn,jn,Un,qn,Rn,Hn,Wn,Jn,Zn,Kn,Qn,Xn,ti,ei,ai];function ni(o,n){return r(),d("svg",Mn,oi)}var ii=N(In,[["render",ni]]);const ri={},si={t:"1640775712185",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2996",width:"128",height:"128"},di=t("path",{d:"M894.185422 128.023792 129.814578 445.743994 445.99982 577.744353 571.860343 893.929596Z","p-id":"2997"},null,-1),li=[di];function ui(o,n){return r(),d("svg",si,li)}var ci=N(ri,[["render",ui]]);const pi={class:"progress"},fi=T({props:{value:{type:Number,required:!0},text:{type:String}},setup(o){const n=o,a=Q(()=>n.value>=80?"#e45e5e":n.value>=70?"#ff9800":n.value>=60?"#297ff3":n.value>0?"#53c31b":"");return(l,u)=>(r(),d("div",pi,[t("div",{class:st(["progress-value",`${o.value>50}`]),style:ft({width:`${o.value}%`,backgroundColor:e(a)})},[t("span",null,i(o.text),1)],6),Et(l.$slots,"default",{},void 0,!0)]))}});var La=N(fi,[["__scopeId","data-v-3ee635ef"]]);const mi={},gi={height:"32",width:"64",t:"1649907260906",viewBox:"-8 248 1045 537",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink"},vi=t("path",{d:"M764.904497 251.418146 259.086289 251.418146c-143.076626 0-259.065314 115.989711-259.065314 259.065314 0 143.077649 115.988688 259.063267 259.065314 259.063267l505.818207 0c143.074579 0 259.063267-115.985618 259.063267-259.063267C1023.967764 367.407857 907.980099 251.418146 764.904497 251.418146zM764.904497 747.164974c-130.507356 0-236.682537-106.175181-236.682537-236.682537S634.397141 273.798876 764.904497 273.798876s236.683561 106.176205 236.683561 236.683561S895.411853 747.164974 764.904497 747.164974z","p-id":"2794",fill:"#52C41A"},null,-1),bi=[vi];function hi(o,n){return r(),d("svg",gi,bi)}var _i=N(mi,[["render",hi]]);const xi={},wi={height:"32",width:"64",t:"1649907515643",viewBox:"-8 248 1045 537",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2971","xmlns:xlink":"http://www.w3.org/1999/xlink"},ki=t("path",{d:"M764.867148 249.793136 259.0735 249.793136c-143.070486 0-259.052011 115.984594-259.052011 259.052011 0 143.07151 115.982548 259.050987 259.052011 259.050987l505.793648 0c143.067416 0 259.050987-115.979478 259.050987-259.050987C1023.917112 365.778754 907.933541 249.793136 764.867148 249.793136zM259.0735 745.516428c-130.501216 0-236.671281-106.172111-236.671281-236.671281 0-130.501216 106.170065-236.671281 236.671281-236.671281S495.744781 378.344954 495.744781 508.84617C495.744781 639.34534 389.574716 745.516428 259.0735 745.516428z","p-id":"2972",fill:"#999"},null,-1),yi=[ki];function Fi(o,n){return r(),d("svg",wi,yi)}var Ei=N(xi,[["render",Fi]]);const $i={class:"checkbox_switch"},Ci={class:"checkbox_switch_on"},Di={class:"checkbox_switch_off"},Bi=T({props:{modelValue:{type:Boolean,required:!0}},emits:["update:modelValue"],setup(o,{emit:n}){const a=o,l=Q({get:()=>a.modelValue.valueOf(),set:u=>n("update:modelValue",u)});return(u,s)=>(r(),d("label",$i,[L(t("input",{type:"checkbox","onUpdate:modelValue":s[0]||(s[0]=c=>ho(l)?l.value=c:null)},null,512),[[qt,e(l)]]),t("span",Ci,[D(_i)]),t("span",Di,[D(Ei)]),Et(u.$slots,"default",{},void 0,!0)]))}});var Na=N(Bi,[["__scopeId","data-v-54af3568"]]);const Yi={},Ai={t:"1641369474206",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7685",width:"128",height:"128"},Si=t("path",{d:"M757.76 637.44l-218.88 245.76c-14.72 16.64-40.32 16.64-54.4 0L265.6 637.44C244.48 613.76 261.12 576 293.12 576l437.76 0C762.24 576 779.52 613.76 757.76 637.44z","p-id":"7686"},null,-1),zi=[Si];function Pi(o,n){return r(),d("svg",Ai,zi)}var Ti=N(Yi,[["render",Pi]]);const Ii={},Mi={t:"1641369492518",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7831",width:"128",height:"128"},Li=t("path",{d:"M758.4 385.92 539.52 140.16c-14.72-16.64-40.32-16.64-54.4 0L266.24 385.92C244.48 409.6 261.76 448 293.12 448l437.76 0C762.88 448 779.52 409.6 758.4 385.92z","p-id":"7832"},null,-1),Ni=[Li];function Oi(o,n){return r(),d("svg",Mi,Ni)}var Vi=N(Ii,[["render",Oi]]);const Gi={};function ji(o,n){return r(),d("article",null,[Et(o.$slots,"default",{},void 0,!0)])}var Ui=N(Gi,[["render",ji],["__scopeId","data-v-995510fc"]]);const qi={class:"cover"},Ri={class:"thumbnail"},Hi=T({emits:["click"],setup(o,{emit:n}){const a=()=>{n("click")};return(l,u)=>(r(),J(Ui,null,{default:G(()=>[t("a",{onClick:a},[t("div",qi,[t("div",Ri,[Et(l.$slots,"default",{},void 0,!0)])])])]),_:3}))}});var Wi=N(Hi,[["__scopeId","data-v-782f97c0"]]);const Ji={class:"select-editable"},Zi={selected:"",value:""},Ki=["value"],Qi={value:"useInput"},Xi=["placeholder"],tr=T({props:{modelValue:{type:String,required:!0},title:{type:String,default:""},options:{type:Array,default:[]}},emits:["update:modelValue"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:u}=W(),s=E(""),c=E(""),x=Q({get:()=>a.modelValue.valueOf(),set:m=>n("update:modelValue",m)}),v=m=>{m===s.value||s.value==="useInput"&&m===c.value||(m===""||a.options.some(_=>_.key===m)?s.value=m:(c.value=m,s.value="useInput"))};Yt(()=>a.modelValue,m=>{v(m)}),At(()=>{const m=x.value;v(m)});const p=m=>{s.value==="useInput"?x.value=c.value:x.value=s.value},f=m=>{x.value=c.value};return(m,_)=>(r(),d("label",null,[t("div",Ji,[L(t("select",{"onUpdate:modelValue":_[0]||(_[0]=y=>s.value=y),autocomplete:"off",onChange:p},[t("option",Zi,i(e(l)("\u8BF7\u9009\u62E9%{title}",{title:o.title})),1),(r(!0),d(U,null,tt(o.options,(y,b)=>(r(),d("option",{value:y.key,key:b},i(y.value||y.key),9,Ki))),128)),t("option",Qi,i(e(l)("- -\u81EA\u5B9A\u4E49- -")),1)],544),[[dt,s.value,void 0,{trim:!0}]]),s.value=="useInput"?L((r(),d("input",{key:0,type:"text","onUpdate:modelValue":_[1]||(_[1]=y=>c.value=y),required:"",placeholder:e(l)("\u8BF7\u8F93\u5165%{title}",{title:o.title}),onChange:f},null,40,Xi)),[[et,c.value,void 0,{trim:!0}]]):C("",!0)])]))}});var Jt=N(tr,[["__scopeId","data-v-c446588c"]]);const er={t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},ar=T({props:{size:{type:[Number,String],default:50},color:{type:String,default:"#fff"}},setup(o){const n=a=>{if(a==null)return;if(typeof a=="number")return a+"px";const l=a.toString();return parseInt(l)+""==l?l+"px":l};return(a,l)=>(r(),d("div",{class:"quick-loading",style:ft({width:n(o.size),height:n(o.size)})},[(r(),d("svg",er,[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454",style:ft({fill:o.color})},null,4)]))],4))}});var or=N(ar,[["__scopeId","data-v-47c6049a"]]);const nr={},ir={t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},rr=t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""},null,-1),sr=[rr];function dr(o,n){return r(),d("svg",ir,sr)}var lr=N(nr,[["render",dr]]);const ur={},cr={width:"128",height:"128",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},pr=Vt('
',1),fr=[pr];function mr(o,n){return r(),d("svg",cr,fr)}var gr=N(ur,[["render",mr]]);const vr=o=>(it("data-v-0cc5bf50"),o=o(),rt(),o),br=["href","title"],hr=vr(()=>t("svg",{t:"1684144670421",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4343"},[t("path",{d:"M512 74.666667c241.066667 0 437.333333 196.266667 437.333333 437.333333S753.066667 949.333333 512 949.333333 74.666667 753.066667 74.666667 512 270.933333 74.666667 512 74.666667zM512 704c-23.466667 0-42.666667 19.2-42.666667 42.666667s19.2 42.666667 42.666667 42.666666 42.666667-19.2 42.666667-42.666666-19.2-42.666667-42.666667-42.666667z m0-458.666667c-76.8 0-138.666667 61.866667-138.666667 138.666667 0 17.066667 14.933333 32 32 32s32-14.933333 32-32c0-40.533333 34.133333-74.666667 74.666667-74.666667s74.666667 34.133333 74.666667 74.666667c0 2.133333 0 6.4-2.133334 10.666667-6.4 14.933333-19.2 32-40.533333 51.2-10.666667 10.666667-21.333333 19.2-34.133333 27.733333-2.133333 2.133333-6.4 4.266667-8.533334 6.4l-6.4 4.266667c-8.533333 6.4-14.933333 17.066667-14.933333 27.733333v108.8c2.133333 17.066667 14.933333 29.866667 32 29.866667h2.133333c17.066667-2.133333 29.866667-14.933333 29.866667-32v-89.6l12.8-10.666667c10.666667-8.533333 19.2-17.066667 29.866667-25.6 27.733333-25.6 46.933333-49.066667 57.6-74.666667 4.266667-10.666667 6.4-23.466667 6.4-34.133333 0-76.8-61.866667-138.666667-138.666667-138.666667z",fill:"#666666","p-id":"4344"})],-1)),_r=[hr],xr=T({props:{type:null},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{switch(n.type){case"disk":return"https://www.linkease.com/rd/8myYAEVA/";case"store":return"https://www.linkease.com/rd/1F58VUTT/";case"docker":return"https://www.linkease.com/rd/2Q28MDtf/";case"download":return"https://www.linkease.com/rd/1tJo1KX-/";case"ddns":return"https://www.linkease.com/rd/3yFiX5-X/";case"network-interface":return"https://www.linkease.com/rd/3ca51a3G/"}});return(s,c)=>(r(),d("a",{href:e(u),target:"_blank",title:e(a)("\u8DF3\u8F6C\u6559\u7A0B")},_r,8,br))}});var wr=N(xr,[["__scopeId","data-v-0cc5bf50"]]),Oa={install:o=>{o.component("icon-loading",or),o.component("icon-success",lr),o.component("icon-error",gr),o.component("GlHelp",wr)}};const kr={class:"reusable-card",role:"group"},yr={class:"card-header"},Fr={class:"left"},Er={class:"title"},$r={class:"settings-wrapper"},Cr={key:0,class:"settings-btn"},Dr={class:"dropdown-menu"},Br={class:"card-body"},Yr={props:{title:{type:String,required:!0},showSettings:{type:Boolean,default:!0},isSettingsMenuOpen:{type:Boolean,default:!1}},emits:["settings","update:isSettingsMenuOpen"],setup(o,{emit:n}){const a=o;W(),At(()=>document.addEventListener("click",u)),ke(()=>document.removeEventListener("click",u));const l=Q({get:()=>a.isSettingsMenuOpen,set:s=>n("update:isSettingsMenuOpen",s)}),u=s=>{s.target.closest(".settings-wrapper")||(l.value=!1)};return(s,c)=>(r(),d("div",kr,[t("div",yr,[t("div",Fr,[Et(s.$slots,"icon",{},void 0,!0),t("div",Er,i(o.title),1)]),t("div",$r,[o.showSettings?(r(),d("div",Cr,[Et(s.$slots,"settings",{},void 0,!0)])):C("",!0),D($t,{name:"fade"},{default:G(()=>[L(t("div",Dr,[Et(s.$slots,"settings-menu",{},void 0,!0)],512),[[te,e(l)]])]),_:3})])]),t("div",Br,[Et(s.$slots,"default",{},void 0,!0)])]))}};var Rt=N(Yr,[["__scopeId","data-v-7af4a3d5"]]);const Ar={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Sr=["fill"],zr=["fill"],Pr=["fill"],Zt=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",Ar,[t("path",{d:"M665.6 911.36H358.4c-76.8 0-117.76 0-153.6-20.48-30.72-15.36-56.32-40.96-71.68-71.68-20.48-35.84-20.48-76.8-20.48-153.6v-51.2c0-20.48 15.36-40.96 40.96-40.96s40.96 15.36 40.96 40.96v51.2c0 61.44 0 97.28 10.24 117.76 10.24 15.36 20.48 30.72 40.96 40.96 20.48 10.24 56.32 10.24 117.76 10.24h307.2c61.44 0 97.28 0 117.76-10.24 15.36-10.24 30.72-20.48 40.96-40.96 10.24-20.48 10.24-56.32 10.24-117.76v-51.2c0-20.48 15.36-40.96 40.96-40.96s40.96 15.36 40.96 40.96v51.2c0 76.8 0 117.76-20.48 153.6-15.36 30.72-40.96 56.32-71.68 71.68-35.84 20.48-76.8 20.48-153.6 20.48z","p-id":"4906",fill:o.color},null,8,Sr),t("path",{d:"M512 645.12c-10.24 0-15.36 0-20.48-10.24l-204.8-204.8c-10.24-10.24-10.24-30.72 0-46.08s30.72-10.24 46.08 0l184.32 184.32 184.32-184.32c10.24-10.24 30.72-10.24 46.08 0 10.24 10.24 10.24 30.72 0 46.08l-204.8 204.8c-5.12 5.12-15.36 10.24-20.48 10.24z","p-id":"4907",fill:o.color},null,8,zr),t("path",{d:"M512 645.12c-15.36 0-30.72-15.36-30.72-30.72V153.6c0-15.36 15.36-30.72 30.72-30.72s30.72 15.36 30.72 30.72v460.8c0 15.36-15.36 30.72-30.72 30.72z","p-id":"4908",fill:o.color},null,8,Pr)]))}}),Tr={},Ir={t:"1649668202191",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2338","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"28px",height:"28px"},Mr=t("path",{d:"M288 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2339",fill:"#666"},null,-1),Lr=t("path",{d:"M512 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2340",fill:"#666"},null,-1),Nr=t("path",{d:"M736 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2341",fill:"#666"},null,-1),Or=[Mr,Lr,Nr];function Vr(o,n){return r(),d("svg",Ir,Or)}var Ee=N(Tr,[["render",Vr]]);const Gr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"128",height:"128"},jr=["fill"],Ur=T({props:{color:{type:String,default:"#000000"}},setup(o){return(n,a)=>(r(),d("svg",Gr,[t("path",{d:"M511.232 438.8352L112.9984 40.6016A51.2 51.2 0 0 0 40.6016 112.9984L438.784 511.232 40.6016 909.4656a51.2 51.2 0 1 0 72.3968 72.448l398.2336-398.2848 398.2336 398.2848a51.2 51.2 0 1 0 72.448-72.448l-398.2848-398.2336 398.2848-398.2336A51.2 51.2 0 0 0 909.4656 40.6016L511.232 438.784z","p-id":"1217",fill:o.color},null,8,jr)]))}}),qr=o=>(it("data-v-a96d68d4"),o=o(),rt(),o),Rr={id:"actioner"},Hr={key:0,class:"action-container"},Wr={class:"action-container_header"},Jr=qr(()=>t("div",null,null,-1)),Zr={class:"title"},Kr=["title"],Qr={class:"action-container_body"},Xr=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!1);At(()=>{u.value=!0,document.body.setAttribute("lock-scroll","true")}),Mt(()=>{document.body.removeAttribute("lock-scroll")});const s=()=>{n.Close&&(u.value=!1,setTimeout(()=>{n.Close&&n.Close()},300))};return(c,x)=>(r(),d("div",Rr,[t("div",{class:"bg",onClick:s}),o.type!=null?Et(c.$slots,"default",{key:0},void 0,!0):(r(),d(U,{key:1},[u.value?(r(),d("div",Hr,[t("div",Wr,[Jr,t("div",Zr,i(o.title),1),t("button",{class:"close",title:e(a)("\u5173\u95ED"),onClick:s},[D(Ur)],8,Kr)]),t("div",Qr,[Et(c.$slots,"default",{},void 0,!0)])])):C("",!0)],64))]))}});var ts=N(Xr,[["__scopeId","data-v-a96d68d4"]]);const _t=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(o){return(n,a)=>(r(),J(ts,{Close:o.Close,type:o.type,title:o.title},{default:G(()=>[Et(n.$slots,"default")]),_:3},8,["Close","type","title"]))}}),ra=o=>(it("data-v-0bd83418"),o=o(),rt(),o),es={class:"disk-item"},as=ra(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563338465",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2216",width:"128",height:"128"},[t("path",{d:"M998.4 711.68l-119.467-512c-6.826-42.667-42.666-75.093-87.04-76.8H232.107c-44.374 1.707-80.214 35.84-87.04 78.507L25.6 711.68c-5.12 13.653-6.827 29.013-6.827 42.667 0 76.8 63.147 139.946 141.654 139.946H865.28c78.507 0 141.653-63.146 141.653-139.946 0-13.654-3.413-29.014-8.533-42.667zM394.24 366.933c1.707-51.2 56.32-92.16 124.587-92.16S640 315.733 640 365.227c44.373-1.707 81.92 23.893 83.627 58.026s-34.134 63.147-78.507 64.854h-6.827l-245.76 1.706c-44.373 0-80.213-27.306-80.213-59.733 0-35.84 37.547-63.147 81.92-63.147z m471.04 459.094H160.427c-39.254 0-69.974-30.72-69.974-69.974s32.427-69.973 69.974-69.973H865.28c39.253 0 69.973 30.72 69.973 69.973 1.707 37.547-30.72 69.974-69.973 69.974z m-35.84-92.16c-11.947 0-22.187 8.533-23.893 20.48 0 11.946 8.533 22.186 20.48 23.893h3.413c11.947 0 22.187-10.24 22.187-22.187 0-13.653-8.534-22.186-22.187-22.186z m-46.08 22.186c0-25.6 20.48-46.08 46.08-46.08s46.08 20.48 46.08 46.08-20.48 46.08-46.08 46.08-46.08-20.48-46.08-46.08z","p-id":"2217"})])],-1)),os={class:"disk-item_f"},ns={class:"disk-item_venderModel"},is={class:"disk-item_used"},rs=ra(()=>t("div",{class:"auto"},null,-1)),ss={class:"disk-item-r"},ds={class:"disk-children"},ls=["onClick"],us=ra(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563581459",class:"icon",viewBox:"0 0 1228 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7132",width:"128",height:"128"},[t("path",{d:"M525.2096 145.3568c1.9968-45.568-35.6864-99.1232-57.4976-99.1232H57.4976C15.872 79.9232 17.8176 145.408 17.8176 145.408h507.392z",fill:"#ECC049","p-id":"7133"}),t("path",{d:"M21.8112 143.36L19.8144 825.1392c0 75.3152 75.3152 152.576 150.6304 152.576h887.9104c75.264 0 150.6304-75.264 150.6304-152.576V297.984c0-75.264-75.3152-152.576-150.6304-152.576h-434.0224L21.8112 143.36z",fill:"#FFD658","p-id":"7134"})])],-1)),cs={key:0},ps={key:1},fs=T({props:{disk:{type:Object,required:!0},currDisk:{type:Object},currMountPoint:{type:Object},onDisk:{type:Function,required:!0}},setup(o){var c,x;const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!1);n.currDisk!=null&&((c=n.currDisk)==null?void 0:c.venderModel)==((x=n.disk)==null?void 0:x.venderModel)&&(u.value=!0);const s=v=>{u.value=!u.value,n.onDisk(v,null)};return(v,p)=>{var f;return r(),d("ul",es,[t("li",{class:st(["disk-info",{on:o.disk.venderModel==((f=o.currDisk)==null?void 0:f.venderModel),nopoint:o.disk.childrens==null||o.disk.childrens.length==0}]),onClick:p[0]||(p[0]=m=>s(o.disk))},[as,t("div",os,[t("div",ns,i(o.disk.venderModel),1),t("div",is,i(o.disk.used)+"/"+i(o.disk.size),1)]),rs,t("div",ss,i(o.disk.path),1)],2),L(t("div",ds,[(r(!0),d(U,null,tt(o.disk.childrens,m=>{var _,y;return r(),d("li",{class:st(["disk-children_item",{on:m.uuid==((_=o.currMountPoint)==null?void 0:_.uuid)&&m.path==((y=o.currMountPoint)==null?void 0:y.path)}]),onClick:b=>o.onDisk(o.disk,m)},[us,m.mountPoint?(r(),d("span",cs," \u3010"+i(m.filesystem)+"\u3011 "+i(m.mountPoint)+" \uFF08"+i(m.used)+"/"+i(m.total)+"\uFF09 ["+i(m.uuid)+"] ",1)):(r(),d("span",ps," \u3010"+i(m.filesystem)+"\u3011 "+i(m.mountPoint||m.path||e(a)("\u672A\u6302\u8F7D\u78C1\u76D8"))+" ["+i(m.uuid)+"] ",1))],10,ls)}),256))],512),[[te,u.value]])])}}});var xa=N(fs,[["__scopeId","data-v-0bd83418"]]);let Be=0;const ms={props:{type:String,message:String|Function,Close:Function,countdown:Number},data(){return{show:!1,remain:0}},mounted(){if(window.setTimeout(()=>{this.show=!0},0),this.countdown){this.remain=this.countdown;const o=()=>{this.show&&this.remain>0&&(this.remain=this.remain-1,Be=window.setTimeout(o,1e3))};Be=window.setTimeout(o,1e3)}},computed:{Message(){return this.message+(this.countdown?" "+this.remain+"s":"")}},methods:{Stop(){this.type!="loading"&&(this.show=!1,Be!=0&&clearTimeout(Be),this.Close())}}},Le=o=>(it("data-v-48bf84c6"),o=o(),rt(),o),gs={key:0,class:"loading icon"},vs=Le(()=>t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454"})],-1)),bs=[vs],hs={key:1,class:"success icon"},_s=Le(()=>t("svg",{t:"1632451272305",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M1001.305115 275.874141 431.461709 845.718571c-28.221762 28.221762-73.977875 28.221762-102.20066 0L22.661116 539.116591c-28.222785-28.221762-28.222785-73.979922 0-102.20066 28.221762-28.221762 73.977875-28.221762 102.20066 0l255.500115 255.502162 518.743588-518.743588c28.221762-28.221762 73.977875-28.221762 102.199637 0C1029.5279 201.89422 1029.5279 247.65238 1001.305115 275.874141z","p-id":"2205"})],-1)),xs=[_s],ws={key:2,class:"error icon"},ks=Le(()=>t("svg",{t:"1632451325789",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M823.04 840.32 524.16 540.16l296.32-294.4c12.8-12.8 12.8-33.28 0-45.44-12.8-12.8-33.28-12.8-46.08 0L478.08 494.08 184.96 200.32c-12.8-12.8-33.28-12.8-45.44 0s-12.8 33.28 0 45.44l292.48 293.76-302.72 300.8c-12.8 12.8-12.8 33.28 0 45.44 12.8 12.8 33.28 12.8 46.08 0l302.72-300.16 299.52 300.16c12.8 12.8 33.28 12.8 45.44 0C835.2 873.6 835.2 853.12 823.04 840.32z","p-id":"2205"})],-1)),ys=[ks],Fs={key:3,class:"warning icon"},Es=Le(()=>t("svg",{t:"1632451401172",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1638",width:"128",height:"128"},[t("path",{d:"M512 1021.45211835a60.32985613 60.32985613 0 1 1 60.32985613-60.32985611 60.32985613 60.32985613 0 0 1-60.32985613 60.32985611z m86.85823451-924.97400238L572.32985613 719.80283775a60.32985613 60.32985613 0 0 1-120.65971226 0l-26.52837838-623.32472178c-0.16758294-2.22885301-0.28489098-4.49122263-0.284891-6.78710881a87.14312551 87.14312551 0 0 1 174.28625102 0c0 2.2958862-0.11730806 4.5582558-0.284891 6.78710881z","p-id":"1639"})],-1)),$s=[Es];function Cs(o,n,a,l,u,s){return r(),J($t,{name:"el-fade-in-linear"},{default:G(()=>[u.show?(r(),d("div",{key:0,class:"toast",onClick:n[1]||(n[1]=c=>s.Stop())},[a.type=="loading"?(r(),d("div",gs,bs)):a.type=="success"?(r(),d("div",hs,xs)):a.type=="error"?(r(),d("div",ws,ys)):a.type=="warning"?(r(),d("div",Fs,$s)):C("",!0),t("div",{class:"message",onClick:n[0]||(n[0]=ut(()=>{},["stop"]))},i(s.Message),1)])):C("",!0)]),_:1})}var Ds=N(ms,[["render",Cs],["__scopeId","data-v-48bf84c6"]]);const _e=new Map,oe=o=>{const n=vt(Ds,pt(lt({},o),{Close:()=>{l()}})),a=document.createElement("div");document.body.append(a),n.mount(a);const l=()=>{a.remove(),_e.get(n._uid)&&_e.delete(n._uid)};return o.type=="loading"&&_e.set(n._uid,{Close:l}),(o==null?void 0:o.duration)==0||((o==null?void 0:o.duration)>0?setTimeout(()=>{l()},o==null?void 0:o.duration):setTimeout(()=>{l()},3e3)),{Close:l}},$=o=>oe(o);$.Loading=(o,n)=>oe({type:"loading",message:o||"\u52A0\u8F7D\u4E2D...",duration:0,countdown:n||0});$.Success=o=>oe({type:"success",message:o});$.Error=o=>oe({type:"error",message:o,duration:0});$.Warning=o=>oe({type:"warning",message:o});$.Message=o=>oe({message:o});$.Clear=()=>{_e.forEach((o,n)=>{o.Close(),_e.delete(n)})};const sa=o=>(it("data-v-3dae3be2"),o=o(),rt(),o),Bs=["onSubmit"],Ys={class:"action-header"},As={class:"action-header_title"},Ss={class:"action-body"},zs={class:"disk-info"},Ps=sa(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),Ts={key:0,class:"disk-info_mount-name"},Is={key:1,class:"disk-info_mount-name"},Ms={key:0,class:"label-item"},Ls={class:"label-item_key"},Ns={class:"label-item_path"},Os={class:"label-item"},Vs={class:"label-item_key"},Gs={class:"label-item_value"},js=["disabled"],Us={key:0,value:""},qs={value:"format"},Rs={key:1,value:"default"},Hs={class:"label-item_value"},Ws={key:0,class:"msg"},Js={key:1,class:"msg"},Zs={class:"action-footer"},Ks=sa(()=>t("div",{class:"auto"},null,-1)),Qs=["disabled"],Xs=["disabled"],td={key:1,class:"action result"},ed={class:"action-body"},ad=sa(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),od={class:"action-body_msg"},nd={key:0,class:"action-body_info"},id={key:1,class:"action-body_info"},rd={class:"btns"},sd=T({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close&&n.Close()},s=F=>{F.preventDefault(),n.Cancel&&n.Cancel(),u()},c=F=>{n.Next&&n.Next(F),u()},x=E(!1),v=E(0),p=F=>{v.value=F},f=E(n.action=="nas"?"":"format"),m=E(),_=E(),y=()=>{switch(f.value){case"format":k();return;case"default":b();return;default:$.Warning(a("\u8BF7\u9009\u62E9\u9009\u9879"));return}},b=()=>{let F="";const Y=n.mount;if(Y!=null&&Y.mountPoint!=null&&(F=Y.mountPoint),F!=""){c(F);return}$.Warning(a("\u65E0\u6CD5\u8BC6\u522B\u8DEF\u5F84"))},k=()=>{const F=n.disk,Y=n.mount;if(Y){const P=Y.mountPoint||Y.path;if(!confirm(a("\u8B66\u544A\uFF1A\u683C\u5F0F\u5316\u4F1A\u6E05\u7A7A %{partname} \u5206\u533A\u6570\u636E\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C",{partname:P||""}))||!confirm(a("\u662F\u5426\u786E\u5B9A\u683C\u5F0F\u5316 %{partname}?",{partname:P||""})))return;h(Y);return}if(F){if(!confirm(a("\u8B66\u544A\uFF1A\u8BE5\u64CD\u4F5C\u5C06\u521D\u59CB\u5316 %{model} \u786C\u76D8\u5E76\u521B\u5EFA\u5206\u533A\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C",{model:F.venderModel||""}))||!confirm(a("\u662F\u5426\u786E\u5B9A\u521D\u59CB\u5316?")))return;g(F);return}$.Warning(a("\u65E0\u6CD5\u8BC6\u522B\u6570\u636E"))},g=F=>O(this,null,function*(){if(F.name==null||F.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u540D\u79F0"));return}if(F.path==null||F.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u8DEF\u5F84"));return}x.value=!0;const Y=$.Loading(a("\u521D\u59CB\u5316\u4E2D..."));try{const P=yield j.Nas.Disk.Init.POST({name:F.name,path:F.path});if(P!=null&&P.data){const{result:A,error:B}=P==null?void 0:P.data;B&&$.Warning(B),A&&(A.errorInfo?$.Warning(A.errorInfo):($.Success(a("\u521D\u59CB\u5316\u6210\u529F")),A.childrens&&A.childrens.length>0&&(_.value=A.childrens[0]),m.value=A,p(1)))}}catch(P){$.Error(P)}Y.Close(),x.value=!1}),h=F=>O(this,null,function*(){if(F.path==null||F.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84"));return}x.value=!0;const Y=$.Loading(a("\u683C\u5F0F\u5316\u4E2D..."));try{const P=yield j.Nas.Disk.Partition.Format.POST({path:F.path,uuid:F.uuid,mountPoint:F.mountPoint});if(P!=null&&P.data){const{result:A,error:B}=P==null?void 0:P.data;B&&$.Warning(B),A&&($.Success(a("\u683C\u5F0F\u5316\u6210\u529F")),_.value=A,p(1))}}catch(P){$.Error(P)}Y.Close(),x.value=!1}),w=()=>{if(_.value&&_.value.mountPoint){c(_.value.mountPoint);return}$.Warning(a("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25"))};return(F,Y)=>(r(),J(_t,{type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>{var P;return[v.value==0?(r(),d("form",{key:0,class:"action format",onSubmit:ut(y,["prevent"])},[t("div",Ys,[t("div",As,i(e(a)("\u786C\u76D8\u914D\u7F6E")),1)]),t("div",Ss,[t("div",zs,[Ps,o.mount?(r(),d("div",Ts,[t("span",null,"\u3010"+i(o.mount.total)+"\u3011",1),t("span",null,i(o.mount.mountPoint||o.mount.path),1)])):o.disk?(r(),d("div",Is,[t("span",null,"\u3010"+i(o.disk.size)+"\u3011",1),t("span",null,i(o.disk.venderModel),1)])):C("",!0)]),o.mount?(r(),d("div",Ms,[t("div",Ls,[t("span",null,i(e(a)("\u76EE\u6807\u5206\u533A")),1)]),t("div",Ns,i(o.mount.mountPoint||o.mount.path)+"\uFF08"+i(o.mount.total)+"\uFF09",1)])):C("",!0),t("div",Os,[t("div",Vs,[t("span",null,i(e(a)("\u683C\u5F0F\u5316\u9009\u9879")),1)]),t("div",Gs,[L(t("select",{"onUpdate:modelValue":Y[0]||(Y[0]=A=>f.value=A),required:"",disabled:o.action=="disk"},[o.mount!=null?(r(),d("option",Us,i(e(a)("\u8BF7\u9009\u62E9\u9009\u9879")),1)):C("",!0),t("option",qs,i(e(a)("\u683C\u5F0F\u5316")),1),o.mount!=null?(r(),d("option",Rs,i(e(a)("\u4E0D\u683C\u5F0F\u5316,\u4F7F\u7528\u539F\u6587\u4EF6\u7CFB\u7EDF")),1)):C("",!0)],8,js),[[dt,f.value]])]),t("div",Hs,[f.value=="format"?(r(),d("p",Ws,i(e(a)("\u683C\u5F0F\u5316\u4E3AEXT4\u6587\u4EF6\u7CFB\u7EDF")),1)):f.value=="default"?(r(),d("p",Js)):C("",!0)])])]),t("div",Zs,[Ks,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button",disabled:x.value},i(e(a)("\u8FD4\u56DE")),9,Qs),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:x.value},i(e(a)("\u4E0B\u4E00\u6B65")),9,Xs)])],40,Bs)):v.value==1?(r(),d("div",td,[t("div",ed,[ad,t("div",od,i(e(a)("\u683C\u5F0F\u5316\u6210\u529F")),1),m.value?(r(),d("div",nd,[nt(i(e(a)("\u5DF2\u7ECF\u6210\u529F\u683C\u5F0F\u5316\u78C1\u76D8"))+" "+i(m.value.venderModel)+" "+i(e(a)("\u5E76\u6302\u8F7D\u5230"))+" ",1),t("a",null,i((P=_.value)==null?void 0:P.mountPoint),1)])):C("",!0),_.value?(r(),d("div",id,[nt(i(e(a)("\u5DF2\u7ECF\u6210\u529F\u521D\u59CB\u5316\u5206\u533A"))+" ",1),t("a",null,i(_.value.mountPoint),1)])):C("",!0),t("div",rd,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:w},i(o.action=="nas"?e(a)("\u4E0B\u4E00\u6B65"):e(a)("\u5B8C\u6210")),1)])])])):C("",!0)]}),_:1})]),_:1}))}});var dd=N(sd,[["__scopeId","data-v-3dae3be2"]]),da=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(dd,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const ld=o=>(it("data-v-b222ef5e"),o=o(),rt(),o),ud={class:"action list"},cd={class:"action-header"},pd={class:"action-header_title"},fd={class:"action-body"},md={class:"disk-list"},gd={class:"action-msg"},vd={href:"/cgi-bin/luci/admin/system/diskman"},bd={class:"action-footer"},hd=ld(()=>t("div",{class:"auto"},null,-1)),_d=T({props:{Cancel:{type:Function},Next:{type:Function},Close:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!0),s=mt({disks:[],raids:[]});(()=>O(this,null,function*(){const b=yield Promise.all([j.Nas.Disk.Status.GET(),j.Raid.List.GET()]);try{if(b[0]){const k=b[0];k!=null&&k.data.result&&(s.disks=(k==null?void 0:k.data.result.disks)||[])}if(b[1]){const k=b[1];k.data.result&&(s.raids=k.data.result.disks||[])}}catch(k){$.Warning(k)}}))();const x=E(),v=E(),p=(b,k)=>{x.value=b,v.value=k},f=()=>{n.Close&&n.Close()},m=()=>{n.Cancel&&n.Cancel(),f()},_=b=>{n.Next&&n.Next(b),f()},y=()=>{if(x.value==null){$.Warning(a("\u8BF7\u9009\u62E9\u76EE\u6807\u786C\u76D8"));return}if(x.value.childrens!=null&&x.value.childrens.length>0&&v.value==null){$.Warning(a("\u8BF7\u9009\u62E9\u786C\u76D8\u5206\u533A"));return}if(v.value!=null&&(v.value.mountPoint==null||v.value.mountPoint=="")){$.Warning(a("\u8BE5\u5206\u533A\u5C1A\u672A\u6302\u8F7D\uFF0C\u8BF7\u5148\u53BB\u6302\u8F7D"));return}u.value=!1,da({action:"nas",disk:x.value,mount:v.value,Cancel:()=>{u.value=!0},Next:b=>{_(b)}})};return(b,k)=>u.value?(r(),J(_t,{key:0,type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("div",ud,[t("div",cd,[t("div",pd,i(e(a)("\u8BF7\u9009\u62E9\u4E00\u4E2A\u786C\u76D8\u6216\u5206\u533A")),1)]),t("div",fd,[t("div",md,[(r(!0),d(U,null,tt(e(s).disks,g=>(r(),J(xa,{disk:g,onDisk:p,currDisk:x.value,currMountPoint:v.value},null,8,["disk","currDisk","currMountPoint"]))),256)),(r(!0),d(U,null,tt(e(s).raids,g=>(r(),J(xa,{disk:g,onDisk:p,currDisk:x.value,currMountPoint:v.value},null,8,["disk","currDisk","currMountPoint"]))),256))])]),t("div",gd,[t("span",null,[nt(i(e(a)("\u60F3\u8981\u66F4\u7CBE\u786E\u7684\u914D\u7F6E\uFF1F\u8BF7\u524D\u5F80"))+" ",1),t("a",vd,i(e(a)("\u9AD8\u7EA7\u8BBE\u7F6E")),1)])]),t("div",bd,[hd,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:m,type:"button"},i(e(a)("\u8FD4\u56DE")),1),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:y,type:"button"},i(e(a)("\u4E0B\u4E00\u6B65")),1)])])]),_:1})]),_:1})):C("",!0)}});var xd=N(_d,[["__scopeId","data-v-b222ef5e"]]),wd=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(xd,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const kd=o=>(it("data-v-45926ac6"),o=o(),rt(),o),yd={class:"action"},Fd={class:"action-body"},Ed=kd(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),$d={class:"title"},Cd={class:"info"},Dd=["href"],Bd={class:"btns"},Yd=T({props:{Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(""),s=Q(()=>`http://${location.hostname}:${u.value}`);(()=>{j.Nas.Linkease.Enable.POST().then(v=>{var p,f;(p=v==null?void 0:v.data)!=null&&p.result&&(u.value=((f=v.data.result)==null?void 0:f.port)||"")})})();const x=()=>{n.Close&&n.Close(),location.reload()};return(v,p)=>(r(),J(_t,{type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("div",yd,[t("div",Fd,[Ed,t("h2",$d,i(e(a)("\u670D\u52A1\u5DF2\u542F\u52A8")),1),t("div",Cd,[t("span",null,i(e(a)("\u524D\u5F80")),1),t("a",{href:e(s),target:"_blank",rel:"noopener noreferrer"},i(e(s)),9,Dd),t("span",null,i(e(a)("\u7EE7\u7EED\u914D\u7F6E")),1)]),t("div",Bd,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:x},i(e(a)("\u5173\u95ED")),1)])])])]),_:1})]),_:1}))}});var Ad=N(Yd,[["__scopeId","data-v-45926ac6"]]),Sd=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Ad,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const zd=o=>(it("data-v-2b3974a4"),o=o(),rt(),o),Pd=["onSubmit"],Td={class:"action-header"},Id={class:"action-header_title"},Md={class:"action-body"},Ld={class:"label-item"},Nd={class:"label-item_key"},Od={class:"label-item_value"},Vd=["value"],Gd={class:"label-item"},jd={class:"label-item_key"},Ud={class:"label-item_value"},qd=["placeholder"],Rd={class:"label-item"},Hd={class:"label-item_key"},Wd={class:"label-item_value"},Jd={class:"action-footer"},Zd=zd(()=>t("div",{class:"auto"},null,-1)),Kd=["disabled"],Qd=["disabled"],Xd=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=f=>{f.preventDefault(),n.Close&&n.Close()},s=E(!1),c=E({username:"root",password:"",rootPath:n.rootPath});(()=>O(this,null,function*(){const f=$.Loading(a("\u52A0\u8F7D\u4E2D..."));s.value=!0;try{const m=yield j.Nas.Webdav.Status.GET();if(m!=null&&m.data){const{result:_,error:y}=m.data;if(y){$.Warning(y);return}_&&(_.username&&(c.value.username=_.username),_.password&&(c.value.password=_.password))}}catch(m){$.Error(m)}s.value=!1,f.Close()}))();const v=()=>{const f=c.value;if(f.rootPath==""){$.Warning(a("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A"));return}if(f.username==""){$.Warning(a("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A"));return}if(f.password==""){$.Warning(a("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A"));return}p(f)},p=f=>O(this,null,function*(){s.value=!0;const m=$.Loading(a("\u521B\u5EFA\u4E2D..."));try{const _=yield j.Nas.Webdav.Create.POST(f);if(_!=null&&_.data){const{error:y,result:b}=_.data;y&&$.Warning(y),b&&($.Success(a("\u521B\u5EFA\u6210\u529F")),window.setTimeout(()=>{location.reload()},1e3))}}catch(_){$.Error(_)}m.Close(),s.value=!1});return(f,m)=>(r(),J(_t,{type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("form",{class:"action",onSubmit:ut(v,["prevent"])},[t("div",Td,[t("div",Id,i(e(a)("Webdav\u5171\u4EAB\u914D\u7F6E")),1)]),t("div",Md,[t("div",Ld,[t("div",Nd,[t("span",null,i(e(a)("\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")),1)]),t("div",Od,[t("input",{type:"text",value:c.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,Vd)])]),t("div",Gd,[t("div",jd,[t("span",null,i(e(a)("\u7528\u6237\u540D")),1)]),t("div",Ud,[L(t("input",{type:"text",required:"",placeholder:e(a)("\u8D26\u53F7\u7528\u6237\u540D"),"onUpdate:modelValue":m[0]||(m[0]=_=>c.value.username=_)},null,8,qd),[[et,c.value.username,void 0,{trim:!0}]])])]),t("div",Rd,[t("div",Hd,[t("span",null,i(e(a)("\u5BC6\u7801")),1)]),t("div",Wd,[L(t("input",{type:"password","onUpdate:modelValue":m[1]||(m[1]=_=>c.value.password=_)},null,512),[[et,c.value.password,void 0,{trim:!0}]])])])]),t("div",Jd,[Zd,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:u,disabled:s.value},i(e(a)("\u5173\u95ED")),9,Kd),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},i(e(a)("\u521B\u5EFA")),9,Qd)])],40,Pd)]),_:1})]),_:1}))}});var t0=N(Xd,[["__scopeId","data-v-2b3974a4"]]),e0=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(t0,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const a0={},o0={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},n0=t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),i0=[n0];function r0(o,n){return r(),d("svg",o0,i0)}var zt=N(a0,[["render",r0]]);const{$gettext:be,$ngettext:Ye}=Ie(),s0=o=>{},d0=()=>new Date().getTime(),l0=o=>{if(o<1e3)return`${o} B`;let a=1e3,l=0;for(let c=o/1e3;c>=1e3;c/=1e3)a*=1e3,l++;let u=[" KB"," MB"," GB"," TB"," PB"," EB"];return(o/100/(a/100)).toFixed(1)+u[l]},u0=o=>{if(o==null)return 0;if(o<1e4)return o;let a=parseInt(`${o/1e4}`),l=o%1e4;return`${a}\u4E07${l}`},c0=o=>{if(o)try{var n=new Date(o),a=n.getHours(),l=n.getMinutes(),u=n.getSeconds();return a<10&&(a=`0${a}`),l<10&&(l=`0${l}`),u<10&&(u=`0${u}`),`${a}:${l}:${u}`}catch(s){}return""},p0=o=>{if(o){let n=Math.floor(o/86400),a=Math.floor(o/3600)%24,l=Math.floor(o/60)%60,u=o%60;return(n>0?Ye("%{ days }\u5929","%{ days }\u5929",n,{days:De(n)}):"")+Ye("%{ hours }\u5C0F\u65F6","%{ hours }\u5C0F\u65F6",a,{hours:De(a)})+Ye("%{ minutes }\u5206","%{ minutes }\u5206",l,{minutes:De(l)})+Ye("%{ seconds }\u79D2","%{ seconds }\u79D2",u,{seconds:De(u)})}},f0=o=>/^\d+\.\d+\.\d+\.\d+$/.test(o),m0=o=>o.length<3?be("\u7528\u6237\u540D\u592A\u77ED"):o.toLowerCase()!=o?be("\u7528\u6237\u540D\u53EA\u80FD\u4E3A\u5C0F\u5199"):new RegExp("^\\d").exec(o)?be("\u7528\u6237\u540D\u4E0D\u80FD\u4EE5\u6570\u5B57\u5F00\u5934"):new RegExp("^_").exec(o)?be("\u7528\u6237\u540D\u4E0D\u80FD\u4EE5_\u5F00\u5934"):new RegExp("^[a-z0-9_]+$").exec(o)?!0:be("\u975E\u6CD5\u7684\u7528\u6237\u540D"),g0=(o,n)=>{let a=!0,l=null;const u=()=>{l=null,a&&o().finally(()=>{a&&(l=setTimeout(u,n))})};return l=setTimeout(u,0),()=>{a=!1,l!=null&&clearTimeout(l)}};var v0=Object.freeze(Object.defineProperty({__proto__:null,formatDate:s0,UnixDate:d0,byteToSize:l0,numberToSum:u0,dateForm:c0,stampForm:p0,checkIsIP:f0,checkSmabaUserName:m0,easyInterval:g0},Symbol.toStringTag,{value:"Module"})),Pt=lt({},v0);const b0=o=>(it("data-v-88275da0"),o=o(),rt(),o),h0=["onSubmit"],_0={class:"action-header"},x0={class:"action-header_title"},w0={class:"action-body"},k0={class:"label-item"},y0={class:"label-item_key"},F0={class:"label-item_value"},E0=["value"],$0={class:"label-item"},C0={class:"label-item_key"},D0={class:"label-item_value"},B0=["placeholder"],Y0={class:"label-item"},A0={class:"label-item_key"},S0={class:"label-item_value"},z0=["placeholder"],P0={class:"label-item"},T0={class:"label-item_key"},I0={class:"label-item_value"},M0={class:"samba-item"},L0={class:"samba-item_allow"},N0={for:"allow",class:"samba-allow"},O0={class:"samba-item_tips"},V0={class:"tooltip-trigger"},G0={class:"samba_tip"},j0={class:"samba_dir_tip"},U0={class:"action-footer"},q0=b0(()=>t("div",{class:"auto"},null,-1)),R0=["disabled"],H0=["disabled"],W0=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=p=>{p.preventDefault(),n.Close&&n.Close()},s=E(!1),c=E({shareName:"",username:"",password:"",rootPath:n.rootPath,allowLegacy:!1}),x=()=>{const p=c.value;if(p.rootPath==""){$.Warning(a("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A"));return}if(p.shareName==""){$.Warning(a("\u5171\u4EAB\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A"));return}if(p.username==""){$.Warning(a("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A"));return}if(p.password==""){$.Warning(a("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A"));return}const f=Pt.checkSmabaUserName(p.username);if(f!==!0){$.Warning(`${f}`);return}v(p)},v=p=>O(this,null,function*(){s.value=!0;const f=$.Loading(a("\u521B\u5EFA\u4E2D..."));try{const m=yield j.Nas.Samba.Create.POST(p);if(m!=null&&m.data){const{error:_,result:y}=m.data;_&&$.Warning(_),y&&($.Success(a("\u521B\u5EFA\u6210\u529F")),window.setTimeout(()=>{location.reload()},1e3))}}catch(m){$.Error(m)}f.Close(),s.value=!1});return(p,f)=>(r(),J(_t,{type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("form",{class:"action",onSubmit:ut(x,["prevent"])},[t("div",_0,[t("div",x0,i(e(a)("Samba\u5171\u4EAB\u914D\u7F6E")),1)]),t("div",w0,[t("div",k0,[t("div",y0,[t("span",null,i(e(a)("\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")),1)]),t("div",F0,[t("input",{type:"text",value:c.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,E0)])]),t("div",$0,[t("div",C0,[t("span",null,i(e(a)("\u5171\u4EAB\u540D\uFF08\u5EFA\u8BAE\u4F7F\u7528\u82F1\u6587\u5B57\u6BCD\uFF09")),1)]),t("div",D0,[L(t("input",{type:"text","onUpdate:modelValue":f[0]||(f[0]=m=>c.value.shareName=m),required:"",placeholder:e(a)("\u5171\u4EAB\u540D\u79F0")},null,8,B0),[[et,c.value.shareName,void 0,{trim:!0}]])])]),t("div",Y0,[t("div",A0,[t("span",null,i(e(a)("\u7528\u6237\u540D")),1)]),t("div",S0,[L(t("input",{type:"text",required:"",placeholder:e(a)("\u8D26\u53F7\u7528\u6237\u540D"),"onUpdate:modelValue":f[1]||(f[1]=m=>c.value.username=m)},null,8,z0),[[et,c.value.username,void 0,{trim:!0}]])])]),t("div",P0,[t("div",T0,[t("span",null,i(e(a)("\u5BC6\u7801")),1)]),t("div",I0,[L(t("input",{type:"password","onUpdate:modelValue":f[2]||(f[2]=m=>c.value.password=m)},null,512),[[et,c.value.password,void 0,{trim:!0}]])])]),t("div",M0,[t("div",L0,[L(t("input",{type:"checkbox",id:"allow","onUpdate:modelValue":f[3]||(f[3]=m=>c.value.allowLegacy=m)},null,512),[[qt,c.value.allowLegacy]]),t("label",N0,i(e(a)("\u5141\u8BB8\u65E7\u534F\u8BAE\u4E0E\u8EAB\u4EFD\u9A8C\u8BC1(\u4E0D\u5B89\u5168)")),1)]),t("div",O0,[t("span",V0,[t("span",G0,[D(zt)]),t("span",j0,i(e(a)("\u517C\u5BB9\u4E00\u4E9B\u7535\u89C6\u6216\u8005\u7535\u89C6\u76D2\u5B50")),1)])])])]),t("div",U0,[q0,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:u,disabled:s.value},i(e(a)("\u5173\u95ED")),9,R0),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},i(e(a)("\u521B\u5EFA")),9,H0)])],40,h0)]),_:1})]),_:1}))}});var J0=N(W0,[["__scopeId","data-v-88275da0"]]),Z0=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(J0,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const{$gettext:Xt,$ngettext:JP}=Ie(),Dt={installApp:(o,n)=>new Promise((a,l)=>{let u=0;j.App.Install.POST({name:o}).then(()=>{const s=setTimeout(()=>{u==0&&(u=1,a(!1))},(n||60)*1e3),c=()=>{u==0&&j.App.Check.POST({name:o}).then(x=>{if(u==0&&x!=null&&x.data){const{result:v}=x.data;if((v==null?void 0:v.status)=="installed"){clearTimeout(s),u=1,a(!0);return}}}).catch(x=>{}).finally(()=>{u==0&&setTimeout(c,3e3)})};setTimeout(c,3e3)}).catch(s=>{u==0&&(u=1,l(Xt("\u5B89\u88C5\u5931\u8D25\uFF0C")+s))})}),checkAndInstallApp:(o,n,a)=>O(ae,null,function*(){let l=$.Loading(Xt("\u68C0\u67E5\u4E2D..."));try{const u=yield j.App.Check.POST({name:o});if(l.Close(),u!=null&&u.data){const{result:s,error:c}=u.data;if(c)$.Warning(c);else if(s){if(s.status=="installed")return!0;if(confirm(Xt("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 %{name} \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F",{name:n}))){l=$.Loading(Xt("\u6B63\u5728\u5B89\u88C5\u4E2D..."));const x=yield Dt.installApp(a||o);if(l.Close(),x)return!0;$.Error(Xt("\u5B89\u88C5\u5931\u8D25\u6216\u8D85\u65F6\uFF0C\u8BF7\u68C0\u67E5\u8F6F\u4EF6\u6E90\u6216\u7A0D\u5019\u91CD\u8BD5"))}}else $.Warning(Xt("\u68C0\u67E5\u63D2\u4EF6\u72B6\u6001\u5931\u8D25"))}return!1}catch(u){return l.Close(),$.Warning(u),!1}}),installAndGo:(o,n,a,l)=>O(ae,null,function*(){(yield Dt.checkAndInstallApp(o,n,l))&&(location.href=a)})},Kt=o=>!Array.isArray(window.quickstart_features)||window.quickstart_features.indexOf(o)!=-1,K0={key:0,class:"action"},Q0={class:"title"},X0={class:"desc"},tl={value:"linkease"},el={value:"samba"},al={value:"webdav"},ol=["innerHTML"],nl={class:"btns"},il=["disabled"],rl=T({props:{setup:Number,Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!0),s=E("linkease"),c=E(!1),x=E(n.setup||0),v=()=>{n.Close&&n.Close()},p=()=>O(this,null,function*(){switch(s.value){case"webdav":yield f();break;case"samba":yield _();break;case"linkease":yield m();break}}),f=()=>O(this,null,function*(){c.value=!0,(yield Dt.checkAndInstallApp("app-meta-gowebdav","GoWebdav"))&&y(),c.value=!1}),m=()=>O(this,null,function*(){c.value=!0,(yield Dt.checkAndInstallApp("linkease",a("\u6613\u6709\u4E91"),"app-meta-linkease"))&&b(),c.value=!1}),_=()=>O(this,null,function*(){c.value=!0;const h=$.Loading(a("\u914D\u7F6E\u4E2D..."));y(),h.Close(),c.value=!1}),y=()=>{c.value=!1,u.value=!1,wd({Cancel:()=>{u.value=!0},Next:h=>{switch(s.value){case"webdav":k(h);break;case"samba":g(h);break}}})},b=()=>{Sd({}),v()},k=h=>{e0({rootPath:h}),v()},g=h=>{Z0({rootPath:h}),v()};return(h,w)=>u.value?(r(),J(_t,{key:0,Close:o.Close,type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[x.value==0?(r(),d("div",K0,[t("h2",Q0,i(e(a)("\u6B22\u8FCE\u4F7F\u7528 NAS \u914D\u7F6E\u5411\u5BFC")),1),t("h3",X0,i(e(a)("\u8BF7\u9009\u62E9\u9700\u8981\u6DFB\u52A0\u7684NAS\u670D\u52A1")),1),t("form",null,[t("label",null,[L(t("select",{"onUpdate:modelValue":w[0]||(w[0]=F=>s.value=F)},[t("option",tl,i(e(a)("\u8DE8\u8BBE\u5907\u5171\u4EAB\uFF08\u6613\u6709\u4E91\uFF09")),1),t("option",el,i(e(a)("\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Samba\uFF09")),1),t("option",al,i(e(a)("\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08WebDAV\uFF09")),1)],512),[[dt,s.value]])])]),e(Kt)("unishare")?(r(),d("div",{key:0,class:"tips",innerHTML:e(a)("\u5982\u9700\u5BF9 Samba \u6216 WebDAV \u8FDB\u884C\u66F4\u7EC6\u81F4\u7684\u6743\u9650\u63A7\u5236\uFF0C\u8BF7\u4F7F\u7528\u201C%{unishare}\u201D",{unishare:'
'+e(a)("\u7EDF\u4E00\u6587\u4EF6\u5171\u4EAB")+""},!0)},null,8,ol)):C("",!0),t("div",nl,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:p,type:"button",disabled:c.value},i(e(a)("\u4E0B\u4E00\u6B65")),9,il),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v,type:"button"},i(e(a)("\u53D6\u6D88")),1)])])):C("",!0)]),_:1})]),_:1},8,["Close"])):C("",!0)}});var sl=N(rl,[["__scopeId","data-v-3f686017"]]),Va=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(sl,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const dl={class:"app-container_aria2"},ll={class:"aria2-item"},ul={class:"aria2-item_name"},cl={class:"aria2-item_value"},pl={key:0,class:"configure"},fl={key:1,class:"configure enabel"},ml={class:"aria2-item"},gl={class:"aria2-item_name"},vl={class:"aria2-item_value"},bl=["href"],hl={class:"aria2-item"},_l={class:"aria2-item_name"},xl={class:"aria2-item_value"},wl=["href"],kl={class:"aria2-item"},yl={class:"aria2-item_name right"},Fl={class:"aria2-item_value"},El=["href"],$l={class:"use-url_app"},Cl={href:"https://doc.linkease.com/zh/guide/linkease_app/tutorial.html#%E8%BF%9C%E7%A8%8B%E4%B8%8B%E8%BD%BD",target:"_blank"},Dl=T({props:{aria2:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{var c;return`${location.origin}${(c=n.aria2)==null?void 0:c.webPath}`}),s=Q(()=>{var v,p,f;let c=(v=n.aria2)==null?void 0:v.rpcToken;c?c=encodeURIComponent(btoa(c)):c="";const x=encodeURIComponent(location.hostname);return`${location.origin}${(p=n.aria2)==null?void 0:p.webPath}/#!/settings/rpc/set/http/${x}/${(f=n.aria2)==null?void 0:f.rpcPort}/jsonrpc/${c}`});return(c,x)=>{var v,p,f,m;return r(),d("ul",dl,[t("li",ll,[t("div",ul,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",cl,[((v=o.aria2)==null?void 0:v.status)=="running"?(r(),d("span",pl,i(e(a)("\u5DF2\u542F\u52A8")),1)):(r(),d("span",fl,i(e(a)("\u672A\u542F\u52A8")),1))])]),((p=o.aria2)==null?void 0:p.status)=="running"?(r(),d(U,{key:0},[t("li",ml,[t("div",gl,[t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55:")),1)]),t("div",vl,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((f=o.aria2)==null?void 0:f.downloadPath)},i((m=o.aria2)==null?void 0:m.downloadPath),9,bl)])]),t("li",hl,[t("div",_l,[t("span",null,i(e(a)("\u7F51\u7EDC\u5730\u5740:")),1)]),t("div",xl,[t("a",{href:e(u),target:"_blank",rel:"noopener noreferrer"},i(e(u)),9,wl)])]),t("li",kl,[t("div",yl,[t("span",null,i(e(a)("\u8BA4\u8BC1\u5931\u8D25\uFF1F")),1)]),t("div",Fl,[t("a",{href:e(s),target:"_blank",rel:"noopener noreferrer"},i(e(a)("\u70B9\u6B64\u81EA\u52A8\u914D\u7F6E AriaNg")),9,El)])])],64)):C("",!0),t("div",$l,[t("a",Cl,i(e(a)("\u4F7F\u7528\u6613\u6709\u4E91APP\uFF0C\u968F\u65F6\u968F\u5730\u8FDC\u7A0B\u4E0B\u8F7D")),1)])])}}});var Bl=N(Dl,[["__scopeId","data-v-376759fb"]]);const Yl={class:"app-container_qbittorrent"},Al={class:"qbittorrent-item"},Sl={class:"qbittorrent-item_name"},zl={class:"qbittorrent-item_value"},Pl={key:0,class:"configure"},Tl={key:1,class:"configure enabel"},Il={class:"qbittorrent-item"},Ml={class:"qbittorrent-item_name"},Ll={class:"qbittorrent-item_value"},Nl=["href"],Ol={class:"qbittorrent-item"},Vl={class:"qbittorrent-item_name"},Gl={class:"qbittorrent-item_value"},jl=["href"],Ul={class:"qbittorrent-item"},ql={class:"qbittorrent-item_name right"},Rl={class:"qbittorrent-item_value"},Hl=T({props:{qbittorrent:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{var s;return`http://${location.hostname}${(s=n.qbittorrent)==null?void 0:s.webPath}`});return(s,c)=>{var x,v,p,f;return r(),d("ul",Yl,[t("li",Al,[t("div",Sl,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",zl,[((x=o.qbittorrent)==null?void 0:x.status)=="running"?(r(),d("span",Pl,i(e(a)("\u5DF2\u542F\u52A8")),1)):(r(),d("span",Tl,i(e(a)("\u672A\u542F\u52A8")),1))])]),((v=o.qbittorrent)==null?void 0:v.status)=="running"?(r(),d(U,{key:0},[t("li",Il,[t("div",Ml,[t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55:")),1)]),t("div",Ll,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=o.qbittorrent)==null?void 0:p.downloadPath)},i((f=o.qbittorrent)==null?void 0:f.downloadPath),9,Nl)])]),t("li",Ol,[t("div",Vl,[t("span",null,i(e(a)("\u7F51\u7EDC\u5730\u5740:")),1)]),t("div",Gl,[t("a",{href:e(u),target:"_blank",rel:"noopener noreferrer"},i(e(u)),9,jl)])]),t("li",Ul,[t("div",ql,[t("span",null,i(e(a)("\u9ED8\u8BA4\u7528\u6237\u540D\uFF1A"))+"admin",1)]),t("div",Rl,[t("span",null,i(e(a)("\u9ED8\u8BA4\u5BC6\u7801\uFF1A"))+"adminadmin",1)])])],64)):C("",!0)])}}});var Wl=N(Hl,[["__scopeId","data-v-086db06c"]]);const Jl={class:"app-container_transmission"},Zl={class:"transmission-item"},Kl={class:"transmission-item_name"},Ql={class:"transmission-item_value"},Xl={key:0,class:"configure"},t1={key:1,class:"configure enabel"},e1={class:"transmission-item"},a1={class:"transmission-item_name"},o1={class:"transmission-item_value"},n1=["href"],i1={class:"transmission-item"},r1={class:"transmission-item_name"},s1={class:"transmission-item_value"},d1=["href"],l1=T({props:{transmission:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{var s;return`http://${location.hostname}${(s=n.transmission)==null?void 0:s.webPath}`});return(s,c)=>{var x,v,p,f;return r(),d("ul",Jl,[t("li",Zl,[t("div",Kl,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",Ql,[((x=o.transmission)==null?void 0:x.status)=="running"?(r(),d("span",Xl,i(e(a)("\u5DF2\u542F\u52A8")),1)):(r(),d("span",t1,i(e(a)("\u672A\u542F\u52A8")),1))])]),((v=o.transmission)==null?void 0:v.status)=="running"?(r(),d(U,{key:0},[t("li",e1,[t("div",a1,[t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55:")),1)]),t("div",o1,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=o.transmission)==null?void 0:p.downloadPath)},i((f=o.transmission)==null?void 0:f.downloadPath),9,n1)])]),t("li",i1,[t("div",r1,[t("span",null,i(e(a)("\u7F51\u7EDC\u5730\u5740:")),1)]),t("div",s1,[t("a",{href:e(u),target:"_blank",rel:"noopener noreferrer"},i(e(u)),9,d1)])])],64)):C("",!0)])}}});var u1=N(l1,[["__scopeId","data-v-3232162a"]]);const c1={},p1={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},f1=t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6","fill-opacity":"0.65"},null,-1),m1=[f1];function g1(o,n){return r(),d("svg",p1,m1)}var Wt=N(c1,[["render",g1]]);const v1={},b1={width:"82px",height:"82px",viewBox:"0 0 82 82",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},h1=Vt('
',1),_1=[h1];function x1(o,n){return r(),d("svg",b1,_1)}var la=N(v1,[["render",x1]]);const Ne=o=>(it("data-v-395b81d2"),o=o(),rt(),o),w1={key:0,class:"action"},k1={class:"title"},y1={class:"load_service input_row"},F1={class:"left"},E1={class:"radios"},$1=Ne(()=>t("label",{for:"Aria2"},"Aria2",-1)),C1={class:"radios"},D1=Ne(()=>t("label",{for:"qB"},"qBittorrent",-1)),B1={class:"radios"},Y1=Ne(()=>t("label",{for:"Tr"},"Transmission",-1)),A1=["onSubmit"],S1={class:"input_row"},z1={class:"left"},P1={class:"tooltip-trigger"},T1={class:"tooltip-text tooltip-top"},I1={class:"dowload_dir_tip"},M1={class:"myinput_wrap"},L1={class:"input_row"},N1={class:"left"},O1={class:"tooltip-trigger"},V1={class:"tooltip-text tooltip-top"},G1={class:"dowload_dir_tip"},j1={class:"myinput_wrap"},U1={class:"input_row"},q1={class:"left"},R1={class:"tooltip-trigger"},H1={class:"tooltip-text tooltip-bottom"},W1={class:"dowload_rpc_tip"},J1=["placeholder"],Z1={class:"input_row"},K1={class:""},Q1={class:"radios"},X1={for:"default"},tu={class:"radios"},eu={for:"add"},au={class:"input_row"},ou=Ne(()=>t("div",{class:"left"},null,-1)),nu={class:"myinput_wrap Tracker_input"},iu=["placeholder"],ru=["onSubmit"],su={class:"input_row"},du={class:"left"},lu={class:"tooltip-trigger"},uu={class:"tooltip-text tooltip-top"},cu={class:"dowload_dir_tip"},pu={class:"myinput_wrap"},fu={class:"input_row"},mu={class:"left"},gu={class:"tooltip-trigger"},vu={class:"tooltip-text tooltip-top"},bu={class:"dowload_dir_tip"},hu={class:"myinput_wrap"},_u=["onSubmit"],xu={class:"input_row"},wu={class:"left"},ku={class:"tooltip-trigger"},yu={class:"tooltip-text tooltip-top"},Fu={class:"dowload_dir_tip"},Eu={class:"myinput_wrap"},$u={class:"input_row"},Cu={class:"left"},Du={class:"tooltip-trigger"},Bu={class:"tooltip-text tooltip-top"},Yu={class:"dowload_dir_tip"},Au={class:"myinput_wrap"},Su={class:"btns"},zu={key:1,class:"action"},Pu={class:"title"},Tu={class:"finished"},Iu={class:"successed"},Mu={class:"btns"},Lu=T({props:{services:{type:Object,required:!0},partitionList:{type:Array,required:!0},defaultTab:{type:String,required:!1},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(""),s=E(""),c=E(""),x=E(""),v=E("default"),p=E("Aria2"),f=E(""),m=E(""),_=E(""),y=E(""),b=E([]),k=E([]),g=E(0);At(()=>{var V,I,M,H,bt,Bt,gt,jt,Qt,Tt;switch(n.defaultTab){case"aria2":p.value="Aria2";break;case"qbittorrent":p.value="qBittorrent";break;case"transmission":p.value="Transmission";break}b.value=n.partitionList.map(Lt=>({key:Lt})),k.value=n.partitionList.filter(Lt=>Lt.startsWith("/mnt/")).map(Lt=>Lt.replace(/(\/mnt\/[^/]+).*/,"$1")),c.value=((V=n.services.aria2)==null?void 0:V.configPath)||"";const A=((I=n.services.aria2)==null?void 0:I.downloadPath)||((M=n.services.qbittorrent)==null?void 0:M.downloadPath)||((H=n.services.transmission)==null?void 0:H.downloadPath);A&&(x.value=A);const B=(bt=n.services.aria2)==null?void 0:bt.rpcToken;B&&(u.value=B),f.value=((Bt=n.services.qbittorrent)==null?void 0:Bt.configPath)||"";const S=((gt=n.services.qbittorrent)==null?void 0:gt.downloadPath)||A||((jt=n.services.transmission)==null?void 0:jt.downloadPath);S&&(m.value=S),_.value=((Qt=n.services.transmission)==null?void 0:Qt.configPath)||"";const R=((Tt=n.services.transmission)==null?void 0:Tt.downloadPath)||A||S;R&&(y.value=R)});const h=()=>{let A=c.value,B=x.value;A==null||A==""||B==null||B==""||O(this,null,function*(){if(yield Dt.checkAndInstallApp("app-meta-aria2","Aria2")){const R=$.Loading(a("\u914D\u7F6E\u4E2D..."));j.Guide.Aria2Init.POST({configPath:A,downloadPath:B,rpcToken:u.value,btTracker:v.value=="add"?s.value:""}).then(V=>{var I;if(V!=null&&V.data){if((V.data.success||0)==0){g.value=1;return}else if((I=V.data)!=null&&I.error)throw V.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(V=>$.Error(V)).finally(()=>R.Close())}})},w=()=>{let A=f.value,B=m.value;A==null||A==""||B==null||B==""||O(this,null,function*(){if(yield Dt.checkAndInstallApp("app-meta-qbittorrent","qBittorrent")){const R=$.Loading(a("\u914D\u7F6E\u4E2D..."));j.Guide.qbitorrentInit.POST({configPath:A,downloadPath:B}).then(V=>{var I;if(V!=null&&V.data){if((V.data.success||0)==0){g.value=1;return}else if((I=V.data)!=null&&I.error)throw V.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(V=>$.Error(V)).finally(()=>R.Close())}})},F=()=>{let A=_.value,B=y.value;A==null||A==""||B==null||B==""||O(this,null,function*(){if(yield Dt.checkAndInstallApp("app-meta-transmission","Transmission")){const R=$.Loading(a("\u914D\u7F6E\u4E2D..."));j.Guide.transmissionInit.POST({configPath:A,downloadPath:B}).then(V=>{var I;if(V!=null&&V.data){if((V.data.success||0)==0){g.value=1;return}else if((I=V.data)!=null&&I.error)throw V.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(V=>$.Error(V)).finally(()=>R.Close())}})},Y=A=>{A.preventDefault(),n.Close&&n.Close()},P=A=>{A.preventDefault(),location.reload()};return(A,B)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[g.value==0?(r(),d("div",w1,[t("h2",k1,i(e(a)("\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC")),1),t("ul",null,[t("li",null,[t("div",y1,[t("div",F1,[t("span",null,i(e(a)("\u4E0B\u8F7D\u670D\u52A1\uFF1A")),1)]),t("div",E1,[L(t("input",{type:"radio",value:"Aria2","onUpdate:modelValue":B[0]||(B[0]=S=>p.value=S),name:"download",id:"Aria2"},null,512),[[Ft,p.value]]),$1]),t("div",C1,[L(t("input",{type:"radio",value:"qBittorrent","onUpdate:modelValue":B[1]||(B[1]=S=>p.value=S),name:"download",id:"qB"},null,512),[[Ft,p.value]]),D1]),t("div",B1,[L(t("input",{type:"radio",value:"Transmission","onUpdate:modelValue":B[2]||(B[2]=S=>p.value=S),name:"download",id:"Tr"},null,512),[[Ft,p.value]]),Y1])])])]),p.value=="Aria2"?(r(),d("form",{key:0,onSubmit:ut(h,["prevent"])},[t("ul",null,[t("li",null,[t("div",S1,[t("div",z1,[t("span",P1,[D(Wt),t("div",null,[t("div",T1,[t("span",I1,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/aria2\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")),1)])])]),t("span",null,i(e(a)("\u914D\u7F6E\u76EE\u5F55\uFF1A")),1)]),t("div",M1,[D(Jt,{modelValue:c.value,"onUpdate:modelValue":B[3]||(B[3]=S=>c.value=S),modelModifiers:{trim:!0},title:e(a)("\u914D\u7F6E\u76EE\u5F55"),options:k.value.concat("/root").map(S=>({key:S+"/Configs/aria2"}))},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",L1,[t("div",N1,[t("span",O1,[D(Wt),t("div",null,[t("div",V1,[t("span",G1,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")),1)])])]),t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55\uFF1A")),1)]),t("div",j1,[D(Jt,{modelValue:x.value,"onUpdate:modelValue":B[4]||(B[4]=S=>x.value=S),modelModifiers:{trim:!0},title:e(a)("\u4E0B\u8F7D\u76EE\u5F55"),options:b.value},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",U1,[t("div",q1,[t("span",R1,[D(Wt),t("div",null,[t("div",H1,[t("span",W1,i(e(a)("\u7528\u4E8E\u8FDC\u7A0B\u8BBF\u95EE\u7684\u4EE4\u724C\u3002")),1)])])]),t("span",null,i(e(a)("RPC \u4EE4\u724C\uFF1A")),1)]),L(t("input",{type:"text",class:"RPC_input",placeholder:e(a)("\u8BF7\u8F93\u5165RPC\u4EE4\u724C"),"onUpdate:modelValue":B[5]||(B[5]=S=>u.value=S)},null,8,J1),[[et,u.value,void 0,{trim:!0}]])])]),t("li",null,[t("div",Z1,[t("div",K1,[t("span",null,i(e(a)("\u9644\u52A0\u7684 BT Tracker\uFF1A")),1)]),t("div",Q1,[L(t("input",{type:"radio",value:"default",name:"BT",id:"default","onUpdate:modelValue":B[6]||(B[6]=S=>v.value=S)},null,512),[[Ft,v.value]]),t("label",X1,i(e(a)("\u9ED8\u8BA4")),1)]),t("div",tu,[L(t("input",{type:"radio",value:"add",name:"BT",id:"add","onUpdate:modelValue":B[7]||(B[7]=S=>v.value=S)},null,512),[[Ft,v.value]]),t("label",eu,i(e(a)("\u81EA\u5DF1\u6DFB\u52A0")),1)])])]),t("li",null,[t("div",au,[ou,t("div",nu,[v.value=="add"?L((r(),d("textarea",{key:0,"onUpdate:modelValue":B[8]||(B[8]=S=>s.value=S),rows:"4",placeholder:e(a)("\u8BF7\u8F93\u5165BT Tracker\u670D\u52A1\u5668\u5730\u5740\uFF0C\u591A\u4E2A\u5730\u5740\u4F7F\u7528\u6362\u884C\u6216\u8005\u82F1\u6587\u9017\u53F7\u5206\u9694")},null,8,iu)),[[et,s.value,void 0,{trim:!0}]]):C("",!0)])])])])],40,A1)):C("",!0),p.value=="qBittorrent"?(r(),d("form",{key:1,onSubmit:ut(w,["prevent"])},[t("ul",null,[t("li",null,[t("div",su,[t("div",du,[t("span",lu,[D(Wt),t("div",null,[t("div",uu,[t("span",cu,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/qb\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")),1)])])]),t("span",null,i(e(a)("\u914D\u7F6E\u76EE\u5F55\uFF1A")),1)]),t("div",pu,[D(Jt,{modelValue:f.value,"onUpdate:modelValue":B[9]||(B[9]=S=>f.value=S),modelModifiers:{trim:!0},title:e(a)("\u914D\u7F6E\u76EE\u5F55"),options:k.value.concat("/root").map(S=>({key:S+"/Configs/qb"}))},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",fu,[t("div",mu,[t("span",gu,[D(Wt),t("div",null,[t("div",vu,[t("span",bu,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")),1)])])]),t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55\uFF1A")),1)]),t("div",hu,[D(Jt,{modelValue:m.value,"onUpdate:modelValue":B[10]||(B[10]=S=>m.value=S),modelModifiers:{trim:!0},title:e(a)("\u4E0B\u8F7D\u76EE\u5F55"),options:b.value},null,8,["modelValue","title","options"])])])])])],40,ru)):C("",!0),p.value=="Transmission"?(r(),d("form",{key:2,onSubmit:ut(F,["prevent"])},[t("ul",null,[t("li",null,[t("div",xu,[t("div",wu,[t("span",ku,[D(Wt),t("div",null,[t("div",yu,[t("span",Fu,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/tr\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")),1)])])]),t("span",null,i(e(a)("\u914D\u7F6E\u76EE\u5F55\uFF1A")),1)]),t("div",Eu,[D(Jt,{modelValue:_.value,"onUpdate:modelValue":B[11]||(B[11]=S=>_.value=S),modelModifiers:{trim:!0},title:e(a)("\u914D\u7F6E\u76EE\u5F55"),options:k.value.concat("/root").map(S=>({key:S+"/Configs/transmission"}))},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",$u,[t("div",Cu,[t("span",Du,[D(Wt),t("div",null,[t("div",Bu,[t("span",Yu,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")),1)])])]),t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55\uFF1A")),1)]),t("div",Au,[D(Jt,{modelValue:y.value,"onUpdate:modelValue":B[12]||(B[12]=S=>y.value=S),modelModifiers:{trim:!0},title:e(a)("\u4E0B\u8F7D\u76EE\u5F55"),options:b.value},null,8,["modelValue","title","options"])])])])])],40,_u)):C("",!0),t("div",Su,[p.value=="Aria2"?(r(),d("button",{key:0,class:"cbi-button cbi-button-apply",onClick:h},i(e(a)("\u542F\u7528")),1)):C("",!0),p.value=="qBittorrent"?(r(),d("button",{key:1,class:"cbi-button cbi-button-apply",onClick:w},i(e(a)("\u542F\u7528")),1)):C("",!0),p.value=="Transmission"?(r(),d("button",{key:2,class:"cbi-button cbi-button-apply",onClick:F},i(e(a)("\u542F\u7528")),1)):C("",!0),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:Y},i(e(a)("\u53D6\u6D88")),1)])])):g.value==1?(r(),d("div",zu,[t("h2",Pu,i(e(a)("%{status}\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",{status:p.value})),1),t("div",Tu,[D(la)]),t("p",Iu,i(e(a)("\u914D\u7F6E\u6210\u529F\uFF01")),1),t("div",Mu,[t("button",{class:"cbi-button cbi-button-apply",onClick:P},i(e(a)("\u786E\u5B9A")),1)])])):C("",!0)]),_:1},8,["Close"]))}});var Nu=N(Lu,[["__scopeId","data-v-395b81d2"]]);const Ou=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Nu,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},ua=o=>(it("data-v-2299b58c"),o=o(),rt(),o),Vu={class:"content"},Gu={class:"tab"},ju=ua(()=>t("div",{class:"title"},"Aria2",-1)),Uu={key:0},qu={key:1},Ru=ua(()=>t("div",{class:"title"},"qBittorrent",-1)),Hu={key:0},Wu={key:1},Ju=ua(()=>t("div",{class:"title"},"Transmission",-1)),Zu={key:0},Ku={key:1},Qu=T({setup(o){const{$gettext:n}=W(),a=E(!1),l=E("aria2"),u=b=>{l.value=b},s=E();setTimeout(()=>{j.Guide.DownloadService.Status.GET().then(b=>{var k;if((k=b==null?void 0:b.data)!=null&&k.result){const g=b.data.result;s.value=g}})},800),E(!1);const x=E(!1),v=()=>{x.value=!x.value},p=()=>{j.Guide.DownloadPartition.List.GET().then(b=>{var g,h;let k=[];(h=(g=b==null?void 0:b.data)==null?void 0:g.result)!=null&&h.partitionList&&(k=b.data.result.partitionList),Ou({services:s.value,partitionList:k,defaultTab:l.value})})},f=(b,k,g)=>O(this,null,function*(){v(),Dt.installAndGo(b,k,g)}),m=()=>{f("app-meta-aria2","Aria2","/cgi-bin/luci/admin/services/aria2")},_=()=>{f("app-meta-qbittorrent","qBittorrent","/cgi-bin/luci/admin/nas/qBittorrent")},y=()=>{f("app-meta-transmission","Transmission","/cgi-bin/luci/admin/services/transmission")};return(b,k)=>(r(),J(Rt,{title:e(n)("\u4E0B\u8F7D\u670D\u52A1"),showSettings:!0,onFooterClick:p,style:{width:"100%",height:"100%",display:"block"},"is-settings-menu-open":a.value,"onUpdate:isSettingsMenuOpen":k[4]||(k[4]=g=>a.value=g)},{icon:G(()=>[D(Zt,{color:"#00a63e",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:p},[D(Zt,{color:"#0a0a0a",class:"icon1 downloadIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u4E0B\u8F7D\u7BA1\u7406")),1),Boolean(s.value)?(r(),d("div",{key:0,class:"rotation",onClick:k[0]||(k[0]=ut(g=>a.value=!a.value,["stop"]))},[D(Ee,{class:"moreIcon"})])):C("",!0)])]),"settings-menu":G(()=>[t("div",null,[t("a",{onClick:m},i(e(n)("Aria2\u9AD8\u7EA7\u914D\u7F6E")),1)]),t("div",null,[t("a",{onClick:_},i(e(n)("qBittorrent\u9AD8\u7EA7\u914D\u7F6E")),1)]),t("div",null,[t("a",{onClick:y},i(e(n)("Transmission\u9AD8\u7EA7\u914D\u7F6E")),1)])]),default:G(()=>{var g,h,w,F,Y,P,A,B,S;return[t("div",Vu,[t("div",Gu,[t("div",{class:st(["item cloud",{active:l.value=="aria2"}]),onClick:k[1]||(k[1]=R=>u("aria2"))},[D(Zt,{color:"#f54900",class:"icon2"}),ju,((h=(g=s.value)==null?void 0:g.aria2)==null?void 0:h.status)=="running"?(r(),d("span",Uu,i(e(n)("\u5DF2\u542F\u7528")),1)):(r(),d("span",qu,i(e(n)("\u672A\u542F\u7528")),1))],2),t("div",{class:st(["item memory",{active:l.value=="qbittorrent"}]),onClick:k[2]||(k[2]=R=>u("qbittorrent"))},[D(Zt,{color:"#4a5565",class:"icon2"}),Ru,((F=(w=s.value)==null?void 0:w.qbittorrent)==null?void 0:F.status)=="running"?(r(),d("span",Hu,i(e(n)("\u5DF2\u542F\u7528")),1)):(r(),d("span",Wu,i(e(n)("\u672A\u542F\u7528")),1))],2),t("div",{class:st(["item network",{active:l.value=="transmission"}]),onClick:k[3]||(k[3]=R=>u("transmission"))},[D(Zt,{color:"#009689",class:"icon2"}),Ju,((P=(Y=s.value)==null?void 0:Y.transmission)==null?void 0:P.status)=="running"?(r(),d("span",Zu,i(e(n)("\u5DF2\u542F\u7528")),1)):(r(),d("span",Ku,i(e(n)("\u672A\u542F\u7528")),1))],2)]),l.value=="aria2"?(r(),J(Bl,{key:0,aria2:(A=s.value)==null?void 0:A.aria2},null,8,["aria2"])):l.value=="qbittorrent"?(r(),J(Wl,{key:1,qbittorrent:(B=s.value)==null?void 0:B.qbittorrent},null,8,["qbittorrent"])):l.value=="transmission"?(r(),J(u1,{key:2,transmission:(S=s.value)==null?void 0:S.transmission},null,8,["transmission"])):C("",!0)])]}),_:1},8,["title","is-settings-menu-open"]))}});var Xu=N(Qu,[["__scopeId","data-v-2299b58c"]]);const tc={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},ec=["fill"],He=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",tc,[t("path",{d:"M584.675 134.868C561.143 130.36 536.847 128 512 128a392 392 0 0 0-3.783 0.018l-24.19 169.685A32 32 0 0 1 466.68 321.8l-99.807 49.992-50.81 127.247a32 32 0 0 1-24.45 19.697l-162.145 27.069c8.105 92.926 49.308 176.368 111.754 238.473L223.089 657.52c-2.323-16.238 8.01-31.603 23.924-35.578l226.491-56.558a32 32 0 0 1 30.368 8.407l96.768 96.662a8 8 0 0 0 8.728 1.726l150.425-62.602 31.42-0.772c17.669-0.434 32.343 13.536 32.777 31.204 0.007 0.262 0.01 0.524 0.01 0.786v95.11c45.314-63.03 72-140.351 72-223.906 0-40.5-6.27-79.535-17.891-116.188l-103.215 27.656a32 32 0 0 1-23.36-2.684l-127.842-68.287a32 32 0 0 1-16.712-24.553l-22.305-193.076z m58.509 16.124l18.31 159.176 109.262 56.623 86.458-23.166c-43.44-88.897-120.207-158.532-214.03-192.633z m-336.132 685.8C366.357 874.295 436.644 896 512 896c94.536 0 181.093-34.162 248-90.814V683.96a8 8 0 0 0-11.074-7.386l-138.21 57.53a32 32 0 0 1-34.913-6.903l-99.24-99.132a8 8 0 0 0-7.592-2.102l-178.437 44.563a8 8 0 0 0-5.981 8.894l22.499 157.37zM128.65 489.473l140.726-23.504 49.219-123.244a32 32 0 0 1 15.386-16.744l96.748-48.46 20.65-144.762C275.347 160.675 139.137 308.212 128.65 489.47zM512 960C264.576 960 64 759.424 64 512S264.576 64 512 64s448 200.576 448 448-200.576 448-448 448z",fill:o.color,"p-id":"8679"},null,8,ec)]))}}),ac={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},oc=["fill"],nc=["fill"],ic=["fill"],Ga=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",ac,[t("path",{d:"M298.894222 482.417778c-35.271111 0-65.649778 12.231111-90.624 36.636444-25.031111 24.462222-37.603556 54.158222-37.603555 88.746667v87.153778h60.359111V607.857778c0-18.318222 6.599111-33.848889 19.854222-46.762667a65.991111 65.991111 0 0 1 48.014222-19.456h426.382222c18.887111 0 34.759111 6.428444 48.014223 19.399111 13.312 13.027556 19.854222 28.444444 19.854222 46.819556v87.04h60.359111v-87.04c0-34.702222-12.572444-64.341333-37.546667-88.746667a125.098667 125.098667 0 0 0-90.680889-36.750222H298.894222z",fill:o.color,"p-id":"8894"},null,8,oc),t("path",{d:"M488.049778 334.734222h47.900444V512h-47.900444V334.734222z",fill:o.color,"p-id":"8895"},null,8,nc),t("path",{d:"M597.333333 142.222222v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666zM284.444444 711.111111H113.777778v170.666667h170.666666v-170.666667z m-170.666666-56.888889h170.666666a56.888889 56.888889 0 0 1 56.888889 56.888889v170.666667a56.888889 56.888889 0 0 1-56.888889 56.888889H113.777778a56.888889 56.888889 0 0 1-56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 1 56.888889-56.888889zM910.222222 711.111111v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666z",fill:o.color,"p-id":"8896"},null,8,ic)]))}}),rc={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},sc=["fill"],dc=["fill"],lc=["fill"],uc=T({props:{color:{type:String,default:"#4a5565"}},setup(o){return(n,a)=>(r(),d("svg",rc,[t("path",{d:"M909.1 499.1h-797c-27.5 0-50 22.5-50 50v351.5c0 27.5 22.5 50 50 50h797c27.5 0 50-22.5 50-50V549.1c0-27.5-22.5-50-50-50z m-14 387.5h-769V563.1h769v323.5z",fill:o.color,"p-id":"19594"},null,8,sc),t("path",{d:"M191.932 734.691a63 63 0 1 0 124.375-20.173 63 63 0 1 0-124.375 20.173zM395.56 774.136a63 63 0 1 0 89.093-89.097 63 63 0 1 0-89.094 89.097zM702.8 296.6c-19.4 0-35.2 8.4-35.2 18.7v198c0 10.3 15.9 18.7 35.2 18.7 19.4 0 35.2-8.4 35.2-18.7v-198c0.1-10.3-15.8-18.7-35.2-18.7z",fill:o.color,"p-id":"19595"},null,8,dc),t("path",{d:"M701.8 218.6c-49.7 0-93.2 31.8-117.7 79.5h41.5c19.3-24.3 46.3-39.5 76.2-39.5 29.9 0 56.9 15.2 76.2 39.5h41.5c-24.4-47.7-68-79.5-117.7-79.5z m5.3-45.5c41.1 0 78.3 15.2 104.8 39.5H869c-33.7-47.7-93.7-79.5-162-79.5s-128.3 31.8-162 79.5h57.1c26.6-24.3 63.8-39.5 105-39.5z",fill:o.color,"p-id":"19596"},null,8,lc)]))}}),cc={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},pc=["fill"],wa=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",cc,[t("path",{d:"M526.41 117.029v58.514a7.314 7.314 0 0 1-7.315 7.314H219.429a36.571 36.571 0 0 0-35.987 29.989l-0.585 6.583V804.57a36.571 36.571 0 0 0 29.989 35.987l6.583 0.585H804.57a36.571 36.571 0 0 0 35.987-29.989l0.585-6.583v-317.44a7.314 7.314 0 0 1 7.314-7.314h58.514a7.314 7.314 0 0 1 7.315 7.314v317.44a109.714 109.714 0 0 1-99.182 109.203l-10.533 0.512H219.43a109.714 109.714 0 0 1-109.203-99.182l-0.512-10.533V219.43a109.714 109.714 0 0 1 99.182-109.203l10.533-0.512h299.666a7.314 7.314 0 0 1 7.314 7.315z m307.345 31.817l41.4 41.399a7.314 7.314 0 0 1 0 10.313L419.985 655.726a7.314 7.314 0 0 1-10.313 0l-41.399-41.4a7.314 7.314 0 0 1 0-10.312l455.168-455.168a7.314 7.314 0 0 1 10.313 0z","p-id":"4497",fill:o.color},null,8,pc)]))}}),fc={class:"actioner-container"},mc={class:"actioner-container_header"},gc={class:"actioner-container_body"},vc={class:"label-item"},bc={class:"label_info"},hc={class:"label-item"},_c={class:"label_info"},xc={class:"label-item"},wc={class:"label_info"},kc={class:"label-item"},yc={class:"label_info"},Fc={class:"actioner-container_footer"},Ec=T({props:{onSetup:{type:Function,required:!0},active:{type:String,default:"ddnsto"}},emits:["update:active"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:u}=W(),s=()=>{a.onSetup()},c=E(a.active),x=()=>{switch(n("update:active",c.value),c.value){case"ddnsto":a.onSetup("ddnsto");break;case"ali":a.onSetup("ddns-ali");break;case"dnspod":a.onSetup("ddns-dnspod");break;case"oray":a.onSetup("ddns-oray");break}};return(v,p)=>(r(),d("div",fc,[t("div",mc,[t("span",null,i(e(l)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",gc,[t("div",vc,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[0]||(p[0]=f=>c.value=f),value:"ddnsto"},null,512),[[Ft,c.value]]),t("span",null,i(e(l)("DDNSTO")),1)]),t("p",bc,i(e(l)("DDNSTO \u662F\u4E00\u4E2A\u4E0D\u9700\u8981\u516C\u7F51IP\u4E5F\u53EF\u4EE5\u5728\u5916\u7F51\u8BBF\u95EE\u7684\u7A7F\u900F\u57DF\u540D\u670D\u52A1\uFF0C\u4E00\u4E2A\u6D4F\u89C8\u5668\u641E\u5B9A\u5185\u7F51\u7A7F\u900F\uFF0C\u8FDC\u7A0B\u8BBF\u95EEOpenwrt\u3001\u8FDC\u7A0B\u7EC8\u7AEF\u3001\u8FDC\u7A0B\u684C\u9762...")),1)]),t("div",hc,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[1]||(p[1]=f=>c.value=f),value:"ali"},null,512),[[Ft,c.value]]),t("span",null,i(e(l)("\u963F\u91CC\u4E91")),1)]),t("p",_c,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1)]),t("div",xc,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[2]||(p[2]=f=>c.value=f),value:"dnspod"},null,512),[[Ft,c.value]]),t("span",null,i(e(l)("Dnspod")),1)]),t("p",wc,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1)]),t("div",kc,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[3]||(p[3]=f=>c.value=f),value:"oray"},null,512),[[Ft,c.value]]),t("span",null,i(e(l)("\u82B1\u751F\u58F3")),1)]),t("p",yc,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1)])]),t("div",Fc,[t("div",{class:"close",onClick:s},i(e(l)("\u53D6\u6D88")),1),t("div",{class:"next",onClick:x},i(e(l)("\u4E0B\u4E00\u6B65")),1)])]))}});var $c=N(Ec,[["__scopeId","data-v-73552138"]]);const Cc=o=>(it("data-v-b9ee57da"),o=o(),rt(),o),Dc={class:"actioner-container"},Bc={class:"actioner-container_body"},Yc=Cc(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),Ac={class:"body-title"},Sc={class:"body-tips"},zc={class:"body-info"},Pc=["href"],Tc={href:"/cgi-bin/luci/admin/services/ddns",target:"_blank"},Ic={class:"actioner-container_footer"},Mc=T({props:{target:{type:String,required:!0},onSetup:{type:Function,required:!0}},setup(o){const{$gettext:n,$ngettext:a}=W(),l=()=>{localStorage.setItem("firstOpen",JSON.stringify(!0)),location.reload()};return(u,s)=>(r(),d("div",Dc,[t("div",Bc,[Yc,t("div",Ac,i(e(n)("\u6DFB\u52A0\u6210\u529F")),1),t("p",Sc,i(e(n)("\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002")),1),t("div",zc,[t("span",null,i(e(n)("\u8BBF\u95EE\u5730\u5740\uFF1A")),1),t("a",{href:o.target,target:"_blank",rel:"noopener noreferrer"},i(o.target),9,Pc)]),t("div",null,[t("span",null,i(e(n)("\u53EF\u524D\u5F80")),1),t("a",Tc,i(e(n)("\u670D\u52A1-\u52A8\u6001DNS")),1),t("span",null,i(e(n)("\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")),1)])]),t("div",Ic,[t("div",{class:"close",onClick:l},i(e(n)("\u5173\u95ED")),1)])]))}});var Lc=N(Mc,[["__scopeId","data-v-b9ee57da"]]);const Nc=o=>(it("data-v-aefb6fdc"),o=o(),rt(),o),Oc={class:"actioner-container"},Vc={class:"actioner-container_header"},Gc=Nc(()=>t("div",{class:"actioner-container_body ddnsto-login"},[t("iframe",{src:"https://www.kooldns.cn/bind/#/auth?send=1&source=openwrt&callback=*"})],-1)),jc={class:"actioner-container_footer"},Uc=T({props:{onSetup:{type:Function,required:!0},onDdnstoConfig:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.onSetup()},s=c=>{if(c.data.auth=="ddnsto"){const x=c.data.sign,v=c.data.token;x&&v&&(removeEventListener("message",s),n.onDdnstoConfig(x,v),n.onSetup("ddnsto-run"))}};return At(()=>{window.addEventListener("message",s)}),Mt(()=>{removeEventListener("message",s)}),(c,x)=>(r(),d("div",Oc,[t("div",Vc,[t("span",null,i(e(a)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),Gc,t("div",jc,[t("div",{class:"close",onClick:u},i(e(a)("\u53D6\u6D88")),1)])]))}});var qc=N(Uc,[["__scopeId","data-v-aefb6fdc"]]);const Rc={class:"actioner-container"},Hc={class:"actioner-container_header"},Wc={class:"actioner-container_body ddnsto-bind"},Jc=["src"],Zc=T({props:{onSetup:{type:Function,required:!0},config:{type:Object,required:!0},domain:{type:String,required:!0}},emits:["update:domain"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:u}=W(),s=Q(()=>{const{domain:v,token:p,sign:f,routerId:m,netaddr:_}=a.config,y=encodeURIComponent(v),b=encodeURIComponent(_);return`https://www.kooldns.cn/bind/#/domain?domain=${y}&sign=${f}&token=${p}&routerId=${m}&netaddr=${b}`}),c=v=>{if(v.data){const{auth:p,url:f}=v.data;p==="ddnsto"&&f&&x(f)}},x=v=>O(this,null,function*(){var p;try{const f=yield j.Guide.DdnstoAddress.POST({address:v});f!=null&&f.data&&(((p=f==null?void 0:f.data)==null?void 0:p.success)||0)==0&&(n("update:domain",v),a.onSetup("ddnsto-save"))}catch(f){}});return At(()=>{window.addEventListener("message",c)}),Mt(()=>{removeEventListener("message",c)}),(v,p)=>(r(),d("div",Rc,[t("div",Hc,[t("span",null,i(e(l)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",Wc,[t("iframe",{src:e(s)},null,8,Jc)])]))}});var Kc=N(Zc,[["__scopeId","data-v-0e2b47e6"]]);const Qc=o=>(it("data-v-29e2aec8"),o=o(),rt(),o),Xc={class:"actioner-container"},t2={class:"actioner-container_body"},e2=Qc(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),a2={class:"body-title"},o2={class:"body-tips"},n2={class:"body-info"},i2=["href"],r2={href:"https://www.ddnsto.com/app/#/devices",target:"_blank"},s2={class:"actioner-container_footer"},d2=T({props:{onSetup:{type:Function,required:!0},target:{type:String,required:!0}},setup(o){const{$gettext:n,$ngettext:a}=W(),l=()=>{localStorage.setItem("firstOpen",JSON.stringify(!0)),location.reload()};return(u,s)=>(r(),d("div",Xc,[t("div",t2,[e2,t("div",a2,i(e(n)("\u6DFB\u52A0\u6210\u529F")),1),t("p",o2,i(e(n)("\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002")),1),t("div",n2,[t("span",null,i(e(n)("\u8BBF\u95EE\u5730\u5740\uFF1A")),1),t("a",{href:o.target,target:"_blank",rel:"noopener noreferrer"},i(o.target),9,i2)]),t("div",null,[t("span",null,i(e(n)("\u53EF\u524D\u5F80")),1),t("a",r2,i(e(n)("DDNSTO\u63A7\u5236\u53F0")),1),t("span",null,i(e(n)("\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")),1)])]),t("div",s2,[t("div",{class:"close",onClick:l},i(e(n)("\u5173\u95ED")),1)])]))}});var l2=N(d2,[["__scopeId","data-v-29e2aec8"]]);const u2={class:"actioner-container"},c2={class:"actioner-container_header"},p2={class:"actioner-container_body"},f2={class:"actioner-container_footer"},m2=T({props:{onSetup:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.onSetup()},s=()=>O(this,null,function*(){if(v.value)return;v.value=!0;const f=$.Loading(a("\u5B89\u88C5\u4E2D..."));try{if(yield Dt.installApp("app-meta-ddnsto",30)){n.onSetup("ddnsto-login");return}else c.value=a("\u5B89\u88C5\u5931\u8D25")}catch(m){c.value=m}finally{f.Close()}v.value=!1}),c=E(a("\u6B63\u5728\u68C0\u6D4B\u4E2D...")),x=E(!1),v=E(!1);return(()=>O(this,null,function*(){try{const f=yield j.App.Check.POST({name:"ddnsto"});if(f!=null&&f.data){const{result:m,error:_}=f.data;if(_){c.value=_;return}if(m){if(m.status=="installed"){n.onSetup("ddnsto-login");return}m.status=="uninstalled"&&(c.value=a("\u9700\u8981\u5B89\u88C5DDNSTO\u63D2\u4EF6\uFF0C\u70B9\u51FB\u201C\u786E\u5B9A\u201D\u5F00\u59CB\u5B89\u88C5"))}}}catch(f){c.value=f}x.value=!0}))(),(f,m)=>(r(),d("div",u2,[t("div",c2,[t("span",null,i(e(a)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",p2,[t("span",null,i(c.value),1)]),t("div",f2,[x.value?(r(),d(U,{key:0},[t("div",{class:"close",onClick:u},i(e(a)("\u53D6\u6D88")),1),t("div",{class:"next",onClick:s},i(e(a)("\u786E\u5B9A")),1)],64)):C("",!0)])]))}});var g2=N(m2,[["__scopeId","data-v-169b4450"]]);const v2={class:"actioner-container"},b2={class:"actioner-container_header"},h2={class:"actioner-container_body"},_2=T({props:{onSetup:{type:Function,required:!0},token:{type:String,required:!0},onDdnstoLocalConfig:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(a("\u6B63\u5728\u68C0\u6D4B\u63D2\u4EF6\u662F\u5426\u5DF2\u542F\u52A8..."));(f=>O(this,null,function*(){var m;try{const _=yield j.Guide.Ddnsto.POST({token:n.token});_!=null&&_.data&&(_.data.error&&(u.value=_.data.error),(((m=_==null?void 0:_.data)==null?void 0:m.success)||0)==0&&x())}catch(_){u.value=_}}))(n.token);const c=E(),x=()=>{const f=()=>O(this,null,function*(){if((yield v())===!0){p();return}c.value=window.setTimeout(f,2e3)});f()},v=()=>O(this,null,function*(){try{const f=yield j.App.Check.POST({name:"ddnsto",checkRunning:!0});if(f!=null&&f.data){f.data.error&&(u.value=f.data.error);const m=f.data.result;if((m==null?void 0:m.status)=="running")return!0}}catch(f){u.value=f}return!1});Mt(()=>{c.value&&clearInterval(c.value)});const p=()=>O(this,null,function*(){var f;try{const m=yield j.Guide.DdntoConfig.GET();if(m!=null&&m.data&&(m.data.error&&(u.value=m.data.error),(((f=m==null?void 0:m.data)==null?void 0:f.success)||0)==0&&m.data.result)){const _=m.data.result;n.onDdnstoLocalConfig(_.netAddr,_.deviceId),n.onSetup("ddnsto-bind")}}catch(m){u.value=m}});return(f,m)=>(r(),d("div",v2,[t("div",b2,[t("span",null,i(e(a)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",h2,i(u.value),1)]))}});var x2=N(_2,[["__scopeId","data-v-6590a3fa"]]);const w2={class:"action-main"},k2=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(o){const n=o,a=E("ddnsto-install"),l=v=>{v!=null?a.value=v:u()},u=()=>{n.Close&&n.Close()},s=mt({sign:"",token:"",domain:n.url,netaddr:"",routerId:""}),c=(v,p)=>{s.sign=v,s.token=p},x=(v,p)=>{s.netaddr=v,s.routerId=p};return(v,p)=>(r(),J(_t,{type:1},{default:G(()=>[t("div",w2,[a.value=="ddnsto-install"?(r(),J(g2,{key:0,onSetup:l})):a.value=="ddnsto-login"?(r(),J(qc,{key:1,onSetup:l,onDdnstoConfig:c})):a.value=="ddnsto-run"?(r(),J(x2,{key:2,onSetup:l,token:e(s).token,onDdnstoLocalConfig:x},null,8,["token"])):a.value=="ddnsto-bind"?(r(),J(Kc,{key:3,onSetup:l,config:{token:e(s).token,sign:e(s).sign,domain:e(s).domain,netaddr:e(s).netaddr,routerId:e(s).routerId},domain:e(s).domain,"onUpdate:domain":p[0]||(p[0]=f=>e(s).domain=f)},null,8,["config","domain"])):a.value=="ddnsto-save"?(r(),J(l2,{key:4,onSetup:l,target:e(s).domain},null,8,["target"])):C("",!0)])]),_:1}))}});var y2=N(k2,[["__scopeId","data-v-3b80943c"]]);const F2=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(y2,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},E2={class:"action"},$2={class:"action-header"},C2=["innerHTML"],D2={class:"action-footer"},B2=T({props:{Close:Function,next:{type:Function},clear:{type:Function},continuer:{type:Function},nextTitle:{type:String},clearTitle:{type:String},continuerTitle:{type:String},title:{type:String},content:{type:String}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.next&&n.next(),n.Close&&n.Close()},s=()=>{n.clear&&n.clear(),n.Close&&n.Close()},c=()=>{n.continuer&&n.continuer(),n.Close&&n.Close()};return(x,v)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[t("div",E2,[t("div",$2,i(o.title||e(a)("\u63D0\u793A")),1),t("div",{class:"action-body",innerHTML:o.content},null,8,C2),t("div",D2,[o.clear?(r(),d("div",{key:0,class:"clear",onClick:s},i(o.clearTitle||e(a)("\u8FD4\u56DE")),1)):C("",!0),t("div",{class:"next",onClick:u},i(o.nextTitle||e(a)("\u786E\u5B9A")),1),o.continuer?(r(),d("div",{key:1,class:"next",onClick:c},i(o.continuerTitle||e(a)("\u7EE7\u7EED\u4FDD\u5B58")),1)):C("",!0)])])]),_:1},8,["Close"]))}});var Y2=N(B2,[["__scopeId","data-v-145a3c50"]]);const Se=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Y2,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},A2=o=>(it("data-v-2c659599"),o=o(),rt(),o),S2={class:"actioner-container"},z2=["onSubmit"],P2={class:"actioner-container_header"},T2={key:0,class:"title_info"},I2={href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E9%98%BF%E9%87%8C%E4%BA%91",target:"_blank"},M2={key:1,class:"title_info"},L2={href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#dnspod",target:"_blank"},N2={key:2,class:"title_info"},O2={href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E8%8A%B1%E7%94%9F%E5%A3%B3",target:"_blank"},V2={class:"label-item"},G2={class:"label-item_key"},j2={class:"label-item_value"},U2={value:"ipv4"},q2={value:"ipv6"},R2={class:"label_tips"},H2=A2(()=>t("svg",{width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])],-1)),W2={class:"info"},J2={class:"label-item"},Z2={class:"label-item_key"},K2={class:"label-item_value"},Q2={class:"label-item"},X2={class:"label-item_key"},t6={class:"label-item_value"},e6=["placeholder"],a6={class:"label-item"},o6={class:"label-item_key"},n6={class:"label-item_value"},i6=["placeholder"],r6={class:"actioner-container_footer"},s6=["disabled"],d6=T({props:{name:{type:String,default:"ali"},onSetup:{type:Function,required:!0},target:{type:String,required:!0}},emits:["update:target"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:u}=W(),s=E("ipv4"),c=E(a.name),x=E(""),v=E(""),p=E(""),f=E(!1),m=()=>{a.onSetup("index")},_=()=>{f.value=!0;const g=$.Loading(l("\u68C0\u6D4B\u4E2D..."));j.Network.CheckPublickNet.POST({ipVersion:s.value}).then(h=>{var w,F;if(h!=null&&h.data){if((w=h==null?void 0:h.data)!=null&&w.error){$.Warning(h==null?void 0:h.data.error);return}if((((F=h==null?void 0:h.data)==null?void 0:F.success)||0)==0){const Y=h.data.result;Y&&Y.address?k():y();return}}throw l("\u672A\u77E5\u9519\u8BEF")}).catch(h=>{$.Error(h)}).finally(()=>{g.Close(),f.value=!1})},y=()=>{Se({title:l("\u6E29\u99A8\u63D0\u793A"),nextTitle:l("\u4F7F\u7528DDNSTO"),continuerTitle:l("\u7EE7\u7EED\u4FDD\u5B58"),content:l("\u68C0\u6D4B\u5230\u60A8\u7684wan\u53E3\u6CA1\u6709\u516C\u7F51IP\u6216\u8005IPv6\u5730\u5740\uFF0C\u53EF\u4EE5\u4F7F\u7528DDNSTO\u914D\u7F6E\u8FDC\u7A0B\u57DF\u540D\u8BBF\u95EE"),next(){b()},continuer(){k()},clear(){}})},b=()=>{a.onSetup("ddnsto")},k=()=>{f.value=!0;const g=$.Loading(l("\u914D\u7F6E\u4E2D..."));j.Guide.PostDdns.POST({ipVersion:s.value,serviceName:c.value,domain:x.value,userName:v.value,password:p.value}).then(h=>{if(h!=null&&h.data){const{error:w,scope:F,success:Y}=h.data;if(w=="-100"&&F=="guide.ddns"){Se({title:l("\u6E29\u99A8\u63D0\u793A"),content:l("\u68C0\u6D4B\u5230\u4F60\u6709\u672A\u4FDD\u5B58\u7684\u914D\u7F6E\uFF0C\u53EF\u524D\u5F80\u9875\u9762\u53F3\u4E0A\u89D2\u70B9\u51FB\u67E5\u770B\uFF0C\u4FDD\u5B58\u5E76\u5E94\u7528\u6216\u8005\u6062\u590D\u914D\u7F6E\u540E\u7EE7\u7EED"),next(){}});return}if(w){$.Warning(w);return}if((Y||0)==0){n("update:target",x.value),a.onSetup("ddns-success");return}}throw l("\u672A\u77E5\u9519\u8BEF")}).catch(h=>{$.Error(h)}).finally(()=>{g.Close(),f.value=!1})};return(g,h)=>(r(),d("div",S2,[t("form",{class:"actioner-dns",onSubmit:ut(_,["prevent"])},[t("div",P2,[t("span",null,i(e(l)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",{class:st(["actioner-container_body",o.name])},[o.name=="ali"?(r(),d("div",T2,[t("p",null,i(e(l)("\u963F\u91CC\u4E91")),1),t("span",null,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1),t("a",I2,i(e(l)("\u67E5\u770B\u6559\u7A0B"))+">>",1)])):o.name=="dnspod"?(r(),d("div",M2,[t("p",null,i(e(l)("dnspod")),1),t("span",null,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1),t("a",L2,i(e(l)("\u67E5\u770B\u6559\u7A0B"))+">>",1)])):o.name=="oray"?(r(),d("div",N2,[t("p",null,i(e(l)("\u82B1\u751F\u58F3")),1),t("span",null,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1),t("a",O2,i(e(l)("\u67E5\u770B\u6559\u7A0B"))+">>",1)])):C("",!0),t("div",V2,[t("div",G2,[t("span",null,i(e(l)("IP\u5730\u5740\u7248\u672C\uFF1A")),1)]),t("div",j2,[L(t("select",{name:"",id:"","onUpdate:modelValue":h[0]||(h[0]=w=>s.value=w)},[t("option",U2,i(e(l)("IPv4\u5730\u5740")),1),t("option",q2,i(e(l)("IPv6\u5730\u5740")),1)],512),[[dt,s.value]])]),t("div",R2,[H2,t("span",W2,i(e(l)("\u8BBE\u5B9A\u54EA\u4E00\u4E2A IP \u5730\u5740\uFF08IPv4 \u6216 IPv6\uFF09\u4F1A\u88AB\u53D1\u9001\u7ED9 DDNS \u63D0\u4F9B\u5546")),1)])]),t("div",J2,[t("div",Z2,[t("span",null,i(e(l)("\u57DF\u540D\uFF1A")),1)]),t("div",K2,[L(t("input",{type:"text",placeholder:"myhost.example.com","onUpdate:modelValue":h[1]||(h[1]=w=>x.value=w),required:""},null,512),[[et,x.value,void 0,{trim:!0}]])])]),t("div",Q2,[t("div",X2,[t("span",null,i(e(l)("\u7528\u6237\u540D\uFF1A")),1)]),t("div",t6,[L(t("input",{type:"text","onUpdate:modelValue":h[2]||(h[2]=w=>v.value=w),placeholder:e(l)("\u8BF7\u8F93\u5165\u7528\u6237\u540D"),required:""},null,8,e6),[[et,v.value,void 0,{trim:!0}]])])]),t("div",a6,[t("div",o6,[t("span",null,i(e(l)("\u5BC6\u7801\uFF1A")),1)]),t("div",n6,[L(t("input",{type:"password","onUpdate:modelValue":h[3]||(h[3]=w=>p.value=w),placeholder:e(l)("\u8BF7\u8F93\u5165\u5BC6\u7801"),required:""},null,8,i6),[[et,p.value,void 0,{trim:!0}]])])])],2),t("div",r6,[t("div",{class:"close",onClick:m,type:"button"},i(e(l)("\u8FD4\u56DE")),1),t("button",{class:"next save",type:"submit",disabled:f.value},i(e(l)("\u4FDD\u5B58")),9,s6)])],40,z2)]))}});var We=N(d6,[["__scopeId","data-v-2c659599"]]);const l6={class:"action-main"},u6=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(o){const n=o,a=E(""),l=E("index"),u=v=>{if(v!=null){if(v=="ddnsto"){s();return}l.value=v}else c()},s=()=>{c(),F2({url:n.url})},c=()=>{n.Close&&n.Close()},x=E("ddnsto");return(v,p)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[t("div",l6,[l.value=="index"?(r(),J($c,{key:0,onSetup:u,active:x.value,"onUpdate:active":p[0]||(p[0]=f=>x.value=f)},null,8,["active"])):l.value=="ddns-ali"?(r(),J(We,{key:1,onSetup:u,target:a.value,"onUpdate:target":p[1]||(p[1]=f=>a.value=f),name:"ali"},null,8,["target"])):l.value=="ddns-dnspod"?(r(),J(We,{key:2,onSetup:u,target:a.value,"onUpdate:target":p[2]||(p[2]=f=>a.value=f),name:"dnspod"},null,8,["target"])):l.value=="ddns-oray"?(r(),J(We,{key:3,onSetup:u,target:a.value,"onUpdate:target":p[3]||(p[3]=f=>a.value=f),name:"oray"},null,8,["target"])):l.value=="ddns-success"?(r(),J(Lc,{key:4,onSetup:u,target:a.value},null,8,["target"])):C("",!0)])]),_:1},8,["Close"]))}});var c6=N(u6,[["__scopeId","data-v-8a1e6470"]]);const p6=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(c6,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},Oe=o=>(it("data-v-d3a8d744"),o=o(),rt(),o),f6={class:"content"},m6={class:"tab"},g6=Oe(()=>t("div",{class:"title"},"DDNSTO",-1)),v6={key:0},b6={key:1},h6=Oe(()=>t("div",{class:"title"},"IPv4",-1)),_6={key:0},x6={key:1},w6=Oe(()=>t("div",{class:"title"},"IPv6",-1)),k6={key:0},y6={key:1},F6={key:0,class:"info"},E6={class:"status"},$6=Oe(()=>t("div",null,"DDNSTO",-1)),C6={key:0},D6={key:1,class:"offline"},B6={class:"title_box"},Y6={class:"title"},A6={class:"path"},S6=["href","title"],z6={key:1},P6={class:"item_btn",href:"https://www.kooldns.cn/app/#/devices",target:"_blank"},T6={key:1,class:"info"},I6={class:"status"},M6={key:0,class:"offline"},L6={key:1},N6={class:"title_box"},O6={class:"title"},V6={class:"path"},G6={key:0},j6=["href"],U6={key:2,href:"/cgi-bin/luci/admin/services/ddns"},q6={key:2,class:"info"},R6={class:"status"},H6={key:0,class:"offline"},W6={key:1},J6={class:"title_box"},Z6={class:"title"},K6={class:"path"},Q6={key:0},X6=["href"],t5={key:2,href:"/cgi-bin/luci/admin/services/ddns"},e5=T({setup(o){const{$gettext:n}=W(),a=E(0),l=m=>{a.value=m};let u=!1,s;const c=E({}),x=function(){!u||(document.hidden?Promise.resolve():j.Guide.GetDdns.GET().then(m=>{var _;m!=null&&m.data&&(((_=m==null?void 0:m.data)==null?void 0:_.success)||0)==0&&m.data.result&&(c.value=m.data.result)})).then(()=>{!u||(s=window.setTimeout(x,3e3))})};At(()=>{u=!0,s=window.setTimeout(x,1100)}),Mt(()=>{s!==void 0&&window.clearTimeout(s),u=!1});const v=()=>{p6({url:c.value.ddnstoDomain})},p=Q(()=>{const m=c.value.ipv4Domain;return!m||m=="Stopped"||m=="Disabled"?m:`http://${m}`}),f=Q(()=>{const m=c.value.ipv6Domain;return!m||m=="Stopped"||m=="Disabled"?m:`http://${m}`});return(m,_)=>(r(),J(Rt,{title:e(n)("\u8FDC\u7A0B\u57DF\u540D"),showSettings:!0,style:{width:"100%",height:"100%",display:"block"}},{icon:G(()=>[D(He,{color:"#00a63e",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:v},[D(He,{color:"#0a0a0a",class:"icon1 earthIcon",style:{"margin-right":"6px"}}),nt(" "+i(e(n)("\u57DF\u540D\u914D\u7F6E")),1)])]),default:G(()=>{var y,b,k,g,h,w;return[t("div",f6,[t("div",m6,[t("div",{class:st(["item cloud",{active:a.value==0}]),style:ft({border:e(p)||e(f)?"":"none"}),onClick:_[0]||(_[0]=F=>l(0))},[D(He,{color:"#155dfc",class:"icon2"}),g6,(y=c.value)!=null&&y.ddnstoDomain?(r(),d("span",v6,i(e(n)("\u6B63\u5E38")),1)):(r(),d("span",b6,i(e(n)("\u672A\u542F\u52A8")),1))],6),e(p)?(r(),d("div",{key:0,class:st(["item memory",{active:a.value==1}]),onClick:_[1]||(_[1]=F=>l(1))},[D(Ga,{color:"#00a63e",class:"icon2"}),h6,e(p)=="Stopped"||e(p)=="Disabled"?(r(),d("span",_6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",x6,i(e(n)("\u6B63\u5E38")),1))],2)):C("",!0),e(f)?(r(),d("div",{key:1,class:st(["item network",{active:a.value==2}]),onClick:_[2]||(_[2]=F=>l(2))},[D(uc,{class:"icon2"}),w6,e(f)=="Stopped"||e(f)=="Disabled"?(r(),d("span",k6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",y6,i(e(n)("\u6B63\u5E38")),1))],2)):C("",!0)]),a.value==0?(r(),d("div",F6,[t("div",E6,[$6,(b=c.value)!=null&&b.ddnstoDomain?(r(),d("span",C6,i(e(n)("\u6B63\u5E38")),1)):(r(),d("span",D6,i(e(n)("\u672A\u542F\u52A8")),1))]),t("div",B6,[t("div",Y6,i(e(n)("\u667A\u80FD\u5185\u7F51\u7A7F\u900F\u670D\u52A1")),1),t("div",A6,[(k=c.value)!=null&&k.ddnstoDomain?(r(),d("a",{key:0,class:"configure",href:(g=c.value)==null?void 0:g.ddnstoDomain,target:"_blank",rel:"noopener noreferrer",title:(h=c.value)==null?void 0:h.ddnstoDomain},i((w=c.value)==null?void 0:w.ddnstoDomain),9,S6)):(r(),d("div",z6,i(e(n)("\u672A\u5B89\u88C5\u6216\u672A\u914D\u7F6E")),1)),t("span",null,[t("a",P6,i(e(n)("\u63A7\u5236\u53F0")),1)])])])])):C("",!0),a.value==1?(r(),d("div",T6,[t("div",I6,[t("div",null,i(e(n)("\u5F53\u524D\u72B6\u6001:")),1),e(p)=="Stopped"||e(p)=="Disabled"?(r(),d("span",M6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",L6,i(e(n)("\u6B63\u5E38")),1))]),t("div",N6,[t("div",O6,"IPv4 "+i(e(n)("\u52A8\u6001\u57DF\u540D\u89E3\u6790")),1),t("div",V6,[e(p)=="Stopped"||e(p)=="Disabled"?(r(),d("div",G6,i(e(p)),1)):(r(),d("a",{key:1,class:"configure",href:e(p),target:"_blank",rel:"noopener noreferrer"},i(e(p)),9,j6)),e(p)?(r(),d("a",U6,[D(wa,{class:"icon3"})])):C("",!0)])])])):C("",!0),a.value==2?(r(),d("div",q6,[t("div",R6,[t("div",null,i(e(n)("\u5F53\u524D\u72B6\u6001:")),1),e(f)=="Stopped"||e(f)=="Disabled"?(r(),d("span",H6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",W6,i(e(n)("\u6B63\u5E38")),1))]),t("div",J6,[t("div",Z6,"IPv6 "+i(e(n)("\u52A8\u6001\u57DF\u540D\u89E3\u6790")),1),t("div",K6,[e(f)=="Stopped"||e(f)=="Disabled"?(r(),d("div",Q6,i(e(f)),1)):(r(),d("a",{key:1,class:"configure",href:e(f),target:"_blank",rel:"noopener noreferrer"},i(e(f)),9,X6)),e(f)?(r(),d("a",t5,[D(wa,{class:"icon3"})])):C("",!0)])])])):C("",!0)])]}),_:1},8,["title"]))}});var a5=N(e5,[["__scopeId","data-v-d3a8d744"]]);const o5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},n5=["fill"],i5=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",o5,[t("path",{d:"M879.674 544.51l-158.254-0.221c-8.534 2.287-17.305-2.776-19.588-11.307l-23.862-75.877-74.742 350.891c0 0-1.523 18.507-11.518 18.507s-26.9 0.281-26.9 0.281c-8.259 2.213-16.748-2.687-18.961-10.949l-92.741-457.648-70.305 330.634c-2.261 8.291-11.94 15.206-20.385 12.986l-24.876 0.339c-8.723 2.293-17.685-2.789-20.023-11.349L270.629 544.51 143.993 544.51c-8.831 0-15.993-7.159-15.993-15.993l0-31.986c0-8.831 7.162-15.993 15.993-15.993l157.429-0.516c9.565-0.304 17.685 0.788 20.023 9.351l24.386 76.092 68.642-358.907c0 0 3.4-10.894 14.397-10.894 10.994 0 34.107-0.448 34.107-0.448 8.262-2.213 16.751 2.687 18.965 10.949l91.912 454.126 67.948-326.182c2.213-8.262 8.707-15.161 16.965-12.948l27.316-0.333c8.531-2.287 17.301 2.776 19.588 11.31l46.665 148.4 127.337 0c8.835 0 15.993 7.162 15.993 15.993l0 31.986C895.667 537.352 888.508 544.51 879.674 544.51z","p-id":"5314",fill:o.color},null,8,n5)]))}}),r5=()=>{var n;const o=document.body.getAttribute("theme");if(o)switch(o){case"dark":case"light":return o}return(n=window.matchMedia("(prefers-color-scheme: dark)"))!=null&&n.matches?"dark":"light"},ja=()=>r5()=="dark",Ua=o=>(it("data-v-4b7f2557"),o=o(),rt(),o),s5={class:"network_container"},d5={class:"title_box"},l5={class:"display_flex"},u5={class:"network_tag"},c5={class:"tag_item"},p5=Ua(()=>t("div",{class:"tag_dn"},null,-1)),f5={class:"tag_item"},m5=Ua(()=>t("div",{class:"tag_up"},null,-1)),g5={class:"speed"},v5={class:"speed_item"},b5={style:{color:"#1596fd"}},h5={class:"speed_item"},_5={style:{color:"#00a63e"}},x5=T({setup(o){const{$gettext:n}=W();Qe([Ya,Aa,Sa,Xe,ta,za]);const a=E(),l=b=>{var g;const k=(g=a.value)==null?void 0:g[b];return!k||k.startTime==0?"":p(k.startTime*1e3)+"-"+p(k.endTime*1e3)},u=Q(()=>{var k;let b=[];return(k=a.value)==null||k.forEach(g=>{b.push({value:g.uploadSpeed})}),b}),s=Q(()=>{var k;let b=[];return(k=a.value)==null||k.forEach(g=>{b.push({value:g.downloadSpeed})}),b}),c=Q(()=>{var k;let b="";if(a.value){let g=((k=a.value)==null?void 0:k.length)||0;if(g>0){let h=a.value[g-1];b=f(h.uploadSpeed)+"/s"}}return b}),x=Q(()=>{var k;let b="";if(a.value){let g=((k=a.value)==null?void 0:k.length)||0;if(g>0){let h=a.value[g-1];b=f(h.downloadSpeed)+"/s"}}return b});Q(()=>{var k;let b=[];return(k=a.value)==null||k.forEach(g=>{b.push({value:g.downloadSpeed+g.uploadSpeed})}),b});const v=()=>O(this,null,function*(){var b;try{const k=yield j.Network.Statistics.GET();if(k.data&&(b=k.data.result)!=null&&b.items){const g=k.data.result.slots||10;if(k.data.result.items.length
g?a.value=k.data.result.items.slice(g-k.data.result.items.length):a.value=k.data.result.items}}catch(k){console.log(k)}}),p=Pt.dateForm,f=Pt.byteToSize,m=E();let _=null;const y=b=>{const k=ja();return _=ea(b,k?"dark":"light"),_.setOption({animation:!1,backgroundColor:k?"#2c2c2c":"#fff",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:g=>{if(Array.isArray(g)){let h="";g.length>0&&(h=l(g[0].axisValue));for(let w=0;w${g[w].seriesName}: ${f(g[w].value)}/s`;return h.toString()}else{const h=g;return`${l(h.axisValue)}
${h.seriesName}: ${f(h.value)}/s`}}},xAxis:{type:"category",boundaryGap:!1,splitLine:{lineStyle:{color:["#999"]},show:!1},name:"",show:!1,nameGap:0,nameTextStyle:{height:0,lineHeight:0,padding:0}},title:{text:"",textStyle:{fontSize:12,color:k?"#cccccc":"rgba(0, 0, 0, 0.6)"},top:"10px",left:"10px"},yAxis:{type:"value",name:"",minInterval:1e4,interval:1e3,axisLabel:{formatter:function(g,h){return`${f(g)}/s`},color:"#fff",show:!1},nameTextStyle:{color:"#fff"},splitLine:{lineStyle:{color:["#999"]},show:!1}},series:[{name:n("\u4E0B\u8F7D"),data:s.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(32, 199, 247, 1)"},{offset:1,color:"rgba(32, 199, 247, 0.1)"}],global:!1}}},{name:n("\u4E0A\u4F20"),data:u.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(85, 58, 254, 1)"},{offset:1,color:"rgba(85, 58, 254, 0.1)"}],global:!1}}}],grid:{left:"2%",right:"2%",bottom:"0%",top:"10%",containLabel:!0}}),_};return At(()=>{setTimeout(()=>O(this,null,function*(){if(m.value){yield v();const b=y(m.value),k=m.value;b.resize({width:k.clientWidth,height:k.clientHeight}),window.addEventListener("resize",()=>{b.resize({width:k.clientWidth,height:k.clientHeight})});const g=()=>O(this,null,function*(){if(_!=null){if(!document.hidden){if(yield v(),_==null)return;b.setOption({series:[{name:n("\u4E0B\u8F7D"),data:s.value,type:"line",areaStyle:{},smooth:!0},{name:n("\u4E0A\u4F20"),data:u.value,type:"line",areaStyle:{},smooth:!0}]})}setTimeout(g,5e3)}});setTimeout(g,5e3)}}),900)}),Mt(()=>{_!=null&&(_.dispose(),_=null)}),(b,k)=>(r(),d("div",s5,[t("div",d5,[t("div",l5,[D(i5,{color:"#20c7f7",class:"icon"}),t("span",null,i(e(n)("\u7F51\u7EDC\u6D41\u91CF")),1)]),t("div",null,[t("div",u5,[t("div",c5,[p5,t("span",null,i(e(n)("\u4E0B\u8F7D")),1)]),t("div",f5,[m5,t("span",null,i(e(n)("\u4E0A\u4F20")),1)])])])]),t("div",g5,[t("div",v5,[t("span",null,i(e(n)("\u4E0B\u8F7D\u901F\u5EA6")),1),t("div",b5,i(e(x)),1)]),t("div",h5,[t("span",null,i(e(n)("\u4E0A\u4F20\u901F\u5EA6")),1),t("div",_5,i(e(c)),1)])]),t("div",{ref_key:"el",ref:m,class:"echart"},null,512)]))}});var w5=N(x5,[["__scopeId","data-v-4b7f2557"]]);const k5={width:"32",height:"32",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},y5=["fill"],F5=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",k5,[t("path",{d:"M512 298.666667c-162.133333 0-285.866667 68.266667-375.466667 213.333333 89.6 145.066667 213.333333 213.333333 375.466667 213.333333s285.866667-68.266667 375.466667-213.333333c-89.6-145.066667-213.333333-213.333333-375.466667-213.333333z m0 469.333333c-183.466667 0-328.533333-85.333333-426.666667-256 98.133333-170.666667 243.2-256 426.666667-256s328.533333 85.333333 426.666667 256c-98.133333 170.666667-243.2 256-426.666667 256z m0-170.666667c46.933333 0 85.333333-38.4 85.333333-85.333333s-38.4-85.333333-85.333333-85.333333-85.333333 38.4-85.333333 85.333333 38.4 85.333333 85.333333 85.333333z m0 42.666667c-72.533333 0-128-55.466667-128-128s55.466667-128 128-128 128 55.466667 128 128-55.466667 128-128 128z",fill:o.color,"p-id":"5225"},null,8,y5)]))}}),E5={width:"32",height:"32",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},$5=["fill"],C5=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",E5,[t("path",{d:"M332.8 729.6l34.133333-34.133333c42.666667 12.8 93.866667 21.333333 145.066667 21.333333 162.133333 0 285.866667-68.266667 375.466667-213.333333-46.933333-72.533333-102.4-128-166.4-162.133334l29.866666-29.866666c72.533333 42.666667 132.266667 106.666667 183.466667 192-98.133333 170.666667-243.2 256-426.666667 256-59.733333 4.266667-119.466667-8.533333-174.933333-29.866667z m-115.2-64c-51.2-38.4-93.866667-93.866667-132.266667-157.866667 98.133333-170.666667 243.2-256 426.666667-256 38.4 0 76.8 4.266667 110.933333 12.8l-34.133333 34.133334c-25.6-4.266667-46.933333-4.266667-76.8-4.266667-162.133333 0-285.866667 68.266667-375.466667 213.333333 34.133333 51.2 72.533333 93.866667 115.2 128l-34.133333 29.866667z m230.4-46.933333l29.866667-29.866667c8.533333 4.266667 21.333333 4.266667 29.866666 4.266667 46.933333 0 85.333333-38.4 85.333334-85.333334 0-12.8 0-21.333333-4.266667-29.866666l29.866667-29.866667c12.8 17.066667 17.066667 38.4 17.066666 64 0 72.533333-55.466667 128-128 128-17.066667-4.266667-38.4-12.8-59.733333-21.333333zM384 499.2c4.266667-68.266667 55.466667-119.466667 123.733333-123.733333 0 4.266667-123.733333 123.733333-123.733333 123.733333zM733.866667 213.333333l29.866666 29.866667-512 512-34.133333-29.866667L733.866667 213.333333z",fill:o.color,"p-id":"5534"},null,8,$5)]))}}),D5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},B5=["fill"],xe=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",D5,[t("path",{d:"M512 96c229.76 0 416 186.24 416 416S741.76 928 512 928 96 741.76 96 512 282.24 96 512 96z m-32 448l-127.317333 0.021333c0.896 20.48 2.624 40.405333 5.12 59.669334l1.984 14.293333 2.474666 15.253333c19.754667 112.896 65.728 197.738667 117.76 222.997334L480 544z m191.317333 0.021333L544 544v312.234667c50.858667-24.725333 95.936-106.368 116.373333-215.509334l1.365334-7.488 2.474666-15.232a701.013333 701.013333 0 0 0 7.104-73.984z m-382.698666 0H161.429333c11.648 129.066667 92.992 238.08 206.101334 289.066667-22.122667-34.282667-40.362667-76.416-53.76-124.032l-3.029334-11.093333-3.52-14.165334-3.242666-14.464a744.490667 744.490667 0 0 1-15.36-125.312z m573.952 0H735.36a752.661333 752.661333 0 0 1-12.672 112.128l-2.688 13.184-3.242667 14.464-3.52 14.186667c-13.653333 52.138667-32.96 98.197333-56.789333 135.104 113.109333-50.986667 194.453333-160 206.08-289.066667zM367.530667 190.890667l-2.858667 1.301333C253.013333 243.733333 172.970667 352 161.429333 480h127.189334c1.536-39.04 5.866667-76.693333 12.672-112.149333l2.688-13.184 3.242666-14.464 3.52-14.186667c13.653333-52.138667 32.96-98.197333 56.789334-135.104zM480 167.765333c-50.709333 24.618667-95.68 105.898667-116.202667 214.592l-1.536 8.405334-2.474666 15.232a701.034667 701.034667 0 0 0-7.104 74.005333H480V167.765333z m176.469333 23.146667l2.56 4.053333c20.906667 33.429333 38.229333 73.984 51.093334 119.552l3.136 11.52 3.52 14.165334 3.242666 14.464c8.362667 39.253333 13.632 81.408 15.36 125.333333h127.189334c-11.626667-129.088-92.970667-238.101333-206.101334-289.066667zM544 167.765333L544 480h127.317333a707.136 707.136 0 0 0-5.333333-61.376l-1.770667-12.629333-2.474666-15.232c-19.754667-112.874667-65.706667-197.717333-117.717334-222.997334z","p-id":"4600",fill:o.color},null,8,B5)]))}}),Y5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},A5=["fill"],S5=["fill"],z5=T({props:{color:{type:String,default:"#00a63e"}},setup(o){return(n,a)=>(r(),d("svg",Y5,[t("path",{d:"M986.112 179.2c-12.288-12.288-31.744-12.288-44.032 0l-472.064 471.04-180.224-180.224c-12.288-12.288-31.744-12.288-44.032 0-12.288 12.288-12.288 31.744 0 44.032l202.752 201.728c6.144 6.144 12.288 9.216 22.528 9.216 9.216 0 15.36-3.072 22.528-9.216l494.592-492.544c10.24-12.288 10.24-31.744-2.048-44.032z",fill:o.color,"p-id":"11312"},null,8,A5),t("path",{d:"M1024 548.864c0-17.408-14.336-31.744-31.744-31.744-17.408 0-31.744 14.336-31.744 31.744C941.056 779.264 747.52 959.488 513.024 959.488 265.216 959.488 64.512 759.808 64.512 512c0-247.808 200.704-447.488 448.512-447.488 69.632 0 135.168 15.36 194.56 44.032h1.024c4.096 1.024 7.168 2.048 11.264 2.048 17.408 0 31.744-14.336 31.744-31.744 0-12.288-7.168-23.552-17.408-28.672C665.6 17.408 590.848 0 513.024 0 229.376 0 0 229.376 0 512s229.376 512 513.024 512c270.336 0 491.52-208.896 510.976-475.136z",fill:o.color,"p-id":"11313"},null,8,S5)]))}}),P5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},T5=["fill"],I5=T({props:{color:{type:String,default:"#e7000b"}},setup(o){return(n,a)=>(r(),d("svg",P5,[t("path",{d:"M511.9744 706.6624a57.2672 57.2672 0 0 1 56.96 57.5488c0 20.5568-10.8544 39.552-28.4672 49.8432a56.4736 56.4736 0 0 1-56.9856 0 57.6512 57.6512 0 0 1-28.4928-49.8432c0-31.7696 25.4976-57.5488 56.9856-57.5488zM190.1824 147.3024l2.4832 2.2272 614.4 614.4a30.72 30.72 0 0 1-40.96 45.696l-2.4832-2.2528-229.4528-229.504a189.6704 189.6704 0 0 0-180.864 83.8912 29.3376 29.3376 0 0 1-40.9344 7.3728 30.976 30.976 0 0 1-8.32-41.6768 248.8576 248.8576 0 0 1 170.624-109.056l-78.7968-78.7968a346.8288 346.8288 0 0 0-156.7744 112.128 29.4144 29.4144 0 0 1-50.944-8.4224 31.0784 31.0784 0 0 1 4.736-30.0544 406.9888 406.9888 0 0 1 156.1088-120.4736l-71.9872-72.0128a504.7808 504.7808 0 0 0-150.6816 120.32 29.2864 29.2864 0 0 1-41.9328 2.7904 31.0016 31.0016 0 0 1-2.9184-42.88 564.608 564.608 0 0 1 150.8608-124.928L149.2224 192.9472a30.72 30.72 0 0 1 40.96-45.6704z m321.792 211.6352a404.992 404.992 0 0 1 319.0528 154.368 30.976 30.976 0 0 1-4.3008 42.8288 29.184 29.184 0 0 1-41.9072-4.4032 345.984 345.984 0 0 0-229.7088-129.2032l-63.1552-63.104c6.656-0.3328 13.312-0.4864 20.0192-0.4864z m0-156.6976c166.1184 0 322.9952 72.448 430.4896 198.8608 10.752 12.672 9.472 31.872-2.8416 42.9312a29.184 29.184 0 0 1-42.0352-2.9184 505.344 505.344 0 0 0-385.6128-177.92 509.184 509.184 0 0 0-105.2672 11.008l-50.2272-50.2784A566.656 566.656 0 0 1 512 202.24z","p-id":"5359",fill:o.color},null,8,T5)]))}}),M5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},L5=["fill"],N5=["fill"],O5=["fill"],V5=T({props:{color:{type:String,default:"#f54900"}},setup(o){return(n,a)=>(r(),d("svg",M5,[t("path",{d:"M512 179.2l390.4 627.2H128l384-627.2m0-64c-19.2 0-44.8 12.8-51.2 32l-390.4 627.2c-25.6 44.8 6.4 96 51.2 96H896c51.2 0 83.2-57.6 51.2-96l-384-627.2c-6.4-19.2-32-32-51.2-32z",fill:o.color,"p-id":"4490"},null,8,L5),t("path",{d:"M512 640c-19.2 0-32-12.8-32-32v-192c0-19.2 12.8-32 32-32s32 12.8 32 32v192c0 19.2-12.8 32-32 32z",fill:o.color,"p-id":"4491"},null,8,N5),t("path",{d:"M512 723.2m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z",fill:o.color,"p-id":"4492"},null,8,O5)]))}}),G5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},j5=["fill"],qa=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",G5,[t("path",{d:"M511.3 116.7l339.1 193.8v387.6L511.3 891.9 172.2 698.1V310.5l339.1-193.8zM802 345.6L535.5 516.7v305.5L802 670V345.6z m-581.4 0.3V670l266.5 152.3V516.7L220.6 345.9z m434.1-87.3L401.1 405l110.3 71.4 248.9-161.5L658 256.4c-1.1 0.7-2.2 1.5-3.3 2.2z m-143.4-86L262.2 314.9l93.4 60.5c0.5-0.4 1.1-0.7 1.6-1l252.3-145.7-98.2-56.1z m0 0",fill:o.color,"p-id":"14790"},null,8,j5)]))}}),U5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},q5=["fill"],R5=["fill"],H5=["fill"],ze=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",U5,[t("path",{d:"M723 620.5C666.8 571.6 593.4 542 513 542s-153.8 29.6-210.1 78.6c-3.2 2.8-3.6 7.8-0.8 11.2l36 42.9c2.9 3.4 8 3.8 11.4 0.9C393.1 637.2 450.3 614 513 614s119.9 23.2 163.5 61.5c3.4 2.9 8.5 2.5 11.4-0.9l36-42.9c2.8-3.3 2.4-8.3-0.9-11.2zM840.4 480.4C751.7 406.5 637.6 362 513 362s-238.7 44.5-327.5 118.4c-3.4 2.8-3.8 7.9-1 11.3l36 42.9c2.8 3.4 7.9 3.8 11.2 1C308 472.2 406.1 434 513 434s205 38.2 281.2 101.6c3.4 2.8 8.4 2.4 11.2-1l36-42.9c2.8-3.4 2.4-8.5-1-11.3z","p-id":"5126",fill:o.color},null,8,q5),t("path",{d:"M957.1 341.4C835.7 241.8 680.3 182 511 182c-168.2 0-322.6 59-443.7 157.4-3.5 2.8-4 7.9-1.1 11.4l36 42.9c2.8 3.3 7.8 3.8 11.1 1.1C222 306.7 360.3 254 511 254c151.8 0 291 53.5 400 142.7 3.4 2.8 8.4 2.3 11.2-1.1l36-42.9c2.9-3.4 2.4-8.5-1.1-11.3z","p-id":"5127",fill:o.color},null,8,R5),t("path",{d:"M512 778m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"5128",fill:o.color},null,8,H5)]))}}),W5=["onSubmit"],J5={class:"actioner-dns_header"},Z5={class:"actioner-dns_body"},K5={class:"label-item"},Q5={class:"label-item_key"},X5={class:"label-item_value"},t3=["disabled"],e3={value:"manual"},a3={class:"label-item"},o3={class:"label-item_key"},n3={class:"label-item_value"},i3=["placeholder","onUpdate:modelValue"],r3={class:"label-item_key"},s3={class:"label-item_value"},d3=["placeholder","onUpdate:modelValue"],l3={key:1,class:"label-message"},u3={class:"actioner-dns_footer"},c3=["disabled"],p3={key:1,class:"actioner-dns"},f3={class:"actioner-dns_header"},m3={class:"actioner-dns_body"},g3={class:"config-message"},v3={class:"actioner-dns_footer"},b3=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(0),s=Fe(),c=s.status,x=Q(()=>s.status.proto!="static"),v=()=>{let k=c.dnsList||[];for(k=k.filter(g=>g);k.length<2;)k.push("");return k},p=E({interfaceName:c.defaultInterface||"",dnsProto:c.dnsProto||"manual",manualDnsIp:v()}),f=E(""),m=E(!1),_=()=>O(this,null,function*(){f.value="";let k={};switch(p.value.dnsProto){case"auto":break;case"manual":if(k.manualDnsIp=[],!p.value.manualDnsIp[0]){$.Error(a("\u81F3\u5C11\u9700\u8981\u586B\u5199\u4E00\u4E2ADNS"));return}k.manualDnsIp=p.value.manualDnsIp.filter(h=>h);break}k.dnsProto=p.value.dnsProto,k.interfaceName=p.value.interfaceName;const g=$.Loading(a("\u914D\u7F6E\u4E2D..."));try{const h=yield j.Guide.DnsConfig.POST(k);if(h!=null&&h.data){const{success:w,error:F}=h==null?void 0:h.data;F&&(f.value=F),(w==null||w==0)&&($.Success(a("\u914D\u7F6E\u6210\u529F")),u.value=1)}}catch(h){f.value=h}g.Close()}),y=k=>{k.preventDefault(),n.Close&&n.Close()},b=k=>{location.reload()};return(k,g)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[u.value==0?(r(),d("form",{key:0,class:"actioner-dns",onSubmit:ut(_,["prevent"])},[t("div",J5,[t("span",null,i(e(a)("DNS\u914D\u7F6E")),1)]),t("div",Z5,[t("div",K5,[t("div",Q5,[t("span",null,i(e(a)("DNS\u9009\u9879")),1)]),t("div",X5,[L(t("select",{"onUpdate:modelValue":g[0]||(g[0]=h=>p.value.dnsProto=h)},[t("option",{value:"auto",disabled:!e(x)},i(e(a)("\u81EA\u52A8\u83B7\u53D6DNS")),9,t3),t("option",e3,i(e(a)("\u81EA\u5B9A\u4E49DNS")),1)],512),[[dt,p.value.dnsProto]])])]),p.value.dnsProto=="manual"?(r(!0),d(U,{key:0},tt(p.value.manualDnsIp,(h,w)=>(r(),d("div",a3,[w==0?(r(),d(U,{key:0},[t("div",o3,[t("span",null,i(e(a)("DNS\u670D\u52A1\u5668\u5730\u5740")),1)]),t("div",n3,[L(t("input",{type:"text",placeholder:e(a)("\u8BF7\u8F93\u5165DNS\u5730\u5740"),required:"","onUpdate:modelValue":F=>p.value.manualDnsIp[w]=F},null,8,i3),[[et,p.value.manualDnsIp[w],void 0,{trim:!0}]])])],64)):(r(),d(U,{key:1},[t("div",r3,i(e(a)("\u5907\u7528DNS\u670D\u52A1\u5668\u5730\u5740")),1),t("div",s3,[L(t("input",{type:"text",placeholder:e(a)("\u5907\u7528DNS\u5730\u5740"),"onUpdate:modelValue":F=>p.value.manualDnsIp[w]=F},null,8,d3),[[et,p.value.manualDnsIp[w],void 0,{trim:!0}]])])],64))]))),256)):C("",!0),f.value?(r(),d("div",l3,i(f.value),1)):C("",!0)]),t("div",u3,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:m.value},i(e(a)("\u786E\u8BA4")),9,c3),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:y},i(e(a)("\u53D6\u6D88")),1)])],40,W5)):u.value==1?(r(),d("div",p3,[t("div",f3,[t("span",null,i(e(a)("DNS\u914D\u7F6E")),1)]),t("div",m3,[t("div",g3,i(e(a)("DNS\u914D\u7F6E\u5DF2\u4FDD\u5B58")),1)]),t("div",v3,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:b},i(e(a)("\u5B8C\u6210")),1)])])):C("",!0)]),_:1},8,["Close"]))}});var h3=N(b3,[["__scopeId","data-v-2ac87be2"]]);const Ra=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(h3,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},_3=["onSubmit"],x3={class:"actioner-dns_header"},w3={class:"actioner-dns_body"},k3={class:"label-item"},y3={class:"label-item_key"},F3={class:"label-item_value"},E3={class:"item_info"},$3={class:"label-item"},C3={class:"label-item_key"},D3={class:"label-item_value"},B3={selected:"true",value:""},Y3=["value"],A3={class:"actioner-dns_footer"},S3=["disabled"],z3={key:1,class:"actioner-dns"},P3={class:"actioner-dns_header"},T3={class:"softsource_tit"},I3={class:"actioner-dns_body"},M3={class:"finished"},L3={class:"successed"},N3={class:"btns"},O3=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(0),s=E(""),c=E(),x=E();(()=>{j.Guide.SoftSourceList.GET().then(_=>{var y,b;if((y=_==null?void 0:_.data)!=null&&y.result){const k=(b=_==null?void 0:_.data)==null?void 0:b.result;x.value=k}}).then(()=>j.Guide.GetSoftSource.GET()).then(_=>{var y,b;if((y=_==null?void 0:_.data)!=null&&y.result){const k=_.data.result;c.value=k.softSource,(b=x.value)!=null&&b.softSourceList.find(g=>g.identity==k.softSource.identity)&&(s.value=k.softSource.identity)}})})();const p=_=>{_.preventDefault(),n.Close&&n.Close()},f=_=>{const y=$.Loading(a("\u6B63\u5728\u5207\u6362\u4E2D..."));j.Guide.SoftSource.POST({softSourceIdentity:s.value}).then(b=>{if(b!=null&&b.data){if((b.data.success||0)==0){u.value=1;return}else if(b.data.error)throw b.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(b=>{$.Error(b)}).finally(()=>y.Close())},m=_=>{_.preventDefault(),location.reload()};return(_,y)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>{var b,k;return[u.value==0?(r(),d("form",{key:0,class:"actioner-dns",onSubmit:ut(f,["prevent"])},[t("div",x3,[t("span",null,i(e(a)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)]),t("div",w3,[t("div",k3,[t("div",y3,[t("span",null,i(e(a)("\u5F53\u524D\u8F6F\u4EF6\u6E90")),1)]),t("div",F3,[t("p",E3,i((b=c.value)==null?void 0:b.name),1)])]),t("div",$3,[t("div",C3,[t("span",null,i(e(a)("\u5207\u6362\u8F6F\u4EF6\u6E90")),1)]),t("div",D3,[L(t("select",{name:"",id:"","onUpdate:modelValue":y[0]||(y[0]=g=>s.value=g)},[t("option",B3,i(e(a)("\u8BF7\u9009\u62E9\u8F6F\u4EF6\u6E90")),1),(r(!0),d(U,null,tt((k=x.value)==null?void 0:k.softSourceList,(g,h)=>(r(),d("option",{value:g.identity,key:h},i(g.name),9,Y3))),128))],512),[[dt,s.value,void 0,{trim:!0}]])])])]),t("div",A3,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:s.value==""},i(e(a)("\u786E\u8BA4")),9,S3),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:p},i(e(a)("\u53D6\u6D88")),1)])],40,_3)):C("",!0),u.value==1?(r(),d("form",z3,[t("div",P3,[t("span",T3,i(e(a)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)]),t("div",I3,[t("div",M3,[D(la)]),t("p",L3,i(e(a)("\u914D\u7F6E\u6210\u529F\uFF01")),1),t("div",N3,[t("button",{class:"cbi-button cbi-button-apply softsource_successed",onClick:m},i(e(a)("\u786E\u5B9A")),1)])])])):C("",!0)]}),_:1},8,["Close"]))}});var V3=N(O3,[["__scopeId","data-v-2deed63d"]]);const Ha=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(V3,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},G3=o=>(it("data-v-500d40e5"),o=o(),rt(),o),j3={class:"info_content"},U3={key:0,class:"status_box"},q3={class:"status_name"},R3={class:"status_time"},H3={key:1,class:"status_box"},W3={class:"flex"},J3={class:"status_name"},Z3={class:"dns-btn"},K3={class:"status_time",style:{background:"#ffe2e2",color:"#c10007"}},Q3={key:2,class:"status_box"},X3={class:"flex"},t8={class:"status_name"},e8={class:"dns-btn"},a8={class:"status_time",style:{background:"#ffe2e2",color:"#c10007"}},o8={key:3,class:"status_box"},n8={class:"status_name"},i8={class:"status_time",style:{background:"#ffe2e2",color:"#c10007"}},r8={key:4,class:"status_box"},s8={class:"status_name"},d8={class:"ip_info"},l8={class:"ip_item"},u8={class:"ip_tag"},c8={class:"ip_address"},p8={class:"ip_info"},f8={class:"ip_item"},m8=G3(()=>t("div",null,"IPv6",-1)),g8={key:1,class:"ip_tag"},v8={key:0,class:"ip_address"},b8={key:1,class:"ip_address"},h8={class:"ip_info",style:{"margin-bottom":"0"}},_8={class:"ip_item"},x8={class:"ip_address"},w8=T({setup(o){const{$gettext:n}=W(),a=Fe(),l=Q(()=>a.status),u=()=>{Ra()},s=()=>{Ha()},c=E(!1),x=E(60);let v=null;const p=()=>{v!==null&&(clearInterval(v),v=null)},f=()=>{x.value>0?x.value--:p()},m=()=>{p(),v=setInterval(f,1e3)};Yt(x,w=>{w===0?c.value=!1:c.value=!0});const _=()=>{c.value=!c.value,c.value?(x.value=60,m()):(x.value=60,p())};Mt(p),Q(()=>a.deviceList);const y=mt({portList:[],load:!1}),b=w=>{switch(w){case"pppoe":return n("\u62E8\u53F7\u4E0A\u7F51");case"static":return n("\u9759\u6001\u7F51\u7EDC");case"dhcp":return"DHCP"}return w&&w.toUpperCase()},k=w=>{switch(w){case"manual":return n("\u624B\u52A8\u914D\u7F6E");case"auto":return n("\u81EA\u52A8\u83B7\u53D6");default:return""}},g=()=>{(y.load&&document.hidden?Promise.resolve():j.Network.PortList.GET().then(w=>{if(w!=null&&w.data){const{result:F}=w==null?void 0:w.data;F&&(y.portList=F.ports||[])}})).finally(()=>{y.load=!0,setTimeout(g,1e4)})};g();const h=Pt.stampForm;return(w,F)=>(r(),d("div",null,[D(Rt,{title:e(n)("\u7F51\u7EDC\u8FDE\u63A5\u548CIP\u5730\u5740"),showSettings:!1},{icon:G(()=>[D(xe,{color:"#0a0a0a",class:"icon networkIcon"})]),default:G(()=>[t("div",j3,[e(l)!=null?(r(),d(U,{key:0},[e(l).networkInfo=="netSuccess"?(r(),d("div",U3,[t("div",q3,[D(z5,{color:"#00a63e",class:"icon"}),t("span",null,i(e(n)("\u7F51\u7EDC\u8FDE\u63A5\u6B63\u5E38")),1)]),t("div",R3,i(e(h)(e(l).uptimeStamp)),1)])):e(l).networkInfo=="dnsFailed"?(r(),d("div",H3,[t("div",W3,[t("div",J3,[D(V5,{style:{width:"1.2rem",height:"1.2rem","margin-right":"4px"}}),t("span",null,i(e(n)("DNS\u9519\u8BEF")),1)]),t("div",Z3,[t("button",{class:"btn-primary",onClick:u},i(e(n)("DNS\u914D\u7F6E")),1)])]),t("div",K3,i(e(h)(e(l).uptimeStamp)),1)])):e(l).networkInfo=="softSourceFailed"?(r(),d("div",Q3,[t("div",X3,[t("div",t8,[D(qa,{color:"#9810fa",style:{width:"1.5rem",height:"1.5rem","margin-right":"4px"}}),t("span",null,i(e(n)("\u8F6F\u4EF6\u6E90\u9519\u8BEF")),1)]),t("div",e8,[t("button",{class:"btn-pink",onClick:s},i(e(n)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)])]),t("div",a8,i(e(h)(e(l).uptimeStamp)),1)])):e(l).networkInfo=="netFailed"?(r(),d("div",o8,[t("div",n8,[D(I5,{style:{width:"1.2rem",height:"1.2rem","margin-right":"4px"}}),t("span",null,i(e(n)("\u672A\u8054\u7F51")),1)]),t("div",i8,i(e(h)(e(l).uptimeStamp)),1)])):(r(),d("div",r8,[t("div",s8,[D(ze,{color:"#d08700",class:"icon"}),t("span",null,i(e(n)("\u68C0\u6D4B\u4E2D...")),1)])]))],64)):C("",!0),t("div",d8,[t("div",l8,[t("div",null,"IPv4 \uFF08"+i(e(l).defaultInterface)+"\uFF09",1),t("div",u8,i(b(e(l).proto||"")),1)]),t("div",c8,i(e(l).ipv4addr),1)]),t("div",p8,[t("div",f8,[m8,e(l).ipv6addr?(r(),d("div",{key:0,class:"ip_tag",style:{cursor:"pointer"},onClick:_},[c.value?(r(),J(C5,{key:0})):(r(),J(F5,{key:1})),nt(" "+i(e(n)("\u5DF2\u542F\u7528")),1)])):(r(),d("div",g8,i(e(n)("\u672A\u542F\u7528")),1))]),e(l).ipv6addr?(r(),d("div",v8,i(c.value?e(l).ipv6addr:"***************************************"),1)):(r(),d("div",b8,"-"))]),t("div",h8,[t("div",_8,[t("div",null,"DNS\uFF08"+i(k(e(l).dnsProto))+"\uFF09",1)]),(r(!0),d(U,null,tt(e(l).dnsList,Y=>(r(),d("div",x8,i(Y),1))),256))])])]),_:1},8,["title"])]))}});var k8=N(w8,[["__scopeId","data-v-500d40e5"]]);const y8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},F8=["fill"],ka=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",y8,[t("path",{d:"M170.666667 647.253333a128.042667 128.042667 0 1 0 85.333333 0V256c0-71.850667 49.109333-128 106.666667-128S469.333333 184.149333 469.333333 256v512c0 116.650667 84.608 213.333333 192 213.333333s192-96.682667 192-213.333333V376.746667a128.042667 128.042667 0 1 0-85.333333 0V768c0 71.850667-49.109333 128-106.666667 128S554.666667 839.850667 554.666667 768V256c0-116.650667-84.608-213.333333-192-213.333333S170.666667 139.349333 170.666667 256v391.253333zM768 256a42.666667 42.666667 0 1 1 85.333333 0 42.666667 42.666667 0 0 1-85.333333 0zM213.333333 810.666667a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z",fill:o.color,"p-id":"39967"},null,8,F8)]))}}),E8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},$8=["fill"],ca=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",E8,[t("path",{d:"M680.64 960a61.184 61.184 0 0 1-44.864-19.072c-14.72-16.192-61.568-58.24-99.84-58.24-38.016 0-85.504 42.24-99.2 57.088a61.184 61.184 0 0 1-67.328 14.08l-1.28-0.448-116.352-65.088-1.152-0.832a55.872 55.872 0 0 1-18.752-67.456c0.064-0.192 10.752-24.768 10.752-47.232a123.52 123.52 0 0 0-123.392-123.328h-4.864c-19.52 0-35.392-17.28-40.448-44.096C73.6 603.2 64 552.384 64 512.384c0-40.064 9.536-90.88 9.92-92.992 5.12-27.136 21.376-44.544 41.152-44.096h4.16A123.52 123.52 0 0 0 242.56 251.904c0-22.4-10.688-46.976-10.816-47.232a55.68 55.68 0 0 1 18.944-67.392l1.216-0.832L374.72 68.992l1.28-0.576a62.336 62.336 0 0 1 67.2 13.888c14.528 15.296 60.48 54.848 97.664 54.848 36.8 0 82.496-38.784 96.96-53.76a62.336 62.336 0 0 1 67.264-13.44l1.28 0.64 118.592 65.92 1.152 0.768a55.808 55.808 0 0 1 18.816 67.456c-0.064 0.192-10.752 24.768-10.752 47.168a123.52 123.52 0 0 0 123.392 123.392h4.096c19.84-0.448 36.096 16.96 41.216 44.096 0.384 2.112 9.92 52.928 9.92 92.992 0 40-9.536 90.88-9.92 92.992-5.12 27.136-21.376 44.48-41.216 44.096h-4.096A123.52 123.52 0 0 0 834.176 772.8c0 22.4 10.688 47.04 10.752 47.232a55.808 55.808 0 0 1-18.816 67.456l-1.216 0.832-120.64 66.624-1.28 0.576a56.32 56.32 0 0 1-22.4 4.48z m-3.648-56.832a7.68 7.68 0 0 0 3.84 0.96l112.704-62.336c-2.688-6.272-15.168-36.992-15.168-68.928a179.456 179.456 0 0 1 169.856-179.008c1.344-7.552 8.768-49.792 8.768-81.472 0-31.68-7.424-73.92-8.768-81.472a179.456 179.456 0 0 1-169.856-179.008c0-32 12.48-62.72 15.168-68.992L682.688 121.28h-0.448c-1.92 0-3.648 0.64-4.288 1.088-1.856 1.92-17.92 18.24-40.96 34.432-34.24 24.064-66.56 36.224-96.064 36.224-29.888 0-62.464-12.416-96.832-36.928a313.792 313.792 0 0 1-41.216-35.072 8.832 8.832 0 0 0-4.736-1.152l-114.816 63.104c2.752 6.4 15.168 36.992 15.168 68.928A179.456 179.456 0 0 1 128.64 430.912c-1.344 7.552-8.768 49.792-8.768 81.472 0 31.68 7.424 73.92 8.768 81.408A179.456 179.456 0 0 1 298.496 772.8c0 32.128-12.544 62.912-15.232 69.12L392 902.72a7.68 7.68 0 0 0 3.84-0.896c2.048-2.24 18.304-19.456 41.6-36.608 34.944-25.536 68.032-38.464 98.56-38.464 30.72 0 64.064 13.184 99.2 39.232 23.488 17.472 39.744 34.944 41.792 37.184zM536.32 676.032a164.48 164.48 0 0 1-164.288-164.288A164.48 164.48 0 0 1 536.32 347.52a164.48 164.48 0 0 1 164.352 164.288A164.48 164.48 0 0 1 536.32 676.096z m0-272.64c-59.776 0-108.352 48.64-108.352 108.352 0 59.776 48.64 108.416 108.352 108.416 59.84 0 108.416-48.64 108.416-108.416 0-59.776-48.64-108.416-108.416-108.416z",fill:o.color,"p-id":"4508"},null,8,$8)]))}}),C8=["value","checked","onChange"],D8={class:"content"},B8=["onMouseenter"],Y8={class:"name"},A8={key:0,class:"speed",style:{background:"#f3f4f6",color:"#4a5565"}},S8={style:{display:"flex","align-items":"center"}},z8={key:0,class:"status"},P8={key:1,class:"status"},T8={key:2,class:"speed",style:{"margin-left":"6px"}},I8=T({setup(o){const{$gettext:n}=W(),a=aa(),l=E(!1),u=ia(),s=mt({portList:[],load:!1}),c=()=>{a.push("/interfaceconfig")},x=(h,w)=>{localStorage.setItem(h,JSON.stringify(w))},v=h=>{const w=localStorage.getItem(h);try{return w?JSON.parse(w):[]}catch(F){return[]}},p="checkedPorts",f=E(v(p)),m=E([]),_=()=>{(s.load&&document.hidden?Promise.resolve():j.Network.PortList.GET().then(h=>{if(h!=null&&h.data){const{result:w}=h==null?void 0:h.data;w&&(s.portList=w.ports||[],m.value=w.ports||[])}})).finally(()=>{s.load=!0,setTimeout(_,1e4)})};_(),Yt(f,h=>{m.value=s.portList.filter(w=>h.includes(w.name)),console.log(h,"newVal"),x(p,h)});const y=(h,w)=>{w.target.checked?f.value.includes(h)||(f.value=[...f.value,h]):f.value.length>1?f.value=f.value.filter(F=>F!==h):($.Warning(n("\u81F3\u5C11\u4FDD\u7559\u4E00\u4E2A\u7F51\u7EDC\u63A5\u53E3\uFF01")),w.target.checked=!0)},b=E(null),k=(h,w)=>{u.portitemStyle.show=!0;const F=w==null?void 0:w.target;if(F){const{left:Y,top:P}=F.getBoundingClientRect();u.portitemStyle.left=Y,u.portitemStyle.top=P}u.portitemStyle.portitem=h},g=()=>{u.portitemStyle.show=!1};return(h,w)=>(r(),J(Rt,{title:e(n)("\u7F51\u7EDC\u63A5\u53E3\u72B6\u6001"),showSettings:!0,"is-settings-menu-open":l.value,"onUpdate:isSettingsMenuOpen":w[0]||(w[0]=F=>l.value=F)},{icon:G(()=>[D(ka,{color:"#0a0a0a",class:"icon interfaceIcon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:c},[D(ca,{color:"#0a0a0a",class:"icon1 interfaceIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u914D\u7F6E\u7F51\u7EDC\u63A5\u53E3")),1)])]),"settings-menu":G(()=>[t("div",null,[(r(!0),d(U,null,tt(e(s).portList,F=>(r(),d("div",{key:F.name,class:"row"},[t("input",{type:"checkbox",value:F.name,checked:f.value.includes(F.name),onChange:Y=>y(F.name,Y)},null,40,C8),t("span",null,i(F.name),1)]))),128))])]),default:G(()=>[t("div",D8,[e(s).load?(r(!0),d(U,{key:0},tt(e(s).portList,F=>(r(),d("div",{class:"item",ref_for:!0,ref_key:"el",ref:b,onMouseenter:Y=>k(F,Y),onMouseleave:g},[t("div",{class:"icon_box",style:ft({backgroundColor:F.linkState=="DOWN"?"#f3f4f6":"#dbfce7"})},[D(ka,{color:F.linkState=="DOWN"?"#99a1af":"#00a63e",class:"icon2"},null,8,["color"])],4),t("div",null,[t("div",Y8,[nt(i(F.name)+" "+i(F.interfaceNames?`(${F.interfaceNames.join(",").toLocaleUpperCase()})`:""),1),F.linkState=="DOWN"?(r(),d("div",A8,i(e(n)("\u5DF2\u65AD\u5F00")),1)):C("",!0)]),t("div",S8,[F.linkState=="DOWN"?(r(),d("div",z8,i(e(n)("\u672A\u8FDE\u63A5")),1)):(r(),d("div",P8,i(e(n)("\u5DF2\u8FDE\u63A5")),1)),F.linkSpeed?(r(),d("div",T8,i(F.linkSpeed),1)):C("",!0)])])],40,B8))),256)):C("",!0)])]),_:1},8,["title","is-settings-menu-open"]))}});var M8=N(I8,[["__scopeId","data-v-2988896b"]]);const L8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},N8=["fill"],O8=["fill"],V8=["fill"],G8=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",L8,[t("path",{d:"M123.92 555.9a32 32 0 0 1-14.82-60.38l719.19-374.9a32 32 0 0 1 29.59 56.76l-719.2 374.89a31.87 31.87 0 0 1-14.76 3.63z",fill:o.color,"p-id":"5084"},null,8,N8),t("path",{d:"M608.6 957.7a32 32 0 0 1-30.6-41.27l234.64-776.34a32 32 0 0 1 61.26 18.52L639.22 935a32 32 0 0 1-30.62 22.7zM505.92 580.44c-0.68 0-1.36 0-2.05-0.07l-381.46-24.12a32 32 0 1 1 4-63.88l381.5 24.13a32 32 0 0 1-2 63.94z",fill:o.color,"p-id":"5085"},null,8,O8),t("path",{d:"M608.14 957.32a32 32 0 0 1-30.87-23.63L475 556.82a32 32 0 1 1 61.77-16.76L639 916.93a32 32 0 0 1-22.51 39.26 31.61 31.61 0 0 1-8.35 1.13z",fill:o.color,"p-id":"5086"},null,8,V8)]))}}),j8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},U8=["fill"],q8=["fill"],R8=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",j8,[t("path",{d:"M748 469.97l-283.81 248.1c-3.96 1.98-5.94 5.94-9.9 9.9-17.82 29.71-9.9 67.34 19.8 85.16 29.71 15.84 65.35 5.94 83.18-21.79L757.9 477.89c1.98-5.95-3.96-11.88-9.9-7.92z","p-id":"9627",fill:o.color},null,8,U8),t("path",{d:"M512 181.96c-247.23 0-448.35 201.13-448.35 448.34 0 63.85 13.31 125.74 39.59 183.94 10.72 23.74 38.61 34.37 62.41 23.59 23.74-10.72 34.31-38.67 23.59-62.41C168.5 729.5 158 680.67 158 630.3c0-195.18 158.8-353.99 354-353.99 195.18 0 354 158.8 354 353.99 0 50.37-10.5 99.2-31.24 145.12-10.72 23.74-0.15 51.69 23.59 62.41 6.3 2.86 12.9 4.18 19.38 4.18 17.97 0 35.17-10.32 43.03-27.76 26.26-58.2 39.59-120.09 39.59-183.94 0-247.23-201.14-448.35-448.35-448.35z","p-id":"9628",fill:o.color},null,8,q8)]))}}),H8={width:"32",height:"32",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},W8=["fill"],J8=["fill"],Z8=["fill"],K8=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",H8,[t("path",{d:"M880.213333 395.093333a31.786667 31.786667 0 0 1-26.88-15.573333 385.706667 385.706667 0 0 0-91.52-104.32 32.426667 32.426667 0 0 1-5.12-45.013333 32 32 0 0 1 45.013334-5.12 449.92 449.92 0 0 1 106.666666 121.6A31.786667 31.786667 0 0 1 896 390.4a30.293333 30.293333 0 0 1-15.786667 4.693333zM165.12 395.093333A30.293333 30.293333 0 0 1 149.333333 390.4a31.786667 31.786667 0 0 1-11.093333-43.733333A450.56 450.56 0 0 1 522.666667 128a32 32 0 0 1 0 64A386.56 386.56 0 0 0 192 379.52a31.786667 31.786667 0 0 1-26.88 15.573333z","p-id":"17913",fill:o.color},null,8,W8),t("path",{d:"M565.333333 341.333333a32 32 0 0 1 0-64A101.76 101.76 0 0 0 661.333333 170.666667a101.76 101.76 0 0 0-96-106.666667 32 32 0 0 1 0-64A165.76 165.76 0 0 1 725.333333 170.666667a165.76 165.76 0 0 1-160 170.666666zM522.666667 1024C362.666667 1024 220.8 936.106667 139.946667 787.84 61.013333 776.746667 0 700.373333 0 608 0 507.946667 71.68 426.666667 160 426.666667a32 32 0 0 1 0 64C106.666667 490.666667 64 543.36 64 608S106.666667 725.333333 160 725.333333a31.786667 31.786667 0 0 1 28.586667 17.706667C256 878.933333 381.653333 960 522.666667 960a384 384 0 0 0 354.56-236.373333 31.146667 31.146667 0 0 1 14.506666-16 106.666667 106.666667 0 0 0 57.6-99.626667c0-64-42.666667-117.333333-96-117.333333a32 32 0 0 1 0-64c88.32 0 160 81.28 160 181.333333a170.666667 170.666667 0 0 1-81.706666 150.613333A448 448 0 0 1 522.666667 1024z","p-id":"17914",fill:o.color},null,8,J8),t("path",{d:"M394.666667 640a32 32 0 0 1-32-32v-42.666667a32 32 0 0 1 64 0v42.666667a32 32 0 0 1-32 32zM629.333333 640a32 32 0 0 1-32-32v-42.666667a32 32 0 0 1 64 0v42.666667a32 32 0 0 1-32 32zM512 822.186667A131.2 131.2 0 0 1 391.466667 746.666667a32 32 0 1 1 58.24-26.453334 70.186667 70.186667 0 0 0 124.586666 0A32 32 0 1 1 632.533333 746.666667 131.2 131.2 0 0 1 512 822.186667z","p-id":"17915",fill:o.color},null,8,Z8)]))}}),Q8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},X8=["fill"],t4=["fill"],e4=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",Q8,[t("path",{d:"M771.328 320.896H258.986667a64 64 0 0 0-63.701334 57.856l-41.386666 427.178667a64 64 0 0 0 57.472 69.888l5.12 0.256h590.592a64 64 0 0 0 64-64l-0.170667-4.394667-35.797333-428.117333a64 64 0 0 0-63.786667-58.666667z m-512.341333 42.666667h512.341333a21.333333 21.333333 0 0 1 21.290667 19.584l35.712 427.178666 0.085333 2.688c0 10.88-9.557333 20.437333-21.333333 20.437334H217.557333l-3.072-0.170667a21.162667 21.162667 0 0 1-18.176-23.210667l41.472-427.221333a21.333333 21.333333 0 0 1 21.205334-19.285333z",fill:o.color,"p-id":"8134"},null,8,X8),t("path",{d:"M685.013333 429.312a21.333333 21.333333 0 0 1 21.333334 21.333333 194.346667 194.346667 0 1 1-388.693334 0 21.333333 21.333333 0 1 1 42.666667 0 151.68 151.68 0 0 0 303.36 0 21.333333 21.333333 0 0 1 21.333333-21.333333zM512 147.882667a194.346667 194.346667 0 0 1 194.346667 194.346666 21.333333 21.333333 0 1 1-42.666667 0 151.68 151.68 0 1 0-303.36 0 21.333333 21.333333 0 1 1-42.666667 0A194.346667 194.346667 0 0 1 512 147.882667z",fill:o.color,"p-id":"8135"},null,8,t4)]))}}),a4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},o4=["fill"],n4=T({props:{color:{type:String,default:"#333333"}},setup(o){return(n,a)=>(r(),d("svg",a4,[t("path",{d:"M353.323071 246.407016L620.37222 510.637979l-265.320785 268.146133c-11.776208 11.775184-11.73425201 30.908964 0.091074 42.73429l0.001023 0c11.825326 11.82635 30.958082 11.867282 42.72815-2.930749L680.899758 535.559579c3.817955-4.273327 8.205892-9.321296 8.933463-12.045337 4.470825-11.112082 2.232854-24.76503301-6.710842-35.987632l-286.98213-286.98213c-11.875468-8.847505-31.096229-8.893554-42.922578 2.932796C341.393367 215.303624 341.439416 234.523361 353.323071 246.407016z","p-id":"5051",fill:o.color},null,8,o4)]))}}),i4={class:"header"},r4={class:"icon-wrapper"},s4={class:"content"},d4={class:"title"},l4={class:"subtitle"},u4={class:"footer"},c4={key:1,class:"extra"},p4={key:2,class:"extra badge"},f4={class:"extra_num"},m4={key:3,class:"badge"},g4=T({props:{card:{type:Object,required:!0}},setup(o){const{$gettext:n}=W(),a={navigation:{component:G8,props:{color:"#ffffff"}},wifi:{component:ze,props:{color:"#ffffff"}},topology:{component:Ga,props:{color:"#ffffff"}},speed:{component:R8,props:{color:"#ffffff"}},baby:{component:K8,props:{color:"#ffffff"}},appStore:{component:e4,props:{color:"#ffffff"}}};return(l,u)=>(r(),d("div",{class:st(["feature-card",o.card.color]),onClick:u[0]||(u[0]=s=>l.$emit("click",o.card))},[t("div",null,[t("div",i4,[t("div",r4,[Et(l.$slots,"icon",{},()=>{var s;return[o.card.icon&&a[o.card.icon]?(r(),J(Pa((s=a[o.card.icon])==null?void 0:s.component),_o({key:0},a[o.card.icon].props,{class:"icon-svg"}),null,16)):C("",!0)]},!0)])]),t("div",s4,[t("div",d4,i(o.card.title),1),t("div",l4,i(o.card.subtitle),1)]),t("div",u4,[o.card.status?(r(),d("span",{key:0,class:st(["status",{active:o.card.isActive}])},i(o.card.status),3)):C("",!0),o.card.extra?(r(),d("div",c4,i(o.card.extra),1)):C("",!0),o.card.num?(r(),d("div",p4,[t("span",f4,i(o.card.num),1),nt(" "+i(e(n)("\u53F0\u8BBE\u5907\u5728\u7EBF")),1)])):C("",!0),o.card.tag?(r(),d("span",m4,i(o.card.tag),1)):C("",!0)])]),D(n4,{class:"right-arrow",color:"#99a1af"})],2))}});var v4=N(g4,[["__scopeId","data-v-adc89aea"]]);const b4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},h4=["fill"],_4=["fill"],x4=["fill"],w4=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",b4,[t("path",{d:"M298.894222 482.417778c-35.271111 0-65.649778 12.231111-90.624 36.636444-25.031111 24.462222-37.603556 54.158222-37.603555 88.746667v87.153778h60.359111V607.857778c0-18.318222 6.599111-33.848889 19.854222-46.762667a65.991111 65.991111 0 0 1 48.014222-19.456h426.382222c18.887111 0 34.759111 6.428444 48.014223 19.399111 13.312 13.027556 19.854222 28.444444 19.854222 46.819556v87.04h60.359111v-87.04c0-34.702222-12.572444-64.341333-37.546667-88.746667a125.098667 125.098667 0 0 0-90.680889-36.750222H298.894222z",fill:o.color,"p-id":"8894"},null,8,h4),t("path",{d:"M488.049778 334.734222h47.900444V512h-47.900444V334.734222z",fill:o.color,"p-id":"8895"},null,8,_4),t("path",{d:"M597.333333 142.222222v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666zM284.444444 711.111111H113.777778v170.666667h170.666666v-170.666667z m-170.666666-56.888889h170.666666a56.888889 56.888889 0 0 1 56.888889 56.888889v170.666667a56.888889 56.888889 0 0 1-56.888889 56.888889H113.777778a56.888889 56.888889 0 0 1-56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 1 56.888889-56.888889zM910.222222 711.111111v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666z",fill:o.color,"p-id":"8896"},null,8,x4)]))}}),k4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},y4=["fill"],F4=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",k4,[t("path",{d:"M853.333333 768a42.666667 42.666667 0 0 1 0 85.333333h-341.333333a42.666667 42.666667 0 0 1 0-85.333333h341.333333zM200.832 183.168L426.666667 409.002667l30.165333 30.165333a42.666667 42.666667 0 0 1 0 60.330667l-14.634667 14.634666-241.365333 241.365334a42.666667 42.666667 0 1 1-60.330667-60.330667l225.792-225.877333-225.792-225.792a42.666667 42.666667 0 0 1 60.330667-60.330667z",fill:o.color,"p-id":"5439"},null,8,y4)]))}}),E4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},$4=["fill"],C4=["fill"],Je=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",E4,[t("path",{d:"M531.216667 77.336366c0 0-8.147564-10.313903-16.938788-10.709923-8.791224-0.396019-18.070564 9.133008-18.070564 9.133008-96.577592 77.010955-246.112304 97.021707-345.075223 110.281709 0 0-14.838963 2.062985-22.257933 3.094478-11.189853 1.555425-21.184485 3.125177-27.569916 8.241708-6.385431 5.117554-5.999644 18.659989-5.999644 18.659989 0 476.176097 84.005252 627.530246 410.888138 736.639247 0 0 4.438079 1.619894 8.085142 1.373277 3.647063-0.042979 7.195889-1.980097 7.195889-1.980097 324.821947-108.462271 408.826176-259.857353 408.826176-736.033449 0 0-1.264806-13.920034-6.709819-18.659989-5.445012-4.739954-13.812587-6.433526-24.073278-7.864108-8.308223-1.157359-24.923646-3.473101-24.923646-3.473101C775.550465 172.782182 626.055662 152.771429 531.216667 77.336366zM486.388692 884.038318c-260.550131-96.030124-328.494593-228.237191-332.62875-628.806309-0.045025-4.400217 0.357134-6.599302 1.663896-8.667404 1.306762-2.068102 3.713578-2.836605 3.713578-2.836605 91.436502-12.233626 223.901443-29.972639 328.759629-91.828428 8.445346-4.982478 17.749246-11.634991 25.087375-11.634991 7.338129 0 15.890922 6.689353 24.289196 11.686157 103.57496 61.632709 234.845703 79.437214 327.058894 91.777263 0 0 4.41659 0.768503 5.910617 2.836605 1.494027 2.068102 2.324952 4.094248 2.309602 6.16542-2.819209 380.861264-55.186903 527.575744-329.520969 630.016881-9.733689 3.634784-19.105127 8.231475-27.533077 8.231475C507.070734 890.978381 495.039723 887.22694 486.388692 884.038318z",fill:o.color,"p-id":"5082"},null,8,$4),t("path",{d:"M763.882728 456.981942c-32.383548 146.597823-101.757568 233.810117-243.305375 299.834856-14.22191 1.440815-25.321712 13.450337-25.321712 28.051893 0 15.572674 12.624529 28.197202 28.197202 28.197202 4.321422 0 8.41567-0.972141 12.076036-2.709715l0.143263 0.393973c158.820192-71.15048 242.084571-167.561273 280.661168-345.308537 0.969071-2.781346 1.496074-5.7694 1.496074-8.881274 0-14.898315-12.07706-26.975375-26.975375-26.975375-14.898315 0-26.975375 12.07706-26.975375 26.975375C763.878634 456.701556 763.879658 456.841749 763.882728 456.981942z",fill:o.color,"p-id":"5083"},null,8,C4)]))}}),D4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},B4=["fill"],Y4=["fill"],Wa=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",D4,[t("path",{d:"M762 942H262c-71.68 0-130-58.32-130-130V212c0-71.68 58.32-130 130-130h350c16.56 0 30 13.43 30 30v151.56c0 38.59 31.41 70 70 70h150c16.56 0 30 13.43 30 30V812c0 71.68-58.32 130-130 130zM262 142c-38.59 0-70 31.41-70 70v600c0 38.59 31.41 70 70 70h500c38.59 0 70-31.41 70-70V393.57H712c-71.68 0-130-58.32-130-130V142H262z","p-id":"13142",fill:o.color},null,8,B4),t("path",{d:"M862 393.57H712c-71.68 0-130-58.32-130-130V112c0-12.15 7.32-23.11 18.55-27.73a29.938 29.938 0 0 1 32.71 6.59l250 251.56c8.55 8.59 11.07 21.47 6.43 32.67s-15.58 18.48-27.69 18.48zM642 184.75v78.82c0 38.59 31.41 70 70 70h77.89L642 184.75zM487 379.5H312c-16.57 0-30-13.43-30-30s13.43-30 30-30h175c16.57 0 30 13.43 30 30s-13.43 30-30 30zM712 542H312c-16.57 0-30-13.43-30-30s13.43-30 30-30h400c16.56 0 30 13.43 30 30s-13.44 30-30 30zM712 704.5H312c-16.57 0-30-13.44-30-30s13.43-30 30-30h400c16.56 0 30 13.44 30 30s-13.44 30-30 30z","p-id":"13143",fill:o.color},null,8,Y4)]))}}),Ja=/\d+\.\d+\.\d+\.\d+/,A4=o=>Ja.test(o)&&ye.IPv4.isValid(o),Ut=o=>{const n=ye.IPv4.parse(o).toByteArray();return n[0]<<24|n[1]<<16|n[2]<<8|n[3]},ya=o=>ye.fromByteArray([o>>24&255,o>>16&255,o>>8&255,o&255]).toString(),S4=o=>{if(!Ja.test(o)||!ye.IPv4.isIPv4(o))return!1;let n=0,a=Ut(o);for(let l=31;l>=0&&(a&1<{let u=Ut(o)&Ut(n),s=Ut(a),c=Ut(l),v=~Ut(n);return su+1&&c{let a=Ut(n),l=Ut(o)&a,u=~a,s;return u>=105?(s=l|u-5,l=l|100):u>=3?(s=l|u-1,l=l|2):(l=l|1,s=l),[ya(l),ya(s)]},T4=o=>ye.IPv4.subnetMaskFromPrefixLength(o).toString();var It={isValidMask:S4,isValidIPv4:A4,isValidMaskRange:z4,calcMaskRange:P4,prefixToMask:T4};const pa=o=>(it("data-v-0d919a1e"),o=o(),rt(),o),I4=["onSubmit"],M4={class:"actioner-dns_header"},L4={class:"actioner-dns_body"},N4={class:"label-item"},O4={class:"label-item_key"},V4={class:"label-item_value"},G4={class:"label-item"},j4={class:"label-item_key"},U4={class:"label-item_value"},q4={key:0,class:"chose_dhcp"},R4={key:0,class:"dhcp_info"},H4={key:1,class:"dhcp_info"},W4={class:"label-item"},J4={class:"label-item_key"},Z4={class:"label-item_value"},K4={class:"label-item"},Q4={class:"label-item_key"},X4={class:"label-item_value"},tp={class:"actioner-dns_footer"},ep=["disabled"],ap={key:1,class:"actioner-dns"},op={class:"actioner-dns_header"},np={class:"actioner-dns_body"},ip={key:0,class:"setting_status"},rp=pa(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128"},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063"})])],-1)),sp={class:"config-message"},dp=["href"],lp={key:1,class:"setting_status"},up=pa(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063200324",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5898",width:"128",height:"128"},[t("path",{d:"M549.044706 512l166.189176-166.249412a26.383059 26.383059 0 0 0 0-36.98447 26.383059 26.383059 0 0 0-37.044706 0L512 475.015529l-166.249412-166.249411a26.383059 26.383059 0 0 0-36.98447 0 26.383059 26.383059 0 0 0 0 37.044706L475.015529 512l-166.249411 166.249412a26.383059 26.383059 0 0 0 0 36.98447 26.383059 26.383059 0 0 0 37.044706 0L512 548.984471l166.249412 166.249411a26.383059 26.383059 0 0 0 36.98447 0 26.383059 26.383059 0 0 0 0-37.044706L548.984471 512zM512 1024a512 512 0 1 1 0-1024 512 512 0 0 1 0 1024z",fill:"#E84335","p-id":"5899"})])],-1)),cp={class:"config-message"},pp={key:2,class:"setting_status"},fp=pa(()=>t("div",{class:"success_icon"},[t("svg",{width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])])],-1)),mp={class:"config-message"},gp=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(0),s=E({lanIp:"",netMask:"255.255.255.0",enableDhcp:!1,dhcpStart:"",dhcpEnd:""});E("");const c=E(!1);E(!0),E(!1);const x=E(""),v=E(2),p=E(!1),f=E("timeout");let m=!0;(()=>{j.Guide.GetLan.GET().then(h=>{h.data.result&&(p.value=h.data.result.enableDhcp||!1,h.data.result.enableDhcp=!1,s.value=h.data.result,h.data.result.lanIp!==location.hostname&&(m=!1))})})();const y=()=>{const h=s.value;if(!It.isValidIPv4(h.lanIp)){$.Warning(a("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF"));return}if(!It.isValidMask(h.netMask)){$.Warning(a("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF"));return}const w=It.calcMaskRange(h.lanIp,h.netMask);h.dhcpStart=w[0],h.dhcpEnd=w[1],s.value=h},b=()=>{const h=s.value;if(!It.isValidIPv4(h.lanIp)){$.Warning(a("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF"));return}if(!It.isValidMask(h.netMask)){$.Warning(a("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF"));return}if(h.enableDhcp&&!(It.isValidIPv4(h.dhcpStart)&&It.isValidIPv4(h.dhcpEnd)&&It.isValidMaskRange(h.lanIp,h.netMask,h.dhcpStart,h.dhcpEnd))){$.Warning(a("DHCP\u7684IP\u6C60\u683C\u5F0F\u9519\u8BEF\u6216\u8D85\u51FA\u5B50\u7F51\u8303\u56F4"));return}const w=$.Loading(a("\u6B63\u5728\u914D\u7F6E\u2026\u8BF7\u7A0D\u7B49"),30);let F=0;const Y=A=>{f.value=A,u.value=1,F=1,w.Close()},P=()=>{const A=new Date().getTime()+3e4,B=m?location.protocol+"//"+h.lanIp+(location.port?":"+location.port:""):location.origin,S=B+"/luci-static/resources/icons/loading.gif",R=()=>{F==0&&(new Date().getTime()>A?Y("timeout"):window.setTimeout(I,2e3))},V=()=>{F==0&&(x.value=B+location.pathname,Y("success"),window.setTimeout(()=>{v.value=1},1e3),window.setTimeout(()=>{location.href=x.value},2e3))},I=()=>{if(F!=0)return;console.log("check online ",S);const M=new Image;M.onload=V,M.onerror=R,M.src=S};window.setTimeout(I,5e3)};j.Guide.LanIp.POST(h).then(A=>{var B;if(A!=null&&A.data){if((A.data.success||0)==0)return;if((B=A.data)!=null&&B.error)throw A.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(A=>{F==0&&(Y("fail"),$.Error(A))}),P(),window.setTimeout(()=>{F==0&&Y("timeout")},3e4)},k=h=>{h.preventDefault(),n.Close&&n.Close()},g=h=>{location.reload()};return(h,w)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[u.value==0?(r(),d("form",{key:0,class:"actioner-dns",onSubmit:ut(b,["prevent"])},[t("div",M4,[t("span",null,i(e(a)("\u5185\u7F51\u914D\u7F6E")),1)]),t("div",L4,[t("div",N4,[t("div",O4,[t("span",null,i(e(a)("IPv4\u5730\u5740")),1)]),t("div",V4,[L(t("input",{type:"text",placeholder:"192.168.100.1",required:"","onUpdate:modelValue":w[0]||(w[0]=F=>s.value.lanIp=F),onChange:y},null,544),[[et,s.value.lanIp,void 0,{trim:!0}]])])]),t("div",G4,[t("div",j4,[t("span",null,i(e(a)("IPv4\u5B50\u7F51\u63A9\u7801")),1)]),t("div",U4,[L(t("input",{type:"text",placeholder:"255.255.255.0",required:"","onUpdate:modelValue":w[1]||(w[1]=F=>s.value.netMask=F),onChange:y},null,544),[[et,s.value.netMask,void 0,{trim:!0}]])])]),p.value?(r(),d("div",q4,[D(Na,{modelValue:s.value.enableDhcp,"onUpdate:modelValue":w[2]||(w[2]=F=>s.value.enableDhcp=F)},{default:G(()=>[s.value.enableDhcp?(r(),d("span",R4,i(e(a)("\u4FEE\u6539DHCP\u670D\u52A1")),1)):(r(),d("span",H4,i(e(a)("\u4FDD\u6301DHCP\u670D\u52A1\u8BBE\u7F6E")),1))]),_:1},8,["modelValue"])])):C("",!0),s.value.enableDhcp?(r(),d(U,{key:1},[t("div",W4,[t("div",J4,[t("span",null,i(e(a)("IP\u6C60\u8D77\u59CB\u5730\u5740")),1)]),t("div",Z4,[L(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":w[3]||(w[3]=F=>s.value.dhcpStart=F)},null,512),[[et,s.value.dhcpStart,void 0,{trim:!0}]])])]),t("div",K4,[t("div",Q4,[t("span",null,i(e(a)("IP\u6C60\u7ED3\u675F\u5730\u5740")),1)]),t("div",X4,[L(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":w[4]||(w[4]=F=>s.value.dhcpEnd=F)},null,512),[[et,s.value.dhcpEnd,void 0,{trim:!0}]])])])],64)):C("",!0)]),t("div",tp,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:c.value},i(e(a)("\u786E\u8BA4")),9,ep),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:k},i(e(a)("\u53D6\u6D88")),1)])],40,I4)):u.value==1?(r(),d("div",ap,[t("div",op,[t("span",null,i(e(a)("\u66F4\u6362\u914D\u7F6E")),1)]),t("div",np,[f.value=="success"?(r(),d("div",ip,[rp,t("div",sp,i(e(a)("\u914D\u7F6E\u6210\u529F")),1),t("a",{href:x.value,class:"NewAdress"},i(e(a)("%{ countdown }s\u540E \u8DF3\u8F6C\u65B0\u5730\u5740",{countdown:""+v.value})),9,dp)])):f.value=="fail"?(r(),d("div",lp,[up,t("div",cp,i(e(a)("\u914D\u7F6E\u5931\u8D25")),1),t("p",null,i(e(a)("\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E")),1),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:g},i(e(a)("\u6211\u77E5\u9053\u4E86")),1)])):f.value=="timeout"?(r(),d("div",pp,[fp,t("div",mp,i(e(a)("\u914D\u7F6E\u8D85\u65F6")),1),t("p",null,i(e(a)("\u8DEF\u7531\u5668 IP \u53EF\u80FD\u5DF2\u7ECF\u4FEE\u6539\u6210\u529F\u3002\u82E5\u5237\u65B0\u9875\u9762\u5931\u8D25\uFF0C\u8BF7\u91CD\u65B0\u8FDE\u63A5\u8DEF\u7531\u5668\uFF0C\u5426\u5219\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E\u3002")),1),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:g},i(e(a)("\u5237\u65B0\u9875\u9762")),1)])):C("",!0)])])):C("",!0)]),_:1},8,["Close"]))}});var vp=N(gp,[["__scopeId","data-v-0d919a1e"]]);const bp=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(vp,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},hp={key:0,class:"actioner-dns"},_p={class:"actioner-dns_header"},xp={class:"actioner-dns_body"},wp={class:"sandbox_info"},kp={key:0,class:"disk_loading_icon"},yp={class:"disk_loading_info"},Fp={key:1,class:"disk_tips"},Ep={class:"label-item"},$p={class:"label-item_key"},Cp={class:"label-item_value"},Dp={value:""},Bp=["value"],Yp={class:"label-item"},Ap={class:"label-item_key"},Sp={class:"label-item_value"},zp={selected:"true",value:""},Pp=["value","disabled"],Tp={class:"sandbox_tips"},Ip={class:"sandbox_info timeout"},Mp={class:"sandbox_roboot_tips"},Lp={class:"sandbox_roboot_refresh"},Np={key:0,class:"actioner-dns_footer"},Op=["disabled"],Vp={key:1,class:"actioner-tips"},Gp={class:"actioner-tips_header"},jp={class:"actioner-tips_body"},Up={class:"sandbox_info"},qp={class:"actioner-tips_footer"},Rp={key:2,class:"actioner-tips"},Hp={class:"actioner-tips_header"},Wp={class:"actioner-tips_body"},Jp={class:"sandbox_info"},Zp={class:"actioner-tips_footer"},Kp=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(0);E("disk");const s=E(""),c=E(3),x=E(""),v=E([]),p=E(""),f=E(null);(()=>{j.Nas.SandboxDisks.GET().then(F=>{var Y;if(F!=null&&F.data&&(Y=F.data)!=null&&Y.result){f.value=F.data.result;return}throw a("\u52A0\u8F7D\u78C1\u76D8\u4FE1\u606F\u5931\u8D25")}).catch(F=>{s.value=F,u.value=3})})();const _=()=>j.System.Reboot.POST({name:x.value,path:p.value}).then(F=>{var Y;if(!(F!=null&&F.data&&(((Y=F==null?void 0:F.data)==null?void 0:Y.success)||0)==0))throw a("\u672A\u77E5\u9519\u8BEF")}),y=F=>{var Y,P;p.value="",v.value=x.value&&((P=(Y=f.value)==null?void 0:Y.disks.find(A=>A.path==x.value))==null?void 0:P.childrens)||[]},b=()=>{c.value>0&&(c.value-=1,window.setTimeout(b,1e3))},k=F=>{F.preventDefault(),n.Close&&n.Close()},g=()=>{new Promise((F,Y)=>{const P="/luci-static/resources/icons/loading.gif",A=()=>{window.setTimeout(B,2e3)},B=()=>{const S=new Image;S.onload=F,S.onerror=A,S.src=P};window.setTimeout(B,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},h=F=>{const Y=$.Loading(a("\u914D\u7F6E\u6C99\u7BB1\u91CD\u542F\u4E2D..."));j.Nas.Sandbox.POST({path:p.value}).then(P=>{var A;if(P!=null&&P.data){if((P.data.success||0)==0)return u.value=2,window.setTimeout(b,1e3),_();if((A=P.data)!=null&&A.error)throw P.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).then(g).catch(P=>$.Warning(P)).finally(()=>Y.Close())},w=()=>{u.value=0};return(F,Y)=>{const P=ht("icon-loading");return r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[u.value==0||u.value==2?(r(),d("div",hp,[t("div",_p,[t("span",null,i(e(a)("\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",xp,[t("p",wp,i(e(a)("\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4 Docker \u548C\u786C\u76D8\u7684\u6570\u636E")),1),u.value==0?(r(),d(U,{key:0},[f.value?C("",!0):(r(),d("div",kp,[D(P,{size:38,color:"currentColor"}),t("span",yp,i(e(a)("\u6B63\u5728\u52A0\u8F7D\u4E2D...")),1)])),f.value&&f.value.disks.length==0?(r(),d("div",Fp,[D(zt),t("span",null,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u6302\u8F7D\u7684\u78C1\u76D8\u4FE1\u606F\uFF0C\u8BF7\u5148\u63D2\u4E0A\u78C1\u76D8\uFF0C\u5EFA\u8BAE\u4F7F\u7528U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378")),1)])):C("",!0),f.value&&f.value.disks.length>0?(r(),d(U,{key:2},[t("div",Ep,[t("div",$p,[t("span",null,i(e(a)("\u76EE\u6807\u78C1\u76D8\uFF08\u5EFA\u8BAE\u9009\u62E9U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378\uFF09")),1)]),t("div",Cp,[L(t("select",{name:"",id:"",onChange:y,"onUpdate:modelValue":Y[0]||(Y[0]=A=>x.value=A)},[t("option",Dp,i(e(a)("\u8BF7\u9009\u62E9\u76EE\u6807\u78C1\u76D8")),1),(r(!0),d(U,null,tt(f.value.disks,(A,B)=>(r(),d("option",{value:A.path,key:B},i(A.venderModel)+"\uFF08"+i(A.size)+"\uFF09 ",9,Bp))),128))],544),[[dt,x.value]])])]),t("div",Yp,[t("div",Ap,[t("span",null,i(e(a)("\u76EE\u6807\u5206\u533A\uFF08\u5206\u533A\u5927\u5C0F\u987B\u5927\u4E8E2G\uFF0C\u5C06\u6B64\u5206\u533A\u4F5C\u4E3A\u5916\u90E8 overlay \u4F7F\u7528\uFF09")),1)]),t("div",Sp,[L(t("select",{name:"",id:"","onUpdate:modelValue":Y[1]||(Y[1]=A=>p.value=A)},[t("option",zp,i(e(a)("\u8BF7\u9009\u62E9\u76EE\u6807\u5206\u533A")),1),(r(!0),d(U,null,tt(v.value,(A,B)=>(r(),d("option",{value:A.path,key:B,disabled:A.sizeInt<(1<<30)*1||A.isSystemRoot},i(A.name)+"\uFF08"+i(A.filesystem||e(a)("\u672A\u683C\u5F0F\u5316"))+"\uFF09"+i(A.total),9,Pp))),128))],512),[[dt,p.value]])])]),t("div",Tp,[D(zt),t("span",null,i(e(a)("\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E")),1)])],64)):C("",!0)],64)):C("",!0),u.value==2?(r(),d(U,{key:1},[t("p",Ip,[nt(i(e(a)("\u5373\u5C06\u91CD\u542F\u8BBE\u5907"))+" ",1),t("span",null,"\uFF08"+i(c.value)+"s\uFF09",1)]),t("p",Mp,[nt(i(e(a)("\u7B49\u5F85\u8BBE\u5907\u91CD\u542F\uFF0C\u91CD\u542F\u5B8C\u6210\u540E")),1),t("span",Lp,i(e(a)("\u8BF7\u5237\u65B0\u754C\u9762")),1)])],64)):C("",!0)]),u.value==0?(r(),d("div",Np,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:!p.value,onClick:Y[2]||(Y[2]=A=>u.value=1)},i(e(a)("\u5F00\u542F\u6C99\u7BB1")),9,Op),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:k},i(e(a)("\u53D6\u6D88")),1)])):C("",!0)])):C("",!0),u.value==1?(r(),d("div",Vp,[t("div",Gp,[t("span",null,i(e(a)("\u6E29\u99A8\u63D0\u793A")),1)]),t("div",jp,[t("p",Up,i(e(a)("\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E\uFF0C\u5E76\u683C\u5F0F\u5316\u6210EXT4\uFF0C\u968F\u540E\u81EA\u52A8\u91CD\u542F\u8FDB\u5165\u6C99\u7BB1\u6A21\u5F0F\uFF0C\u662F\u5426\u7EE7\u7EED\uFF1F")),1)]),t("div",qp,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},i(e(a)("\u7EE7\u7EED")),1),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},i(e(a)("\u53D6\u6D88")),1)])])):C("",!0),u.value==3?(r(),d("div",Rp,[t("div",Hp,[t("span",null,i(e(a)("\u9519\u8BEF")),1)]),t("div",Wp,[t("p",Jp,i(s.value),1)]),t("div",Zp,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},i(e(a)("\u53D6\u6D88")),1)])])):C("",!0)]),_:1},8,["Close"])}}});var Qp=N(Kp,[["__scopeId","data-v-59ad49e6"]]);const Xp=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(Qp,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},t7={key:0,class:"actioner-dns"},e7={class:"actioner-dns_header"},a7={class:"actioner-dns_body"},o7={class:"sandbox_info"},n7={class:"sandbox_environment"},i7={class:"sandbox_environment_info"},r7={class:"sandbox_environment_reboot"},s7=["innerHTML"],d7={class:"actioner-dns_footer"},l7=["disabled"],u7=["disabled"],c7=["disabled"],p7=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(0),s=E(!1),c=()=>{new Promise((m,_)=>{const y="/luci-static/resources/icons/loading.gif",b=()=>{window.setTimeout(k,2e3)},k=()=>{const g=new Image;g.onload=m,g.onerror=b,g.src=y};window.setTimeout(k,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},x=()=>{s.value=!0;const m=$.Loading(a("\u63D0\u4EA4\u4E2D..."));j.Nas.SandboxCommit.POST().then(_=>{var y,b;if(_!=null&&_.data)if((((y=_==null?void 0:_.data)==null?void 0:y.success)||0)==0){$.Loading(a("\u8BBE\u5907\u91CD\u542F\u4E2D..."));return}else(b=_==null?void 0:_.data)!=null&&b.error&&alert(_.data.error);throw a("\u672A\u77E5\u9519\u8BEF")}).then(c).catch(_=>{$.Error(_),s.value=!1}).finally(()=>m.Close())},v=()=>{s.value=!0;const m=$.Loading(a("\u91CD\u7F6E\u4E2D..."));j.Nas.SandboxReset.POST().then(_=>{var y,b;if(_!=null&&_.data)if((((y=_==null?void 0:_.data)==null?void 0:y.success)||0)==0){$.Loading(a("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740"));return}else(b=_==null?void 0:_.data)!=null&&b.error&&alert(_.data.error);throw a("\u672A\u77E5\u9519\u8BEF")}).then(c).catch(_=>{$.Error(_),s.value=!1}).finally(()=>m.Close())},p=()=>{if(!confirm(a("\u786E\u5B9A\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E\uFF1F\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u9700\u8981\u91CD\u65B0\u683C\u5F0F\u5316\u76F8\u5E94\u78C1\u76D8\u5206\u533A")))return;s.value=!0;const m=$.Loading(a("\u6267\u884C\u4E2D..."));j.Nas.SandboxExit.POST().then(_=>{var y,b;if(_!=null&&_.data)if((((y=_==null?void 0:_.data)==null?void 0:y.success)||0)==0){$.Loading(a("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740"));return}else(b=_==null?void 0:_.data)!=null&&b.error&&alert(_.data.error);throw a("\u672A\u77E5\u9519\u8BEF")}).then(c).catch(_=>{$.Error(_),s.value=!1}).finally(()=>m.Close())},f=m=>{m.preventDefault(),n.Close&&n.Close()};return(m,_)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[u.value==0?(r(),d("div",t7,[t("div",e7,[t("span",null,i(e(a)("\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",a7,[t("p",o7,i(e(a)("\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4 Docker \u548C\u786C\u76D8\u7684\u6570\u636E")),1),t("div",n7,[t("p",null,i(e(a)("\u5F53\u524D\u5904\u4E8E\u6C99\u7BB1\u73AF\u5883\uFF1A")),1),t("p",null,i(e(a)("1\u3001\u70B9\u51FB\u201C\u63D0\u4EA4\u201D\u53EF\u5C06\u53D8\u66F4\u5408\u5E76\u5230\u975E\u6C99\u7BB1\u73AF\u5883")),1),t("p",null,i(e(a)("2\u3001\u70B9\u51FB\u201C\u91CD\u7F6E\u201D\u53EF\u5C06\u6C99\u7BB1\u6062\u590D\u5230\u521D\u59CB\u72B6\u6001")),1),t("p",null,i(e(a)("3\u3001\u70B9\u51FB\u201C\u9000\u51FA\u201D\u53EF\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u5E76\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E")),1)]),t("div",i7,[nt(i(e(a)("\u4EE5\u4E0A\u64CD\u4F5C\u90FD\u5C06\u91CD\u542F\u8BBE\u5907\uFF0C\u8BBE\u5907\u91CD\u542F\u5B8C\u6210\u540E\u4F1A\u81EA\u52A8\u5237\u65B0\u9875\u9762\u3002\u5982\u679C IP \u53D8\u5316\u53EF\u80FD\u9700\u8981")),1),t("span",r7,i(e(a)("\u624B\u52A8\u5728\u5730\u5740\u680F\u8F93\u5165\u5730\u5740")),1),t("p",{class:"sandbox_environment_tex",innerHTML:e(a)("\u5982\u9700\u4E34\u65F6\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u8BF7\u5C06\u8BBE\u5907\u5173\u673A\u540E\u62D4\u51FA\u76F8\u5173\u78C1\u76D8\uFF0C\u542F\u52A8\u524D\u63D2\u5165\u76F8\u5173\u78C1\u76D8\u53EF\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u3002
\u6CE8\u610F\u4E34\u65F6\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\u4EE5\u540E\u5347\u7EA7\u56FA\u4EF6\u4F1A\u5BFC\u81F4\u4E4B\u524D\u7684\u6C99\u7BB1\u6570\u636E\u65E0\u6548",{},!0)},null,8,s7)])]),t("div",d7,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:x,disabled:s.value},i(e(a)("\u63D0\u4EA4")),9,l7),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:v,disabled:s.value},i(e(a)("\u91CD\u7F6E")),9,u7),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:p,disabled:s.value},i(e(a)("\u9000\u51FA")),9,c7),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},i(e(a)("\u53D6\u6D88")),1)])])):C("",!0)]),_:1},8,["Close"]))}});var f7=N(p7,[["__scopeId","data-v-3e084f0f"]]);const m7=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(f7,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},g7={class:"item_container"},v7=["onClick","title"],b7={class:"renew"},h7={key:0},_7={key:1,style:{display:"inline-block","margin-left":"4px"}},x7={class:"app-update-button-menu"},w7=["onClick"],k7={class:"app-update-menu-item"},y7={key:0,class:"app-update-menu-item-loading"},F7={class:"dns_txt"},E7={key:0,style:{display:"inline-block","margin-left":"4px"}},$7=T({setup(o){var P,A;const{$gettext:n}=W(),a=E(!0);(A=(P=window.quickstart_configs)==null?void 0:P.update)!=null&&A.disable&&(a.value=!1);const l=E(!1),u=E(a.value),s=E(!1),c=Me(),x=Fe(),v=Q(()=>x.status),p=E(),f=()=>{Ra()};Yt(u,B=>{s.value=!0,j.System.AutoCheckUpdate.POST({enable:B}).catch(S=>{$.Warning(S)}).finally(()=>{s.value=!1})});const m=()=>{window.location.href="/cgi-bin/luci/admin/system/ota"},_=()=>{window.location.href="/cgi-bin/luci/admin/status/logs"},y=()=>{window.location.href="/cgi-bin/luci/admin/store/pages/maintance"},b=()=>{Xp()},k=()=>{m7()},g=()=>{alert(n("\u8BE5\u56FA\u4EF6\u4E0D\u652F\u6301\u6C99\u7BB1\u6A21\u5F0F"))},h=()=>{bp()},w=()=>{Ha()},F=()=>{var B,S,R,V;window.open(`${(S=(B=window.quickstart_configs)==null?void 0:B.ttyd)!=null&&S.ssl?"https":"http"}://${window.location.hostname}:${((V=(R=window.quickstart_configs)==null?void 0:R.ttyd)==null?void 0:V.port)||7681}/`,"_blank")},Y=()=>{l.value=!l.value};return a.value&&setTimeout(()=>{c.requestCheckUpdate()},1100),Kt("sandbox")&&j.Nas.GetSandbox.GET().then(S=>{var R,V,I;S!=null&&S.data&&((((R=S==null?void 0:S.data)==null?void 0:R.success)||0)==0?(V=S==null?void 0:S.data)!=null&&V.result&&(p.value=S.data.result):(I=S==null?void 0:S.data)!=null&&I.error&&alert(S.data.error))}).catch(S=>$.Warning(S)),(B,S)=>{var I,M,H,bt,Bt,gt;const R=ht("icon-loading"),V=ht("switch-box");return r(),d("div",g7,[t("div",{class:"item",style:{backgroundColor:"#f3f7fd"},onClick:h},[D(w4,{color:"#2b7fff",class:"icon"}),t("span",null,i(e(n)("\u5185\u7F51\u914D\u7F6E")),1)]),e(Kt)("ttyd")?(r(),d("div",{key:0,class:"item",style:{backgroundColor:"#f4fbf7"},onClick:F},[D(F4,{color:"#00c850",class:"icon"}),t("span",null,i(e(n)("\u7EC8\u7AEF")),1)])):C("",!0),e(Kt)("ota")?(r(),d("div",{key:1,class:"item",style:{backgroundColor:"#f9f7fd"},onClick:m},[t("span",{class:"app-update-button-more",onClick:ut(Y,["stop","prevent"]),title:e(n)("\u56FA\u4EF6\u66F4\u65B0\u9009\u9879")},[D(Ee)],8,v7),D(Zt,{color:"#ad46ff",class:"icon"}),t("span",b7,[(I=e(c).checkUpdate)!=null&&I.needUpdate?(r(),d("i",h7)):C("",!0),nt(" "+i(e(n)("\u56FA\u4EF6\u66F4\u65B0"))+" ",1),a.value&&e(c).checkUpdate==null?(r(),d("span",_7,[D(R,{size:"1em",color:"currentColor"})])):C("",!0)]),L(t("div",x7,[t("div",{class:"menu_background",onClick:ut(Y,["stop","prevent"])},null,8,w7),t("ul",{onClick:S[1]||(S[1]=ut(()=>{},["stop"]))},[t("li",null,[D(V,{modelValue:u.value,"onUpdate:modelValue":S[0]||(S[0]=jt=>u.value=jt)},{default:G(()=>[t("span",k7,i(e(n)("\u81EA\u52A8\u68C0\u67E5\u66F4\u65B0")),1)]),_:1},8,["modelValue"]),s.value?(r(),d("span",y7,[D(R,{size:"1em",color:"currentColor"})])):C("",!0)])])],512),[[te,l.value]])])):C("",!0),t("div",{class:st(["item",{"disabled-style":!((M=e(v))!=null&&M.proto)}]),style:{backgroundColor:"#f1fbfd"},onClick:f},[D(xe,{color:"#00b8db",class:"icon"}),t("span",F7,[nt(i(e(n)("DNS\u914D\u7F6E"))+" ",1),(H=e(v))!=null&&H.proto?C("",!0):(r(),d("span",E7,[D(R,{size:"1em",color:"currentColor"})]))])],2),t("div",{class:"item",style:{backgroundColor:"#fbf5fa"},onClick:w},[D(qa,{color:"#f6339a",class:"icon"}),t("span",null,i(e(n)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)]),e(Kt)("sandbox")?(r(),d(U,{key:2},[((bt=p.value)==null?void 0:bt.status)=="unsupport"?(r(),d("div",{key:0,class:"item",style:{backgroundColor:"#f9fafb"},onClick:g},[D(Je,{color:"#cac9cd",class:"icon"}),t("span",null,i(e(n)("\u5F00\u542F\u6C99\u7BB1")),1)])):((Bt=p.value)==null?void 0:Bt.status)=="stopped"?(r(),d("div",{key:1,class:"item",style:{backgroundColor:"#fbf4f5"},onClick:b},[D(Je,{color:"#fb2c36",class:"icon"}),t("span",null,i(e(n)("\u5F00\u542F\u6C99\u7BB1")),1)])):((gt=p.value)==null?void 0:gt.status)=="running"?(r(),d("div",{key:2,class:"item",style:{backgroundColor:"#dae8fd"},onClick:k},[D(Je,{color:"#2b7fff",class:"icon"}),t("span",null,i(e(n)("\u6C99\u7BB1\u5DF2\u5F00\u542F")),1)])):C("",!0)],64)):C("",!0),t("div",{class:"item",style:{backgroundColor:"#fcf7f2"},onClick:_},[D(Wa,{color:"#ff6900",class:"icon"}),t("span",null,i(e(n)("\u65E5\u5FD7\u67E5\u770B")),1)]),t("div",{class:"item",style:{backgroundColor:"#eff5ff"},onClick:y},[D(ca,{color:"#553afe",class:"icon"}),t("span",null,i(e(n)("\u7CFB\u7EDF\u7EF4\u62A4")),1)])])}}});var C7=N($7,[["__scopeId","data-v-c1428106"]]);const D7={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},B7=["fill"],Y7=["fill"],A7=T({props:{color:{type:String,default:"#222222"}},setup(o){return(n,a)=>(r(),d("svg",D7,[t("path",{d:"M746 112c82.84 0 150 67.16 150 150S828.84 412 746 412 596 344.84 596 262 663.16 112 746 112z m0 48C689.668 160 644 205.668 644 262S689.668 364 746 364 848 318.332 848 262 802.332 160 746 160zM746 612c82.84 0 150 67.16 150 150S828.84 912 746 912 596 844.84 596 762s67.16-150 150-150z m0 48c-56.332 0-102 45.668-102 102s45.668 102 102 102 102-45.668 102-102-45.668-102-102-102zM262 364c82.84 0 150 67.16 150 150S344.84 664 262 664 112 596.84 112 514 179.16 364 262 364z m0 48C205.668 412 160 457.668 160 514S205.668 616 262 616 364 570.332 364 514 318.332 412 262 412z",fill:o.color,"p-id":"5059"},null,8,B7),t("path",{d:"M337.7 442.744l293.488-169.62 40.464 70.16-293.484 169.62zM387.708 526.728l277.02 160.12-40.468 70.156-277.02-160.12z",fill:o.color,"p-id":"5060"},null,8,Y7)]))}}),S7={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},z7=["fill"],Za=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",S7,[t("path",{d:"M827.84 886.4H187.9184375c-32.2659375 0-53.76-21.51375-53.76-53.784375V714.28625a53.889375 53.889375 0 0 1 53.76-53.784375h639.9215625a53.8940625 53.8940625 0 0 1 53.76 53.784375v118.35375a53.8940625 53.8940625 0 0 1-53.76 53.76z m-5.375625-172.11375H187.9184375v118.35375h634.5309375V714.28625z m-570 32.664375a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.865-26.88z m78.3403125 0a26.88 26.88 0 1 1-26.60625 27.1678125 26.88 26.88 0 0 1 26.5875-27.16875z m78.6 0a26.88 26.88 0 1 1-26.60625 27.1678125 26.88 26.88 0 0 1 26.5875-27.16875zM827.215625 624.9490625H187.2846875c-32.2603125 0-53.76-21.51375-53.76-53.784375V452.8353125a53.8940625 53.8940625 0 0 1 53.76-53.784375H827.196875a53.8940625 53.8940625 0 0 1 53.76 53.784375v118.329375a53.8940625 53.8940625 0 0 1-53.76 53.784375z m-5.38125-172.11375H187.285625v118.329375H821.815625V452.8353125z m-569.994375 31.9921875a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.88-26.88z m77.889375 0a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.8565625-26.88z m76.963125-0.403125a26.88 26.88 0 1 1-26.60625 27.1678125 26.88 26.88 0 0 1 26.5875-27.163125z m419.7890625-120.744375H186.56c-32.2509375 0-53.76-21.5278125-53.76-53.7984375V191.5521875a53.8940625 53.8940625 0 0 1 53.76-53.784375h639.9215625a53.8940625 53.8940625 0 0 1 53.76 53.784375v118.329375a53.8940625 53.8940625 0 0 1-53.76 53.7984375z m-5.3615625-172.1278125H186.56v118.329375h634.56V191.5521875z m-570.0140625 32.2753125a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.88-26.88z m78.6046875 0a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.8753125-26.88z m78.6046875 0a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.8846875-26.88z",fill:o.color,"p-id":"19012"},null,8,z7)]))}}),P7={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},T7=["fill"],I7=T({props:{color:{type:String,default:"#155dfc"}},setup(o){return(n,a)=>(r(),d("svg",P7,[t("path",{d:"M716.8 750.933333c47.786667 0 95.573333-27.306667 119.466667-68.266666 23.893333-40.96 23.893333-95.573333 0-136.533334-23.893333-40.96-68.266667-68.266667-119.466667-68.266666-10.24 0-17.066667-3.413333-23.893333-10.24-6.826667-6.826667-10.24-13.653333-10.24-23.893334 0-95.573333-75.093333-170.666667-170.666667-170.666666s-170.666667 75.093333-170.666667 170.666666v6.826667c81.92 23.893333 136.533333 95.573333 136.533334 180.906667 0 13.653333-6.826667 23.893333-17.066667 30.72-10.24 6.826667-23.893333 6.826667-34.133333 0-10.24-6.826667-17.066667-17.066667-17.066667-30.72 0-64.853333-54.613333-119.466667-119.466667-119.466667S170.666667 566.613333 170.666667 631.466667 225.28 750.933333 290.133333 750.933333H716.8zM296.96 819.2c-102.4 3.413333-187.733333-75.093333-194.56-177.493333-3.413333-102.4 75.093333-191.146667 177.493333-194.56 0-126.293333 95.573333-228.693333 221.866667-238.933334 122.88-6.826667 232.106667 81.92 249.173333 208.213334 105.813333 17.066667 180.906667 112.64 170.666667 218.453333-10.24 102.4-98.986667 184.32-204.8 184.32H296.96z",fill:o.color,"p-id":"8044"},null,8,T7)]))}}),M7={class:"app-container_samba"},L7={key:0,class:"sambas-item"},N7={class:"sambas-item_name"},O7={class:"sambas-item_value"},V7={class:"sambas-item"},G7={class:"sambas-item_name tit"},j7={class:"sambas-item_value tit"},U7={class:"samba-item"},q7={class:"samba-item_name"},R7=["title"],H7=["href"],W7=T({props:{sambas:{type:Array}},setup(o){const{$gettext:n,$ngettext:a}=W(),l=window.location.hostname;return(u,s)=>{var c;return r(),d("ul",M7,[o.sambas?(r(),d("li",L7,[t("div",N7,[t("span",null,i(e(n)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",O7,[t("span",null,i((c=o.sambas)!=null&&c.length?e(n)("\u5DF2\u542F\u7528"):e(n)("\u672A\u542F\u7528")),1)])])):C("",!0),t("li",V7,[t("div",G7,[t("span",null,i(e(n)("\u5730\u5740")),1)]),t("div",j7,[t("span",null,i(e(n)("\u76EE\u5F55")),1)])]),(r(!0),d(U,null,tt(o.sambas,x=>(r(),d("li",U7,[t("div",q7,[t("span",null,"smb://"+i(e(l))+"/"+i(x.shareName),1)]),t("div",{class:"samba-item_value",title:x.path},[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+x.path},i(x.path),9,H7)],8,R7)]))),256))])}}});var J7=N(W7,[["__scopeId","data-v-6c80f0b7"]]);const Z7={class:"webdav-item"},K7={class:"webdav-item_name"},Q7={class:"webdav-item_value"},X7={key:0,class:"webdav-item"},t9={class:"webdav-item_name"},e9={class:"webdav-item_value"},a9=["href"],o9={key:1,class:"webdav-item"},n9={class:"webdav-item_name"},i9={class:"webdav-item_value"},r9=["href"],s9={key:2,class:"webdav-item"},d9={class:"webdav-item_name"},l9={class:"webdav-item_value"},u9=T({props:{webdav:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{var s;return`http://${location.hostname}:${(s=n.webdav)==null?void 0:s.port}`});return(s,c)=>{var x,v,p,f,m,_,y;return r(),d(U,null,[t("li",Z7,[t("div",K7,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",Q7,[t("span",null,i((x=o.webdav)!=null&&x.path?e(a)("\u5DF2\u542F\u7528"):e(a)("\u672A\u542F\u7528")),1)])]),(v=o.webdav)!=null&&v.path?(r(),d("li",X7,[t("div",t9,[t("span",null,i(e(a)("\u6302\u8F7D\u8DEF\u5F84:")),1)]),t("div",e9,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=o.webdav)==null?void 0:p.path)},i((f=o.webdav)==null?void 0:f.path),9,a9)])])):C("",!0),(m=o.webdav)!=null&&m.port?(r(),d("li",o9,[t("div",n9,[t("span",null,i(e(a)("\u670D\u52A1\u8DEF\u5F84:")),1)]),t("div",i9,[t("a",{href:e(u),target:"_blank",rel:"noopener noreferrer"},i(e(u)),9,r9)])])):C("",!0),(_=o.webdav)!=null&&_.username?(r(),d("li",s9,[t("div",d9,[t("span",null,i(e(a)("\u8D26\u53F7:")),1)]),t("div",l9,[t("span",null,i((y=o.webdav)==null?void 0:y.username),1)])])):C("",!0)],64)}}});var c9=N(u9,[["__scopeId","data-v-9e39e9b2"]]);const p9={class:"app-container_linkease"},f9={class:"linkease-item"},m9={class:"linkease-item_name"},g9={class:"linkease-item_value"},v9={key:0,class:"configure"},b9={key:0,class:"linkease-item"},h9={class:"linkease-item_name"},_9={class:"linkease-item_value"},x9=["href"],w9={href:" https://app.linkease.com/",target:"_blank"},k9=T({props:{linkease:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{var c;return`http://${location.hostname}:${(c=n.linkease)==null?void 0:c.port}`}),s=()=>{Va({setup:0})};return(c,x)=>{var v,p,f;return r(),d("ul",p9,[t("li",f9,[t("div",m9,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",g9,[(v=o.linkease)!=null&&v.enabel?(r(),d("span",v9,i(e(a)("\u5DF2\u914D\u7F6E")),1)):(r(),d("span",{key:1,class:"configure enabel",onClick:x[0]||(x[0]=m=>s())},i(e(a)("\u672A\u914D\u7F6E")),1))])]),(p=o.linkease)!=null&&p.enabel?(r(),d(U,{key:0},[(f=o.linkease)!=null&&f.port?(r(),d("li",b9,[t("div",h9,[t("span",null,i(e(a)("\u670D\u52A1\u5730\u5740:")),1)]),t("div",_9,[t("a",{href:e(u),target:"_blank",rel:"noopener noreferrer"},i(e(u)),9,x9)])])):C("",!0)],64)):C("",!0),t("div",null,[t("a",w9,i(e(a)("\u4E0B\u8F7D\u6613\u6709\u4E91\u5BA2\u6237\u7AEF\uFF0C\u968F\u65F6\u968F\u5730\u76F8\u518C\u5907\u4EFD\u3001\u8FDC\u7A0B\u8BBF\u95EE")),1)])])}}});var y9=N(k9,[["__scopeId","data-v-485e1494"]]);const Ka=o=>(it("data-v-7ee59a9a"),o=o(),rt(),o),F9={href:"/cgi-bin/luci/admin/services/samba4"},E9={class:"content"},$9={class:"tab"},C9={class:"title"},D9={key:0},B9={key:1},Y9=Ka(()=>t("div",{class:"title"},"SAMBA",-1)),A9=Ka(()=>t("div",{class:"title"},"WEBDAV",-1)),S9=T({setup(o){const{$gettext:n}=W(),a=E(!1);E("linkease");const l=E(),u=Jo(),s=E(!1);(()=>{j.Nas.Service.Status.GET().then(_=>{var y;if((y=_==null?void 0:_.data)!=null&&y.result){const b=_.data.result;l.value=b,b.webdav&&(u.webdav=b.webdav)}})})();const x=()=>{Va({setup:0})},v=()=>{a.value=!a.value},p=()=>{v(),Dt.installAndGo("app-meta-gowebdav","GoWebDAV","/cgi-bin/luci/admin/nas/gowebdav")},f=E(0),m=_=>{f.value=_};return(_,y)=>(r(),J(Rt,{title:e(n)("\u5B58\u50A8\u670D\u52A1"),style:{width:"100%",height:"100%",display:"block"},"is-settings-menu-open":s.value,"onUpdate:isSettingsMenuOpen":y[4]||(y[4]=b=>s.value=b)},{icon:G(()=>[D(A7,{color:"#4f39f6",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:x},[D(ca,{color:"#0a0a0a",class:"icon1 settings-icon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u914D\u7F6E\u5B58\u50A8\u670D\u52A1")),1),t("div",{class:"rotation",onClick:y[0]||(y[0]=ut(b=>s.value=!s.value,["stop"]))},[D(Ee,{class:"moreIcon"})])])]),"settings-menu":G(()=>[t("div",null,[t("a",F9,i(e(n)("SAMBA\u9AD8\u7EA7\u914D\u7F6E")),1)]),t("div",null,[t("a",{onClick:p},i(e(n)("WebDAV\u9AD8\u7EA7\u914D\u7F6E")),1)])]),default:G(()=>{var b,k,g,h,w,F,Y,P,A;return[t("div",E9,[t("div",$9,[t("div",{class:st(["item cloud",{active:f.value==0}]),onClick:y[1]||(y[1]=B=>m(0))},[D(I7,{color:"#155dfc",class:"icon2"}),t("div",C9,i(e(n)("\u6613\u6709\u4E91")),1),(k=(b=l.value)==null?void 0:b.linkease)!=null&&k.enabel?(r(),d("span",D9,i(e(n)("\u5DF2\u914D\u7F6E")),1)):(r(),d("span",B9,i(e(n)("\u672A\u914D\u7F6E")),1))],2),t("div",{class:st(["item memory",{active:f.value==1}]),onClick:y[2]||(y[2]=B=>m(1))},[D(Za,{color:"#0bab47",class:"icon2"}),Y9,t("span",null,i((h=(g=l.value)==null?void 0:g.sambas)!=null&&h.length?e(n)("\u5DF2\u542F\u7528"):e(n)("\u672A\u542F\u7528")),1)],2),t("div",{class:st(["item network",{active:f.value==2}]),onClick:y[3]||(y[3]=B=>m(2))},[D(xe,{color:"#9810fa",class:"icon2"}),A9,t("span",null,i((F=(w=l.value)==null?void 0:w.webdav)!=null&&F.path?e(n)("\u5DF2\u542F\u7528"):e(n)("\u672A\u542F\u7528")),1)],2)]),f.value==0?(r(),J(y9,{key:0,linkease:(Y=l.value)==null?void 0:Y.linkease},null,8,["linkease"])):f.value==1?(r(),J(J7,{key:1,sambas:(P=l.value)==null?void 0:P.sambas},null,8,["sambas"])):f.value==2?(r(),J(c9,{key:2,webdav:(A=l.value)==null?void 0:A.webdav},null,8,["webdav"])):C("",!0)])]}),_:1},8,["title","is-settings-menu-open"]))}});var z9=N(S9,[["__scopeId","data-v-7ee59a9a"]]);const P9={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},T9=["fill"],I9=["fill"],Fa=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",P9,[t("path",{d:"M554.688 682.624a42.688 42.688 0 0 0 0 85.376h0.448a42.688 42.688 0 1 0 0-85.376h-0.448zM767.488 682.624a42.688 42.688 0 0 0 0 85.376H768a42.688 42.688 0 1 0 0-85.376h-0.512z",fill:o.color,"p-id":"5230"},null,8,T9),t("path",{d:"M465.28 96h93.44c59.456 0 106.88 0 144.96 4.48 39.36 4.48 72.128 14.08 100.992 35.584 28.8 21.44 47.424 50.112 63.104 86.464 15.232 35.2 28.8 80.64 45.952 137.6l52.48 174.848c1.28 4.48 2.752 9.28 3.584 14.336v0.32l0.192 1.216c0.64 5.12 0.64 10.048 0.64 14.72v3.392c0 72.704 0 130.304-5.632 175.68-5.824 46.592-18.112 84.736-45.952 115.84-4.992 5.568-10.304 10.88-15.936 15.872-31.104 27.84-69.184 40.128-115.84 45.952-45.312 5.696-102.912 5.696-175.616 5.696H412.352c-72.704 0-130.304 0-175.68-5.696-46.592-5.824-84.672-18.112-115.84-45.888a202.944 202.944 0 0 1-15.872-16c-27.84-31.04-40.128-69.12-45.952-115.84-5.696-45.312-5.696-102.912-5.696-175.616v-3.328c0-4.672 0-9.664 0.704-14.784v-0.32l0.192-1.216c0.832-5.056 2.24-9.856 3.584-14.272l52.48-174.912c17.088-56.96 30.72-102.4 45.952-137.6 15.68-36.352 34.304-65.024 63.104-86.4 28.8-21.504 61.632-31.104 100.992-35.712C358.4 96 405.76 96 465.28 96zM327.68 164.032c-33.152 3.84-53.632 11.072-70.144 23.36-16.512 12.288-29.376 29.824-42.56 60.48-13.568 31.424-26.176 73.28-43.968 132.544l-42.688 142.272h767.36l-42.688-142.272c-17.792-59.264-30.4-101.12-43.968-132.48-13.184-30.72-26.048-48.256-42.56-60.544-16.512-12.288-36.992-19.52-70.144-23.36C662.336 160 618.624 160 556.736 160H467.328c-61.952 0-105.6 0-139.648 4.032zM122.496 736.64c5.056 40.128 14.528 63.616 30.144 81.088 3.456 3.84 7.04 7.488 10.88 10.88 17.536 15.68 40.96 25.088 81.152 30.144 40.96 5.12 94.464 5.184 169.92 5.184h194.816c75.456 0 129.024 0 169.92-5.184 40.128-5.056 63.616-14.464 81.152-30.08 3.84-3.456 7.424-7.104 10.88-10.944 15.616-17.536 25.088-40.96 30.08-81.088 4.672-37.248 5.12-84.928 5.248-150.016H117.312c0.064 65.088 0.512 112.768 5.184 150.016z",fill:o.color,"p-id":"5231"},null,8,I9)]))}}),M9={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},L9=["fill"],N9=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",M9,[t("path",{d:"M912 208H427.872l-50.368-94.176A63.936 63.936 0 0 0 321.056 80H112c-35.296 0-64 28.704-64 64v736c0 35.296 28.704 64 64 64h800c35.296 0 64-28.704 64-64v-608c0-35.296-28.704-64-64-64z m-800-64h209.056l68.448 128H912v97.984c-0.416 0-0.8-0.128-1.216-0.128H113.248c-0.416 0-0.8 0.128-1.248 0.128V144z m0 736v-96l1.248-350.144 798.752 1.216V784h0.064v96H112z",fill:o.color,"p-id":"5094"},null,8,L9)]))}}),O9={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},V9=["fill"],G9=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",O9,[t("path",{d:"M136.12 251.958a83.054 83.054 0 0 1-0.12-4.458c0-32.903 19.447-58.344 41.115-75.981 21.984-17.893 51.365-32.231 84.13-43.511C327.163 105.315 415.641 92 511.5 92c95.859 0 184.337 13.315 250.255 36.008 32.765 11.28 62.146 25.618 84.13 43.511 20.221 16.458 38.506 39.713 40.86 69.485l0.255 0.002v532.88c0 32.888-19.031 58.62-40.776 76.719-21.978 18.294-51.385 32.976-84.207 44.53C696.011 918.373 607.438 932 511.5 932c-95.938 0-184.511-13.627-250.517-36.865-32.822-11.554-62.229-26.236-84.207-44.53C155.031 832.506 136 806.774 136 773.886V251.96l0.12-0.002z m79.88-4.459v0.002c0 0.016-0.003 0.151 0.098 0.491 0.112 0.379 0.397 1.16 1.103 2.347 1.479 2.49 4.55 6.323 10.415 11.096 11.97 9.743 31.722 20.293 59.67 29.914C342.796 310.459 422.067 323 511.5 323c89.433 0 168.704-12.541 224.214-31.651 27.948-9.621 47.7-20.171 59.67-29.914 5.865-4.773 8.936-8.606 10.415-11.096 0.706-1.187 0.991-1.968 1.103-2.347 0.088-0.297 0.097-0.437 0.098-0.479v-0.014-0.012c-0.001-0.042-0.01-0.182-0.098-0.479-0.112-0.379-0.397-1.16-1.103-2.347-1.479-2.49-4.55-6.323-10.415-11.096-11.97-9.743-31.722-20.293-59.67-29.914C680.204 184.541 600.933 172 511.5 172c-89.433 0-168.704 12.541-224.214 31.651-27.948 9.621-47.7 20.171-59.67 29.914-5.865 4.773-8.936 8.606-10.415 11.096-0.706 1.187-0.991 1.968-1.103 2.347-0.101 0.34-0.098 0.475-0.098 0.491z m591 100.656c-13.955 7.052-29.194 13.311-45.245 18.837C695.837 389.685 607.359 403 511.5 403c-95.859 0-184.337-13.315-250.255-36.008-16.051-5.526-31.29-11.785-45.245-18.837v85.359c0.001 0.042 0.01 0.182 0.098 0.478 0.112 0.379 0.397 1.16 1.103 2.347 1.479 2.489 4.55 6.323 10.415 11.096 11.97 9.743 31.722 20.293 59.67 29.914C342.796 496.459 422.067 509 511.5 509c89.433 0 168.704-12.541 224.214-31.651 27.948-9.621 47.7-20.171 59.67-29.914 5.865-4.773 8.936-8.607 10.415-11.096 0.706-1.187 0.991-1.968 1.103-2.347 0.088-0.297 0.097-0.437 0.098-0.479v-85.358z m-45.245 204.837C695.837 575.685 607.359 589 511.5 589c-95.859 0-184.337-13.315-250.255-36.008-16.051-5.526-31.29-11.785-45.245-18.837v70.359c0.001 0.041 0.01 0.182 0.098 0.478 0.112 0.379 0.397 1.16 1.103 2.347 1.479 2.489 4.55 6.323 10.415 11.096 11.97 9.743 31.722 20.293 59.67 29.914C342.796 667.459 422.067 680 511.5 680c89.433 0 168.704-12.541 224.214-31.651 27.948-9.621 47.7-20.171 59.67-29.914 5.865-4.773 8.936-8.607 10.415-11.096 0.706-1.187 0.991-1.968 1.103-2.347 0.088-0.297 0.097-0.437 0.098-0.479v-70.358c-13.955 7.052-29.194 13.311-45.245 18.837zM807 705.155c-13.955 7.052-29.194 13.311-45.245 18.837C695.837 746.685 607.359 760 511.5 760c-95.859 0-184.337-13.315-250.255-36.008-16.051-5.526-31.29-11.785-45.245-18.837V773.894c0 0.181-0.003 1.283 1.399 3.695 1.555 2.675 4.69 6.646 10.556 11.529 11.976 9.968 31.701 20.738 59.594 30.557C342.97 839.186 422.146 852 511.5 852c89.354 0 168.53-12.814 223.951-32.325 27.893-9.819 47.618-20.589 59.594-30.557 5.866-4.883 9.001-8.854 10.556-11.529 1.402-2.412 1.399-3.514 1.399-3.695v-68.739z",fill:o.color,"p-id":"9960"},null,8,V9)]))}}),j9={},U9={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},q9=Vt('',1),R9=[q9];function H9(o,n){return r(),d("svg",U9,R9)}var Ea=N(j9,[["render",H9]]);const W9={},J9={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Z9=Vt('',1),K9=[Z9];function Q9(o,n){return r(),d("svg",J9,K9)}var X9=N(W9,[["render",Q9]]);const Ve=o=>(it("data-v-5f5fb500"),o=o(),rt(),o),tf=["onSubmit"],ef=Ve(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"})],-1)),af={class:"action-body"},of={class:"disk-info"},nf=Ve(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),rf={key:0,class:"disk-info_mount-name"},sf={key:1,class:"disk-info_mount-name"},df={key:0,class:"label-item"},lf={class:"label-item_key"},uf={class:"label-item_path"},cf={class:"label-item"},pf={class:"label-item_key"},ff={class:"label-item_value"},mf={class:"action-footer"},gf=Ve(()=>t("div",{class:"auto"},null,-1)),vf=["disabled"],bf=["disabled"],hf={key:1,class:"action result"},_f={class:"action-body"},xf=Ve(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),wf={class:"action-body_msg"},kf=["innerHTML"],yf={class:"btns"},Ff=T({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(o){var k;const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close&&n.Close()},s=g=>{g.preventDefault(),n.Cancel&&n.Cancel(),u()},c=g=>{n.Next&&n.Next(g),u()},x=E(!1),v=E(0),p=E("/mnt/data_"+((k=n==null?void 0:n.mount)==null?void 0:k.name)),f=g=>{v.value=g};E(n.mount?"":"format"),E();const m=E(),_=()=>O(this,null,function*(){const g=n.mount;if(g==null){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533A"));return}if(g.path==null||g.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84"));return}if(g.uuid==null||g.uuid==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533AID"));return}x.value=!0;const h=$.Loading(a("\u6302\u8F7D\u4E2D..."));try{const w=yield j.Nas.Disk.Partition.Mount.POST({path:g.path,uuid:g.uuid,mountPoint:p.value});if(w!=null&&w.data){const{result:F,error:Y}=w==null?void 0:w.data;Y&&$.Warning(Y),F&&($.Success(a("\u6302\u8F7D\u6210\u529F")),m.value=F,f(1))}}catch(w){$.Error(w)}h.Close(),x.value=!1}),y=()=>{if(m.value&&m.value.mountPoint){c(m.value.mountPoint);return}$.Warning(a("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25"))},b=()=>{};return(g,h)=>(r(),J(_t,{type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>{var w,F;return[v.value==0?(r(),d("form",{key:0,class:"action format",onSubmit:ut(b,["prevent"])},[ef,t("div",af,[t("div",of,[nf,o.mount?(r(),d("div",rf,[t("span",null,"\u3010"+i(o.mount.total)+"\u3011",1),t("span",null,i(o.mount.mountPoint),1)])):o.disk?(r(),d("div",sf,[t("span",null,"\u3010"+i(o.disk.size)+"\u3011",1),t("span",null,i(o.disk.venderModel),1)])):C("",!0)]),o.mount?(r(),d("div",df,[t("div",lf,[t("span",null,i(e(a)("\u76EE\u6807\u5206\u533A")),1)]),t("div",uf,i(o.mount.path)+"\uFF08"+i(o.mount.total)+"\uFF0C"+i((F=(w=o.mount)==null?void 0:w.filesystem)==null?void 0:F.toUpperCase())+"\uFF09",1)])):C("",!0),t("div",cf,[t("div",pf,[t("span",null,i(e(a)("\u6302\u8F7D\u70B9")),1)]),t("div",ff,[L(t("input",{type:"text","onUpdate:modelValue":h[0]||(h[0]=Y=>p.value=Y)},null,512),[[et,p.value,void 0,{trim:!0}]])])])]),t("div",mf,[gf,t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:x.value,onClick:_},i(e(a)("\u786E\u5B9A")),9,vf),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button",disabled:x.value},i(e(a)("\u8FD4\u56DE")),9,bf)])],40,tf)):v.value==1?(r(),d("div",hf,[t("div",_f,[xf,t("div",wf,i(e(a)("\u6302\u8F7D\u6210\u529F")),1),m.value?(r(),d("div",{key:0,class:"action-body_info",innerHTML:e(a)("\u5DF2\u6210\u529F\u5C06\u5206\u533A %{dev} \u6302\u8F7D\u5230 %{mount}",{dev:m.value.path||"",mount:m.value.mountPoint||""},!0)},null,8,kf)):C("",!0),t("div",yf,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:y},i(o.action=="nas"?e(a)("\u5B8C\u6210"):e(a)("\u4E0B\u4E00\u6B65")),1)])])])):C("",!0)]}),_:1})]),_:1}))}});var Ef=N(Ff,[["__scopeId","data-v-5f5fb500"]]),Qa=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Ef,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const $f={class:"disk-content"},Cf={class:"disk-item"},Df={class:"disk-item_name"},Bf={key:0},Yf={key:1},Af={key:2},Sf={class:"disk_value"},zf={class:"disk-item_value"},Pf={class:"value-data"},Tf={key:0,class:"disk-item"},If={class:"disk-item_name"},Mf={key:0},Lf=["href"],Nf={key:0},Of={class:"disk_status"},Vf={key:0,class:"disk_status_item"},Gf={key:0,class:"tooltip-trigger disk_tip"},jf={class:"tooltip-text tooltip-top"},Uf={class:"disk_dir_tip"},qf={class:"disk_status_item"},Rf={key:0,class:"tooltip-trigger disk_tip"},Hf={class:"tooltip-text tooltip-top"},Wf={class:"disk_dir_tip"},Jf=T({props:{part:{type:Object,required:!0},disk:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>n.part.filesystem=="No FileSystem"),s=Q(()=>n.part.filesystem&&["ntfs","vfat","exfat"].indexOf(n.part.filesystem)>=0),c=Q(()=>n.part.mountPoint&&n.part.isReadOnly&&n.part.filesystem!="swap"),x=Q(()=>u.value||!n.part.isSystemRoot&&(c.value||s.value||!n.part.mountPoint&&n.part.filesystem=="swap")),v=function(){da({action:"disk",disk:n.disk,mount:n.part,Cancel:()=>{},Next:y=>{location.reload()}})},p=()=>{Qa({action:"nas",disk:n.disk,mount:n.part,Cancel:()=>{},Next:()=>{location.reload()}})},f=()=>O(this,null,function*(){const y=$.Loading(a("\u5904\u7406\u4E2D..."));try{const b=yield j.Nas.Disk.InitRest.POST({name:n.disk.name,path:n.disk.path});if(b!=null&&b.data){const{result:k,error:g}=b==null?void 0:b.data;g&&$.Warning(g),k&&($.Success(a("\u6302\u8F7D\u6210\u529F")),location.reload())}}catch(b){$.Error(b)}y.Close()}),m=Q(()=>n.part.filesystem=="Free Space"),_=Q(()=>{const y=n.part.mountPoint?n.part.mountPoint:"";return y.indexOf("/mnt/")==0?"/cgi-bin/luci/admin/services/linkease/file/?path=/"+y.substring(5):"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+y});return(y,b)=>{var g;const k=ht("progress-item");return r(),d("div",$f,[t("li",Cf,[t("div",Df,[e(m)?(r(),d("span",Bf,i(e(a)("\u672A\u5206\u533A")),1)):(r(),d("span",Yf,i(o.part.name)+i(o.part.mountPoint?"":e(u)?e(a)("\uFF08\u672A\u683C\u5F0F\u5316\uFF09"):e(a)("\uFF08\u672A\u6302\u8F7D\uFF09")),1)),o.part.isSystemRoot?(r(),d("span",Af,i(e(a)("\uFF08\u7CFB\u7EDF\u5206\u533A\uFF09")),1)):C("",!0)]),t("div",Sf,[t("div",zf,[t("div",Pf,[D(k,{value:e(m)||!o.part.usage?0:o.part.usage,text:e(m)?e(a)("\u672A\u5206\u533A\uFF08%{total}\uFF09",{total:o.part.total||""}):(o.part.mountPoint&&o.part.filesystem!="swap"?o.part.used:e(a)("\u672A\u77E5"))+"/"+(o.part.total||""),style:{backgroundColor:"#767676"}},null,8,["value","text"])])]),e(m)?(r(),d("button",{key:0,class:"cbi-button cbi-button-apply",onClick:f},i(e(a)("\u5206\u533A\u5E76\u683C\u5F0F\u5316")),1)):e(x)?(r(),d("button",{key:1,class:"cbi-button cbi-button-apply",onClick:v},i(e(a)("\u683C\u5F0F\u5316\u5206\u533A")),1)):C("",!0)])]),!e(m)&&!e(u)?(r(),d("li",Tf,[t("span",If,[o.part.mountPoint?(r(),d(U,{key:0},[o.part.filesystem=="swap"?(r(),d("span",Mf,i(e(a)("\u5DF2\u6302\u8F7D\u4E3A\u4EA4\u6362\u533A")),1)):(r(),d("a",{key:1,href:e(_),target:"_blank"},i(o.part.mountPoint),9,Lf))],64)):(r(),d(U,{key:1},[o.part.filesystem=="swap"?(r(),d("span",Nf,i(e(a)("\u4E0D\u652F\u6301\u6302\u8F7D")),1)):(r(),d("span",{key:1,class:"value-data buttondiv",onClick:p},i(e(a)("\u624B\u52A8\u6302\u8F7D")),1))],64))]),t("div",Of,[o.part.mountPoint&&o.part.filesystem!="swap"?(r(),d("div",Vf,[t("div",null,i(e(a)("\u53EF\u8BFB\u5199\u72B6\u6001\uFF1A"))+i(o.part.isReadOnly?e(a)("\u53EA\u8BFB"):e(a)("\u8BFB\u5199")),1),e(c)?(r(),d("div",Gf,[D(zt),t("div",jf,[t("div",Uf,i(e(a)("\u6B64\u5206\u533A\u4E3A\u53EA\u8BFB\u72B6\u6001\uFF0C\u53EF\u80FD\u65E0\u6CD5\u5199\u5165\u6570\u636E")),1)])])):C("",!0)])):C("",!0),t("div",qf,[t("div",null,i(e(a)("\u6587\u4EF6\u7CFB\u7EDF\uFF1A"))+i((g=o.part.filesystem)==null?void 0:g.toUpperCase()),1),!o.part.isSystemRoot&&e(s)?(r(),d("div",Rf,[D(zt),t("div",Hf,[t("span",Wf,i(e(a)("\u6B64\u6587\u4EF6\u7CFB\u7EDF\u4E0D\u652F\u6301Docker\u7B49\u5E94\u7528\u6570\u636E\uFF0C\u5EFA\u8BAE\u683C\u5F0F\u5316\u6210EXT4\u6587\u4EF6\u7CFB\u7EDF")),1)])])):C("",!0)])])])):C("",!0)])}}});var Zf=N(Jf,[["__scopeId","data-v-4e7285ca"]]);const Kf=o=>(it("data-v-56d0d562"),o=o(),rt(),o),Qf={key:0,class:"action"},Xf={class:"title"},tm={class:"app-container_info"},em={class:"app-container_body"},am={class:"action-footer"},om=Kf(()=>t("div",{class:"auto"},null,-1)),nm=T({props:{disk:{type:Object,required:!0},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(0),s=()=>{n.Close&&n.Close()},c=x=>{x.preventDefault(),n.Cancel&&n.Cancel(),s()};return(x,v)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[u.value==0?(r(),d("div",Qf,[t("h2",Xf,i(e(a)("\u5206\u533A\u4FE1\u606F"))+" - "+i((o.disk.name||"?")+(o.disk.isSystemRoot?e(a)("\uFF08\u7CFB\u7EDF\u76D8\uFF09"):"")),1),t("ul",null,[t("li",null,[t("div",tm,[t("span",null,i(e(a)("\u5206\u533A / \u6302\u8F7D\u70B9")),1),t("span",null,i(e(a)("\u5BB9\u91CF")),1)]),t("div",em,[(r(!0),d(U,null,tt(o.disk.childrens,(p,f)=>(r(),J(Zf,{key:f,part:p,disk:o.disk},null,8,["part","disk"]))),128))])])]),t("div",am,[om,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:c,type:"button"},i(e(a)("\u8FD4\u56DE")),1)])])):C("",!0)]),_:1})]),_:1},8,["Close"]))}});var im=N(nm,[["__scopeId","data-v-56d0d562"]]),rm=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(im,pt(lt({},o),{Close:()=>{l()}}));a.component("progress-item",La),a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const sm={class:"progress-bar-wrapper"},dm={key:0,class:"percentage-text"},lm={props:{percentage:{type:Number,default:0,validator:o=>o>=0&&o<=100},color:{type:String,default:"#4CAF50"},backgroundColor:{type:String,default:"#e0e0e0"},height:{type:[String,Number],default:"20px"},borderRadius:{type:[String,Number],default:"4px"},showPercentage:{type:Boolean,default:!0},gradient:{type:Boolean,default:!1},gradientColors:{type:String,default:"linear-gradient(90deg, #4CAF50, #45a049)"},duration:{type:Number,default:1e3}},setup(o){const n=o,a=Q(()=>({height:typeof n.height=="number"?`${n.height}px`:n.height,borderRadius:typeof n.borderRadius=="number"?`${n.borderRadius}px`:n.borderRadius,backgroundColor:n.backgroundColor,overflow:"hidden"})),l=Q(()=>{const u={height:"100%",width:`${n.percentage}%`,borderRadius:typeof n.borderRadius=="number"?`${n.borderRadius}px`:n.borderRadius,transition:`width ${n.duration}ms cubic-bezier(0.4, 0, 0.2, 1)`,position:"relative",overflow:"hidden"};return n.gradient?pt(lt({},u),{background:n.gradientColors}):pt(lt({},u),{background:n.color})});return(u,s)=>(r(),d("div",sm,[t("div",{class:"progress-bar",style:ft(e(a))},[t("div",{class:"progress-fill",style:ft(e(l))},[o.showPercentage?(r(),d("span",dm,i(Math.round(o.percentage))+"% ",1)):C("",!0)],4)],4)]))}};var Xa=N(lm,[["__scopeId","data-v-2691c876"]]);const um={key:0,class:"disk-item error"},cm=["title"],pm={class:"disk-item_value"},fm={class:"value-data"},mm={class:"error"},gm={key:1,class:"disk-item"},vm=["title"],bm={key:0,class:"disk_value"},hm={class:"value-data"},_m={href:"/cgi-bin/luci/admin/nas/smart"},xm={class:"error"},wm={key:1,class:"disk_value"},km={class:"disk-item_value"},ym={class:"value-data"},Fm={class:"disk-item-tooltip"},Em={class:"disk_icon"},$m={key:0,class:"tooltip-trigger"},Cm={class:"disk_tip"},Dm={class:"tooltip-text tooltip-top"},Bm={class:"disk_dir_tip"},Ym={key:1,class:"tooltip-trigger"},Am={class:"disk_tip"},Sm={class:"tooltip-text tooltip-top"},zm={class:"disk_dir_tip"},Pm={key:2,class:"disk-item load"},Tm=["title"],Im={class:"disk_value"},Mm={class:"disk-item_value"},Lm={class:"value-data"},Nm={key:3,class:"disk-item load"},Om=["title"],Vm={class:"disk_value"},Gm={key:0,class:"disk-item_value"},jm={class:"value-data"},Um={class:"disk_icon"},qm=T({props:{disk:{type:Object,required:!0},smartWarning:{type:Boolean}},setup(o){const n=o,{$gettext:a}=W(),l=Q(()=>n.disk.errorInfo?"error":n.disk.childrens==null||n.disk.childrens.length==0||n.disk.childrens.length==1&&n.disk.childrens[0].filesystem=="No FileSystem"?"load":n.disk.childrens.filter(f=>f.mountPoint).length==0?"unmounted":"success"),u=Q(()=>{const f=n.disk;let m=f.name;return f.size&&(m+=`\u3010${f.size}\u3011`),f.venderModel&&(m+=`(${f.venderModel})`),m}),s=Q(()=>{var m;const f=n.disk;return!f.isSystemRoot&&(((m=f.childrens)==null?void 0:m.filter(_=>_.isReadOnly&&_.filesystem!="swap").length)||0)>0}),c=()=>{da({action:"disk",disk:n.disk,Cancel:()=>{},Next:()=>{location.reload()}})},x=()=>{rm({action:"disk",disk:n.disk,Cancel:()=>{},Next:()=>{location.reload()}})},v=()=>{const f=n.disk,m=f.childrens||[];Qa({action:"nas",disk:f,mount:m[0],Cancel:()=>{},Next:()=>{location.reload()}})},p=f=>f<50?"#2fc867":f>50&&f<=75?"#f97316":"#dc2626";return(f,m)=>{var _,y,b;return e(l)=="error"?(r(),d("li",um,[t("div",{class:"disk-item_name",title:e(u)},[t("span",null,i(e(u)),1)],8,cm),t("div",pm,[t("div",fm,[t("span",mm,i(o.disk.errorInfo),1)])])])):e(l)=="success"?(r(),d("li",gm,[t("div",{class:"disk-item_name",title:e(u)},[t("span",null,i(e(u)),1)],8,vm),o.disk.smartWarning&&o.smartWarning?(r(),d("div",bm,[t("div",hm,[t("a",_m,[t("span",xm,i(e(a)("S.M.A.R.T\u5F02\u5E38")),1)])])])):(r(),d("div",wm,[t("div",km,[t("div",ym,[D(Xa,{percentage:o.disk.usage||0,showPercentage:!1,height:"10px",borderRadius:"10px",color:p(o.disk.usage||0),backgroundColor:"#f4f5f7"},null,8,["percentage","color"]),t("div",null,[t("span",null,i(e(a)("\u4F7F\u7528\u7387"))+"\uFF1A"+i(o.disk.usage||0)+"%",1),t("span",null,i(e(a)("\u5DF2\u4F7F\u7528"))+"\uFF1A"+i(o.disk.used),1)])]),t("div",Fm,[t("span",null,i(e(a)("\u4EC5\u7EDF\u8BA1\u5DF2\u6302\u8F7D\u5206\u533A")),1)])]),t("div",Em,[o.disk.isDockerRoot&&o.disk.isSystemRoot&&o.disk.usage&&o.disk.usage>=90?(r(),d("span",$m,[t("span",Cm,[D(zt)]),t("div",null,[t("div",Dm,[t("span",Bm,i(e(a)("\u60A8\u7684\u7CFB\u7EDF\u7A7A\u95F4\u5DF2\u4E0D\u8DB3\uFF0C\u68C0\u6D4B\u5230\u60A8\u7684Docker\u6839\u76EE\u5F55\u4F4D\u4E8E\u7CFB\u7EDF\u6839\u76EE\u5F55\u4E0A\uFF0C\u53EF\u80FD\u4F1A\u5F71\u54CD\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u5EFA\u8BAE\u4F7F\u7528Docker\u8FC1\u79FB\u5411\u5BFC\u5C06Docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\u4E0A\u3002")),1)])])])):C("",!0),e(s)?(r(),d("span",Ym,[t("span",Am,[D(zt)]),t("div",null,[t("div",Sm,[t("span",zm,i(e(a)("\u5206\u533A\u5B58\u5728\u5F02\u5E38\uFF0C\u70B9\u51FB\u5206\u533A\u5217\u8868\u67E5\u770B\u9519\u8BEF")),1)])])])):C("",!0),e(s)&&((_=o.disk.childrens)==null?void 0:_.length)==1?(r(),d("span",{key:2,class:"disk_infoicon",onClick:m[0]||(m[0]=k=>c())},[D(X9)])):C("",!0),t("span",{class:"disk_infoicon",onClick:m[1]||(m[1]=k=>x())},[D(Ea,{style:{color:"var(--app-container_title-color)"}})])])]))])):e(l)=="load"?(r(),d("li",Pm,[t("div",{class:"disk-item_name",title:e(u)},[t("span",null,i(e(u)),1)],8,Tm),t("div",Im,[t("div",Mm,[t("div",Lm,[t("button",{onClick:m[2]||(m[2]=k=>c())},i(e(a)("\u683C\u5F0F\u5316\u5E76\u6302\u8F7D")),1)])])])])):e(l)=="unmounted"?(r(),d("li",Nm,[t("div",{class:"disk-item_name",title:e(u)},[t("span",null,i(e(u)),1)],8,Om),t("div",Vm,[((y=o.disk.childrens)==null?void 0:y.length)==1?(r(),d("div",Gm,[t("div",jm,[o.disk.childrens[0].filesystem=="swap"?(r(),d("button",{key:0,onClick:m[3]||(m[3]=k=>x())},i(e(a)("\u67E5\u770B\u8BE6\u60C5")),1)):(r(),d("button",{key:1,onClick:m[4]||(m[4]=k=>v())},i(e(a)("\u624B\u52A8\u6302\u8F7D")),1))])])):C("",!0),t("div",Um,[(((b=o.disk.childrens)==null?void 0:b.length)||0)>1?(r(),d("span",{key:0,class:"disk_infoicon",onClick:m[5]||(m[5]=k=>x())},[D(Ea,{style:{color:"var(--app-container_title-color)"}})])):C("",!0)])])])):C("",!0)}}});var Ze=N(qm,[["__scopeId","data-v-34a1dfa9"]]);const Rm=o=>(it("data-v-1e31ad3a"),o=o(),rt(),o),Hm={href:"/cgi-bin/luci/admin/nas/raid"},Wm=Rm(()=>t("div",null,[t("a",{href:"/cgi-bin/luci/admin/nas/smart"},"S.M.A.R.T.")],-1)),Jm={href:"/cgi-bin/luci/admin/system/diskman"},Zm={href:"/cgi-bin/luci/admin/system/mounts"},Km={class:"content"},Qm={key:0,class:"disk_loading_icon"},Xm={class:"disk_loading_info"},tg={class:"item",style:{"margin-top":"4px","padding-bottom":"0"}},eg={class:"icon_box"},ag={class:"info"},og={class:"name"},ng={class:"schedule"},ig={key:0,class:"line"},rg={key:1,class:"item"},sg={class:"icon_box",style:{background:"#f3e8ff"}},dg={class:"info"},lg={class:"name"},ug={class:"schedule"},cg={key:2,class:"item"},pg={class:"icon_box",style:{background:"#dbfce7"}},fg={class:"info"},mg={class:"name"},gg={class:"schedule"},vg=T({setup(o){const{$gettext:n}=W(),a=E(!1),l=mt({disks:null,raidList:null}),u=()=>{j.Nas.Disk.Status.GET().then(x=>{var v;if((v=x==null?void 0:x.data)!=null&&v.result){const p=x.data.result;l.disks=p.disks||[]}})};(()=>O(this,null,function*(){try{const x=yield j.Raid.List.GET();if(x!=null&&x.data){const{success:v,error:p,result:f}=x.data;if(f&&(l.raidList=f.disks||[]),p)throw p}}catch(x){console.log(x)}}))(),u();const c=()=>{Dt.installAndGo("luci-app-linkease",n("\u6613\u6709\u4E91"),"/cgi-bin/luci/admin/services/linkease/file/","app-meta-linkease")};return(x,v)=>{const p=ht("icon-loading");return r(),J(Rt,{title:e(n)("\u78C1\u76D8\u4FE1\u606F"),style:{width:"100%",display:"block"},"is-settings-menu-open":a.value,"onUpdate:isSettingsMenuOpen":v[1]||(v[1]=f=>a.value=f)},{icon:G(()=>[D(Fa,{color:"#45556c",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:c},[D(N9,{color:"#0a0a0a",class:"icon1 interfaceIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u6587\u4EF6\u7BA1\u7406")),1),t("div",{class:"rotation",onClick:v[0]||(v[0]=ut(f=>a.value=!a.value,["stop"]))},[D(Ee,{class:"moreIcon"})])])]),"settings-menu":G(()=>[t("div",null,[t("a",Hm,i(e(n)("RAID\u7BA1\u7406")),1)]),Wm,t("div",null,[t("a",Jm,i(e(n)("\u78C1\u76D8\u7BA1\u7406")),1)]),t("div",null,[t("a",Zm,i(e(n)("\u6302\u8F7D\u70B9")),1)])]),default:G(()=>{var f,m,_,y;return[t("div",Km,[!e(l).disks&&!e(l).raidList?(r(),d("div",Qm,[D(p,{size:38,color:"#888888"}),t("span",Xm,i(e(n)("\u6B63\u5728\u83B7\u53D6\u78C1\u76D8\u4FE1\u606F...")),1)])):C("",!0),e(l).disks?(r(),d(U,{key:1},[t("div",tg,[t("div",eg,[D(Fa,{color:"#2b6cfc",class:"icon"})]),t("div",ag,[t("div",og,[t("div",null,i(e(n)("\u7CFB\u7EDF\u6839\u76EE\u5F55")),1)]),t("div",ng,[(r(!0),d(U,null,tt((f=e(l).disks)==null?void 0:f.filter(b=>b.isSystemRoot),(b,k)=>(r(),J(Ze,{key:k,disk:b},null,8,["disk"]))),128))])])]),((m=e(l).disks)==null?void 0:m.filter(b=>!b.isSystemRoot).length)>0?(r(),d("div",ig)):C("",!0),((_=e(l).disks)==null?void 0:_.filter(b=>!b.isSystemRoot).length)>0?(r(),d("div",rg,[t("div",sg,[D(G9,{class:"icon"})]),t("div",dg,[t("div",lg,[t("div",null,i(e(n)("\u5DF2\u6302\u8F7D\u78C1\u76D8")),1)]),t("div",ug,[(r(!0),d(U,null,tt((y=e(l).disks)==null?void 0:y.filter(b=>!b.isSystemRoot),(b,k)=>(r(),J(Ze,{key:k,disk:b,smartWarning:!0},null,8,["disk"]))),128))])])])):C("",!0)],64)):C("",!0),e(l).raidList&&e(l).raidList.length>0?(r(),d("div",cg,[t("div",pg,[D(Za,{color:"#0bab47",class:"icon"})]),t("div",fg,[t("div",mg,[t("div",null,i(e(n)("RAID\u8BBE\u5907")),1)]),t("div",gg,[(r(!0),d(U,null,tt(e(l).raidList,(b,k)=>(r(),J(Ze,{key:k,disk:b},null,8,["disk"]))),128))])])])):C("",!0)])]}),_:1},8,["title","is-settings-menu-open"])}}});var bg=N(vg,[["__scopeId","data-v-1e31ad3a"]]);const hg={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},_g=["fill"],$a=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",hg,[t("path",{d:"M473.950316 63.164632l488.070737 234.226526v414.234947l-337.92 200.111158-502.837895-295.019789V223.447579l352.687158-160.282947zM200.434526 306.661053V571.284211l383.892211 225.28V510.113684L200.434526 306.661053z m682.253474 82.728421l-219.082105 120.400842v286.396631l219.082105-129.670736V389.335579z m-409.761684-238.753685L258.910316 247.915789l364.759579 193.374316 212.075789-116.520421-362.819368-174.08z",fill:o.color,"p-id":"6174"},null,8,_g)]))}}),xg=o=>(it("data-v-5d803f28"),o=o(),rt(),o),wg={class:"app-container_docker"},kg={class:"docker-item"},yg={class:"docker-item_name"},Fg={key:0,class:"docker-item_value"},Eg={class:"configure"},$g={key:1,class:"docker-item_value"},Cg={class:"input-switch"},Dg=["value","disabled"],Bg=xg(()=>t("em",null,null,-1)),Yg=[Bg],Ag={key:0,class:"status-icon"},Sg={key:1,class:"status-icon",style:{background:"#e9ebef",color:"#4a5565"}},zg={key:0,class:"content"},Pg={class:"docker-item_name"},Tg={class:"docker_box"},Ig={class:"path"},Mg={key:0},Lg={class:"tooltip-trigger"},Ng={class:"docker_tip"},Og={class:"tooltip-text tooltip-top"},Vg={class:"docker_dir_tip"},Gg=T({props:{docker:{type:Object}},setup(o){var x;const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>{var v;return((v=n.docker)==null?void 0:v.status)!="not installed"}),s=mt({enable:((x=n.docker)==null?void 0:x.status)=="running",disabled:!1}),c=()=>O(this,null,function*(){s.disabled=!0;try{const v=yield j.Guide.DockerSwitch.POST({enable:s.enable});if(v!=null&&v.data){const{success:p,error:f}=v.data;if(f)throw s.enable=!s.enable,f;(p||0)==0}}catch(v){$.Warning(`${v}`)}finally{s.disabled=!1}});return(v,p)=>{var f,m,_,y;return r(),d("ul",wg,[t("li",kg,[t("div",yg,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),(f=n.docker)!=null&&f.status?(r(),d(U,{key:0},[e(u)?(r(),d("div",$g,[t("label",Cg,[L(t("input",{type:"checkbox",hidden:"",value:!e(s).enable,"onUpdate:modelValue":p[0]||(p[0]=b=>e(s).enable=b),disabled:e(s).disabled,onChange:c},null,40,Dg),[[qt,e(s).enable]]),t("span",{class:st(e(s).enable?"enable":"close")},Yg,2)]),e(s).enable?(r(),d("span",Ag,i(e(a)("\u8FD0\u884C\u4E2D")),1)):C("",!0),e(s).enable?C("",!0):(r(),d("span",Sg,i(e(a)("\u672A\u542F\u7528")),1))])):(r(),d("div",Fg,[t("span",Eg,i(e(a)("\u672A\u5B89\u88C5")),1)]))],64)):C("",!0)]),((m=o.docker)==null?void 0:m.status)=="running"?(r(),d("li",zg,[t("div",Pg,[t("span",{style:ft({color:"var(--app-container_title-color)"})},i(e(a)("Docker\u6839\u76EE\u5F55\uFF1A")),5)]),t("div",Tg,[t("div",Ig,i((_=o.docker)==null?void 0:_.path),1),(y=o.docker)!=null&&y.errorInfo?(r(),d("span",Mg,[t("span",Lg,[t("span",Ng,[D(zt)]),t("div",null,[t("div",Og,[t("span",Vg,i(o.docker.errorInfo),1)])])])])):C("",!0)])])):C("",!0)])}}});var jg=N(Gg,[["__scopeId","data-v-5d803f28"]]);const Ug={},qg={width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Rg=t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),Hg=[Rg];function Wg(o,n){return r(),d("svg",qg,Hg)}var Jg=N(Ug,[["render",Wg]]);const Zg={key:0,class:"action"},Kg={class:"title"},Qg={class:"desc"},Xg={class:"roots"},tv={class:"roots_tit"},ev={class:"root"},av={class:"move"},ov={class:"roots_tit"},nv={key:0},iv=["onSubmit"],rv={class:"select-editable"},sv={selected:"",value:null},dv=["value"],lv={value:"useInput"},uv=["placeholder"],cv={key:1,class:"tips"},pv={class:"tips_content"},fv={class:"tip"},mv={key:0,class:"btns"},gv={key:1,class:"btns"},vv={key:1,class:"action docker_success"},bv={class:"title"},hv={class:"finished"},_v={class:"successed"},xv={class:"btns"},wv={key:2,class:"action docker_download"},kv={class:"title"},yv={class:"finished"},Fv={class:"successed"},Ev={class:"docker_moves"},$v={class:"moves change"},Cv={for:"move"},Dv={class:"moves"},Bv={for:"cover"},Yv={class:"btns"},Av=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(),s=E(),c=E(0),x=E("null"),v=E(""),p=E(),f=E(!1),m=E("");(()=>{j.Nas.Disk.Status.GET().then(F=>{F!=null&&F.data.result&&(p.value=F==null?void 0:F.data.result)}),j.Guide.DockerStatus.GET().then(F=>{var Y;if((Y=F==null?void 0:F.data)!=null&&Y.result){const P=F.data.result;u.value=P}}),j.Guide.DockerPartitionList.GET().then(F=>{var Y;if((Y=F==null?void 0:F.data)!=null&&Y.result){const P=F.data.result;s.value=P}})})();const y=F=>{let Y=x.value;if(Y=="useInput"&&(Y=v.value),Y==null||Y=="null"||Y=="")return;const P=$.Loading(a("\u6B63\u5728\u8FC1\u79FB\u4E2D..."));j.Guide.DockerTransfer.POST({path:Y,force:F,overwriteDir:!!m.value}).then(A=>{var B;if(A!=null&&A.data){if((A.data.success||0)==0){if((B=A.data.result)!=null&&B.emptyPathWarning){f.value=!0,c.value=2;return}c.value=1;return}else if(A.data.error)throw A.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(A=>{$.Error(A)}).finally(()=>P.Close())},b=()=>{f.value=!1,y(!1)},k=F=>{F.preventDefault(),n.Close&&n.Close()},g=F=>{F.preventDefault(),location.reload()},h=F=>{F.preventDefault(),c.value=0},w=F=>{F.preventDefault(),y(!0)};return(F,Y)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>{var P,A,B,S,R,V;return[c.value==0?(r(),d("div",Zg,[t("h2",Kg,i(e(a)("Docker\u8FC1\u79FB\u5411\u5BFC")),1),t("p",Qg,i(e(a)("\u5F53\u7CFB\u7EDF\u6839\u76EE\u5F55\u7A7A\u95F4\u4E0D\u8DB3\u65F6\uFF0C\u53EF\u5C06Docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\uFF0C\u4EE5\u4FDD\u8BC1\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C\uFF08\u76EE\u6807\u5206\u533A\u4E0D\u652F\u6301NTFS\uFF0CFAT\u7B49\u6587\u4EF6\u7CFB\u7EDF\uFF09")),1),t("div",Xg,[t("span",tv,i(e(a)("Docker\u6839\u76EE\u5F55\uFF1A")),1),t("span",ev,i((P=u.value)==null?void 0:P.path),1)]),t("div",av,[t("span",ov,i(e(a)("\u8FC1\u79FB\u5230\uFF1A")),1),(B=(A=s.value)==null?void 0:A.partitionList)!=null&&B.length?(r(),d("div",nv,[t("form",{onSubmit:ut(b,["prevent"])},[t("label",null,[t("div",rv,[L(t("select",{"onUpdate:modelValue":Y[0]||(Y[0]=I=>x.value=I)},[t("option",sv,i(e(a)("\u8BF7\u9009\u62E9\u8FC1\u79FB\u8DEF\u5F84")),1),(r(!0),d(U,null,tt((S=s.value)==null?void 0:S.partitionList,(I,M)=>(r(),d("option",{value:I,key:M},i(I),9,dv))),128)),t("option",lv,i(e(a)("- -\u81EA\u5B9A\u4E49- -")),1)],512),[[dt,x.value,void 0,{trim:!0}]]),x.value=="useInput"?L((r(),d("input",{key:0,type:"text","onUpdate:modelValue":Y[1]||(Y[1]=I=>v.value=I),required:"",placeholder:e(a)("\u8BF7\u8F93\u5165\u8FC1\u79FB\u8DEF\u5F84")},null,8,uv)),[[et,v.value,void 0,{trim:!0}]]):C("",!0)])])],40,iv)])):s.value?(r(),d("div",cv,[t("div",pv,[D(zt),t("span",fv,i(e(a)("\u68C0\u6D4B\u5230\u60A8\u8FD8\u6CA1\u6709\u6302\u8F7D\u5916\u7F6E\u786C\u76D8\u6216\u5206\u533A\u5C0F\u4E8E8GB\uFF0C\u9700\u8981\u60A8\u63A5\u4E0A\u786C\u76D8\u5E76\u683C\u5F0F\u5316\u6216\u624B\u52A8\u6302\u8F7D\u786C\u76D8\u540E\uFF0C\u518D\u6267\u884CDocker\u8FC1\u79FB\u5411\u5BFC\uFF0C\u5C06Docker\u8FC1\u79FB\u5230\u76EE\u6807\u786C\u76D8\u3002")),1)])])):C("",!0)]),(V=(R=s.value)==null?void 0:R.partitionList)!=null&&V.length?(r(),d("div",mv,[t("button",{class:"cbi-button cbi-button-apply",onClick:b},i(e(a)("\u786E\u5B9A")),1),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:k},i(e(a)("\u53D6\u6D88")),1)])):(r(),d("div",gv,[t("button",{class:"cbi-button cbi-button-apply",onClick:k},i(e(a)("\u786E\u5B9A")),1)]))])):c.value==1?(r(),d("div",vv,[t("h2",bv,i(e(a)("Docker\u8FC1\u79FB\u5411\u5BFC")),1),t("div",hv,[D(la)]),t("p",_v,i(e(a)("\u8FC1\u79FB\u6210\u529F\uFF01")),1),t("div",xv,[t("button",{class:"cbi-button cbi-button-apply",onClick:g},i(e(a)("\u786E\u5B9A")),1)])])):c.value==2?(r(),d("div",wv,[t("h2",kv,i(e(a)("Docker\u8FC1\u79FB\u5411\u5BFC")),1),t("div",yv,[D(Jg)]),t("p",Fv,i(e(a)("\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0D\u4E3A\u7A7A")),1),t("div",Ev,[t("div",$v,[L(t("input",{type:"radio",id:"move",name:"moves","onUpdate:modelValue":Y[2]||(Y[2]=I=>m.value=I),value:""},null,512),[[Ft,m.value]]),t("label",Cv,i(e(a)("\u66F4\u6362\u76EE\u5F55\uFF08\u4E0D\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u4EC5\u5C06Docker\u76EE\u5F55\u4FEE\u6539\u4E3A\u76EE\u6807\u8DEF\u5F84\uFF09")),1)]),t("div",Dv,[L(t("input",{type:"radio",id:"cover",name:"moves","onUpdate:modelValue":Y[3]||(Y[3]=I=>m.value=I),value:"true"},null,512),[[Ft,m.value]]),t("label",Bv,i(e(a)("\u8986\u76D6\u8FC1\u79FB\uFF08\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u7EE7\u7EED\u8FC1\u79FB\u4F1A\u6E05\u7A7A\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0B\u7684\u6587\u4EF6\uFF09")),1)])]),t("div",Yv,[f.value?(r(),d("button",{key:0,class:"cbi-button cbi-button-apply",onClick:w},i(e(a)("\u786E\u5B9A")),1)):C("",!0),t("button",{class:"cbi-button cbi-button-apply",onClick:h},i(e(a)("\u8FD4\u56DE")),1),f.value?C("",!0):(r(),d("button",{key:1,class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:g},i(e(a)("\u53D6\u6D88")),1))])])):C("",!0)]}),_:1},8,["Close"]))}});var Sv=N(Av,[["__scopeId","data-v-81932f72"]]);const zv=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(Sv,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},Pv={href:"/cgi-bin/luci/admin/docker/overview"},Tv={key:0,class:"content"},Iv={key:1,class:"content",style:{display:"flex","justify-content":"center"}},Mv=T({setup(o){const{$gettext:n}=W(),a=E(!1),l=E(),u=E(!1),s=()=>{zv()};return setTimeout(()=>{j.Guide.DockerStatus.GET().then(x=>{var v;if((v=x==null?void 0:x.data)!=null&&v.result){const p=x.data.result;l.value=p}}).finally(()=>{a.value=!0})},1100),(x,v)=>{var f;const p=ht("icon-loading");return r(),J(Rt,{title:"Docker",showSettings:!0,onFooterClick:s,style:{width:"100%",height:"100%",display:"block"},"is-settings-menu-open":u.value,"onUpdate:isSettingsMenuOpen":v[1]||(v[1]=m=>u.value=m)},xo({icon:G(()=>[D($a,{color:"#155dfc",class:"icon"})]),settings:G(()=>{var m;return[t("div",{class:"btn_settings",onClick:s},[D($a,{color:"#0a0a0a",class:"icon1 dockerIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u7BA1\u7406\u5BB9\u5668")),1),((m=l.value)==null?void 0:m.status)==="running"?(r(),d("div",{key:0,class:"rotation",onClick:v[0]||(v[0]=ut(_=>u.value=!u.value,["stop"]))},[D(Ee,{class:"moreIcon"})])):C("",!0)])]}),default:G(()=>[a.value?(r(),d("div",Tv,[D(jg,{docker:l.value},null,8,["docker"])])):(r(),d("div",Iv,[D(p,{size:40,color:"currentColor"})]))]),_:2},[((f=l.value)==null?void 0:f.status)==="running"?{name:"settings-menu",fn:G(()=>[t("div",null,[t("a",Pv,i(e(n)("Docker\u9AD8\u7EA7\u914D\u7F6E")),1)])])}:void 0]),1032,["is-settings-menu-open"])}}});var Lv=N(Mv,[["__scopeId","data-v-faa89494"]]);const Nv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Ov=["fill"],Vv=["fill"],to=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",Nv,[t("path",{d:"M577.78 355.55H449.62c-52.93 0-96 43.07-96 96V579.7c0 52.93 43.07 96 96 96h128.15c52.93 0 96-43.07 96-96V451.55c0.01-52.93-43.06-96-95.99-96z m32 224.15c0 17.64-14.36 32-32 32H449.62c-17.65 0-32-14.36-32-32V451.55c0-17.65 14.35-32 32-32h128.15c17.64 0 32 14.35 32 32V579.7z",fill:o.color,"p-id":"5378"},null,8,Ov),t("path",{d:"M927.33 547.13c17.67 0 32-14.33 32-32s-14.33-32-32-32h-62.44V355.2h62.44c17.67 0 32-14.33 32-32s-14.33-32-32-32h-64.37c-10.34-64.43-61.3-115.45-125.69-125.87v-64.19c0-17.67-14.33-32-32-32s-32 14.33-32 32v62.22H545.34v-62.22c0-17.67-14.33-32-32-32s-32 14.33-32 32v62.22H353.2v-62.22c0-17.67-14.33-32-32-32s-32 14.33-32 32v64.16c-64.46 10.37-115.49 61.42-125.83 125.9H99.14c-17.67 0-32 14.33-32 32s14.33 32 32 32h62.3v127.93h-62.3c-17.67 0-32 14.33-32 32s14.33 32 32 32h62.3v128.14h-62.3c-17.67 0-32 14.33-32 32s14.33 32 32 32h64.28c10.45 64.34 61.42 115.25 125.79 125.61v64.46c0 17.67 14.33 32 32 32s32-14.33 32-32v-62.51h128.14v62.51c0 17.67 14.33 32 32 32s32-14.33 32-32v-62.51h127.93v62.51c0 17.67 14.33 32 32 32s32-14.33 32-32v-64.48c64.3-10.41 115.2-61.29 125.64-125.58h64.42c17.67 0 32-14.33 32-32s-14.33-32-32-32H864.9V547.13h62.43zM800.89 714.82c0 48.52-39.48 88-88 88H313.44c-48.52 0-88-39.48-88-88V315.36c0-48.52 39.48-88 88-88H712.9c48.52 0 88 39.48 88 88v399.46z",fill:o.color,"p-id":"5379"},null,8,Vv)]))}}),Gv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},jv=["fill"],Uv=T({props:{color:{type:String,default:"#ef4444"}},setup(o){return(n,a)=>(r(),d("svg",Gv,[t("path",{d:"M520 75c72.899 0 132.133 58.543 133.31 131.209l0.018 2.206v399.237C700.759 646.978 729 705.514 729 768.714c0 84.846-50.493 157.892-123.051 190.69C579.509 971.959 549.966 979 518.85 979c-57.133 0-108.962-23.737-146.008-61.784C334.65 879.324 311 826.783 311 768.714c0-63.27 28.313-121.806 75.67-161.065l0.002-399.234C386.672 134.732 446.365 75 520 75z m0 59.807c-40.22 0-72.9 32.3-73.55 72.39l-0.01 1.218v403.457c4.008 12.048-0.02 25.747-10.721 33.573l-0.619 0.441c-40.008 27.753-64.332 73.214-64.332 122.828 0 82.472 66.813 149.33 149.232 149.33s149.232-66.858 149.232-149.33c0-47.591-22.367-91.397-59.645-119.44l-1.134-0.846a29.773 29.773 0 0 1-10.972-15.751 29.763 29.763 0 0 1-3.913-14.111l-0.008-0.706V208.415c0-40.653-32.934-73.608-73.56-73.608z m-2.299 236.926c4.41 0 8.66 0.69 12.647 1.968 16.826 4.965 29.19 20.52 29.19 38.81l0.002 240.184c47.972 17.182 82.294 63.07 82.294 116.982 0 6.94-0.568 13.747-1.662 20.376-6.746 60.536-58.728 108.02-121.321 108.02-47.223 0-88.407-27.027-108.683-66.296-10.557-18.27-16.6-39.479-16.6-62.1 0-54.083 34.542-100.093 82.754-117.145l0.002-239.422c0-22.852 18.525-41.377 41.377-41.377z",fill:o.color,"p-id":"4599"},null,8,jv)]))}}),qv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Rv=["fill"],eo=T({props:{color:{type:String,default:"#222222"}},setup(o){return(n,a)=>(r(),d("svg",qv,[t("path",{d:"M760.1 64l-150 262.7-41 71.8c-6.1 10.7 1.6 23.9 13.9 23.9h104.7c13.9 0 21.2 16.6 11.8 26.9L410.8 761.9l59.5-178.5 21.1-63.2c3.5-10.4-4.3-21.1-15.2-21.1H277.8c-11.6 0-19.4-12-14.6-22.6l179-393.8c5.2-11.4 16.6-18.8 29.1-18.8h288.8M450.8 0c-25.1 0-47.9 14.7-58.3 37.5L194.7 472.7c-19.3 42.4 11.7 90.5 58.3 90.5h145.5c5.5 0 9.3 5.3 7.6 10.5L256 1024l515.3-558.2c37.8-41 8.8-107.4-47-107.4h-44.8c-6.1 0-10-6.6-6.9-12L870.4 0H450.8z","p-id":"4712",fill:o.color},null,8,Rv)]))}}),Hv={key:0,class:"center-content"},Wv=T({props:{value:null,color:null,icon:null,label:null,width:null,height:null},setup(o){const n=o;Qe([wo,Xe,ta]);const a=E(null);let l=null;function u(x,v){return{tooltip:{show:!1},series:[{type:"pie",radius:["75%","90%"],avoidLabelOverlap:!1,label:{show:!1},labelLine:{show:!1},z:1,zlevel:0,data:[{value:x,itemStyle:{color:v||"#409EFF"}},{value:Math.max(0,100-x),itemStyle:{color:"#f0f0f0"}}]}]}}const s=()=>{!a.value||(l=l!=null?l:ea(a.value),l.setOption(u(n.value,n.color)))};At(()=>O(this,null,function*(){yield oa(),s(),window.addEventListener("resize",c)}));function c(){l==null||l.resize()}return Yt(()=>[n.value,n.color],()=>{l?l.setOption({series:[{z:1,zlevel:0,data:[{value:n.value,itemStyle:{color:n.color||"#409EFF"}},{value:Math.max(0,100-n.value),itemStyle:{color:"#f0f0f0"}}]}]}):s()},{immediate:!0}),ke(()=>{window.removeEventListener("resize",c),l==null||l.dispose(),l=null}),(x,v)=>(r(),d("div",{class:"pie-chart-wrapper",style:ft({width:o.width||"120px",height:o.height||"120px"})},[t("div",{ref_key:"chartDom",ref:a,class:"chart-dom"},null,512),o.icon||o.label?(r(),d("div",Hv,[o.icon==="chip"?(r(),J(to,{key:0,color:o.color,class:"center-icon"},null,8,["color"])):o.icon==="temperature"?(r(),J(Uv,{key:1,color:o.color,class:"center-icon"},null,8,["color"])):o.icon==="lightning"?(r(),J(eo,{key:2,color:o.color,class:"center-icon"},null,8,["color"])):C("",!0),o.label?(r(),d("div",{key:3,class:"center-label",style:ft({color:o.color})},i(o.label),5)):C("",!0)])):C("",!0)],4))}});var Ke=N(Wv,[["__scopeId","data-v-a9cd39ac"]]);const Jv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Zv=["fill"],Ca=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",Jv,[t("path",{d:"M868.95177918 215.34678468H274.11312994c-10.26749627 0-19.00277466 3.6151618-26.30943653 10.88910739-7.22487113 7.23032433-10.89456058 15.97650768-10.89456059 26.20583515v370.75858453c0 10.24023245 3.66968946 18.95370022 10.89456059 26.22764579 7.30666259 7.22487113 16.04194099 10.86184429 26.30943653 10.86184429h594.83864924c10.28385442 0 19.04094415-3.63697315 26.28217344-10.86184429 7.30120941-7.27394558 10.9218244-15.98741334 10.92182439-26.22764579V252.44172722c0-10.2293275-3.62061501-18.97551083-10.92727686-26.20583516-7.23577681-7.27394558-15.99286582-10.8891081-26.27672097-10.88910738M274.09131931 141.21142578h594.83864924c30.77522572 0 57.07375657 10.86729676 78.86287773 32.59643853 21.78912116 21.74004671 32.66187112 47.91861806 32.66187114 78.62841045v370.76403699c0 30.68798176-10.87274996 56.91562756-32.66187114 78.63386293-21.78912116 21.72914105-48.08765274 32.59643853-78.86287773 32.59643851H608.68737796v74.15716953h111.5465602c10.26204379 0 19.03003849 3.6151618 26.28217344 10.8891081 7.29030445 7.22487113 10.91091874 15.97650768 10.91091872 26.20583518 0 10.24023245-3.62061501 18.98641651-10.91637192 26.20038195-7.25213496 7.28485125-16.01467717 10.90001305-26.27672024 10.90001379H422.80370787c-10.27840195 0-19.0191328-3.6151618-26.30943728-10.90001379-7.25213496-7.21396618-10.89456058-15.96014952-10.89456056-26.20038195 0-10.23477998 3.6478781-18.97551083 10.89456056-26.20583518 7.29030445-7.27394558 16.03103531-10.8891081 26.30943728-10.8891081h111.53565452v-74.15716953H274.09131931c-30.79703633 0-57.09011544-10.86729676-78.86287845-32.59643851C173.43931968 680.11593931 162.54475911 653.88829351 162.54475911 623.20031175V252.44172722C162.54475911 221.72648236 173.43931968 195.54791102 195.22844086 173.80786431 217.00665706 152.07872254 243.29428298 141.21142578 274.09131931 141.21142578","p-id":"6454",fill:o.color},null,8,Zv)]))}}),Kv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Qv=["fill"],Xv=["fill"],tb=T({props:{color:{type:String,default:"#333333"}},setup(o){return(n,a)=>(r(),d("svg",Kv,[t("path",{d:"M512 458.67c-8.66 0-15.69 7.02-15.69 15.69v125.49c0 8.66 7.02 15.69 15.69 15.69s15.69-7.02 15.69-15.69v-125.5c0-8.66-7.03-15.68-15.69-15.68z m-31.37-26.98h62.75c8.66 0 15.69-7.02 15.69-15.69 0-8.66-7.02-15.69-15.69-15.69h-15.69V296.78c0-8.66-7.02-15.69-15.69-15.69s-15.69 7.02-15.69 15.69v103.53h-15.69c-8.66 0-15.69 7.02-15.69 15.69 0.01 8.66 7.03 15.69 15.7 15.69z m219.61 53.33c-8.66 0-15.69 7.02-15.69 15.69V601.1c0 8.66 7.02 15.69 15.69 15.69s15.69-7.02 15.69-15.69v-99.76c0.35-8.66-6.39-15.95-15.05-16.3-0.22-0.02-0.43-0.02-0.64-0.02z m-31.38-27.61h62.75c8.66 0 15.69-7.02 15.69-15.69 0-8.66-7.02-15.69-15.69-15.69h-14.43V296.78c0-8.66-7.02-15.69-15.69-15.69s-15.69 7.02-15.69 15.69v125.49h-16.94c-8.66 0-15.69 7.02-15.69 15.69 0 8.66 7.02 15.69 15.69 15.69v3.76z m-376.47 32.63h62.75c8.66 0 15.69-7.02 15.69-15.69s-7.02-15.69-15.69-15.69h-15.69V296.78c0-8.66-7.02-15.69-15.69-15.69-8.66 0-15.69 7.02-15.69 15.69v161.88h-15.69c-8.66 0-15.69 7.02-15.69 15.69s7.04 15.69 15.7 15.69z m31.37 32c-8.66 0-15.69 7.02-15.69 15.69v62.75c0 8.66 7.02 15.69 15.69 15.69 8.66 0 15.69-7.02 15.69-15.69v-62.75c0-8.67-7.02-15.69-15.69-15.69z",fill:o.color,"p-id":"15217"},null,8,Qv),t("path",{d:"M870 116.39H154c-49.71 0-90 40.29-90 90v485.1c0 49.71 40.29 90 90 90h716c49.71 0 90-40.29 90-90v-485.1c0-49.7-40.29-90-90-90z m50 565.1c0 33.14-26.86 60-60 60H164c-33.14 0-60-26.86-60-60v-465.1c0-33.14 26.86-60 60-60h696c33.14 0 60 26.86 60 60v465.1zM680.24 907.61H343.76c-11.05 0-20-8.95-20-20s8.95-20 20-20h336.48c11.05 0 20 8.95 20 20 0 11.04-8.96 20-20 20z",fill:o.color,"p-id":"15218"},null,8,Xv)]))}}),eb={href:"/cgi-bin/luci/admin/system/flash"},ab={href:"/cgi-bin/luci/admin/store/pages/maintance"},ob={class:"content"},nb={class:"chart_box"},ib={class:"chart"},rb={class:"chart"},sb={class:"chart"},db={class:"info"},lb={class:"item1 bgcolor1"},ub={style:{"font-weight":"bold","margin-top":"2px"}},cb={class:"item1 bgcolor2"},pb={style:{"font-weight":"bold","margin-top":"2px"}},fb={class:"item"},mb={class:"item"},gb=T({setup(o){const{$gettext:n}=W(),a=Me(),l=Q(()=>a.version),u=Q(()=>a.systemStatus),s=E(!1),c=Q(()=>{var g;return((g=u.value)==null?void 0:g.cpuUsage)||0}),x=Q(()=>{var g;return((g=u.value)==null?void 0:g.cpuTemperature)||0}),v=Q(()=>{var h;const g=((h=u.value)==null?void 0:h.memAvailablePercentage)||100;return 100-g}),p=Q(()=>{const g=c.value;return g<31?"#3b82f6":g>=31&&g<60?"#f59e0b":"#ef4444"}),f=Q(()=>{const g=x.value;return g<=55?"#22c55e":g>55&&g<=70?"#f97316":"#dc2626"}),m=Q(()=>{const g=v.value;return g<31?"#8b5cf6":g>=31&&g<60?"#fb923c":"#b91c1c"}),_=()=>{location.href="/cgi-bin/luci/admin/status/overview"},y=Pt.stampForm;At(()=>{});const b=()=>{s.value=!s.value},k=()=>{b(),Dt.installAndGo("app-meta-netdata","NetData","/cgi-bin/luci/admin/status/netdata")};return(g,h)=>(r(),J(Rt,{title:e(n)("\u7CFB\u7EDF\u4FE1\u606F"),showFooter:!1,style:{width:"100%",height:"100%",display:"block"}},{icon:G(()=>[D(Ca,{class:"icon computerIcon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:_},[D(Ca,{color:"#0a0a0a",class:"icon2 computerIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u4FE1\u606F\u6982\u89C8")),1)])]),"settings-menu":G(()=>[t("div",null,[t("a",{onClick:k},i(e(n)("\u7CFB\u7EDF\u76D1\u63A7")),1)]),t("div",null,[t("a",eb,i(e(n)("\u5907\u4EFD\u5347\u7EA7")),1)]),t("div",null,[t("a",ab,i(e(n)("\u63D2\u4EF6\u5907\u4EFD")),1)])]),default:G(()=>{var w,F,Y,P,A;return[t("div",ob,[t("div",nb,[t("div",ib,[D(Ke,{value:e(c),color:e(p),icon:"chip",label:`${e(c)}%`,width:"150px",height:"150px"},null,8,["value","color","label"]),t("div",null,i(e(n)("CPU\u4F7F\u7528\u7387")),1)]),t("div",rb,[D(Ke,{value:e(x)/1.5,color:e(f),icon:"temperature",label:`${e(x)}\u2103`,width:"150px",height:"150px"},null,8,["value","color","label"]),t("div",null,i(e(n)("CPU\u6E29\u5EA6")),1)]),t("div",sb,[D(Ke,{value:e(v),color:e(m),icon:"lightning",label:`${e(v)}%`,width:"150px",height:"150px"},null,8,["value","color","label"]),t("div",null,i(e(n)("\u5185\u5B58\u4F7F\u7528\u7387")),1)])]),t("div",db,[t("div",lb,[t("div",null,[D(to,{color:"#155dfc",class:"icon1",style:{"margin-bottom":"0"}}),t("span",null,i(e(n)("\u8BBE\u5907\u578B\u53F7")),1)]),t("span",ub,i((w=e(l))==null?void 0:w.model),1)]),t("div",cb,[t("div",null,[D(tb,{color:"#00a63e",class:"icon1",style:{"margin-bottom":"0"}}),t("span",null,i(e(n)("\u56FA\u4EF6\u7248\u672C")),1)]),t("span",pb,i((F=e(l))==null?void 0:F.firmwareVersion)+"\uFF08"+i(e(n)("\u5185\u6838"))+"\uFF1A"+i((Y=e(l))==null?void 0:Y.kernelVersion)+"\uFF09",1)]),t("div",fb,[t("div",null,i(e(n)("\u7CFB\u7EDF\u65F6\u95F4"))+"\uFF1A",1),t("span",null,i((P=e(u))==null?void 0:P.localtime),1)]),t("div",mb,[t("div",null,i(e(n)("\u5DF2\u542F\u52A8"))+"\uFF1A",1),t("span",null,i(e(y)((A=e(u))==null?void 0:A.uptime)),1)])])])]}),_:1},8,["title"]))}});var vb=N(gb,[["__scopeId","data-v-acb74352"]]);const bb=o=>(it("data-v-4ca82311"),o=o(),rt(),o),hb={class:"action"},_b={class:"action-body"},xb=bb(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),wb={class:"title"},kb={class:"info"},yb=["href"],Fb={class:"btns"},Eb=T({props:{port:Number,Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=Q(()=>`http://${location.hostname}:${n.port}`),s=()=>{n.Close&&(n.Close(),location.reload())};return(c,x)=>(r(),J(_t,{type:1},{default:G(()=>[D($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("div",hb,[t("div",_b,[xb,t("h2",wb,i(e(a)("\u670D\u52A1\u5DF2\u542F\u52A8")),1),t("div",kb,[t("span",null,i(e(a)("\u524D\u5F80")),1),t("a",{href:e(u),target:"_blank",rel:"noopener noreferrer"},i(e(u)),9,yb),t("span",null,i(e(a)("\u8FDB\u884C\u6D4B\u901F")),1)]),t("div",Fb,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:s},i(e(a)("\u5173\u95ED")),1)])])])]),_:1})]),_:1}))}});var $b=N(Eb,[["__scopeId","data-v-4ca82311"]]),Cb=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt($b,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const Db={class:"page-container"},Bb={style:{height:"48px","text-align":"right"}},Yb={onclick:"void(0)",href:"https://www.istoreos.com/",target:"_blank",style:{"text-decoration":"none",color:"white","line-height":"1.5em"}},Ab={class:"card-container"},Sb={class:"network-container",style:{"margin-top":"10px"}},zb={class:"left-box"},Pb={class:"right-box",style:{overflow:"visible"}},Tb={class:"network-container align-c"},Ib={class:"left-box"},Mb={class:"other-container"},Lb={class:"grid-container"},Nb={class:"system"},Ob=T({setup(o){var b,k;const{$gettext:n}=W(),a=aa();Zo();const l=Me(),u=E(!0);(k=(b=window.quickstart_configs)==null?void 0:b.update)!=null&&k.disable&&(u.value=!1),u.value&&setTimeout(()=>{l.requestCheckUpdate()},1100);const s=Fe(),c=Q(()=>s.deviceList),x=Q(()=>{var g,h;return[{icon:"navigation",title:n("\u7F51\u7EDC\u5411\u5BFC"),subtitle:n("\u7F51\u7EDC\u914D\u7F6E\u5F15\u5BFC"),tag:n("\u667A\u80FD\u914D\u7F6E"),status:"",extra:"",color:"purple",link:"/network"},{icon:"topology",title:n("\u5C40\u57DF\u7F51\u8BBE\u5907\u7BA1\u7406"),subtitle:n("\u7BA1\u7406\u7F51\u7EDC\u4E2D\u7684\u6240\u6709\u8BBE\u5907"),badge:n("\u63A8\u8350"),status:"",num:((h=(g=c.value)==null?void 0:g.devices)==null?void 0:h.length)||0,color:"blue",link:"/devicemanagement"},{icon:"speed",title:n("\u7F51\u7EDC\u6D4B\u901F"),subtitle:n("\u68C0\u6D4B\u7F51\u7EDC\u901F\u5EA6"),status:"",tag:n("\u70B9\u51FB\u6D4B\u8BD5"),color:"skyblue",link:"/networkSpeedTest"},{icon:"baby",title:n("\u5BB6\u957F\u63A7\u5236"),subtitle:n("\u513F\u7AE5\u4E0A\u7F51\u4FDD\u62A4"),badge:n("\u4FDD\u62A4"),status:"",extra:"",color:"pink",isActive:!0,alink:"/cgi-bin/luci/admin/services/appfilter"},{icon:"appStore",title:n("\u5E94\u7528\u5546\u5E97"),subtitle:n("\u767E\u6B3E\u5E94\u7528\uFF0C\u81EA\u7531\u9009\u62E9"),status:"",color:"orange",alink:"/cgi-bin/luci/admin/store/pages/store"}]}),v=g=>{if(!!g.title){if(g.icon=="speed")return f();if(g.icon=="baby")return p();g.link?a.push(g.link):g.alink&&(window.location.href=g.alink)}},p=()=>O(this,null,function*(){(yield Dt.checkAndInstallApp("luci-app-oaf","\u5E94\u7528\u8FC7\u6EE4"))&&(window.location.href="/cgi-bin/luci/admin/services/appfilter")}),f=()=>O(this,null,function*(){var g,h,w;if(yield Dt.checkAndInstallApp("app-meta-homebox","Homebox"))try{const F=yield j.Network.Homebox.Enable.POST();(h=(g=F==null?void 0:F.data)==null?void 0:g.result)!=null&&h.port?Cb({port:F.data.result.port,setup:0}):((w=F==null?void 0:F.data)==null?void 0:w.success)==0?location.href="/cgi-bin/luci/admin/services/homebox":$.Warning(n("\u542F\u52A8\u5931\u8D25"))}catch(F){$.Warning(n("\u542F\u52A8\u5931\u8D25"))}}),m=E(!1);(()=>O(this,null,function*(){try{const g=yield j.App.Check.POST({name:"luci-app-oaf"});if(g!=null&&g.data){const{result:h,error:w}=g.data;w?m.value=!1:h&&h.status=="installed"?m.value=!0:m.value=!1}}catch(g){m.value=!1}}))();const y=g=>{const h=Kt("dockerd")?5:4;if(h<=2)return`calc((100% - ${(h-1)*24}px) / ${h})`;if(g<2){const w=Math.min(2,h);return`calc((100% - ${(w-1)*24}px) / ${w})`}else{const w=h-2;return`calc((100% - ${(w-1)*24}px) / ${w})`}};return(g,h)=>(r(),d("div",Db,[t("div",Bb,[t("a",Yb,i(e(n)("iStoreOS\u5B98\u7F51")),1)]),t("div",Ab,[(r(!0),d(U,null,tt(e(x),(w,F)=>(r(),d(U,{key:F},[w.icon!=="baby"||m.value?(r(),J(v4,{key:0,card:w,onClick:v},null,8,["card"])):C("",!0)],64))),128))]),t("div",Sb,[t("div",zb,[D(w5)]),t("div",Pb,[D(k8),D(M8,{style:{"margin-top":"10px"}})])]),t("div",Tb,[t("div",Ib,[D(C7)])]),t("div",Mb,[t("div",Lb,[t("div",{class:"grid-item",style:ft({flexBasis:y(0)})},[D(bg)],4),t("div",{class:"grid-item",style:ft({flexBasis:y(1)})},[D(z9)],4),e(Kt)("dockerd")?(r(),d("div",{key:0,class:"grid-item",style:ft({flexBasis:y(2)})},[D(Lv)],4)):C("",!0),t("div",{class:"grid-item",style:ft({flexBasis:y(3)})},[D(Xu)],4),t("div",{class:"grid-item",style:ft({flexBasis:y(4)})},[D(a5)],4)])]),t("div",Nb,[D(vb)])]))}});var Vb=N(Ob,[["__scopeId","data-v-309b7393"]]);const Gb={};function jb(o,n){const a=ht("router-view");return r(),J(a)}var Ub=N(Gb,[["render",jb]]);const qb={},Rb={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Hb=Vt('',2),Wb=[Hb];function Jb(o,n){return r(),d("svg",Rb,Wb)}var Zb=N(qb,[["render",Jb]]);const Kb={},Qb={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Xb=Vt('',2),th=[Xb];function eh(o,n){return r(),d("svg",Qb,th)}var ah=N(Kb,[["render",eh]]);const oh={},nh={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},ih=Vt('',2),rh=[ih];function sh(o,n){return r(),d("svg",nh,rh)}var dh=N(oh,[["render",sh]]);const lh={id:"page"},uh={class:"title"},ch={class:"desc"},ph={class:"network-containers"},fh={class:"network-container_item"},mh={class:"cover"},gh={class:"thumbnail"},vh={class:"network-container_item"},bh={class:"cover"},hh={class:"thumbnail"},_h={class:"network-container_item"},xh={class:"cover"},wh={class:"thumbnail"},kh=["innerHTML"],yh=T({setup(o){const{$gettext:n,$ngettext:a}=W(),l=n("\u6CA1\u627E\u5230\u60F3\u8981\u7684\u914D\u7F6E\uFF1F\u8BF7\u4F7F\u7528%{link}",{link:''+n("\u9AD8\u7EA7\u6A21\u5F0F")+""},!0);return(u,s)=>{const c=ht("router-link");return r(),d("div",lh,[t("div",uh,i(e(n)("\u6B22\u8FCE\u4F7F\u7528\u7F51\u7EDC\u914D\u7F6E\u5411\u5BFC")),1),t("div",ch,i(e(n)("\u9009\u62E9\u4E00\u79CD\u8FDE\u63A5\u65B9\u5F0F\u4EE5\u5F00\u59CB")),1),t("div",ph,[t("div",fh,[D(c,{to:"/network/pppoe"},{default:G(()=>[t("div",mh,[t("div",gh,[D(ah),t("span",null,i(e(n)("\u5BBD\u5E26\u62E8\u53F7\u8FDE\u63A5")),1)])])]),_:1})]),t("div",vh,[D(c,{to:"/network/dhcp"},{default:G(()=>[t("div",bh,[t("div",hh,[D(Zb),t("span",null,i(e(n)("\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668")),1)])])]),_:1})]),t("div",_h,[D(c,{to:"/network/gateway"},{default:G(()=>[t("div",xh,[t("div",wh,[D(dh),t("span",null,i(e(n)("\u914D\u7F6E\u4E3A\u65C1\u8DEF\u7531")),1)])])]),_:1})])]),t("div",{class:"info",innerHTML:e(l)},null,8,kh)])}}});var Fh=N(yh,[["__scopeId","data-v-0b149a51"]]);const Eh={key:0,id:"page"},$h={class:"title"},Ch={class:"desc"},Dh={class:"network-message"},Bh=["innerHTML"],Yh=["onSubmit"],Ah={class:"label-key"},Sh=["placeholder","disabled"],zh={class:"label-key"},Ph=["placeholder","disabled"],Th={key:0,class:"chose_dhcp"},Ih={class:"dhcp_info"},Mh={key:1,class:"msg"},Lh={class:"btns"},Nh=["disabled"],Oh=["onClick"],Vh={key:1,id:"page"},Gh={class:"title"},jh={class:"btns"},Uh=["onClick"],qh=["onClick"],Rh=T({setup(o){const{$gettext:n,$ngettext:a}=W(),u=Pe().query.type,s=n("\u7531\u4E8E\u60A8\u7684\u8BBE\u5907\u6CA1\u6709 WAN \u53E3\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B%{link}",{link:''+n("\u94FE\u63A5")+""},!0),c=E(0),x=E({}),v=E(""),p=E(!1),f=E(0),m=E(!1);(()=>O(this,null,function*(){var b,k;p.value=!0;try{const g=yield Promise.all([j.Guide.Pppoe.GET(),j.Guide.GetLan.GET()]);if(g[0].data){const{success:h,error:w,result:F}=g[0].data;F&&(F.enableLanDhcp=!1,x.value=F),h==-1011&&(p.value=!0,f.value=h)}(b=g[1].data)!=null&&b.result&&(((k=g[1].data)==null?void 0:k.result).enableDhcp||(m.value=!0,x.value.enableLanDhcp=!0))}catch(g){v.value=g}f.value==0&&(p.value=!1)}))();const y=()=>O(this,null,function*(){const b=x.value.account||"",k=x.value.password||"";if(b==""){v.value=n("\u8D26\u53F7\u4E0D\u80FD\u4E3A\u7A7A");return}if(k==""){v.value=n("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}p.value=!0;const g=$.Loading(n("\u914D\u7F6E\u4E2D..."));try{const h=yield j.Guide.Pppoe.POST({account:b,password:k});if(h!=null&&h.data){const{error:w,success:F}=h.data;w&&(v.value=w),(F==null||F==0)&&($.Success(n("\u914D\u7F6E\u6210\u529F")),c.value=1)}}catch(h){v.value=h}p.value=!1,g.Close()});return(b,k)=>{const g=ht("switch-box"),h=ht("router-link");return c.value==0?(r(),d("div",Eh,[t("h2",$h,i(e(n)("\u914D\u7F6E\u5BBD\u5E26\u8D26\u53F7")),1),t("h3",Ch,i(e(n)("\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u5149\u732B")),1),t("div",Dh,[f.value==-1011?(r(),d("li",{key:0,innerHTML:e(s)},null,8,Bh)):C("",!0)]),t("form",{onSubmit:ut(y,["prevent"])},[t("label",null,[t("div",Ah,[t("span",null,i(e(n)("\u5BBD\u5E26\u8D26\u53F7")),1)]),L(t("input",{type:"text","onUpdate:modelValue":k[0]||(k[0]=w=>x.value.account=w),placeholder:e(n)("\u5BBD\u5E26\u8D26\u53F7"),required:"",disabled:p.value},null,8,Sh),[[et,x.value.account,void 0,{trim:!0}]])]),t("label",null,[t("div",zh,[t("span",null,i(e(n)("\u5BC6\u7801")),1)]),L(t("input",{type:"password","onUpdate:modelValue":k[1]||(k[1]=w=>x.value.password=w),placeholder:e(n)("\u5BBD\u5E26\u5BC6\u7801"),required:"",disabled:p.value},null,8,Ph),[[et,x.value.password,void 0,{trim:!0}]])]),m.value?(r(),d("div",Th,[D(g,{modelValue:x.value.enableLanDhcp,"onUpdate:modelValue":k[2]||(k[2]=w=>x.value.enableLanDhcp=w)},{default:G(()=>[t("span",Ih,i(e(n)("\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09")),1)]),_:1},8,["modelValue"])])):C("",!0),v.value?(r(),d("div",Mh,i(v.value),1)):C("",!0),t("div",Lh,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:p.value},i(e(n)("\u4FDD\u5B58\u914D\u7F6E")),9,Nh),D(h,{to:e(u)=="index"?"/":"/network",custom:""},{default:G(({navigate:w})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},i(e(n)("\u8FD4\u56DE")),9,Oh)]),_:1},8,["to"])])],40,Yh)])):c.value==1?(r(),d("div",Vh,[t("h2",Gh,i(e(n)("\u914D\u7F6E\u6210\u529F")),1),t("div",jh,[D(h,{to:"/",custom:""},{default:G(({navigate:w})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:w},i(e(n)("\u8FDB\u5165\u63A7\u5236\u53F0")),9,Uh)]),_:1}),D(h,{to:e(u)=="index"?"/":"/network",custom:""},{default:G(({navigate:w})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},i(e(n)("\u8FD4\u56DE")),9,qh)]),_:1},8,["to"])])])):C("",!0)}}});var Hh=N(Rh,[["__scopeId","data-v-f442676c"]]);const Wh={key:0,id:"page"},Jh={class:"title"},Zh={class:"desc"},Kh={class:"network-message"},Qh=["innerHTML"],Xh=["onSubmit"],t_={class:"label-key"},e_={value:"dhcp"},a_={value:"static"},o_={class:"label-key"},n_=["placeholder","disabled"],i_={key:0,class:"msg"},r_={class:"label-key"},s_=["placeholder","disabled"],d_={key:1,class:"msg"},l_={class:"label-key"},u_=["placeholder","disabled"],c_={class:"label-key"},p_=["disabled"],f_={value:"manual"},m_={class:"label-key"},g_=["onUpdate:modelValue","placeholder","disabled"],v_={class:"label-key"},b_=["placeholder","disabled"],h_={class:"label-key"},__=["placeholder","disabled"],x_={key:2,class:"chose_dhcp"},w_={class:"dhcp_info"},k_={key:3,class:"msgs"},y_={class:"btns"},F_=["disabled"],E_=["onClick"],$_={key:1,id:"page"},C_={class:"title"},D_={class:"btns"},B_=["onClick"],Y_=["onClick"],A_=T({setup(o){const{$gettext:n,$ngettext:a}=W(),l=n("\u7531\u4E8E\u60A8\u7684\u8BBE\u5907\u6CA1\u6709 WAN \u53E3\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B%{link}",{link:''+n("\u94FE\u63A5")+""},!0),u=E(0),s=E({}),c=E(""),x=E(""),v=E(""),p=E(!1),f=E(""),m=E(""),_=E(0),y=Pt.checkIsIP,b=E(!1),g=Pe().query.type;(()=>O(this,null,function*(){var A,B;p.value=!0;try{const S=yield Promise.all([j.Guide.ClientModel.GET(),j.Guide.GetLan.GET()]);if(S[0]){const R=S[0];if(R.data){const{success:V,error:I,result:M}=R.data;M&&(M.wanProto!="dhcp"&&M.wanProto!="static"&&(M.wanProto="dhcp",M.dnsProto="auto"),M.enableLanDhcp=!1,s.value=M),V==-1011&&(_.value=V,p.value=!0)}}(A=S[1].data)!=null&&A.result&&(((B=S[1].data)==null?void 0:B.result).enableDhcp||(b.value=!0,s.value.enableLanDhcp=!0))}catch(S){c.value=S}_.value==0&&(p.value=!1)}))();const w=A=>{A.target.value=="static"?((s.value.staticIp==null||s.value.staticIp=="")&&(s.value.staticIp="192.168.1.100"),(s.value.subnetMask==null||s.value.subnetMask=="")&&(s.value.subnetMask="255.255.255.0"),s.value.dnsProto=="auto"&&setTimeout(()=>s.value.dnsProto="manual",0)):s.value.dnsProto=="manual"&&setTimeout(()=>s.value.dnsProto="auto",0)},F=A=>{const B=A.target;if(B.value==""){f.value="";return}y(B.value)?f.value="":f.value=n("\u8BF7\u8F93\u5165\u5408\u6CD5\u7684IP\u5730\u5740")},Y=A=>{const B=A.target;if(B.value==""){m.value="";return}y(B.value)?m.value="":m.value=n("\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u5730\u5740")},P=()=>O(this,null,function*(){const A={};switch(s.value.wanProto){case"dhcp":break;case"static":A.staticIp=s.value.staticIp,A.subnetMask=s.value.subnetMask,A.gateway=s.value.gateway||"";break}switch(s.value.dnsProto){case"auto":break;case"manual":A.manualDnsIp=[],s.value.manualDnsIp!=null&&s.value.manualDnsIp.length>0?A.manualDnsIp=s.value.manualDnsIp:(A.manualDnsIp.push(x.value),v.value&&A.manualDnsIp.push(v.value));break}A.dnsProto=s.value.dnsProto,A.wanProto=s.value.wanProto,A.enableLanDhcp=s.value.enableLanDhcp;const B=$.Loading(n("\u914D\u7F6E\u4E2D...."));p.value=!0;try{const S=yield j.Guide.ClientModel.POST(A);if(S!=null&&S.data){const{success:R,error:V}=S==null?void 0:S.data;V&&(c.value=V),(R==null||R==0)&&($.Success(n("\u914D\u7F6E\u6210\u529F")),u.value=1)}}catch(S){c.value=S}p.value=!1,B.Close()});return(A,B)=>{const S=ht("switch-box"),R=ht("router-link");return u.value==0?(r(),d("div",Wh,[t("h2",Jh,i(e(n)("\u914D\u7F6E\u4E92\u8054\u7F51")),1),t("h3",Zh,i(e(n)("\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u672C\u8BBE\u5907 WAN \u53E3\u8FDE\u63A5\u5230\u4E0A\u7EA7\u8DEF\u7531\u5668\u5C40\u57DF\u7F51\uFF08 LAN \uFF09\u63A5\u53E3")),1),t("div",Kh,[_.value==-1011?(r(),d("li",{key:0,innerHTML:e(l)},null,8,Qh)):C("",!0)]),t("form",{onSubmit:ut(P,["prevent"])},[t("label",null,[t("div",t_,[t("span",null,i(e(n)("WAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")),1)]),L(t("select",{"onUpdate:modelValue":B[0]||(B[0]=V=>s.value.wanProto=V),onInput:w},[t("option",e_,i(e(n)("\u81EA\u52A8\u83B7\u53D6IP\u5730\u5740\uFF08DHCP\uFF09")),1),t("option",a_,i(e(n)("\u9759\u6001IP\u5730\u5740")),1)],544),[[dt,s.value.wanProto]])]),s.value.wanProto=="static"?(r(),d(U,{key:0},[t("label",null,[t("div",o_,[t("span",null,i(e(n)("IP\u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":B[1]||(B[1]=V=>s.value.staticIp=V),placeholder:e(n)("\u9759\u6001IP\u5730\u5740"),required:"",disabled:p.value,onInput:F},null,40,n_),[[et,s.value.staticIp,void 0,{trim:!0}]])]),f.value?(r(),d("p",i_,i(f.value),1)):C("",!0),t("label",null,[t("div",r_,[t("span",null,i(e(n)("\u5B50\u7F51\u63A9\u7801")),1)]),L(t("input",{type:"text","onUpdate:modelValue":B[2]||(B[2]=V=>s.value.subnetMask=V),placeholder:e(n)("\u5B50\u7F51\u63A9\u7801"),required:"",disabled:p.value,onInput:Y},null,40,s_),[[et,s.value.subnetMask,void 0,{trim:!0}]])]),m.value?(r(),d("p",d_,i(m.value),1)):C("",!0),t("label",null,[t("div",l_,[t("span",null,i(e(n)("\u7F51\u5173\u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":B[3]||(B[3]=V=>s.value.gateway=V),placeholder:e(n)("\u7F51\u5173\u5730\u5740"),required:"",disabled:p.value},null,8,u_),[[et,s.value.gateway,void 0,{trim:!0}]])])],64)):C("",!0),t("label",null,[t("div",c_,[t("span",null,i(e(n)("DNS \u914D\u7F6E\u65B9\u5F0F")),1)]),L(t("select",{"onUpdate:modelValue":B[4]||(B[4]=V=>s.value.dnsProto=V)},[t("option",{value:"auto",disabled:s.value.wanProto=="static"},i(e(n)("\u81EA\u52A8\u83B7\u53D6\uFF08DHCP\uFF09")),9,p_),t("option",f_,i(e(n)("\u624B\u5DE5\u914D\u7F6E")),1)],512),[[dt,s.value.dnsProto]])]),s.value.dnsProto=="manual"?(r(),d(U,{key:1},[s.value.manualDnsIp!=null&&s.value.manualDnsIp.length>0?(r(!0),d(U,{key:0},tt(s.value.manualDnsIp,(V,I)=>(r(),d("label",null,[t("div",m_,[t("span",null,i(e(n)("DNS\u670D\u52A1\u5668")),1)]),L(t("input",{type:"text","onUpdate:modelValue":M=>s.value.manualDnsIp[I]=M,placeholder:e(n)("DNS\u670D\u52A1\u5668"),required:"",disabled:p.value},null,8,g_),[[et,s.value.manualDnsIp[I],void 0,{trim:!0}]])]))),256)):(r(),d(U,{key:1},[t("label",null,[t("div",v_,[t("span",null,i(e(n)("DNS\u670D\u52A1\u5668")),1)]),L(t("input",{type:"text","onUpdate:modelValue":B[5]||(B[5]=V=>x.value=V),placeholder:e(n)("DNS\u670D\u52A1\u5668"),required:"",disabled:p.value},null,8,b_),[[et,x.value,void 0,{trim:!0}]])]),t("label",null,[t("div",h_,i(e(n)("\u5907\u7528DNS\u670D\u52A1\u5668")),1),L(t("input",{type:"text","onUpdate:modelValue":B[6]||(B[6]=V=>v.value=V),placeholder:e(n)("\u5907\u7528DNS\u670D\u52A1\u5668"),disabled:p.value},null,8,__),[[et,v.value,void 0,{trim:!0}]])])],64))],64)):C("",!0),b.value?(r(),d("div",x_,[D(S,{modelValue:s.value.enableLanDhcp,"onUpdate:modelValue":B[7]||(B[7]=V=>s.value.enableLanDhcp=V)},{default:G(()=>[t("span",w_,i(e(n)("\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09")),1)]),_:1},8,["modelValue"])])):C("",!0),c.value?(r(),d("div",k_,i(c.value),1)):C("",!0),t("div",y_,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:p.value},i(e(n)("\u4FDD\u5B58\u914D\u7F6E")),9,F_),D(R,{to:e(g)=="index"?"/":"/network",custom:""},{default:G(({navigate:V})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:V},i(e(n)("\u8FD4\u56DE")),9,E_)]),_:1},8,["to"])])],40,Xh)])):u.value==1?(r(),d("div",$_,[t("h2",C_,i(e(n)("\u914D\u7F6E\u6210\u529F")),1),t("div",D_,[D(R,{to:"/",custom:""},{default:G(({navigate:V})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:V},i(e(n)("\u8FDB\u5165\u63A7\u5236\u53F0")),9,B_)]),_:1}),D(R,{to:e(g)=="index"?"/":"/network",custom:""},{default:G(({navigate:V})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:V},i(e(n)("\u8FD4\u56DE")),9,Y_)]),_:1},8,["to"])])])):C("",!0)}}});var S_=N(A_,[["__scopeId","data-v-162eca5f"]]);const z_=o=>(it("data-v-2dee59a8"),o=o(),rt(),o),P_={key:0,id:"page"},T_={class:"title"},I_=z_(()=>t("br",null,null,-1)),M_={class:"btns"},L_=["onClick"],N_={key:1,id:"page"},O_={class:"title"},V_={class:"desc"},G_=["onSubmit"],j_={class:"label-key"},U_={class:"label-value"},q_={class:"label-key"},R_=["placeholder"],H_={class:"label-key"},W_=["placeholder"],J_={class:"label-key"},Z_=["placeholder"],K_={class:"label-key"},Q_=["placeholder"],X_={key:0,class:"msgs"},tx={class:"switch_inline"},ex={key:0,class:"switch_info"},ax={key:1,class:"switch_info"},ox={class:"switch_inline"},nx={class:"switch_info"},ix={class:"switch_inline"},rx={class:"switch_info"},sx={class:"btns"},dx={class:"cbi-button cbi-button-apply app-btn app-next"},lx=["onClick"],ux={key:2,id:"page"},cx={class:"title"},px={class:"desc"},fx={class:"btns"},mx={key:3,id:"page"},gx={class:"title"},vx=["disabled"],bx={style:{"text-align":"left"}},hx={class:"btns"},_x=["disabled"],xx=["onClick"],wx=T({setup(o){const{$gettext:n,$ngettext:a}=W(),u=Pe().query.type,s=E(0),c=E(""),x=E(!1),v=Q(()=>{var k,g,h;return!(((k=f.value)==null?void 0:k.ipv4addr)&&((g=f.value)==null?void 0:g.ipv4mask)&&((h=f.value)==null?void 0:h.gateway))}),p=E({subnetMask:"255.255.255.0",staticDnsIp:"223.5.5.5",staticLanIp:"",gateway:"",enableDhcp:!0,dhcp6c:!1,enableNat:!1}),f=E(),m=()=>{x.value=!0,j.Network.Status.GET().then(k=>{if(k!=null&&k.data){const{result:g}=k==null?void 0:k.data;g&&(f.value=g)}}).finally(()=>{x.value=!1})},_=k=>{var g,h,w,F,Y;k&&(p.value.staticLanIp=((g=f.value)==null?void 0:g.ipv4addr)||"",p.value.subnetMask=((h=f.value)==null?void 0:h.ipv4mask)&&It.prefixToMask(f.value.ipv4mask)||"",p.value.gateway=((w=f.value)==null?void 0:w.gateway)||"",p.value.staticDnsIp=((F=f.value)==null?void 0:F.dnsList)&&((Y=f.value)==null?void 0:Y.dnsList[0])||"223.5.5.5"),s.value=1},y=k=>{window.location.href=location.protocol+"//"+p.value.staticLanIp+(location.port?":"+location.port:"")},b=()=>O(this,null,function*(){const k=p.value,g=$.Loading(n("\u914D\u7F6E\u4E2D..."));try{const h=yield j.Guide.GatewayRouter.POST(k);if(h!=null&&h.data){const{success:w,error:F}=h==null?void 0:h.data;if(F&&(c.value=F),w==null||w==0){setTimeout(()=>{s.value=2,g.Close()},5e3);return}}}catch(h){c.value=h}g.Close()});return(k,g)=>{var F,Y,P,A;const h=ht("router-link"),w=ht("switch-box");return s.value==0?(r(),d("div",P_,[t("h2",T_,i(e(n)("\u65C1\u8DEF\u7531\u914D\u7F6E\u524D\u7684\u51C6\u5907\u5DE5\u4F5C")),1),t("code",null,[nt(i(e(n)("\u65C1\u8DEF\u7531\u6A21\u5F0F\uFF0C\u4E5F\u53EB\u5355\u81C2\u8DEF\u7531\u6A21\u5F0F\u3002"))+" ",1),t("p",null,i(e(n)("\u60A8\u53EF\u4EE5\u7528\u4E0A\u4E00\u7EA7\u8DEF\u7531\uFF08\u4E3B\u8DEF\u7531\uFF09\u62E8\u53F7\uFF0C\u7136\u540E\u7528\u672C\u8DEF\u7531\u6765\u5B9E\u73B0\u4E00\u4E9B\u9AD8\u7EA7\u529F\u80FD\u3002")),1),I_,t("p",null,i(e(n)("\u672C\u5411\u5BFC\u652F\u6301\u81EA\u52A8\u6216\u624B\u52A8\u914D\u7F6E\uFF1A")),1),t("p",null,i(e(n)("\u70B9\u51FB\u201C\u81EA\u52A8\u914D\u7F6E\u201D\u6309\u94AE\u5F00\u59CB\u81EA\u52A8\u914D\u7F6E\u5411\u5BFC\uFF1B")),1),t("p",null,i(e(n)("\u624B\u52A8\u914D\u7F6E\u5219\u9700\u81EA\u884C\u83B7\u53D6\u4E3B\u8DEF\u7531\u5668\u7684IP\u5730\u5740\uFF08\u4F8B\u5982 192.168.2.1 \uFF09\u548C\u5B50\u7F51\u63A9\u7801\uFF0C\u8BB0\u5F55\u4EE5\u5907\u540E\u7EED\u586B\u5199\uFF0C\u70B9\u51FB\u201C\u624B\u52A8\u914D\u7F6E\u201D\u6309\u94AE\uFF0C\u5207\u6362\u5230\u53C2\u6570\u914D\u7F6E\u9875\uFF0C\u6309\u5B9E\u9645\u60C5\u51B5\u81EA\u884C\u586B\u5199\u3002")),1)]),t("div",M_,[t("button",{class:"cbi-button cbi-button-success app-btn app-next",onClick:g[0]||(g[0]=B=>s.value=3)},i(e(n)("\u81EA\u52A8\u914D\u7F6E...")),1),t("button",{class:"cbi-button cbi-button-neutral app-btn app-next",onClick:g[1]||(g[1]=B=>_(!1))},i(e(n)("\u624B\u52A8\u914D\u7F6E...")),1),D(h,{to:e(u)=="index"?"/":"/network",custom:""},{default:G(({navigate:B})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:B},i(e(n)("\u8FD4\u56DE")),9,L_)]),_:1},8,["to"])])])):s.value==1?(r(),d("div",N_,[t("h2",O_,i(e(n)("\u914D\u7F6E\u65C1\u8DEF\u7531\u7F51\u7EDC")),1),t("h3",V_,i(e(n)("\u73B0\u5728\uFF0C\u8BF7\u4F60\u914D\u7F6E\u65C1\u8DEF\u7531\u4FE1\u606F")),1),t("form",{onSubmit:ut(b,["prevent"])},[t("label",null,[t("div",j_,[t("span",null,i(e(n)("LAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")),1)]),t("div",U_,[t("select",{disabled:"",style:ft({backgroundColor:"rgba(215, 215, 215, 1)",color:"#333"})},[t("option",null,i(e(n)("\u65C1\u8DEF\u7531\u6A21\u5F0F\u4EC5\u652F\u6301\u9759\u6001IP\u5730\u5740")),1)],4)])]),t("label",null,[t("div",q_,[t("span",null,i(e(n)("IP \u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":g[2]||(g[2]=B=>p.value.staticLanIp=B),placeholder:e(n)("IP\u5730\u5740"),required:""},null,8,R_),[[et,p.value.staticLanIp,void 0,{trim:!0}]])]),t("label",null,[t("div",H_,[t("span",null,i(e(n)("\u5B50\u7F51\u63A9\u7801")),1)]),L(t("input",{type:"text","onUpdate:modelValue":g[3]||(g[3]=B=>p.value.subnetMask=B),placeholder:e(n)("\u5B50\u7F51\u63A9\u7801"),required:""},null,8,W_),[[et,p.value.subnetMask,void 0,{trim:!0}]])]),t("label",null,[t("div",J_,[t("span",null,i(e(n)("\u7F51\u5173\u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":g[4]||(g[4]=B=>p.value.gateway=B),placeholder:e(n)("\u7F51\u5173\u5730\u5740"),required:""},null,8,Z_),[[et,p.value.gateway,void 0,{trim:!0}]])]),t("label",null,[t("div",K_,[t("span",null,i(e(n)("DNS\u670D\u52A1\u5668")),1)]),L(t("input",{type:"text","onUpdate:modelValue":g[5]||(g[5]=B=>p.value.staticDnsIp=B),placeholder:e(n)("223.5.5.5"),required:""},null,8,Q_),[[et,p.value.staticDnsIp,void 0,{trim:!0}]])]),c.value?(r(),d("div",X_,i(c.value),1)):C("",!0),t("div",tx,[D(w,{modelValue:p.value.enableDhcp,"onUpdate:modelValue":g[6]||(g[6]=B=>p.value.enableDhcp=B)},{default:G(()=>[p.value.enableDhcp?(r(),d("span",ex,i(e(n)("\u63D0\u4F9B DHCPv4 \u670D\u52A1\uFF08\u9700\u8981\u5173\u95ED\u4E3B\u8DEF\u7531 DHCP \u670D\u52A1\uFF09")),1)):(r(),d("span",ax,i(e(n)("\u63D0\u4F9B DHCPv4 \u670D\u52A1")),1))]),_:1},8,["modelValue"])]),t("div",ox,[D(w,{modelValue:p.value.dhcp6c,"onUpdate:modelValue":g[7]||(g[7]=B=>p.value.dhcp6c=B)},{default:G(()=>[t("span",nx,i(e(n)("\u81EA\u52A8\u83B7\u53D6 IPV6\uFF08\u5373\u5F00\u542F DHCPv6 \u5BA2\u6237\u7AEF\uFF09")),1)]),_:1},8,["modelValue"])]),t("div",ix,[D(w,{modelValue:p.value.enableNat,"onUpdate:modelValue":g[8]||(g[8]=B=>p.value.enableNat=B)},{default:G(()=>[t("span",rx,i(e(n)("\u5F00\u542F NAT\uFF08\u53EF\u4FEE\u590D\u67D0\u4E9B\u65E0\u7EBF\u70ED\u70B9\u4E0D\u80FD\u8BBF\u95EE\u5916\u7F51\u95EE\u9898\uFF09")),1)]),_:1},8,["modelValue"])]),t("div",sx,[t("button",dx,i(e(n)("\u4FDD\u5B58\u914D\u7F6E")),1),D(h,{to:e(u)=="index"?"/":"/network",custom:""},{default:G(({navigate:B})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:B},i(e(n)("\u8FD4\u56DE")),9,lx)]),_:1},8,["to"])])],40,G_)])):s.value==2?(r(),d("div",ux,[t("h2",cx,i(e(n)("\u914D\u7F6E\u6210\u529F")),1),t("h3",px,i(e(n)("\u73B0\u5728\uFF0C\u5C06\u672C\u8DEF\u7531WAN\u53E3\u65AD\u5F00\uFF0C\u5C06\u5176\u4E2D\u4E00\u4E2ALAN\u53E3\u4E0E\u4E3B\u8DEF\u7531\u8FDE\u63A5\uFF0C\u5E76\u5C06\u5F53\u524D\u6D4F\u89C8\u5668\u8BBE\u5907\u8FDE\u63A5\u5230\u4E3B\u8DEF\u7531\u3002\u70B9\u51FB\u201C\u8FDB\u5165\u63A7\u5236\u53F0\u201D\u6D4F\u89C8\u5668\u5C06\u8DF3\u8F6C\u5230\u65B0\u7684\u8DEF\u7531IP")),1),t("div",fx,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:y},i(e(n)("\u8FDB\u5165\u63A7\u5236\u53F0")),1)])])):s.value==3?(r(),d("div",mx,[t("h2",gx,i(e(n)("\u65C1\u8DEF\u7531\u81EA\u52A8\u914D\u7F6E")),1),t("code",null,i(e(n)("\u9996\u5148\u786E\u8BA4\u4E3B\u8DEF\u7531\u5F00\u542F\u4E86 DHCP \u670D\u52A1\uFF0C\u786E\u8BA4\u672C\u8DEF\u7531 WAN \u53E3\u662F DHCP \u5BA2\u6237\u7AEF\u6A21\u5F0F\uFF08\u9ED8\u8BA4\u5373\u662F\uFF0C\u5982\u679C\u4E0D\u662F\u53EF\u4F7F\u7528\u201C\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668\u201D\u5411\u5BFC\u6539\u6210 DHCP \u5BA2\u6237\u7AEF\uFF09\uFF0C\u7136\u540E\u5C06\u672C\u8DEF\u7531 WAN \u53E3\u4E0E\u4E3B\u8DEF\u7531\u7684 LAN \u8FDE\u63A5\uFF0C\u4EE5\u81EA\u52A8\u83B7\u53D6\u914D\u7F6E\u3002")),1),nt(" "+i(e(n)("1. \u6EE1\u8DB3\u4E0A\u8FF0\u6761\u4EF6\u4EE5\u540E\uFF0C\u70B9\u51FB\u201C\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\u201D\u4EE5\u5237\u65B0\u5F53\u524D\u8FDE\u63A5\u4FE1\u606F\uFF0C\u6210\u529F\u4EE5\u540E\uFF0C\u201C\u81EA\u52A8\u586B\u5199\u201D\u6309\u94AE\u5C06\u88AB\u6FC0\u6D3B\u3002(\u5931\u8D25\u53EF\u518D\u6B21\u70B9\u51FB)"))+" ",1),t("button",{class:st(["cbi-button cbi-button-neutral",e(v)?"cbi-button-neutral":"cbi-button-success"]),disabled:x.value,onClick:m},[nt(i(e(n)("\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\uFF08\u70B9\u6B64\u5237\u65B0\uFF09"))+" ",1),t("p",bx,[t("ul",null,[t("li",null,i(e(n)("IP \u5730\u5740: "))+i((F=f.value)==null?void 0:F.ipv4addr),1),t("li",null,i(e(n)("\u5B50\u7F51\u63A9\u7801: "))+i(((Y=f.value)==null?void 0:Y.ipv4mask)&&e(It).prefixToMask(f.value.ipv4mask)),1),t("li",null,i(e(n)("\u7F51\u5173\u5730\u5740: "))+i((P=f.value)==null?void 0:P.gateway),1),t("li",null,i(e(n)("DNS\u670D\u52A1\u5668: "))+i(((A=f.value)==null?void 0:A.dnsList)&&f.value.dnsList[0]||(e(v)?"":e(n)("\uFF08\u65E0DNS\u670D\u52A1\u5668\uFF0C\u8BF7\u4E4B\u540E\u81EA\u884C\u586B\u5199\u516C\u5171DNS\u670D\u52A1\u5668\uFF0C\u4F8B\u5982 223.5.5.5\uFF09"))),1)])])],10,vx),nt(" "+i(e(n)("2. \u70B9\u51FB\u201C\u81EA\u52A8\u586B\u5199\u201D\uFF0C\u5C06\u5207\u6362\u5230\u53C2\u6570\u9875\u5E76\u81EA\u52A8\u586B\u5199\u3002\u6B64\u65F6\u4F9D\u7136\u53EF\u4EE5\u81EA\u884C\u8C03\u6574\u53C2\u6570\u3002"))+" ",1),t("div",hx,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:e(v),onClick:g[9]||(g[9]=B=>_(!0))},i(e(n)("\u81EA\u52A8\u586B\u5199..."))+i(e(v)?e(n)("\uFF08\u8BF7\u5148\u83B7\u53D6IPv4\u4E0A\u6E38\u4FE1\u606F\uFF09"):""),9,_x),D(h,{to:e(u)=="index"?"/":"/network",custom:""},{default:G(({navigate:B})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:B},i(e(n)("\u8FD4\u56DE")),9,xx)]),_:1},8,["to"])])])):C("",!0)}}});var kx=N(wx,[["__scopeId","data-v-2dee59a8"]]);const yx={class:"actioner-container"},Fx={class:"actioner-container_header"},Ex={class:"actioner-container_body"},$x={class:"label-item"},Cx={class:"label-item_key"},Dx={class:"label-item_value"},Bx=["value"],Yx={class:"label-item_tips"},Ax={class:"label-item"},Sx={class:"label-item_key"},zx={key:0,class:"label-item_value"},Px={class:"msg-warning"},Tx={key:1,class:"label-item_value"},Ix=["value"],Mx={key:1,class:"msg-warning"},Lx={class:"label-item_tips"},Nx={class:"actioner-container_footer"},Ox=["disabled"],Vx=["disabled"],Gx={key:1,class:"actioner-container_body setup-loading"},jx={class:"actioner-container_body setup-error"},Ux={class:"actioner-container_footer"},qx=["disabled"],Rx={class:"actioner-container_body setup-success"},Hx={class:"body-title"},Wx={class:"actioner-container_footer"},Jx=T({props:{Close:{type:Function,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close()},s=()=>{n.success&&n.success()},c=E("init"),x=E(""),v=[{name:"jbod",title:a("JBOD (\u7EBF\u6027)"),info:a("\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u5C06\u591A\u4E2A\u786C\u76D8\u5408\u5E76\u4E3A\u5355\u4E2A\u5B58\u50A8\u7A7A\u95F4\uFF0C\u5176\u5BB9\u91CF\u7B49\u4E8E\u6240\u6709\u786C\u76D8\u5BB9\u91CF\u7684\u603B\u548C\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002"),select:2},{name:"raid0",title:a("RAID 0 (\u6761\u5E26)"),info:a("\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u201C\u533A\u5757\u5EF6\u5C55\u201D\u529F\u80FD\u662F\u5C06\u6570\u636E\u5206\u6210\u591A\u4E2A\u5757\uFF0C\u5E76\u5C06\u6570\u636E\u5757\u5206\u6563\u5230\u7EC4\u6210\u7684\u591A\u4E2A\u786C\u76D8\u4E0A\u4EE5\u63D0\u9AD8\u6027\u80FD\u7684\u8FC7\u7A0B\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002"),select:2},{name:"raid1",title:a("RAID 1 (\u955C\u50CF)"),info:a("\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u540C\u65F6\u5411\u6240\u6709\u786C\u76D8\u5199\u5165\u76F8\u540C\u7684\u6570\u636E\u3002\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002"),select:2},{name:"raid5",title:"RAID 5 ",info:a("\u81F3\u5C11\u9700\u89813\u5757\u786C\u76D8\uFF0C\u6267\u884C\u6BB5\u843D\u5206\u5757\u5EF6\u5C55\uFF0C\u5E76\u5BF9\u5206\u5E03\u5230\u6240\u6709\u7EC4\u6210\u786C\u76D8\u4E0A\u7684\u6570\u636E\u6267\u884C\u5947\u5076\u6821\u9A8C\uFF0C\u4ECE\u800C\u63D0\u4F9B\u6BD4 RAID 1 \u66F4\u6709\u6548\u7684\u6570\u636E\u5197\u4F59\u3002"),select:3},{name:"raid6",title:"RAID 6 ",info:a("\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u6267\u884C\u4E24\u4E2A\u5C42\u7EA7\u7684\u6570\u636E\u5947\u5076\u6821\u9A8C\u4EE5\u5B58\u50A8\u7B49\u4E8E 2 \u4E2A\u786C\u76D8\u5BB9\u91CF\u7684\u5197\u4F59\u6570\u636E\uFF0C\u63D0\u4F9B\u6BD4 RAID 5 \u66F4\u5927\u7A0B\u5EA6\u7684\u6570\u636E\u5197\u4F59\u3002"),select:4},{name:"raid10",title:"RAID 10",info:a("\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u63D0\u4F9B RAID 0 \u7684\u6027\u80FD\u548C RAID 1 \u7684\u6570\u636E\u4FDD\u62A4\u7EA7\u522B\uFF0C\u5C06\u786C\u76D8\u7EC4\u5408\u8FDB\u955C\u50CF\u6570\u636E\u7684\u7531\u4E24\u4E2A\u786C\u76D8\u7EC4\u6210\u7684\u7EC4\u3002"),select:4}],p=E("raid5"),f=E([]),m=h=>{let w="";return v.forEach(F=>{F.name===h&&(w=F.info)}),w},_=E(!1),y=mt({loading:!1,members:[]}),b=h=>{};(()=>O(this,null,function*(){y.loading=!0;try{const h=yield j.Raid.CreateList.GET();if(h!=null&&h.data){const{success:w,error:F,result:Y}=h.data;if(Y&&(y.members=Y.members||[]),F)throw F}}catch(h){console.log(h)}finally{y.loading=!1}}))();const g=()=>O(this,null,function*(){const h=v.filter(F=>F.name===p.value)[0],w=f.value;if(!h){$.Warning(a("\u8BF7\u9009\u62E9raid\u7C7B\u578B"));return}if(w.length==0){$.Warning(a("\u8BF7\u9009\u62E9\u78C1\u76D8"));return}if(h.select>w.length){$.Warning(a("\u8BF7\u9009\u62E9\u81F3\u5C11%{min}\u5757\u78C1\u76D8",{min:""+h.select}));return}if(!!confirm(a("\u662F\u5426\u7ACB\u5373\u521B\u5EFA %{name}\uFF1F\u9009\u62E9\u7684\u786C\u76D8\u6240\u6709\u5206\u533A\u5C06\u4F1A\u88AB\u6E05\u9664\uFF0C\u6B64\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u786C\u76D8\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002",{name:h.name}))&&!!confirm(a("\u786E\u5B9A\u521B\u5EFA %{name}\uFF1F\u8BE5\u64CD\u4F5C\u4E0D\u53EF\u9006,\u8BF7\u8C28\u614E\u64CD\u4F5C",{name:h.name}))){_.value=!0,c.value="loading";try{const F=yield j.Raid.Create.POST({level:h.name,devicePaths:w});if(F.data){const{success:Y,error:P,result:A}=F.data;if(P)throw P;(Y||0)==0&&(c.value="success",s())}}catch(F){x.value=F,c.value="error"}finally{_.value=!1}}});return(h,w)=>{const F=ht("icon-loading"),Y=ht("icon-error"),P=ht("icon-success");return r(),d("div",yx,[t("div",Fx,[t("span",null,i(e(a)("RAID\u521B\u5EFA\u5411\u5BFC")),1)]),c.value=="init"?(r(),d(U,{key:0},[t("div",Ex,[t("p",null,i(e(a)("RAID\u78C1\u76D8\u9635\u5217\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C\u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002")),1),t("div",$x,[t("div",Cx,[t("span",null,i(e(a)("RAID\u7EA7\u522B\uFF1A")),1)]),t("div",Dx,[L(t("select",{"onUpdate:modelValue":w[0]||(w[0]=A=>p.value=A),onChange:b},[(r(),d(U,null,tt(v,A=>t("option",{value:A.name},i(A.title),9,Bx)),64))],544),[[dt,p.value]])]),t("div",Yx,[D(zt),nt(" "+i(m(p.value)),1)])]),t("div",Ax,[t("div",Sx,[t("span",null,i(e(a)("\u78C1\u76D8\u9635\u5217\u6210\u5458\uFF1A")),1)]),e(y).loading?(r(),d("div",zx,[t("span",Px,i(e(a)("\u68C0\u6D4B\u4E2D...")),1)])):(r(),d("div",Tx,[e(y).members.length>0?(r(!0),d(U,{key:0},tt(e(y).members,A=>(r(),d("label",null,[L(t("input",{type:"checkbox","onUpdate:modelValue":w[1]||(w[1]=B=>f.value=B),value:A.path},null,8,Ix),[[qt,f.value]]),nt(" \u3010"+i(A.model)+"\u3011"+i(A.name)+" "+i(A.path)+" ["+i(A.sizeStr)+"] ",1)]))),256)):(r(),d("span",Mx,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458")),1))])),t("div",Lx,[D(zt),nt(" "+i(e(a)("\u9009\u62E9\u5C06\u8981\u7528\u4E8E\u521B\u5EFA RAID \u7684\u786C\u76D8\uFF0C\u901A\u8FC7 USB \u63A5\u5165\u7684\u8BBE\u5907\u4E0D\u4F1A\u5728\u5217\u8868\u4E2D\u663E\u793A\uFF08USB\u63A5\u5165\u4E0D\u7A33\u5B9A\uFF09\u3002")),1)])])]),t("div",Nx,[t("div",{class:"close",onClick:u,disabled:_.value},i(e(a)("\u53D6\u6D88")),9,Ox),t("div",{class:"next",onClick:g,disabled:_.value},i(e(a)("\u521B\u5EFA")),9,Vx)])],64)):c.value=="loading"?(r(),d("div",Gx,[D(F,{size:60,color:"#666"}),t("span",null,i(e(a)("\u6B63\u5728\u521B\u5EFA\u4E2D...")),1)])):c.value=="error"?(r(),d(U,{key:2},[t("div",jx,[D(Y),t("span",null,i(x.value),1)]),t("div",Ux,[t("div",{class:"close",onClick:u},i(e(a)("\u5173\u95ED")),1),t("div",{class:"next",onClick:g,disabled:_.value},i(e(a)("\u91CD\u65B0\u521B\u5EFA")),9,qx)])],64)):c.value=="success"?(r(),d(U,{key:3},[t("div",Rx,[D(P),t("div",Hx,i(e(a)("\u521B\u5EFA\u6210\u529F")),1)]),t("div",Wx,[t("div",{class:"close",onClick:u},i(e(a)("\u5173\u95ED")),1)])],64)):C("",!0)])}}});var Zx=N(Jx,[["__scopeId","data-v-77451104"]]);const Kx={class:"actioner-container"},Qx={class:"actioner-container_body"},Xx=["value"],tw={class:"actioner-container_footer"},ew=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close()},s=E("");return(()=>{j.Raid.Detail.POST({path:n.raid.path}).then(x=>{if(x.data){const{result:v,error:p}=x.data;p?s.value=p:s.value=(v==null?void 0:v.detail)||""}}).catch(x=>{s.value=x.message})})(),(x,v)=>(r(),d("div",Kx,[t("div",Qx,[t("textarea",{value:s.value},null,8,Xx)]),t("div",tw,[t("div",{class:"close",onClick:u},i(e(a)("\u5173\u95ED")),1)])]))}});var aw=N(ew,[["__scopeId","data-v-5ec616d8"]]);const ow={class:"actioner-container"},nw={class:"actioner-container_header"},iw={class:"actioner-container_body"},rw={class:"label-item"},sw={class:"label-item_key"},dw={class:"label-item_value"},lw={disabled:""},uw={class:"label-item"},cw={class:"label-item_key"},pw={key:0,class:"label-item_value"},fw={class:"msg-warning"},mw={key:1,class:"label-item_value"},gw=["value"],vw={key:1,class:"msg-warning"},bw={class:"actioner-container_footer"},hw=["disabled"],_w=["disabled"],xw=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close()},s=()=>{n.success&&n.success()},c=()=>O(this,null,function*(){const m=p.value;if(m==""){$.Warning(a("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8"));return}v.value=!0;const _=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const y=yield j.Raid.Add.POST({path:n.raid.path,memberPath:m});if(y.data){const{error:b,success:k}=y.data;if(b)throw b;(k||0)==0&&($.Success(a("\u4FDD\u5B58\u6210\u529F")),s(),u())}}catch(y){$.Error(`${y}`)}finally{v.value=!1,_.Close()}}),x=mt({loading:!1,members:[]}),v=E(!1),p=E("");return(()=>O(this,null,function*(){x.loading=!0,v.value=!0;try{const m=yield j.Raid.CreateList.GET();if(m!=null&&m.data){const{success:_,error:y,result:b}=m.data;if(b&&(x.members=b.members||[]),y)throw y}}catch(m){console.log(m)}finally{v.value=!1,x.loading=!1}}))(),(m,_)=>(r(),d("div",ow,[t("div",nw,[t("span",null,"RAID - "+i(o.raid.name)+" "+i(e(a)("\u4FEE\u6539")),1)]),t("div",iw,[t("div",rw,[t("div",sw,i(e(a)("\u8BBE\u5907")),1),t("div",dw,[t("select",lw,[t("option",null,i(o.raid.name)+"_"+i(o.raid.venderModel)+" ("+i(o.raid.path)+"\uFF0C"+i(o.raid.level)+"\uFF0C"+i(o.raid.size)+") ",1)])])]),t("div",uw,[t("div",cw,i(e(a)("\u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u88AB\u6DFB\u52A0\u5230RAID\u7684\u786C\u76D8\uFF09\uFF1A")),1),e(x).loading?(r(),d("div",pw,[t("span",fw,i(e(a)("\u68C0\u6D4B\u4E2D...")),1)])):(r(),d("div",mw,[e(x).members.length>0?(r(!0),d(U,{key:0},tt(e(x).members,y=>(r(),d("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":_[0]||(_[0]=b=>p.value=b),value:y.path},null,8,gw),[[Ft,p.value]]),nt(" \u3010"+i(y.model)+"\u3011"+i(y.name)+" "+i(y.path)+" ["+i(y.sizeStr)+"] ",1)]))),256)):(r(),d("span",vw,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458")),1))]))])]),t("div",bw,[t("div",{class:"close",onClick:u,disabled:v.value},i(e(a)("\u53D6\u6D88")),9,hw),t("div",{class:"next",onClick:c,disabled:v.value},i(e(a)("\u4FDD\u5B58")),9,_w)])]))}});var ww=N(xw,[["__scopeId","data-v-70cb932e"]]);const kw={class:"actioner-container"},yw={class:"actioner-container_header"},Fw={class:"actioner-container_body"},Ew={class:"label-item"},$w={class:"label-item_key"},Cw={class:"label-item_value"},Dw={disabled:""},Bw={class:"label-item"},Yw={class:"label-item_key"},Aw={class:"label-item_value"},Sw=["value"],zw={class:"actioner-container_footer"},Pw=["disabled"],Tw=["disabled"],Iw=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close()},s=()=>{n.success&&n.success()},c=()=>O(this,null,function*(){const p=v.value;if(p==""){$.Warning(a("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u786C\u76D8"));return}x.value=!0;const f=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const m=yield j.Raid.Remove.POST({path:n.raid.path,memberPath:p});if(m.data){const{error:_,success:y}=m.data;if(_)throw _;(y||0)==0&&($.Success(a("\u4FDD\u5B58\u6210\u529F")),s(),u())}}catch(m){$.Error(`${m}`)}finally{x.value=!1,f.Close()}}),x=E(!1),v=E("");return(p,f)=>(r(),d("div",kw,[t("div",yw,[t("span",null,"RAID - "+i(o.raid.name)+" "+i(e(a)("\u79FB\u9664")),1)]),t("div",Fw,[t("div",Ew,[t("div",$w,i(e(a)("\u8BBE\u5907")),1),t("div",Cw,[t("select",Dw,[t("option",null,i(o.raid.name)+"_"+i(o.raid.venderModel)+" ("+i(o.raid.path)+"\uFF0C"+i(o.raid.level)+"\uFF0C"+i(o.raid.size)+") ",1)])])]),t("div",Bw,[t("div",Yw,i(e(a)("\u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u8981\u4ECERAID\u9635\u5217\u4E2D\u5220\u9664\u7684\u786C\u76D8\uFF09\uFF1A")),1),t("div",Aw,[(r(!0),d(U,null,tt(o.raid.members,m=>(r(),d("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":f[0]||(f[0]=_=>v.value=_),value:m},null,8,Sw),[[Ft,v.value]]),nt(" "+i(m),1)]))),256))])])]),t("div",zw,[t("div",{class:"close",onClick:u,disabled:x.value},i(e(a)("\u53D6\u6D88")),9,Pw),t("div",{class:"next",onClick:c,disabled:x.value},i(e(a)("\u4FDD\u5B58")),9,Tw)])]))}});var Mw=N(Iw,[["__scopeId","data-v-56c0f6fb"]]);const Lw={class:"actioner-container"},Nw={class:"actioner-container_header"},Ow={class:"actioner-container_body"},Vw={class:"label-item"},Gw={class:"label-item_key"},jw={class:"label-item_value"},Uw={disabled:""},qw={class:"label-item"},Rw={class:"label-item_key"},Hw={key:0,class:"label-item_value"},Ww={class:"msg-warning"},Jw={key:1,class:"label-item_value"},Zw=["value"],Kw={key:1,class:"msg-warning"},Qw={class:"actioner-container_footer"},Xw=["disabled"],tk=["disabled"],ek=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=()=>{n.Close()},s=()=>{n.success&&n.success()},c=()=>O(this,null,function*(){const m=p.value;if(m==""){$.Warning(a("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8"));return}v.value=!0;const _=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const y=yield j.Raid.Recover.POST({path:n.raid.path,memberPath:m});if(y.data){const{error:b,success:k}=y.data;if(b)throw b;(k||0)==0&&($.Success(a("\u4FDD\u5B58\u6210\u529F")),s(),u())}}catch(y){$.Error(`${y}`)}finally{v.value=!1,_.Close()}}),x=mt({loading:!1,members:[]}),v=E(!1),p=E("");return(()=>O(this,null,function*(){x.loading=!0,v.value=!0;try{const m=yield j.Raid.CreateList.GET();if(m!=null&&m.data){const{success:_,error:y,result:b}=m.data;if(b&&(x.members=b.members||[]),y)throw y}}catch(m){console.log(m)}finally{v.value=!1,x.loading=!1}}))(),(m,_)=>(r(),d("div",Lw,[t("div",Nw,[t("span",null,"RAID - "+i(o.raid.name)+" "+i(e(a)("\u6062\u590D")),1)]),t("div",Ow,[t("div",Vw,[t("div",Gw,i(e(a)("\u8BBE\u5907")),1),t("div",jw,[t("select",Uw,[t("option",null,i(o.raid.name)+"_"+i(o.raid.venderModel)+" ("+i(o.raid.path)+"\uFF0C"+i(o.raid.level)+"\uFF0C"+i(o.raid.size)+") ",1)])])]),t("div",qw,[t("div",Rw,i(e(a)("\u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u7A7A\u95F2\u7684\u786C\u76D8\u6062\u590DRAID\u8BBE\u5907\uFF09\uFF1A")),1),e(x).loading?(r(),d("div",Hw,[t("span",Ww,i(e(a)("\u68C0\u6D4B\u4E2D...")),1)])):(r(),d("div",Jw,[e(x).members.length>0?(r(!0),d(U,{key:0},tt(e(x).members,y=>(r(),d("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":_[0]||(_[0]=b=>p.value=b),value:y.path},null,8,Zw),[[Ft,p.value]]),nt(" \u3010"+i(y.model)+"\u3011"+i(y.name)+" "+i(y.path)+" ["+i(y.sizeStr)+"] ",1)]))),256)):(r(),d("span",Kw,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458")),1))]))])]),t("div",Qw,[t("div",{class:"close",onClick:u,disabled:v.value},i(e(a)("\u53D6\u6D88")),9,Xw),t("div",{class:"next",onClick:c,disabled:v.value},i(e(a)("\u4FDD\u5B58")),9,tk)])]))}});var ak=N(ek,[["__scopeId","data-v-0586260e"]]);const ok={class:"action-main"},nk=T({props:{Close:{type:Function,required:!0},setup:{type:String,default:"create"},raid:{type:Object},success:{type:Function}},setup(o){return(n,a)=>(r(),J(_t,{type:2},{default:G(()=>[t("div",ok,[o.setup=="create"?(r(),J(Zx,{key:0,Close:o.Close},null,8,["Close"])):o.setup=="info"&&o.raid!=null?(r(),J(aw,{key:1,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):o.setup=="edit"&&o.raid!=null?(r(),J(ww,{key:2,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):o.setup=="remove"&&o.raid!=null?(r(),J(Mw,{key:3,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):o.setup=="recover"&&o.raid!=null?(r(),J(ak,{key:4,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):C("",!0)])]),_:1}))}});var ik=N(nk,[["__scopeId","data-v-e20ba082"]]);const he=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(ik,pt(lt({},o),{Close:()=>{l()}}));a.use(Oa),a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},ao=o=>(it("data-v-f1411b40"),o=o(),rt(),o),rk={id:"page"},sk={name:"content"},dk={class:"cbi-map-descr"},lk={style:{color:"#f5365b","margin-top":"10px"}},uk={style:{color:"#f5365b","margin-top":"10px"}},ck={class:"btns"},pk=["disabled"],fk={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},mk={class:"table cbi-section-table"},gk={style:{}},vk={class:"tr cbi-section-table-titles anonymous"},bk={class:"th cbi-section-table-cell","data-widget":"value"},hk={class:"th cbi-section-table-cell","data-widget":"value"},_k={class:"th cbi-section-table-cell","data-widget":"value"},xk={class:"th cbi-section-table-cell","data-widget":"value"},wk={class:"th cbi-section-table-cell","data-widget":"value"},kk={class:"th cbi-section-table-cell","data-widget":"value"},yk={class:"th cbi-section-table-cell","data-widget":"value"},Fk={class:"th cbi-section-table-cell","data-widget":"value"},Ek={class:"tr cbi-section-table-row"},$k={class:"td cbi-value-field"},Ck={class:"td cbi-value-field"},Dk=["title"],Bk={class:"item-status"},Yk={key:0,class:"item-status item-status-detail"},Ak={class:"td cbi-value-field"},Sk={class:"td cbi-value-field"},zk={class:"td cbi-value-field"},Pk=ao(()=>t("br",null,null,-1)),Tk={class:"td cbi-value-field"},Ik=ao(()=>t("br",null,null,-1)),Mk={key:1,href:"/cgi-bin/luci/admin/quickstart/"},Lk={class:"td cbi-section-table-cell nowrap cbi-section-actions"},Nk=["title","disabled","onClick"],Ok=["title","disabled","onClick"],Vk=["title","onClick"],Gk=["title","onClick"],jk=["title","onClick"],Uk=T({setup(o){const{$gettext:n,$ngettext:a}=W(),l=mt({disksList:[]}),u=()=>O(this,null,function*(){try{const g=yield j.Raid.List.GET();if(g!=null&&g.data){const{success:h,error:w,result:F}=g.data;if(F&&(l.disksList=F.disks||[]),w)throw w}}catch(g){console.log(g)}}),s=Pt.easyInterval(u,5e3);ke(()=>{s()});const c=g=>{switch(g.level){case"raid0":case"jbod":return!0}return g.status.indexOf("degraded")!=-1||g.status.indexOf("resyncing(")!=-1},x=g=>{let h=[];return g.childrens&&g.childrens.forEach(w=>{w.mountPoint&&h.push(`${w.name}(${w.mountPoint})`)}),h},v=()=>O(this,null,function*(){he({setup:"create",success:()=>{u()}})}),p=g=>{he({setup:"info",raid:g})},f=g=>O(this,null,function*(){if(g.childrens&&g.childrens.length>0&&g.childrens.filter(F=>F.mountPoint).length>0){Se({content:n("\u5220\u9664 RAID \u8BBE\u5907\u4E4B\u524D\u8BF7\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF"),nextTitle:n("\u53BB\u5378\u8F7D"),next:()=>{location.href="/cgi-bin/luci/admin/system/mounts"},clearTitle:n("\u53D6\u6D88"),clear:()=>{}});return}if(!confirm(n("\u786E\u5B9A\u8981\u5220\u9664 %{name} \u8BE5\u78C1\u76D8\u9635\u5217\u5417\uFF1F\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002\u5220\u9664\u6210\u529F\u540E\uFF0C\u5982\u9700\u53E6\u5916\u7EC4RAID\uFF0C\u5EFA\u8BAE\u7A0D\u7B49\u51E0\u5206\u949F\u540E\u518D\u8BD5\u3002",{name:g.name}))||!confirm(n("\u786E\u5B9A\u8981\u5220\u9664 %{name} \u5417?",{name:g.name})))return;const h=$.Loading(n("\u5220\u9664\u4E2D..."));try{const w=yield j.Raid.Delete.POST({path:g.path,members:g.members});if(w.data){const{success:F,error:Y}=w.data;if(Y)throw Y;(F||0)==0&&($.Success(n("\u5220\u9664\u6210\u529F")),u())}}catch(w){$.Error(`${w}`)}finally{h.Close()}}),m=g=>{he({setup:"edit",raid:g,success:()=>{u()}})},_=g=>{he({setup:"remove",raid:g,success:()=>{u()}})},y=g=>{he({setup:"recover",raid:g,success:()=>{u()}})},b=E(!1),k=()=>{Se({content:n("\u5C06\u626B\u63CF\u78C1\u76D8\u91CC RAID \u7684\u78C1\u76D8\u9635\u5217\u914D\u7F6E\u5E76\u6062\u590D\uFF0C\u786E\u5B9A\u8981\u6062\u590D RAID \u78C1\u76D8\u9635\u5217\u5417\uFF1F"),nextTitle:n("\u786E\u5B9A"),next:()=>O(this,null,function*(){b.value=!0;const g=$.Loading(n("\u626B\u63CF\u4E2D..."));try{const h=yield j.Raid.Autofix.GET();if(h.data){const{error:w,success:F}=h.data;if(w)throw w;(F||0)==0&&($.Success(n("\u6062\u590D\u5B8C\u6210")),u())}}catch(h){$.Error(`${h}`)}finally{g.Close(),b.value=!1}}),clearTitle:n("\u53D6\u6D88"),clear:()=>{}})};return(g,h)=>(r(),d("div",rk,[t("h2",sk,i(e(n)("RAID\u7BA1\u7406")),1),t("div",dk,[t("p",null,i(e(n)("RAID \uFF08 Redundant Array of Independent Disks \uFF09\u5373\u72EC\u7ACB\u78C1\u76D8\u5197\u4F59\u9635\u5217\uFF0C\u7B80\u79F0\u4E3A\u300C\u78C1\u76D8\u9635\u5217\u300D\uFF0C\u5C31\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C\u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002")),1),t("p",lk," * "+i(e(n)("RAID\u529F\u80FD\u6B63\u5728\u516C\u6D4B\u4E2D\uFF0C\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u5982\u9020\u6210\u6570\u636E\u4E22\u5931\u7B49\u95EE\u9898\uFF0C\u6982\u4E0D\u8D1F\u8D23\uFF0C\u8BF7\u8C28\u614E\u4F7F\u7528\u3002")),1),t("p",uk," * "+i(e(n)("\u5982\u679C\u7531\u4E8E\u7CFB\u7EDF\u91CD\u7F6E\u6216\u91CD\u542F\u5BFC\u81F4\u7684RAID\u8BBE\u5907\u4E22\u5931\u53EF\u4EE5\u5C1D\u8BD5\u901A\u8FC7\u4E0B\u65B9'\u626B\u63CF\u6062\u590DRAID'\u6309\u94AE\u6062\u590D")),1)]),t("div",ck,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[0]||(h[0]=w=>v())},i(e(n)("\u521B\u5EFARAID")),1),t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[1]||(h[1]=w=>k()),disabled:b.value},i(e(n)("\u626B\u63CF\u6062\u590DRAID")),9,pk)]),t("div",null,[t("div",fk,[t("table",mk,[t("tbody",gk,[t("tr",vk,[t("th",bk,i(e(n)("\u540D\u79F0")),1),t("th",hk,i(e(n)("\u8BBE\u5907")),1),t("th",_k,i(e(n)("\u72B6\u6001")),1),t("th",xk,i(e(n)("\u7EA7\u522B")),1),t("th",wk,i(e(n)("\u5BB9\u91CF")),1),t("th",kk,i(e(n)("\u6210\u5458")),1),t("th",yk,i(e(n)("\u6302\u8F7D\u4FE1\u606F")),1),t("th",Fk,i(e(n)("\u64CD\u4F5C")),1)]),(r(!0),d(U,null,tt(e(l).disksList,w=>(r(),d("tr",Ek,[t("td",$k,[t("b",null,i(w.name),1)]),t("td",Ck,[t("b",null,i(w.path),1)]),t("td",{class:"td cbi-value-field",title:w.status+(w.rebuildStatus||"")},[t("b",Bk,i(w.status),1),w.rebuildStatus?(r(),d("b",Yk," \u2026 ")):C("",!0)],8,Dk),t("td",Ak,[t("b",null,i(w.level),1)]),t("td",Sk,[t("b",null,i(w.size),1)]),t("td",zk,[(r(!0),d(U,null,tt(w.members,F=>(r(),d("b",null,[nt(i(F)+" ",1),Pk]))),256))]),t("td",Tk,[x(w).length>0?(r(!0),d(U,{key:0},tt(x(w),F=>(r(),d("b",null,[nt(i(F)+" ",1),Ik]))),256)):(r(),d("a",Mk,i(e(n)("\u53BB\u6302\u8F7D")),1))]),t("td",Lk,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u6269\u5145"),disabled:c(w),onClick:F=>m(w)},i(e(n)("\u6269\u5145")),9,Nk),t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u79FB\u9664"),disabled:c(w),onClick:F=>_(w)},i(e(n)("\u79FB\u9664")),9,Ok),t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u6062\u590D"),onClick:F=>y(w)},i(e(n)("\u6062\u590D")),9,Vk),t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u8BE6\u60C5"),onClick:F=>p(w)},i(e(n)("\u8BE6\u60C5")),9,Gk),t("button",{class:"cbi-button cbi-button-remove",title:e(n)("\u5982\u679C\u60A8\u5728RAID\u78C1\u76D8\u9635\u5217\u4E2D\u521B\u5EFA\u4E86\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u540E\u5220\u9664\u6587\u4EF6\u7CFB\u7EDF\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002"),onClick:F=>f(w)},i(e(n)("\u5220\u9664")),9,jk)])]))),256))])])])])]))}});var qk=N(Uk,[["__scopeId","data-v-f1411b40"]]);const Rk=o=>(it("data-v-2b6b4ef9"),o=o(),rt(),o),Hk={id:"page"},Wk=Rk(()=>t("h2",{name:"content"},"S.M.A.R.T.",-1)),Jk={class:"cbi-map-descr"},Zk={class:"tabs"},Kk=["href","onClick"],Qk=T({setup(o){const{$gettext:n,$ngettext:a}=W(),l=[{to:"/smart",name:n("\u5E38\u89C4\u8BBE\u7F6E")},{to:"/smart/task",name:n("\u8BA1\u5212\u4EFB\u52A1")},{to:"/smart/log",name:n("\u67E5\u770B\u65E5\u5FD7")}],u=E(!1),s=mt({global:{enable:!1,powermode:"never",tmpDiff:0,tmpMax:0},devices:[],tasks:[]}),c=p=>{const{global:f,devices:m,tasks:_}=p;f&&(s.global.enable=f.enable||!1,s.global.powermode=f.powermode||"never"),s.devices=m||[],s.tasks=_||[]};(()=>O(this,null,function*(){try{const p=yield j.Smart.Config.GET();if(p.data){const{result:f}=p.data;f&&c(f)}}catch(p){}finally{u.value=!0}}))();const v=p=>O(this,null,function*(){const f=$.Loading(n("\u4FDD\u5B58\u4E2D..."));try{const m=yield j.Smart.Config.POST(p);if(m.data){console.log(m.data);const{success:_,error:y,result:b}=m.data;if(y)throw y;(_||0)==0&&($.Success(n("\u4FDD\u5B58\u6210\u529F")),b&&c(b))}}catch(m){$.Error(`${m}`)}finally{f.Close()}});return(p,f)=>{const m=ht("router-link"),_=ht("router-view");return r(),d("div",Hk,[Wk,t("div",Jk,[t("p",null,i(e(n)("S.M.A.R.T.\uFF0C\u5168\u79F0\u4E3A\u201CSelf-Monitoring Analysis and Reporting Technology\u201D\uFF0C\u5373\u201C\u81EA\u6211\u76D1\u6D4B\u3001\u5206\u6790\u53CA\u62A5\u544A\u6280\u672F\u201D\uFF0C")),1),t("p",null,i(e(n)("\u662F\u4E00\u79CD\u81EA\u52A8\u7684\u786C\u76D8\u72B6\u6001\u68C0\u6D4B\u4E0E\u9884\u8B66\u7CFB\u7EDF\u548C\u89C4\u8303\u3002\u901A\u8FC7\u5728\u786C\u76D8\u786C\u4EF6\u5185\u7684\u68C0\u6D4B\u6307\u4EE4\u5BF9\u786C\u76D8\u7684\u786C\u4EF6\u5982\u78C1\u5934\u3001\u76D8\u7247\u3001\u9A6C\u8FBE\u3001")),1),t("p",null,i(e(n)("\u7535\u8DEF\u7684\u8FD0\u884C\u60C5\u51B5\u8FDB\u884C\u76D1\u63A7\u3001\u8BB0\u5F55\u5E76\u4E0E\u5382\u5546\u6240\u8BBE\u5B9A\u7684\u9884\u8BBE\u5B89\u5168\u503C\u8FDB\u884C\u6BD4\u8F83\uFF0C\u82E5\u76D1\u63A7\u60C5\u51B5\u5C06\u8981\u6216\u5DF2\u8D85\u51FA\u9884\u8BBE\u5B89\u5168\u503C\u7684\u5B89\u5168\u8303\u56F4\uFF0C")),1),t("p",null,i(e(n)("\u5C31\u53EF\u4EE5\u901A\u8FC7\u4E3B\u673A\u7684\u76D1\u63A7\u786C\u4EF6\u6216\u8F6F\u4EF6\u81EA\u52A8\u5411\u7528\u6237\u4F5C\u51FA\u8B66\u544A\u5E76\u8FDB\u884C\u8F7B\u5FAE\u7684\u81EA\u52A8\u4FEE\u590D\uFF0C\u4EE5\u63D0\u524D\u4FDD\u969C\u786C\u76D8\u6570\u636E\u7684\u5B89\u5168\u3002")),1)]),t("ul",Zk,[(r(),d(U,null,tt(l,y=>D(m,{to:y.to,custom:"",key:y.to},{default:G(({route:b,href:k,navigate:g,isActive:h,isExactActive:w})=>[t("li",{class:st({"active cbi-tab":h&&w})},[t("a",{href:k,onClick:g},i(y.name),9,Kk)],2)]),_:2},1032,["to"])),64))]),u.value?(r(),J(_,{key:0,name:"default"},{default:G(({Component:y,route:b})=>[(r(),J(ko,null,{default:G(()=>[(r(),J(Pa(y),{key:b.path,config:e(s),saveData:v},null,8,["config"]))]),_:2},1024))]),_:1})):C("",!0)])}}});var Xk=N(Qk,[["__scopeId","data-v-2b6b4ef9"]]);const ty={class:"action-main"},ey=T({setup(o){return(n,a)=>(r(),J(_t,{type:2},{default:G(()=>[t("div",ty,[Et(n.$slots,"default",{},void 0,!0)])]),_:3}))}});var Ge=N(ey,[["__scopeId","data-v-f3b0d6f0"]]);const ay={class:"actioner-container"},oy={class:"actioner-container_header"},ny={class:"actioner-container_body"},iy={class:"cbi-value"},ry={class:"cbi-value-title"},sy={class:"cbi-value-field"},dy={class:"cbi-value-description"},ly={class:"cbi-value"},uy={class:"cbi-value-title"},cy={class:"cbi-value-field"},py={class:"cbi-checkbox"},fy={value:-1},my={value:0},gy=["value"],vy={class:"cbi-value-description"},by={class:"cbi-value"},hy={class:"cbi-value-title"},_y={class:"cbi-value-field"},xy={class:"cbi-checkbox"},wy={value:-1},ky={value:0},yy=["value"],Fy={class:"cbi-value-description"},Ey={class:"actioner-container_footer"},$y=["disabled"],Cy=["disabled"],Dy=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0},device:{type:Object},next:{type:Function,required:!0}},setup(o){var v,p,f;const n=o,{$gettext:a,$ngettext:l}=W();console.log(n.device);const u=E(!1),s=mt({tmpDiff:((v=n.device)==null?void 0:v.tmpDiff)||0,tmpMax:((p=n.device)==null?void 0:p.tmpMax)||0,devicePath:((f=n.device)==null?void 0:f.devicePath)||""}),c=()=>{u.value=!0,n.close()},x=()=>O(this,null,function*(){u.value=!0;try{yield n.next({tmpDiff:s.tmpDiff,tmpMax:s.tmpMax,devicePath:s.devicePath}),u.value=!1,c()}catch(m){}});return(m,_)=>(r(),J(Ge,null,{default:G(()=>[t("div",ay,[t("div",oy,[t("span",null," S.M.A.R.T. \xBB "+i(e(a)("\u8BBE\u5907"))+" \xBB "+i(o.disk.path),1)]),t("div",ny,[t("div",iy,[t("label",ry,i(e(a)("\u78C1\u76D8")),1),t("div",sy,[t("div",dy,i(o.disk.model)+" [ "+i(o.disk.path)+"\uFF0C"+i(o.disk.sizeStr)+" ] ",1)])]),t("div",ly,[t("label",uy,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09")),1),t("div",cy,[t("div",py,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[0]||(_[0]=y=>e(s).tmpDiff=y)},[t("option",fy,i(e(a)("\u4F7F\u7528\u5168\u5C40\u914D\u7F6E")),1),t("option",my,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(20,y=>t("option",{value:y},i(y)+"\xB0C",9,gy)),64))],512),[[dt,e(s).tmpDiff,void 0,{number:!0}]])]),t("div",vy,i(e(a)("\u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A.")),1)])]),t("div",by,[t("label",hy,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09")),1),t("div",_y,[t("div",xy,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[1]||(_[1]=y=>e(s).tmpMax=y)},[t("option",wy,i(e(a)("\u4F7F\u7528\u5168\u5C40\u914D\u7F6E")),1),t("option",ky,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(20,y=>t("option",{value:y*5},i(y*5)+"\xB0C",9,yy)),64))],512),[[dt,e(s).tmpMax,void 0,{number:!0}]])]),t("div",Fy,i(e(a)("\u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A.")),1)])])]),t("div",Ey,[t("button",{class:"close",onClick:c,disabled:u.value},i(e(a)("\u53D6\u6D88")),9,$y),t("button",{class:"next",onClick:x,disabled:u.value},i(e(a)("\u4FDD\u5B58")),9,Cy)])])]),_:1}))}}),By={class:"actioner-container"},Yy={class:"actioner-container_header"},Ay={class:"actioner-container_body"},Sy={class:"cbi-value"},zy={class:"cbi-value-title"},Py={class:"cbi-value-field"},Ty={class:"cbi-checkbox"},Iy={value:""},My=["value"],Ly={class:"cbi-value"},Ny={class:"cbi-value-title"},Oy={class:"cbi-value-field"},Vy={class:"cbi-checkbox"},Gy={value:"short"},jy={value:"long"},Uy={value:"conveyance"},qy={value:"offline"},Ry={class:"cbi-value"},Hy={class:"cbi-value-title"},Wy={class:"cbi-value-field"},Jy={class:"cbi-checkbox"},Zy=t("option",{value:"*"},"*",-1),Ky=["value"],Qy={class:"cbi-value-description"},Xy={class:"cbi-value"},tF={class:"cbi-value-title"},eF={class:"cbi-value-field"},aF={class:"cbi-checkbox"},oF=t("option",{value:"*"},"*",-1),nF=["value"],iF={class:"cbi-value-description"},rF={class:"cbi-value"},sF={class:"cbi-value-title"},dF={class:"cbi-value-field"},lF={class:"cbi-checkbox"},uF=t("option",{value:"*"},"*",-1),cF=["value"],pF={class:"cbi-value-description"},fF={class:"actioner-container_footer"},mF=["disabled"],gF=["disabled"],vF=T({props:{close:{type:Function,required:!0},config:{type:Object,required:!0},next:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!1),s=mt({type:"short",devicePath:"",month:"*",dayPerMonth:"*",hour:"*"}),c=E([]);(()=>O(this,null,function*(){try{const f=yield j.Smart.List.GET();if(f.data){const{result:m,error:_}=f.data;m&&m.disks&&(c.value=m.disks)}}catch(f){}}))();const v=()=>{u.value=!0,n.close()},p=()=>O(this,null,function*(){if(s.devicePath==""){$.Warning(a("\u8BF7\u9009\u62E9\u78C1\u76D8"));return}u.value=!0;try{yield n.next(s),v()}catch(f){}finally{u.value=!1}});return(f,m)=>(r(),J(Ge,null,{default:G(()=>[t("div",By,[t("div",Yy,[t("span",null,i(e(a)("\u521B\u5EFA\u8BA1\u5212\u4EFB\u52A1")),1)]),t("div",Ay,[t("div",Sy,[t("label",zy,i(e(a)("\u78C1\u76D8")),1),t("div",Py,[t("div",Ty,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[0]||(m[0]=_=>e(s).devicePath=_)},[t("option",Iy,i(e(a)("\u9009\u62E9\u78C1\u76D8")),1),(r(!0),d(U,null,tt(c.value,_=>(r(),d("option",{value:_.path},i(_.model)+" [ "+i(_.path)+"\uFF0C"+i(_.sizeStr)+" ] ",9,My))),256))],512),[[dt,e(s).devicePath,void 0,{trim:!0}]])])])]),t("div",Ly,[t("label",Ny,i(e(a)("\u7C7B\u578B")),1),t("div",Oy,[t("div",Vy,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[1]||(m[1]=_=>e(s).type=_)},[t("option",Gy,i(e(a)("\u77ED\u6682\u81EA\u68C0")),1),t("option",jy,i(e(a)("\u957F\u65F6\u81EA\u68C0")),1),t("option",Uy,i(e(a)("\u4F20\u8F93\u65F6\u81EA\u68C0")),1),t("option",qy,i(e(a)("\u79BB\u7EBF\u65F6\u81EA\u68C0")),1)],512),[[dt,e(s).type,void 0,{trim:!0}]])])])]),t("div",Ry,[t("label",Hy,i(e(a)("\u5C0F\u65F6")),1),t("div",Wy,[t("div",Jy,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[2]||(m[2]=_=>e(s).hour=_)},[Zy,(r(),d(U,null,tt(24,(_,y)=>t("option",{value:`${y}`},i(y),9,Ky)),64))],512),[[dt,e(s).hour,void 0,{trim:!0}]])]),t("div",Qy,i(e(a)("* \u8868\u793A\u6BCF\u5C0F\u65F6")),1)])]),t("div",Xy,[t("label",tF,i(e(a)("\u5929")),1),t("div",eF,[t("div",aF,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[3]||(m[3]=_=>e(s).dayPerMonth=_)},[oF,(r(),d(U,null,tt(31,_=>t("option",{value:`${_}`},i(_),9,nF)),64))],512),[[dt,e(s).dayPerMonth,void 0,{trim:!0}]])]),t("div",iF,i(e(a)("* \u8868\u793A\u6BCF\u5929")),1)])]),t("div",rF,[t("label",sF,i(e(a)("\u6708")),1),t("div",dF,[t("div",lF,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[4]||(m[4]=_=>e(s).month=_)},[uF,(r(),d(U,null,tt(12,(_,y)=>t("option",{value:`${_}`},i(_),9,cF)),64))],512),[[dt,e(s).month,void 0,{trim:!0}]])]),t("div",pF,i(e(a)("* \u8868\u793A\u6BCF\u6708")),1)])])]),t("div",fF,[t("button",{class:"close",onClick:v,disabled:u.value},i(e(a)("\u53D6\u6D88")),9,mF),t("button",{class:"next",onClick:p,disabled:u.value},i(e(a)("\u4FDD\u5B58")),9,gF)])])]),_:1}))}}),bF={class:"actioner-container"},hF={class:"actioner-container_header"},_F={class:"actioner-container_body"},xF=["value"],wF={class:"actioner-container_footer"},kF=["disabled"],yF=["disabled"],FF=T({props:{close:{type:Function,required:!0},task:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!1),s=E(""),c=E(""),x=E(""),v=()=>O(this,null,function*(){s.value+=".";try{const _=yield j.Smart.Test.Result.POST({type:"selftest",devicePath:n.task.devicePath||""});if(_.data){const{result:y,error:b}=_.data;y&&y.result&&(x.value=y.result),b&&(x.value=b)}}catch(_){_&&(x.value=_)}}),p=Pt.easyInterval(v,5e3);ke(()=>{p()});const f=()=>{u.value=!0,p(),n.close()},m=()=>O(this,null,function*(){u.value=!0;try{const _=yield j.Smart.Test.POST({type:n.task.type||"short",devicePath:n.task.devicePath||""});if(_.data){const{success:y,error:b,result:k}=_.data;b&&(c.value=b),k&&k.result&&(c.value=k.result)}}catch(_){c.value=_}finally{}});return(_,y)=>(r(),J(Ge,null,{default:G(()=>[t("div",bF,[t("div",hF,[t("span",null,i(e(a)("\u8FD0\u884C\u8C03\u8BD5")),1)]),t("div",_F,[t("textarea",{value:c.value+`
-`+x.value+`
-`+s.value,disabled:""},null,8,xF)]),t("div",wF,[t("div",{class:"close",onClick:f,disabled:u.value},i(e(a)("\u5173\u95ED")),9,kF),u.value?C("",!0):(r(),d("div",{key:0,class:"next",onClick:m,disabled:u.value},i(e(a)("\u8FD0\u884C")),9,yF))])])]),_:1}))}});var EF=N(FF,[["__scopeId","data-v-abf07ee0"]]);const $F={class:"actioner-container"},CF={class:"actioner-container_header"},DF={class:"tabs"},BF={class:"actioner-container_body"},YF={key:0,class:"table"},AF={class:"tr"},SF={class:"td left"},zF={class:"td left"},PF={class:"tr"},TF={class:"td left"},IF={class:"td left"},MF={class:"tr"},LF={class:"td left"},NF={class:"td left"},OF=["value"],VF=["value"],GF=["value"],jF={class:"actioner-container_footer"},UF=["disabled"],qF=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!1),s=E("info"),c=_=>{switch(s.value=_,_){case"info":break;case"attribute":f();break;case"log":p();break;case"extend":m();break}},x=()=>{u.value=!0,n.close()},v=mt({log:"",attribute:"",extend:""}),p=()=>O(this,null,function*(){try{const _=yield j.Smart.Test.Result.POST({type:"selftest",devicePath:n.disk.path||""});if(_.data){const{result:y,error:b}=_.data;y&&y.result&&(v.log=y.result),b&&(v.log=b)}}catch(_){v.log=_}}),f=()=>O(this,null,function*(){try{const _=yield j.Smart.Attribute.Result.POST({devicePath:n.disk.path||""});if(_.data){const{result:y,error:b}=_.data;y&&y.result&&(v.attribute=y.result),b&&(v.attribute=b)}}catch(_){v.attribute=_}}),m=()=>O(this,null,function*(){try{const _=yield j.Smart.Extend.Result.POST({devicePath:n.disk.path||""});if(_.data){const{result:y,error:b}=_.data;y&&y.result&&(v.extend=y.result),b&&(v.extend=b)}}catch(_){v.extend=_}});return(_,y)=>(r(),J(Ge,null,{default:G(()=>[t("div",$F,[t("div",CF,[t("ul",DF,[t("li",{class:st({"active cbi-tab":s.value=="info"}),onClick:y[0]||(y[0]=b=>c("info"))},[t("a",null,i(e(a)("\u8BBE\u5907\u4FE1\u606F")),1)],2),t("li",{class:st({"active cbi-tab":s.value=="attribute"}),onClick:y[1]||(y[1]=b=>c("attribute"))},[t("a",null,i(e(a)("\u5C5E\u6027")),1)],2),t("li",{class:st({"active cbi-tab":s.value=="log"}),onClick:y[2]||(y[2]=b=>c("log"))},[t("a",null,i(e(a)("\u81EA\u68C0\u65E5\u5FD7")),1)],2),t("li",{class:st({"active cbi-tab":s.value=="extend"}),onClick:y[3]||(y[3]=b=>c("extend"))},[t("a",null,i(e(a)("\u6269\u5C55\u4FE1\u606F")),1)],2)])]),t("div",BF,[s.value=="info"?(r(),d("table",YF,[t("tr",AF,[t("td",SF,i(e(a)("\u8BBE\u5907")),1),t("td",zF,i(o.disk.path),1)]),t("tr",PF,[t("td",TF,i(e(a)("\u578B\u53F7")),1),t("td",IF,i(o.disk.model),1)]),t("tr",MF,[t("td",LF,i(e(a)("\u5E8F\u53F7")),1),t("td",NF,i(o.disk.serial),1)])])):s.value=="attribute"?(r(),d("textarea",{key:1,disabled:"",value:e(v).attribute},null,8,OF)):s.value=="log"?(r(),d("textarea",{key:2,disabled:"",value:e(v).log},null,8,VF)):s.value=="extend"?(r(),d("textarea",{key:3,disabled:"",value:e(v).extend},null,8,GF)):C("",!0)]),t("div",jF,[t("div",{class:"close",onClick:x,disabled:u.value},i(e(a)("\u5173\u95ED")),9,UF)])])]),_:1}))}});var RF=N(qF,[["__scopeId","data-v-4a646cde"]]);const HF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=D(Dy,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},WF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=D(vF,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},JF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=D(EF,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},ZF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=D(RF,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},KF={class:"cbi-section"},QF={class:"cbi-value"},XF={class:"cbi-value-title"},tE={class:"cbi-value-field"},eE={class:"cbi-checkbox"},aE=["value"],oE={class:"cbi-value"},nE={class:"cbi-value-title"},iE={class:"cbi-value-field"},rE={class:"cbi-checkbox"},sE={value:"never"},dE={value:"sleep"},lE={value:"standby"},uE={value:"idle"},cE={class:"cbi-value-description"},pE=t("br",null,null,-1),fE=t("br",null,null,-1),mE=t("br",null,null,-1),gE=t("br",null,null,-1),vE={class:"cbi-value"},bE={class:"cbi-value-title"},hE={class:"cbi-value-field"},_E={class:"cbi-checkbox"},xE={value:0},wE=["value"],kE={class:"cbi-value-description"},yE={class:"cbi-value"},FE={class:"cbi-value-title"},EE={class:"cbi-value-field"},$E={class:"cbi-checkbox"},CE={value:0},DE=["value"],BE={class:"cbi-value-description"},YE={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},AE={class:"table cbi-section-table"},SE={class:"tr cbi-section-table-titles anonymous"},zE={class:"th cbi-section-table-cell","data-widget":"value"},PE={class:"th cbi-section-table-cell","data-widget":"value"},TE={class:"th cbi-section-table-cell","data-widget":"value"},IE={class:"th cbi-section-table-cell","data-widget":"value"},ME={class:"th cbi-section-table-cell","data-widget":"value"},LE={class:"th cbi-section-table-cell","data-widget":"value"},NE={class:"th cbi-section-table-cell","data-widget":"value"},OE={class:"th cbi-section-table-cell","data-widget":"value"},VE={class:"tr cbi-section-table-row"},GE={class:"td cbi-value-field"},jE={class:"td cbi-value-field"},UE={class:"td cbi-value-field"},qE={class:"td cbi-value-field"},RE={class:"td cbi-value-field"},HE={class:"td cbi-value-field"},WE={class:"td cbi-value-field"},JE={class:"td cbi-value-field"},ZE=["title","onClick"],KE=["title","onClick"],QE={class:"cbi-page-actions control-group"},XE=["value"],t$=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=mt(n.config),s=()=>{u.global.tmpDiff=n.config.global.tmpDiff||0,u.global.tmpMax=n.config.global.tmpMax||0,u.global.enable=n.config.global.enable||!1,u.global.powermode=n.config.global.powermode||"never",u.devices=n.config.devices||[],u.tasks=n.config.tasks||[]},c=E([]),x=()=>O(this,null,function*(){try{const _=yield j.Smart.List.GET();if(_.data){const{result:y,error:b}=_.data;y&&y.disks&&(c.value=y.disks||[])}}catch(_){}}),v=Pt.easyInterval(x,5e3);ke(()=>{v()});const p=()=>O(this,null,function*(){yield n.saveData({global:u.global,devices:n.config.devices,tasks:n.config.tasks}),s()}),f=_=>{ZF({disk:_})},m=(_,y)=>O(this,null,function*(){let b=null,k=-1;if(u.devices){for(let g=0;gO(this,null,function*(){g.tmpDiff==-1&&(g.tmpDiff=u.global.tmpDiff),g.tmpMax==-1&&(g.tmpMax=u.global.tmpMax),g.devicePath==""&&(g.devicePath=_.path);let h=[...u.devices];k>=0&&(h[k]=g);const w=new Map;h.forEach(F=>{F.devicePath!=null&&w.set(F.devicePath,null)});for(let F=0;F(r(),d(U,null,[t("fieldset",KF,[t("div",QF,[t("label",XF,i(e(a)("\u542F\u7528")),1),t("div",tE,[t("div",eE,[L(t("input",{type:"checkbox","onUpdate:modelValue":y[0]||(y[0]=b=>e(u).global.enable=b),value:!e(u).global.enable},null,8,aE),[[qt,e(u).global.enable]])])])]),t("div",oE,[t("label",nE,i(e(a)("\u7535\u6E90\u6A21\u5F0F")),1),t("div",iE,[t("div",rE,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":y[1]||(y[1]=b=>e(u).global.powermode=b)},[t("option",sE,i(e(a)("\u603B\u662F")),1),t("option",dE,i(e(a)("\u7761\u7720")),1),t("option",lE,i(e(a)("\u5F85\u673A")),1),t("option",uE,i(e(a)("\u95F2\u7F6E")),1)],512),[[dt,e(u).global.powermode,void 0,{trim:!0}]])]),t("div",cE,[t("span",null,i(e(a)("\u6D4B\u8BD5\u65F6\u78C1\u76D8\u4F1A\u8F6C\u52A8\uFF0C\u8BF7\u9009\u62E9\u5408\u9002\u7684\u6A21\u5F0F\u6765\u63A7\u5236\u78C1\u76D8\u8F6C\u52A8\u3002")),1),pE,t("span",null,"* "+i(e(a)("\u603B\u662F-\u65E0\u8BBA\u662F\u4EC0\u4E48\u529F\u8017\u6A21\u5F0F\u4E0B\u90FD\u6D4B\u8BD5(\u68C0\u67E5)\u78C1\u76D8\uFF0C\u5F53\u68C0\u67E5\u65F6\uFF0C\u8FD9\u53EF\u80FD\u4F1A\u4F7F\u505C\u8F6C\u7684\u78C1\u76D8\u5F00\u59CB\u8F6C\u52A8\u3002")),1),fE,t("span",null,"* "+i(e(a)("\u7761\u7720-\u5904\u4E8E\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002")),1),mE,t("span",null,"* "+i(e(a)("\u5F85\u673A-\u5904\u4E8E\u5F85\u673A\u548C\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002\u6B64\u6A21\u5F0F\u4E0B\u78C1\u76D8\u4E00\u822C\u4E0D\u65CB\u8F6C\uFF0C\u5982\u679C\u4F60\u4E0D\u60F3\u6BCF\u6B21\u68C0\u67E5\u90FD\u8F6C\u52A8\u78C1\u76D8\uFF0C\u90A3\u4E48\u8FD9\u4E2A\u6A21\u5F0F\u6BD4\u8F83\u9002\u5408\u3002")),1),gE,t("span",null,"* "+i(e(a)("\u95F2\u7F6E-\u5904\u4E8E\u5F85\u673A\u3001\u7761\u7720\u3001\u95F2\u7F6E\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\uFF0C\u5728\u95F2\u7F6E\u72B6\u6001\u4E0B\uFF0C\u5927\u591A\u6570\u78C1\u76D8\u8FD8\u5728\u8F6C\u52A8\uFF0C\u6240\u4EE5\u8FD9\u53EF\u80FD\u4E0D\u9002\u5408\u4F60\u3002")),1)])])]),t("div",vE,[t("label",bE,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09")),1),t("div",hE,[t("div",_E,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":y[2]||(y[2]=b=>e(u).global.tmpDiff=b)},[t("option",xE,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(15,b=>t("option",{value:b},i(b)+"\xB0C",9,wE)),64))],512),[[dt,e(u).global.tmpDiff,void 0,{number:!0}]])]),t("div",kE,i(e(a)("\u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A.")),1)])]),t("div",yE,[t("label",FE,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09")),1),t("div",EE,[t("div",$E,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":y[3]||(y[3]=b=>e(u).global.tmpMax=b)},[t("option",CE,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(20,b=>t("option",{value:b*5},i(b*5)+"\xB0C",9,DE)),64))],512),[[dt,e(u).global.tmpMax,void 0,{number:!0}]])]),t("div",BE,i(e(a)("\u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A.")),1)])])]),t("div",YE,[t("table",AE,[t("thead",null,[t("tr",SE,[t("th",zE,i(e(a)("\u8BBE\u5907")),1),t("th",PE,i(e(a)("\u578B\u53F7")),1),t("th",TE,i(e(a)("\u5E8F\u53F7")),1),t("th",IE,i(e(a)("\u5BB9\u91CF")),1),t("th",ME,i(e(a)("\u6E29\u5EA6")),1),t("th",LE,i(e(a)("\u72B6\u6001")),1),t("th",NE,i(e(a)("\u5065\u5EB7")),1),t("th",OE,i(e(a)("\u64CD\u4F5C")),1)])]),t("tbody",null,[(r(!0),d(U,null,tt(c.value,(b,k)=>(r(),d("tr",VE,[t("td",GE,[t("b",null,i(b.path),1)]),t("td",jE,[t("b",null,i(b.model),1)]),t("td",UE,[t("b",null,i(b.serial),1)]),t("td",qE,[t("b",null,i(b.sizeStr),1)]),t("td",RE,[t("b",null,i(b.temp),1)]),t("td",HE,[t("b",null,i(b.status),1)]),t("td",WE,[t("b",null,i(b.health),1)]),t("td",JE,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(a)("\u7F16\u8F91"),onClick:g=>m(b)},i(e(a)("\u7F16\u8F91")),9,ZE),t("button",{class:"btn cbi-button cbi-button-apply",title:e(a)("\u8BE6\u60C5"),onClick:g=>f(b)},i(e(a)("\u8BE6\u60C5")),9,KE)])]))),256))])])]),t("span",QE,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:e(a)("\u4FDD\u5B58\u5E76\u5E94\u7528"),onClick:p},null,8,XE)])],64))}}),e$={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},a$={class:"table cbi-section-table"},o$={class:"tr cbi-section-table-titles anonymous"},n$={class:"th cbi-section-table-cell","data-widget":"value"},i$={class:"th cbi-section-table-cell","data-widget":"value"},r$={class:"th cbi-section-table-cell","data-widget":"value"},s$={class:"th cbi-section-table-cell","data-widget":"value"},d$={class:"tr cbi-section-table-row"},l$={class:"td cbi-value-field"},u$={class:"td cbi-value-field"},c$={class:"td cbi-value-field"},p$={class:"td cbi-value-field"},f$=["title","onClick"],m$=["title","onClick"],g$=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=mt(n.config),s=p=>{switch(p){case"short":return a("\u77ED\u6682\u81EA\u68C0");case"long":return a("\u957F\u65F6\u81EA\u68C0");case"conveyance":return a("\u4F20\u8F93\u65F6\u81EA\u68C0");case"offline":return a("\u79BB\u7EBF\u65F6\u81EA\u68C0");default:return a("\u672A\u77E5")}},c=()=>{WF({config:n.config,disks:[],next:p=>O(this,null,function*(){yield n.saveData({tasks:[...u.tasks,p],global:n.config.global,devices:n.config.devices}),u.tasks=n.config.tasks||[]})})},x=p=>O(this,null,function*(){const f=[...u.tasks];f.splice(p,1),yield n.saveData({tasks:f,global:n.config.global,devices:n.config.devices}),u.tasks=n.config.tasks||[]}),v=p=>{JF({task:p})};return(p,f)=>(r(),d(U,null,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:f[0]||(f[0]=m=>c())},i(e(a)("\u65B0\u5EFA")),1),t("div",e$,[t("table",a$,[t("thead",null,[t("tr",o$,[t("th",n$,i(e(a)("\u8BBE\u5907")),1),t("th",i$,i(e(a)("\u7C7B\u578B")),1),t("th",r$,i(e(a)("\u8C03\u5EA6")),1),t("th",s$,i(e(a)("\u529F\u80FD")),1)])]),t("tbody",null,[(r(!0),d(U,null,tt(e(u).tasks,(m,_)=>(r(),d("tr",d$,[t("td",l$,[t("b",null,i(m.devicePath),1)]),t("td",u$,[t("b",null,i(s(m.type)),1)]),t("td",c$,[t("b",null,i(m.month)+"/"+i(m.dayPerMonth)+"/"+i(m.hour),1)]),t("td",p$,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(a)("\u8C03\u8BD5"),onClick:y=>v(m)},i(e(a)("\u9884\u89C8")),9,f$),t("button",{class:"cbi-button cbi-button-remove",title:e(a)("\u5220\u9664"),onClick:y=>x(_)},i(e(a)("\u5220\u9664")),9,m$)])]))),256))])])])],64))}}),v$={class:"cbi-section"},b$=["value"],h$=T({setup(o){return O(this,null,function*(){let n,a;const l=E(""),u=()=>O(this,null,function*(){try{const s=yield j.Smart.Log.GET();if(s.data){const{result:c,error:x}=s.data;c&&c.result&&(l.value=c.result),x&&(l.value=x)}}catch(s){l.value=s}});return[n,a]=yo(()=>u()),yield n,a(),(s,c)=>(r(),d("fieldset",v$,[t("textarea",{value:l.value,disabled:""},null,8,b$)]))})}});var _$=N(h$,[["__scopeId","data-v-997c3dee"]]);const oo=o=>(it("data-v-17b89cb7"),o=o(),rt(),o),x$=oo(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","xmlns:v":"https://vecta.io/nano",width:"48",height:"38",viewBox:"0 0 12.7 10.05"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(0 -286.95)"},[t("rect",{x:".21",y:"287.25",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0834 280.6)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#999",filter:"url(#A)",stroke:"#999","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0999 280.7)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.24",y:"294.55",width:"1.6",height:"1.38",ry:".11",fill:"#ccc",stroke:"#ccc","stroke-width":".22","paint-order":"normal"})])])],-1)),w$={class:"app-container_status-label_text"},k$={class:"text_status"},y$={class:"text_info"},F$=oo(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"48",height:"38",viewBox:"0 0 12.7 10.05","xmlns:v":"https://vecta.io/nano"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(-.03 -287.07)"},[t("rect",{x:".24",y:"287.36",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0532 280.72)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#4d4d4d",filter:"url(#A)",stroke:"#4d4d4d","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0697 280.81)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.27",y:"294.67",width:"1.6",height:"1.38",ry:".11",fill:"#55d400",stroke:"#55d400","stroke-width":".22","paint-order":"normal"})])])],-1)),E$={class:"app-container_status-label_text"},$$={class:"text_info"},C$=T({props:{item:{type:Object,required:!0},transform:{type:Number,default:0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=ia(),s=E(null),c=v=>{const p=v.target,{left:f,top:m}=p.getBoundingClientRect();u.portitemStyle.show=!0,u.portitemStyle.left=f,u.portitemStyle.top=m,u.portitemStyle.portitem=n.item},x=v=>{u.portitemStyle.show=!1};return(v,p)=>(r(),d("div",{class:"app-container_status-label_bg",style:ft(`transform: translateX(${o.transform}px);`),ref_key:"el",ref:s,onMouseenter:c,onMouseleave:x},[o.item.linkState=="DOWN"?(r(),d(U,{key:0},[x$,t("div",w$,[t("div",k$,i(e(a)("\u5DF2\u65AD\u5F00")),1),t("div",y$,i(o.item.name)+" "+i(o.item.interfaceNames?`(${o.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64)):(r(),d(U,{key:1},[F$,t("div",E$,[t("div",null,i(o.item.linkSpeed),1),t("div",$$,i(o.item.name)+" "+i(o.item.interfaceNames?`(${o.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64))],36))}});var D$=N(C$,[["__scopeId","data-v-17b89cb7"]]);const B$={},Y$={t:"1659511092204",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2332","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"200",height:"200"},A$=t("path",{d:"M514.048 62.464q93.184 0 175.616 35.328t143.872 96.768 96.768 143.872 35.328 175.616q0 94.208-35.328 176.128t-96.768 143.36-143.872 96.768-175.616 35.328q-94.208 0-176.64-35.328t-143.872-96.768-96.768-143.36-35.328-176.128q0-93.184 35.328-175.616t96.768-143.872 143.872-96.768 176.64-35.328zM772.096 576.512q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-192.512 0 0-192.512q0-26.624-18.944-45.568t-45.568-18.944-45.056 18.944-18.432 45.568l0 192.512-192.512 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l192.512 0 0 191.488q0 26.624 18.432 45.568t45.056 18.944 45.568-18.944 18.944-45.568l0-191.488 192.512 0z","p-id":"2333"},null,-1),S$=[A$];function z$(o,n){return r(),d("svg",Y$,S$)}var Da=N(B$,[["render",z$]]);const P$=["onSubmit"],T$={class:"actioner-dns_header"},I$={key:0},M$={key:1},L$={class:"actioner-dns_body"},N$={class:"label-item"},O$={class:"label-item_key"},V$={class:"label-item_value"},G$={class:"label-item"},j$={class:"label-item_key"},U$={class:"label-item_value"},q$={value:"dhcp"},R$={key:0,value:"pppoe"},H$={value:"static"},W$={class:"actioner-dns_footer"},J$=["disabled"],Z$=T({props:{Close:{type:Function,required:!0},e:{type:String,required:!0},name:{type:String,required:!0},inface:{type:Object,required:!0},next:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=W(),u=E(!1),s=E(n.inface),c=()=>O(this,null,function*(){$.Loading(a("\u914D\u7F6E\u4E2D...")).Close(),n.next(s.value),x()}),x=()=>{n.Close&&n.Close()};return(v,p)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[t("form",{class:"actioner-dns",onSubmit:ut(c,["prevent"])},[t("div",T$,[o.name=="wan"?(r(),d("span",I$,i(o.e=="edit"?e(a)("\u7F16\u8F91WAN"):e(a)("\u6DFB\u52A0WAN")),1)):(r(),d("span",M$,i(o.e=="edit"?e(a)("\u7F16\u8F91LAN"):e(a)("\u6DFB\u52A0LAN")),1))]),t("div",L$,[t("div",N$,[t("div",O$,[t("span",null,i(e(a)("\u540D\u79F0")),1)]),t("div",V$,[t("span",null,i(s.value.name.toLocaleUpperCase()),1)])]),t("div",G$,[t("div",j$,[t("span",null,i(e(a)("\u534F\u8BAE\uFF08\u7F51\u7EDC\u83B7\u53D6\u65B9\u5F0F\uFF09")),1)]),t("div",U$,[L(t("select",{"onUpdate:modelValue":p[0]||(p[0]=f=>s.value.proto=f)},[t("option",q$,i(e(a)("DHCP\u5BA2\u6237\u7AEF")),1),o.name=="wan"?(r(),d("option",R$,"PPPoE")):C("",!0),t("option",H$,i(e(a)("\u9759\u6001\u5730\u5740")),1)],512),[[dt,s.value.proto]])])])]),t("div",W$,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:u.value},i(e(a)("\u4FDD\u5B58")),9,J$),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:x},i(e(a)("\u53D6\u6D88")),1)])],40,P$)]),_:1},8,["Close"]))}});var K$=N(Z$,[["__scopeId","data-v-6f6071af"]]);const Ba=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(K$,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()}},Gt=o=>(it("data-v-4ec945e0"),o=o(),rt(),o),Q$={id:"page"},X$={name:"content"},tC={class:"container"},eC={class:"table-wrapper"},aC={class:"table-header"},oC={class:"interface-device-flex"},nC=Gt(()=>t("div",{class:"header-cell spacer-col"},null,-1)),iC=Gt(()=>t("div",{class:"header-cell"},null,-1)),rC=Gt(()=>t("div",{class:"header-cell action-col"},null,-1)),sC={class:"table-body"},dC=["name","value","onUpdate:modelValue","onInput"],lC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),uC={class:"table-cell name-col"},cC={class:"table-cell action-col"},pC=["title","onClick"],fC=["onClick"],mC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),gC=Gt(()=>t("div",{class:"table-cell name-col"},null,-1)),vC={class:"table-cell action-col"},bC=["name","value","onUpdate:modelValue","onInput"],hC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),_C={class:"table-cell name-col"},xC={class:"table-cell action-col"},wC=["title","onClick"],kC=["onClick"],yC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),FC=Gt(()=>t("div",{class:"table-cell name-col"},null,-1)),EC={class:"table-cell action-col"},$C={class:"cbi-page-actions control-group"},CC=["value","disabled"],DC=T({setup(o){const{$gettext:n,$ngettext:a}=W(),l=mt({devices:[],interfaces:[]}),u=E(!1),s=mt({lan:[],wan:[]});(()=>{j.Network.GetInterfaceConfig.GET().then(y=>{if(y.data){const{result:b}=y.data;if(b){l.devices=b.devices||[],l.interfaces=b.interfaces||[];for(let k=0;k{y=="wan"?s.wan.splice(b,1):y=="lan"&&s.lan.splice(b,1)},v=(y,b)=>{if(b==null){let k=y=="wan"?s.wan.length:s.lan.length;k==6&&y=="wan"&&k++,Ba({e:"add",name:y,inface:{name:y+`${k}`,proto:"dhcp",ipv4Addr:"",ipv6Addr:"",portName:"",deviceNames:[],ports:[],firewallType:y},next:g=>{y=="wan"?s.wan.push(g):s.lan.push(g),$.Message(n("\u8BF7\u5728\u4FDD\u5B58\u4EE5\u540E\u524D\u5F80'\u7F51\u7EDC-\u63A5\u53E3'\u9875\u9762\u914D\u7F6E\u63A5\u53E3\u8BE6\u7EC6\u53C2\u6570"))}})}else Ba({e:"edit",name:y,inface:y=="wan"?s.wan[b]:s.lan[b],next:k=>{y=="wan"?s.wan[b]=k:s.lan[b]=k}})},p=(y,b)=>y?y.indexOf(b):-1,f=(y,b)=>{const g=y.target.value;for(let w=0;w{const g=y.target.value;for(let h=0;hO(this,null,function*(){u.value=!0;const y=[];for(let k=0;k(r(),d("div",Q$,[t("h2",X$,i(e(n)("\u7F51\u53E3\u914D\u7F6E")),1),t("div",tC,[t("div",eC,[t("div",aC,[(r(!0),d(U,null,tt(e(l).devices,k=>(r(),d("div",{class:"header-cell device-col",key:k.name},[t("div",oC,[D(D$,{item:k},null,8,["item"])])]))),128)),nC,iC,rC]),t("div",sC,[(r(!0),d(U,null,tt(e(s).lan,(k,g)=>(r(),d("div",{key:g,class:"table-row"},[(r(!0),d(U,null,tt(e(l).devices,h=>(r(),d("div",{class:"table-cell device-col",key:h.name},[L(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":w=>k.deviceNames=w,onInput:w=>f(w,g)},null,40,dC),[[qt,k.deviceNames]])]))),128)),lC,t("div",uC,[t("b",null,i(k.name),1)]),t("div",cC,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u7F16\u8F91"),onClick:h=>v("lan",g)},i(e(n)("\u7F16\u8F91")),9,pC),g!==0?(r(),d("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>x("lan",g)},i(e(n)("\u5220\u9664")),9,fC)):C("",!0)])]))),128)),t("div",{class:"table-row add-row",onClick:b[0]||(b[0]=k=>v("lan"))},[(r(!0),d(U,null,tt(e(l).devices,k=>(r(),d("div",{class:"table-cell device-col",key:k.name}))),128)),mC,gC,t("div",vC,[D(Da,{class:"icon"})])]),(r(!0),d(U,null,tt(e(s).wan,(k,g)=>(r(),d("div",{key:g,class:"table-row"},[(r(!0),d(U,null,tt(e(l).devices,h=>(r(),d("div",{class:"table-cell device-col",key:h.name},[L(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":w=>k.deviceNames=w,onInput:w=>m(w,g)},null,40,bC),[[qt,k.deviceNames]])]))),128)),hC,t("div",_C,[t("b",null,i(k.name),1)]),t("div",xC,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u7F16\u8F91"),onClick:h=>v("wan",g)},i(e(n)("\u7F16\u8F91")),9,wC),g!==0?(r(),d("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>x("wan",g)},i(e(n)("\u5220\u9664")),9,kC)):C("",!0)])]))),128)),t("div",{class:"table-row add-row",onClick:b[1]||(b[1]=k=>v("wan"))},[(r(!0),d(U,null,tt(e(l).devices,k=>(r(),d("div",{class:"table-cell device-col",key:k.name}))),128)),yC,FC,t("div",EC,[D(Da,{class:"icon"})])])])])]),t("div",$C,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:e(n)("\u4FDD\u5B58\u5E76\u5E94\u7528"),onClick:_,disabled:u.value},null,8,CC)])]))}});var BC=N(DC,[["__scopeId","data-v-4ec945e0"]]);const YC={name:"CustomTable",props:{data:{type:Array,default:()=>[]},columns:{type:Array,required:!0,validator:o=>o.every(n=>n.label&&n.prop)},showSelection:{type:Boolean,default:!1},rowKey:{type:String,default:"id"},showPagination:{type:Boolean,default:!0},pageSize:{type:Number,default:10},currentPage:{type:Number,default:1},emptyText:{type:String,default:"\u6682\u65E0\u6570\u636E"},maxPagerCount:{type:Number,default:5},theadBgColor:{type:String,default:"#F8F8F8"}},emits:["selection-change","update:currentPage","page-change"],setup(o,{emit:n}){const{$gettext:a}=W(),l=E([]),u=E(!1),s=E(!1);E(null);const c=Q(()=>o.data.length),x=Q(()=>Math.ceil(c.value/o.pageSize)),v=Q(()=>{if(!o.showPagination)return o.data;const Y=(o.currentPage-1)*o.pageSize,P=Y+o.pageSize;return o.data.slice(Y,P)}),p=Q(()=>(o.currentPage-1)*o.pageSize+1),f=Q(()=>{const Y=o.currentPage*o.pageSize;return Y>c.value?c.value:Y}),m=Q(()=>({minWidth:`${o.columns.reduce((P,A)=>P+(parseInt(A.width)||50),o.showSelection?50:0)}px`})),_=Q(()=>{const Y=[],P=Math.floor(o.maxPagerCount/2);let A=o.currentPage-P,B=o.currentPage+P;A<1&&(A=1,B=Math.min(o.maxPagerCount,x.value)),B>x.value&&(B=x.value,A=Math.max(1,B-o.maxPagerCount+1));for(let S=A;S<=B;S++)Y.push(S);return Y}),y=Y=>({width:Y.width?`${Math.max(50,parseInt(Y.width))}px`:"auto",minWidth:"50px",textAlign:Y.align||"center"}),b=()=>{u.value?l.value=[...v.value.map(Y=>Y[o.rowKey])]:l.value=[],h()},k=()=>{u.value=l.value.length===v.value.length&&v.value.length>0,h()},g=(Y,P)=>{P?l.value.includes(Y)||l.value.push(Y):l.value=l.value.filter(A=>A!==Y),k()},h=()=>{const Y=o.data.filter(P=>l.value.includes(P[o.rowKey]));n("selection-change",Y)},w=Y=>{Y<1||Y>x.value||(n("update:currentPage",Y),n("page-change",Y))},F=()=>{s.value=window.innerWidth<=768};return Yt(()=>o.data,()=>{l.value=[],u.value=!1},{deep:!0}),At(()=>{F(),window.addEventListener("resize",F)}),Mt(()=>{window.removeEventListener("resize",F)}),{selectedRows:l,allSelected:u,isMobile:s,total:c,totalPages:x,paginatedData:v,startItem:p,endItem:f,visiblePages:_,tableStyle:m,gettext:a,getColumnStyle:y,toggleAllSelection:b,handleSelectionChange:k,changePage:w,updateSelection:g}}},AC={class:"custom-table-container"},SC={key:0,class:"selection-header"},zC={key:0,class:"selection-cell"},PC=["checked","onChange"],TC={key:0,class:"empty-row"},IC=["colspan"],MC={key:0,class:"pagination-wrapper"},LC={class:"pagination-info"},NC={class:"pagination-controls"},OC=["disabled"],VC=["onClick"],GC=["disabled"];function jC(o,n,a,l,u,s){return r(),d("div",AC,[t("div",{class:"custom-table-wrapper",style:ft({overflowX:l.isMobile?"auto":"hidden"})},[t("table",{class:st(["custom-table",{"has-selection":a.showSelection}]),style:ft(l.tableStyle)},[t("thead",{style:ft({background:a.theadBgColor})},[t("tr",null,[a.showSelection?(r(),d("th",SC,[L(t("input",{type:"checkbox","onUpdate:modelValue":n[0]||(n[0]=c=>l.allSelected=c),onChange:n[1]||(n[1]=(...c)=>l.toggleAllSelection&&l.toggleAllSelection(...c))},null,544),[[qt,l.allSelected]])])):C("",!0),(r(!0),d(U,null,tt(a.columns,(c,x)=>(r(),d("th",{key:x,style:ft(l.getColumnStyle(c))},i(l.gettext(c.label)),5))),128))])],4),t("tbody",null,[(r(!0),d(U,null,tt(l.paginatedData,(c,x)=>(r(),d("tr",{key:x,class:st({"last-row":x===l.paginatedData.length-1})},[a.showSelection?(r(),d("td",zC,[t("input",{type:"checkbox",checked:l.selectedRows.includes(c[a.rowKey]),onChange:v=>l.updateSelection(c[a.rowKey],v.target.checked)},null,40,PC)])):C("",!0),(r(!0),d(U,null,tt(a.columns,(v,p)=>(r(),d("td",{key:p,style:ft({textAlign:v.align||"center"})},[v.slot?Et(o.$slots,v.slot,{key:0,row:c,index:x},void 0,!0):(r(),d(U,{key:1},[nt(i(c[v.prop]),1)],64))],4))),128))],2))),128)),l.paginatedData.length===0?(r(),d("tr",TC,[t("td",{colspan:a.showSelection?a.columns.length+1:a.columns.length},i(a.emptyText),9,IC)])):C("",!0)])],6)],4),a.showPagination?(r(),d("div",MC,[t("div",LC,i(l.gettext("\u663E\u793A"))+" "+i(l.startItem)+" "+i(l.gettext("\u5230"))+" "+i(l.endItem)+" "+i(l.gettext("\u6761"))+"\uFF0C"+i(l.gettext("\u5171"))+" "+i(l.total)+" "+i(l.gettext("\u6761")),1),t("div",NC,[t("button",{disabled:a.currentPage===1,onClick:n[2]||(n[2]=c=>l.changePage(a.currentPage-1))},i(l.gettext("\u4E0A\u4E00\u9875")),9,OC),(r(!0),d(U,null,tt(l.visiblePages,c=>(r(),d("button",{key:c,class:st({active:c===a.currentPage}),onClick:x=>l.changePage(c)},i(c),11,VC))),128)),t("button",{disabled:a.currentPage===l.totalPages,onClick:n[3]||(n[3]=c=>l.changePage(a.currentPage+1))},i(l.gettext("\u4E0B\u4E00\u9875")),9,GC)])])):C("",!0)])}var je=N(YC,[["render",jC],["__scopeId","data-v-2c8ecf89"]]);const no=o=>(it("data-v-d28f7d82"),o=o(),rt(),o),UC={style:{display:"flex","align-items":"center"}},qC={class:"search_box"},RC={class:"search_container"},HC={class:"search_input_wrapper"},WC=["onKeyup","placeholder"],JC=no(()=>t("path",{d:"M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"},null,-1)),ZC=[JC],KC=no(()=>t("svg",{class:"refresh_icon",viewBox:"0 0 24 24",width:"26",height:"26"},[t("path",{d:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"})],-1)),QC=[KC],XC=T({props:{showBatchDelete:{type:Boolean,default:!0},showAdd:{type:Boolean,default:!0}},emits:["refresh","batch-delete","search","handleAdd"],setup(o,{emit:n}){const a=o,{$gettext:l}=W(),u=E(""),s=E(!1),c=E(a.showBatchDelete),x=E(a.showAdd),v=()=>{n("refresh",{data:"\u8FD9\u662F\u5B50\u7EC4\u4EF6\u7684\u6570\u636E"})},p=()=>{n("search",String(u.value))},f=()=>{n("batch-delete",{data:"\u8FD9\u662F\u5B50\u7EC4\u4EF6\u7684\u6570\u636E"})},m=()=>{n("handleAdd")};return(_,y)=>(r(),d("div",UC,[x.value?(r(),d("button",{key:0,class:"del-button add-button--danger",style:{},onClick:m},[t("span",null,i(e(l)("\u6DFB\u52A0")),1)])):C("",!0),c.value?(r(),d("button",{key:1,class:"del-button del-button--danger",onClick:f},[t("span",null,i(e(l)("\u6279\u91CF\u5220\u9664")),1)])):C("",!0),t("div",qC,[t("div",RC,[t("div",HC,[L(t("input",{type:"text",onKeyup:Fo(p,["enter"]),"onUpdate:modelValue":y[0]||(y[0]=b=>u.value=b),class:"search_input",placeholder:e(l)("\u8BF7\u8F93\u5165\u540D\u79F0/IP/MAC\u2026")},null,40,WC),[[et,u.value,void 0,{trim:!0}]]),t("svg",{class:"search_icon",viewBox:"0 0 24 24",width:"24",height:"24",onClick:p},ZC)]),t("button",{class:st(["refresh_button",{rotate:s.value}]),onClick:v},QC,2)])])]))}});var fa=N(XC,[["__scopeId","data-v-d28f7d82"]]);const tD=o=>(it("data-v-9ce78472"),o=o(),rt(),o),eD=tD(()=>t("span",{class:"switch__button"},null,-1)),aD=[eD],oD=["checked","disabled"],nD=T({props:{modelValue:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},activeColor:{default:"#409EFF"},inactiveColor:{default:"#DCDFE6"}},emits:["update:modelValue","change","beforeChange"],setup(o,{emit:n}){const a=o,l=()=>{if(n("beforeChange",!a.modelValue),a.disabled)return;const u=!a.modelValue;n("update:modelValue",u),n("change",u)};return Q(()=>a.modelValue),(u,s)=>(r(),d("div",{class:st(["switch",{"is-checked":o.modelValue,"is-disabled":o.disabled}]),onClick:l},[t("span",{class:"switch__core",style:ft({backgroundColor:o.modelValue?o.activeColor:o.inactiveColor,borderColor:o.modelValue?o.activeColor:o.inactiveColor})},aD,4),t("input",{type:"checkbox",class:"switch__input",checked:o.modelValue,disabled:o.disabled},null,8,oD)],2))}});var Ot=N(nD,[["__scopeId","data-v-9ce78472"]]);const iD={class:"flow"},rD={class:"flow-data"},sD={key:0},dD={key:1},lD=T({props:{ipParam:{type:String}},setup(o){const n=o,{$gettext:a}=W();Qe([Ya,Aa,Sa,Xe,ta,za]);const l=E(n.ipParam),u=E(),s=g=>{var w;const h=(w=u.value)==null?void 0:w[g];return!h||h.startTime==0?"":m(h.startTime*1e3)+"-"+m(h.endTime*1e3)},c=Q(()=>{var h;let g=[];return(h=u.value)==null||h.forEach(w=>{g.push({value:w.uploadSpeed})}),g}),x=Q(()=>{var h;let g=[];return(h=u.value)==null||h.forEach(w=>{g.push({value:w.downloadSpeed})}),g}),v=Q(()=>{var h;let g="";if(u.value){let w=((h=u.value)==null?void 0:h.length)||0;if(w>0){let F=u.value[w-1];g=_(F.uploadSpeed)+"/s"}}return g}),p=Q(()=>{var h;let g="";if(u.value){let w=((h=u.value)==null?void 0:h.length)||0;if(w>0){let F=u.value[w-1];g=_(F.downloadSpeed)+"/s"}}return g}),f=()=>O(this,null,function*(){var g;try{const h=yield j.DeviceMangement.speedsForOneDevice.POST({ip:l.value});if(h.data&&(g=h.data.result)!=null&&g.items){const w=h.data.result.slots||10;if(h.data.result.items.lengthw?u.value=h.data.result.items.slice(w-h.data.result.items.length):u.value=h.data.result.items}}catch(h){console.log(h)}}),m=Pt.dateForm,_=Pt.byteToSize,y=E();let b=null;const k=g=>{const h=ja();return b=ea(g,h?"dark":"light"),b.setOption({animation:!1,backgroundColor:h?"#88888822":"#fff",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:w=>{if(Array.isArray(w)){let F="";w.length>0&&(F=s(w[0].axisValue));for(let Y=0;Y${w[Y].seriesName}: ${_(w[Y].value)}/s`;return F.toString()}else{const F=w;return`${s(F.axisValue)}
${F.seriesName}: ${_(F.value)}/s`}}},xAxis:{type:"category",boundaryGap:!1,splitLine:{lineStyle:{color:["#999"]},show:!1},name:"",show:!1,nameGap:0,nameTextStyle:{height:0,lineHeight:0,padding:0}},title:{text:a("\u6D41\u91CF\u7EDF\u8BA1"),textStyle:{fontSize:12,color:h?"#cccccc":"rgba(0, 0, 0, 0.6)"},top:"10px",left:"10px"},yAxis:{type:"value",name:"",minInterval:1e4,interval:1e3,axisLabel:{formatter:function(w,F){return`${_(w)}/s`},color:"#fff",show:!1},nameTextStyle:{color:"#fff"},splitLine:{lineStyle:{color:["#999"]},show:!1}},series:[{name:a("\u4E0B\u8F7D"),data:x.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(32, 199, 247, 1)"},{offset:1,color:"rgba(32, 199, 247, 0.1)"}],global:!1}}},{name:a("\u4E0A\u4F20"),data:c.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(85, 58, 254, 1)"},{offset:1,color:"rgba(85, 58, 254, 0.1)"}],global:!1}}}],legend:{padding:0,align:"right",top:"10px",data:[{name:a("\u4E0A\u4F20"),itemStyle:{color:"rgb(85, 58, 254)"}},{name:a("\u4E0B\u8F7D"),itemStyle:{color:"rgb(32, 199, 247)"}}],textStyle:{color:h?"#cccccc":"rgba(0, 0, 0, 0.6)"},lineStyle:{color:"#333"}},grid:{left:"2%",right:"2%",bottom:"0%",top:"10%",containLabel:!0}}),b};return At(()=>{setTimeout(()=>O(this,null,function*(){if(y.value){yield f();const g=k(y.value),h=y.value;g.resize({width:h.clientWidth,height:h.clientHeight}),window.addEventListener("resize",()=>{g.resize({width:h.clientWidth,height:h.clientHeight})});const w=()=>O(this,null,function*(){if(b!=null){if(!document.hidden){if(yield f(),b==null)return;g.setOption({series:[{name:a("\u4E0B\u8F7D"),data:x.value,type:"line",areaStyle:{},smooth:!0},{name:a("\u4E0A\u4F20"),data:c.value,type:"line",areaStyle:{},smooth:!0}]})}setTimeout(w,5e3)}});setTimeout(w,5e3)}}),900)}),Mt(()=>{b!=null&&(b.dispose(),b=null)}),(g,h)=>(r(),d("div",iD,[t("div",{ref_key:"el",ref:y,class:"echart"},null,512),t("div",rD,[e(v)?(r(),d("span",sD,i(e(a)("\u4E0A\u4F20:"))+" "+i(e(v)),1)):C("",!0),e(p)?(r(),d("span",dD,i(e(a)("\u4E0B\u8F7D:"))+" "+i(e(p)),1)):C("",!0)])]))}});var uD=N(lD,[["__scopeId","data-v-529a02b0"]]);const cD=["onClick"],pD={class:"modal-header"},fD={class:"modal-title"},mD={class:"modal-content"},gD={key:0,class:"modal-footer"},ee=T({props:{modelValue:{type:Boolean},title:{default:"\u63D0\u793A"},showClose:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!1},footerShow:{type:Boolean,default:!0},width:{default:"500px"}},emits:["update:modelValue","confirm","cancel","close"],setup(o,{expose:n,emit:a}){const l=o;Eo(m=>({"1df87c10":e(s)}));const{$gettext:u}=W(),s=Q(()=>typeof l.width=="number"?`${l.width}px`:l.width),c=E(l.modelValue);Yt(()=>l.modelValue,m=>{c.value=m}),Yt(c,m=>{a("update:modelValue",m),m||a("close")}),Q(()=>typeof l.width=="number"?`${l.width}px`:l.width);const x=()=>{c.value=!1},v=()=>{l.closeOnClickOverlay&&f()},p=()=>{a("confirm")},f=()=>{a("cancel"),x()};return n({show:()=>c.value=!0,hide:()=>c.value=!1}),(m,_)=>(r(),J($t,{name:"fade"},{default:G(()=>[c.value?(r(),d("div",{key:0,class:"modal-overlay",onClick:ut(v,["self"])},[D($t,{name:"slide"},{default:G(()=>[t("div",{class:"modal-container",style:ft({maxWidth:e(s)})},[t("div",pD,[t("h3",fD,i(e(u)(o.title)),1),o.showClose?(r(),d("button",{key:0,class:"modal-close",onClick:f,"aria-label":"Close"}," \xD7 ")):C("",!0)]),t("div",mD,[Et(m.$slots,"default")]),o.footerShow?(r(),d("div",gD,[Et(m.$slots,"footer",{},()=>[t("button",{class:"modal-button cancel",onClick:f},i(e(u)("\u53D6\u6D88")),1),t("button",{class:"modal-button confirm",onClick:p},i(e(u)("\u4FDD\u5B58")),1)])])):C("",!0)],4)]),_:3})],8,cD)):C("",!0)]),_:3}))}}),$e=o=>(it("data-v-2f8a90b2"),o=o(),rt(),o),vD={class:"container"},bD={style:{display:"flex","justify-content":"end"}},hD=["onClick"],_D=["onClick"],xD=["onClick"],wD={class:"custom-content"},kD={class:"IP_address"},yD={class:"item_box"},FD={class:"item_left"},ED={key:0,class:"tip"},$D=["onClick"],CD={key:1},DD={class:"item_box"},BD={class:"item_left"},YD={class:"item_box"},AD={class:"item_left"},SD=["placeholder"],zD={class:"item_box"},PD={class:"item_left"},TD=["placeholder"],ID={class:"item_box"},MD={class:"item_left"},LD=["placeholder"],ND={class:"custom-content"},OD=$e(()=>t("div",{class:"img_box"},[t("img",{src:"https://fwindex.koolcenter.com/cover/x86_64/cover.png",alt:""})],-1)),VD={class:"item_box"},GD={class:"item_left"},jD=["placeholder"],UD={class:"item_box"},qD=$e(()=>t("div",{class:"item_left"},"MAC\uFF1A",-1)),RD=["placeholder"],HD={class:"item_box"},WD={class:"item_left"},JD={key:0,value:null,disabled:""},ZD=["value"],KD={class:"item_box"},QD={class:"item_left"},XD={key:0,class:"item_box"},tB=$e(()=>t("div",{class:"item_left"},"IP\uFF1A",-1)),eB=["placeholder"],aB={class:"custom-content"},oB={class:"info-content"},nB=$e(()=>t("div",{class:"img_box"},[t("img",{src:"https://fwindex.koolcenter.com/cover/x86_64/cover.png",alt:""})],-1)),iB={style:{"margin-bottom":"16px",flex:"1"}},rB={class:"item_box"},sB={class:"item_left"},dB={class:"item_box"},lB={class:"item_left"},uB={class:"item_box"},cB=$e(()=>t("div",{class:"item_left"}," MAC\uFF1A",-1)),pB={class:"item_box"},fB={class:"item_left"},mB={class:"item_box"},gB={class:"item_left"},vB={class:"item_box"},bB={class:"item_left"},hB=T({emits:["openGloba"],setup(o,{emit:n}){const{$gettext:a}=W(),l=z=>{R.hostname=z.target.value.replace(/[\u4e00-\u9fa5]/g,"")},u=E(null),s=()=>{c(),A(),u.value=setInterval(A,3e3)},c=()=>{u.value&&(clearInterval(u.value),u.value=null)};At(()=>O(this,null,function*(){yield Y(),p.value.length!==0&&s()})),Mt(()=>{c()});const x=E({});(()=>O(this,null,function*(){try{const{data:z}=yield j.DeviceMangement.globalConfigs.GET();z.result&&(x.value=z.result||{})}catch(z){}}))();const p=E([]),f=E([]),m=E(!1),_=E(!1),y=E(!1),b=Q(()=>!R.dhcpGateway),k=E([{label:"\u4E3B\u673A\u540D\u79F0",prop:"hostname"},{label:"IP\u5730\u5740",prop:"ip"},{label:"MAC\u5730\u5740",prop:"mac"},{label:"\u4E0A\u4F20\u901F\u5EA6",prop:"uploadSpeedStr"},{label:"\u4E0B\u8F7D\u901F\u5EA6",prop:"downloadSpeedStr"},{label:"\u6807\u7B7E",prop:"staticAssigned",slot:"staticAssigned"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),g=z=>({default:a("\u9ED8\u8BA4\u7F51\u5173"),parent:a("\u4E0A\u7EA7\u8DEF\u7531"),myself:a("\u672C\u8BBE\u5907"),bypass:a("\u65C1\u8DEF\u7531"),floatip:a("\u6D6E\u52A8\u7F51\u5173")})[z]||z,h=()=>{m.value=!1,n("openGloba")},w=z=>{var K,X;if(z==!0&&!((X=(K=x.value)==null?void 0:K.speedLimit)!=null&&X.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"))},F=E([]),Y=()=>O(this,null,function*(){var K,X,ot;let z=$.Loading(a("\u52A0\u8F7D\u4E2D..."));try{const{data:xt}=yield j.DeviceMangement.listDevices.GET();xt.result&&(p.value=((K=xt.result)==null?void 0:K.devices)||[],f.value=((X=xt.result)==null?void 0:X.devices)||[],F.value=((ot=xt.result)==null?void 0:ot.dhcpTags)||[])}catch(xt){}finally{z.Close()}}),P=(z,K)=>{const X={};return z.forEach(ot=>{ot.ip&&(X[ot.ip]={downloadSpeedStr:ot.downloadSpeedStr||"0 B",uploadSpeedStr:ot.uploadSpeedStr||"0 B"})}),K.map(ot=>ot.ip&&X[ot.ip]?pt(lt({},ot),{downloadSpeedStr:X[ot.ip].downloadSpeedStr,uploadSpeedStr:X[ot.ip].uploadSpeedStr}):pt(lt({},ot),{downloadSpeedStr:ot.downloadSpeedStr||"0 B",uploadSpeedStr:ot.uploadSpeedStr||"0 B"}))},A=()=>O(this,null,function*(){try{const{data:z}=yield j.DeviceMangement.speedsForDevices.GET();z.result&&(f.value=P(z.result,f.value))}catch(z){}}),B=z=>/^[a-zA-Z\s]+$/.test(z)?z.toUpperCase():z,S=mt({ip:"",mac:"",uploadSpeed:100,downloadSpeed:1e3,networkAccess:!1,enabled:!1,comment:"",action:"add"}),R=mt({hostname:"",assignedIP:"",assignedMac:"",bindIP:!1,tagTitle:"",tagName:"",dhcpGateway:"",action:"add"}),V=E(""),I=E({}),M=(z,K)=>{var X,ot,xt,St,wt,ne,ie,re,se,de,le,ue,ce,pe,fe,me;I.value=z,K===1?(S.ip=z.ip||"",S.mac=z.mac||"",S.uploadSpeed=((X=z==null?void 0:z.speedLimit)==null?void 0:X.uploadSpeed)||100,S.downloadSpeed=((ot=z==null?void 0:z.speedLimit)==null?void 0:ot.downloadSpeed)||1e3,S.networkAccess=!((xt=z==null?void 0:z.speedLimit)!=null&&xt.networkAccess)||!1,S.enabled=((St=z==null?void 0:z.speedLimit)==null?void 0:St.enabled)||!1,S.comment=((wt=z==null?void 0:z.speedLimit)==null?void 0:wt.comment)||"",S.action=((ne=z==null?void 0:z.speedLimit)==null?void 0:ne.action)||"add",m.value=!0):K===2?(R.hostname=((ie=z==null?void 0:z.staticAssigned)==null?void 0:ie.hostname)||"",R.assignedIP=((re=z==null?void 0:z.staticAssigned)==null?void 0:re.assignedIP)||"",R.assignedMac=((se=z==null?void 0:z.staticAssigned)==null?void 0:se.assignedMac)||"",R.bindIP=((de=z==null?void 0:z.staticAssigned)==null?void 0:de.bindIP)||!1,R.tagTitle=((le=z==null?void 0:z.staticAssigned)==null?void 0:le.tagTitle)||"",R.tagName=((ue=z==null?void 0:z.staticAssigned)==null?void 0:ue.tagName)||"",(ce=z==null?void 0:z.staticAssigned)!=null&&ce.dhcpGateway?(F.value.forEach(ge=>{var kt;ge.gateway===((kt=z==null?void 0:z.staticAssigned)==null?void 0:kt.dhcpGateway)&&(H.value=ge)}),R.dhcpGateway=((fe=z==null?void 0:z.staticAssigned)==null?void 0:fe.dhcpGateway)||F.value[0]||""):(H.value=F.value[0]||null,R.dhcpGateway=((pe=H.value)==null?void 0:pe.gateway)||""),R.action=((me=z==null?void 0:z.staticAssigned)==null?void 0:me.action)||"add",_.value=!0):K===3&&(V.value="",V.value=z.ip,y.value=!0)},H=E(F.value[0]||null),bt=()=>{var z,K,X;H.value?(R.dhcpGateway=((z=H.value)==null?void 0:z.gateway)||"",R.tagName=((K=H.value)==null?void 0:K.tagName)||"",R.tagTitle=((X=H.value)==null?void 0:X.tagTitle)||""):(R.dhcpGateway="",R.tagName="",R.tagTitle="")},Bt=(z,K)=>K?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[z].test(K.trim()):!1,gt=z=>/^([1-9]\d*(\.\d+)?|0\.\d*[1-9]\d*)$/.test(z.toString()),jt=()=>O(this,null,function*(){if(!R.hostname)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u540D\u79F0")}`);if(!R.assignedMac)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("MAC")}`);if(!Bt("mac",R.assignedMac))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684MAC\u5730\u5740")}`);if(!R.dhcpGateway)return $.Warning(`${a("\u8BF7\u9009\u62E9")}${a("\u7F51\u5173")}`);if(R.bindIP){if(!R.assignedIP)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("IP")}`);if(!Bt("ip",R.assignedIP))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`)}else R.assignedIP="";let z=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:K}=yield j.DeviceMangement.staticDeviceConfig.POST(R);JSON.stringify(K)==="{}"?(_.value=!1,Tt(),at(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((K==null?void 0:K.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(K){$.Warning(`${K==null?void 0:K.error} || ${K==null?void 0:K.message}`)}finally{z.Close()}}),Qt=()=>O(this,null,function*(){var K,X;if(!((X=(K=x.value)==null?void 0:K.speedLimit)!=null&&X.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"));if(S.networkAccess)S.downloadSpeed=0,S.uploadSpeed=0;else{if(!S.downloadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0B\u8F7D\u901F\u5EA6")}`);if(!gt(S.downloadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0B\u8F7D\u901F\u5EA6")}`);if(!S.uploadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0A\u4F20\u901F\u5EA6")}`);if(!gt(S.uploadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0A\u4F20\u901F\u5EA6")}`);S.downloadSpeed=Number(S.downloadSpeed),S.uploadSpeed=Number(S.uploadSpeed)}let z=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{S.networkAccess=!S.networkAccess;const{data:ot}=yield j.DeviceMangement.speedLimitConfig.POST(S);JSON.stringify(ot)==="{}"?(m.value=!1,Tt(),at(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((ot==null?void 0:ot.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(ot){$.Warning(`${ot==null?void 0:ot.error} || ${ot==null?void 0:ot.message}`)}finally{S.downloadSpeed=1e3,S.uploadSpeed=100,z.Close()}}),Tt=()=>{I.value={},H.value=F.value[0]||null,R.hostname="",R.assignedIP="",R.assignedMac="",R.bindIP=!1,R.dhcpGateway="",R.tagName="",R.tagTitle="",R.action="add",S.ip="",S.mac="",S.uploadSpeed=100,S.downloadSpeed=1e3,S.networkAccess=!1,S.comment="",S.action="add"},Lt=E([]),qe=E(null),at=()=>O(this,null,function*(){p.value=[],yield Y()}),Z=z=>p.value.filter(K=>{const X=K.ip.includes(z),ot=K.mac.toLowerCase().includes(z.toLowerCase());return X||ot}),Ct=z=>{z===""&&(f.value=p.value),f.value=Z(z)},ct=()=>{if(Lt.value.length===0)return $.Warning(a("\u8BF7\u52FE\u9009\u8981\u5220\u9664\u7684\u6570\u636E")+" !")};return(z,K)=>(r(),d("div",vD,[t("div",bD,[D(fa,{onRefresh:at,showAdd:!1,showBatchDelete:!1,ref_key:"searchRef",ref:qe,onBatchDelete:ct,onSearch:Ct},null,512)]),t("div",null,[D(je,{data:f.value,columns:k.value,showPagination:!1},{action:G(({row:X})=>[t("span",{style:{color:"#553AFE",cursor:"pointer"},onClick:ot=>M(X,2)},i(e(a)("\u9759\u6001\u5206\u914D")),9,hD),t("span",{style:{color:"#553AFE",cursor:"pointer",margin:"0 8px"},onClick:ot=>M(X,1)},i(e(a)("\u9650\u901F\u914D\u7F6E")),9,_D),t("span",{style:{color:"#553AFE",margin:"0 8px",cursor:"pointer"},onClick:ot=>M(X,3)},i(e(a)("\u8BE6\u60C5")),9,xD)]),staticAssigned:G(({row:X})=>{var ot,xt;return[t("span",null,i(g((ot=X==null?void 0:X.staticAssigned)==null?void 0:ot.tagTitle)||g((xt=X==null?void 0:X.staticAssigned)==null?void 0:xt.tagName)||"-"),1)]}),_:1},8,["data","columns"])]),D(ee,{modelValue:m.value,"onUpdate:modelValue":K[6]||(K[6]=X=>m.value=X),title:"\u9650\u901F\u914D\u7F6E","show-close":!0,onConfirm:Qt,onCancel:Tt},{default:G(()=>{var X,ot,xt,St;return[t("div",wD,[t("div",kD,"IP: "+i(I.value.ip),1),t("div",yD,[t("div",FD,i(e(a)("\u5BF9\u8BBE\u5907\u5F00\u542F\u9650\u901F"))+"\uFF1A",1),D(Ot,{modelValue:e(S).enabled,"onUpdate:modelValue":K[0]||(K[0]=wt=>e(S).enabled=wt),disabled:!((ot=(X=x.value)==null?void 0:X.speedLimit)!=null&&ot.enabled),onBeforeChange:w},null,8,["modelValue","disabled"])]),(St=(xt=x.value)==null?void 0:xt.speedLimit)!=null&&St.enabled?C("",!0):(r(),d("div",ED,[t("a",{href:"",onClick:ut(h,["prevent"])},i(e(a)("\u70B9\u6211\u8DF3\u8F6C\u5168\u5C40\u914D\u7F6E")),9,$D)])),e(S).enabled?(r(),d("div",CD,[t("div",DD,[t("div",BD,i(e(a)("\u7981\u6B62\u8BE5\u8BBE\u5907\u8BBF\u95EE\u7F51\u7EDC"))+"\uFF1A",1),D(Ot,{modelValue:e(S).networkAccess,"onUpdate:modelValue":K[1]||(K[1]=wt=>e(S).networkAccess=wt),onChange:K[2]||(K[2]=()=>{})},null,8,["modelValue"])]),e(S).networkAccess?C("",!0):(r(),d(U,{key:0},[t("div",YD,[t("div",AD,i(e(a)("\u4E0B\u8F7D\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[3]||(K[3]=wt=>e(S).downloadSpeed=wt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,SD),[[et,e(S).downloadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",zD,[t("div",PD,i(e(a)("\u4E0A\u4F20\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[4]||(K[4]=wt=>e(S).uploadSpeed=wt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,TD),[[et,e(S).uploadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",ID,[t("div",MD,i(e(a)("\u6CE8\u89E3"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[5]||(K[5]=wt=>e(S).comment=wt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,LD),[[et,e(S).comment,void 0,{trim:!0}]])])],64))])):C("",!0)])]}),_:1},8,["modelValue"]),D(ee,{modelValue:_.value,"onUpdate:modelValue":K[12]||(K[12]=X=>_.value=X),title:"\u9759\u6001\u5206\u914D",width:"550px","show-close":!0,onConfirm:jt,onCancel:Tt},{default:G(()=>[t("div",ND,[OD,t("div",VD,[t("div",GD,i(e(a)("\u540D\u79F0"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text",onInput:l,"onUpdate:modelValue":K[7]||(K[7]=X=>e(R).hostname=X),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,40,jD),[[et,e(R).hostname,void 0,{trim:!0}]])]),t("div",UD,[qD,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[8]||(K[8]=X=>e(R).assignedMac=X),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,RD),[[et,e(R).assignedMac,void 0,{trim:!0}]])]),t("div",HD,[t("div",WD,i(e(a)("\u7F51\u5173"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":K[9]||(K[9]=X=>H.value=X),onChange:bt},[e(b)?(r(),d("option",JD,i(e(a)("\u8BF7\u9009\u62E9")),1)):C("",!0),(r(!0),d(U,null,tt(F.value,X=>(r(),d("option",{value:X},i(X.gateway)+"("+i(X.tagTitle?g(X.tagTitle):X.tagName?X.tagName:"-")+") ",9,ZD))),256))],544),[[dt,H.value]])]),t("div",KD,[t("div",QD,i(e(a)("MAC\u5730\u5740\u4E0EIP\u7ED1\u5B9A"))+"\uFF1A",1),D(Ot,{modelValue:e(R).bindIP,"onUpdate:modelValue":K[10]||(K[10]=X=>e(R).bindIP=X)},null,8,["modelValue"])]),e(R).bindIP?(r(),d("div",XD,[tB,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[11]||(K[11]=X=>e(R).assignedIP=X),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,eB),[[et,e(R).assignedIP,void 0,{trim:!0}]])])):C("",!0)])]),_:1},8,["modelValue"]),D(ee,{modelValue:y.value,"onUpdate:modelValue":K[13]||(K[13]=X=>y.value=X),title:"\u8BE6\u60C5",width:"550px",footerShow:!1,"show-close":!0,onCancel:Tt},{default:G(()=>{var X,ot,xt,St,wt;return[t("div",aB,[t("div",oB,[nB,t("div",iB,[t("div",rB,[t("div",sB,i(e(a)("\u540D\u79F0"))+"\uFF1A",1),nt(" "+i(I.value.hostname||"-"),1)]),t("div",dB,[t("div",lB,i(e(a)("IP\u5730\u5740"))+"\uFF1A",1),nt(" "+i(I.value.ip),1)]),t("div",uB,[cB,nt(" "+i(I.value.mac),1)]),t("div",pB,[t("div",fB,i(e(a)("\u7F51\u5173"))+"\uFF1A",1),nt(" "+i(((X=I.value)==null?void 0:X.staticAssigned.dhcpGateway)||"-"),1)]),t("div",mB,[t("div",gB,i(e(a)("\u63A5\u53E3"))+"\uFF1A",1),nt(" "+i(B(I.value.intr)||"-"),1)]),t("div",vB,[t("div",bB,i(e(a)("\u6807\u7B7E"))+"\uFF1A",1),nt(" "+i(((xt=(ot=I.value)==null?void 0:ot.staticAssigned)==null?void 0:xt.tagTitle)||((wt=(St=I.value)==null?void 0:St.staticAssigned)==null?void 0:wt.tagName)||"-"),1)])])]),V.value?(r(),J(uD,{key:0,ipParam:V.value},null,8,["ipParam"])):C("",!0)])]}),_:1},8,["modelValue"])]))}});var _B=N(hB,[["__scopeId","data-v-2f8a90b2"]]);const ma=o=>(it("data-v-0ad740fc"),o=o(),rt(),o),xB={class:"container"},wB={style:{display:"flex","justify-content":"end"}},kB=["onClick"],yB={class:"custom-content"},FB=ma(()=>t("div",{class:"img_box"},[t("img",{src:"https://fwindex.koolcenter.com/cover/x86_64/cover.png",alt:""})],-1)),EB={class:"item_box"},$B={class:"item_left"},CB=["placeholder"],DB={class:"item_box"},BB=ma(()=>t("div",{class:"item_left"},"MAC\uFF1A",-1)),YB=["placeholder"],AB={class:"item_box"},SB={class:"item_left"},zB={key:0,value:null,disabled:""},PB=["value"],TB={class:"item_box"},IB={class:"item_left"},MB={key:0,class:"item_box"},LB=ma(()=>t("div",{class:"item_left"},"IP\uFF1A",-1)),NB=["placeholder"],OB=T({setup(o){const{$gettext:n}=W(),a=E([]);(()=>O(this,null,function*(){var I;try{const{data:M}=yield j.DeviceMangement.globalConfigs.GET();M.result&&(a.value=((I=M.result)==null?void 0:I.dhcpTags)||[])}catch(M){}}))();const u=E([]),s=E([]),c=E(!1),x=E([{label:"\u4E3B\u673A\u540D\u79F0",prop:"hostname"},{label:"IP\u5730\u5740",prop:"assignedIP"},{label:"MAC\u5730\u5740",prop:"assignedMac"},{label:"\u9759\u6001IP\u7ED1\u5B9A",prop:"bindIP",slot:"bindIP"},{label:"\u6807\u7B7E",prop:"tagTitle",slot:"tagTitle"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),v=I=>({default:n("\u9ED8\u8BA4\u7F51\u5173"),parent:n("\u4E0A\u7EA7\u8DEF\u7531"),myself:n("\u672C\u8BBE\u5907"),bypass:n("\u65C1\u8DEF\u7531"),floatip:n("\u6D6E\u52A8\u7F51\u5173")})[I]||I,p=I=>{B.hostname=I.target.value.replace(/[\u4e00-\u9fa5]/g,"")},f=()=>O(this,null,function*(){let I=$.Loading(n("\u52A0\u8F7D\u4E2D..."));try{const{data:M}=yield j.DeviceMangement.listStaticDevices.GET();M.result&&(u.value=M.result||[],s.value=M.result||[])}catch(M){}finally{I.Close()}});f();const m=E(!0),_=E([]),y=I=>{_.value=I},b=()=>O(this,null,function*(){u.value=[];let I=$.Loading(n("\u52A0\u8F7D\u4E2D..."));yield f(),I.Close()}),k=I=>u.value.filter(M=>{const H=M.assignedIP.includes(I),bt=M.assignedMac.toLowerCase().includes(I.toLowerCase());return H||bt}),g=I=>{I===""&&(s.value=u.value),s.value=k(I)},h=I=>O(this,null,function*(){if(confirm(n("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9759\u6001\u5206\u914D\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u8054\u7F51\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))){let M={hostname:I.hostname||"",assignedIP:I.assignedIP||"",assignedMac:I.assignedMac||"",tagTitle:I.tagTitle||"",bindIP:I.bindIP||!1,tagName:I.tagName||"",dhcpGateway:I.dhcpGateway||"",action:"delete"};w(M,1)}}),w=(I,M)=>O(this,null,function*(){let H=$.Loading(n("\u5220\u9664\u4E2D..."));try{const{data:bt}=yield j.DeviceMangement.staticDeviceConfig.POST(I);return M==1&&(JSON.stringify(bt)==="{}"?$.Success("\u5220\u9664\u6210\u529F !"):$.Success((bt==null?void 0:bt.error)||"\u5220\u9664\u5931\u8D25\uFF01"),f()),bt}catch(bt){}finally{H.Close()}}),F=()=>O(this,null,function*(){if(_.value.length===0)return $.Warning(n("\u8BF7\u52FE\u9009\u8981\u5220\u9664\u7684\u6570\u636E")+" !");if(confirm(n("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9759\u6001\u5206\u914D\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u8054\u7F51\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01")))try{const I=_.value.map(M=>{const H={hostname:M.hostname||"",assignedIP:M.assignedIP||"",assignedMac:M.assignedMac||"",tagTitle:M.tagTitle||"",bindIP:M.bindIP||!1,tagName:M.tagName||"",dhcpGateway:M.dhcpGateway||"",action:"delete"};return w(H)});yield Promise.all(I),$.Success(n("\u6240\u6709\u5220\u9664\u64CD\u4F5C\u5DF2\u5B8C\u6210")),f()}catch(I){}}),Y=Q(()=>!B.dhcpGateway),P=E(null),A=()=>{var I,M,H;P.value?(B.dhcpGateway=((I=P.value)==null?void 0:I.gateway)||"",B.tagName=((M=P.value)==null?void 0:M.tagName)||"",B.tagTitle=((H=P.value)==null?void 0:H.tagTitle)||""):(B.dhcpGateway="",B.tagName="",B.tagTitle="")},B=mt({hostname:"",assignedIP:"",assignedMac:"",bindIP:!1,tagTitle:"",tagName:"",dhcpGateway:"",action:"add"}),S=(I,M)=>M?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[I].test(M.trim()):!1,R=()=>O(this,null,function*(){if(!B.assignedMac)return $.Warning(`${n("\u8BF7\u8F93\u5165")}${n("MAC")}`);if(!S("mac",B.assignedMac))return $.Warning(`${n("\u8BF7\u8F93\u5165\u6B63\u786E\u7684MAC\u5730\u5740")}`);if(!B.dhcpGateway)return $.Warning(`${n("\u8BF7\u9009\u62E9")}${n("\u7F51\u5173")}`);if(B.bindIP){if(!B.assignedIP)return $.Warning(`${n("\u8BF7\u8F93\u5165")}${n("IP")}`);if(!S("ip",B.assignedIP))return $.Warning(`${n("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`)}else B.assignedIP="";let I=$.Loading(n("\u4FDD\u5B58\u4E2D..."));try{const{data:M}=yield j.DeviceMangement.staticDeviceConfig.POST(B);JSON.stringify(M)==="{}"?(c.value=!1,V(),b(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((M==null?void 0:M.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(M){$.Warning(`${M==null?void 0:M.error} || ${M==null?void 0:M.message}`)}finally{I.Close()}}),V=()=>{P.value=null,B.hostname="",B.assignedIP="",B.assignedMac="",B.bindIP=!1,B.dhcpGateway="",B.tagName="",B.tagTitle="",B.action="add"};return(I,M)=>(r(),d("div",xB,[t("div",wB,[D(fa,{onHandleAdd:M[0]||(M[0]=H=>c.value=!0),onRefresh:b,onBatchDelete:F,onSearch:g})]),t("div",null,[D(je,{data:s.value,columns:x.value,rowKey:"assignedMac",showSelection:m.value,showPagination:!1,onSelectionChange:y},{action:G(({row:H})=>[t("button",{class:"del-button del-button--danger",onClick:bt=>h(H)},[t("span",null,i(e(n)("\u5220\u9664")),1)],8,kB)]),tagTitle:G(({row:H})=>[t("span",null,i(v(H==null?void 0:H.tagTitle)||v(H==null?void 0:H.tagName)||"-"),1)]),bindIP:G(({row:H})=>[t("span",null,i(H!=null&&H.bindIP?e(n)("\u662F"):e(n)("\u5426")),1)]),_:1},8,["data","columns","showSelection"])]),D(ee,{modelValue:c.value,"onUpdate:modelValue":M[6]||(M[6]=H=>c.value=H),title:"\u9759\u6001\u5206\u914D",width:"550px","show-close":!0,onConfirm:R,onCancel:V},{default:G(()=>[t("div",yB,[FB,t("div",EB,[t("div",$B,i(e(n)("\u540D\u79F0"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text",onInput:p,"onUpdate:modelValue":M[1]||(M[1]=H=>e(B).hostname=H),placeholder:e(n)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,40,CB),[[et,e(B).hostname,void 0,{trim:!0}]])]),t("div",DB,[BB,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":M[2]||(M[2]=H=>e(B).assignedMac=H),placeholder:e(n)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,YB),[[et,e(B).assignedMac,void 0,{trim:!0}]])]),t("div",AB,[t("div",SB,i(e(n)("\u7F51\u5173"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":M[3]||(M[3]=H=>P.value=H),onChange:A},[e(Y)?(r(),d("option",zB,i(e(n)("\u8BF7\u9009\u62E9")),1)):C("",!0),(r(!0),d(U,null,tt(a.value,H=>(r(),d("option",{value:H},i(H.gateway)+"("+i(H.tagTitle?v(H.tagTitle):H.tagName?H.tagName:"-")+") ",9,PB))),256))],544),[[dt,P.value]])]),t("div",TB,[t("div",IB,i(e(n)("MAC\u5730\u5740\u4E0EIP\u7ED1\u5B9A"))+"\uFF1A",1),D(Ot,{modelValue:e(B).bindIP,"onUpdate:modelValue":M[4]||(M[4]=H=>e(B).bindIP=H)},null,8,["modelValue"])]),e(B).bindIP?(r(),d("div",MB,[LB,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":M[5]||(M[5]=H=>e(B).assignedIP=H),placeholder:e(n)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,NB),[[et,e(B).assignedIP,void 0,{trim:!0}]])])):C("",!0)])]),_:1},8,["modelValue"])]))}});var VB=N(OB,[["__scopeId","data-v-0ad740fc"]]);const GB={class:"container"},jB={style:{display:"flex","justify-content":"end"}},UB=["onClick"],qB={class:"custom-content"},RB={class:"item_box"},HB={class:"item_left"},WB={class:"item_box"},JB={class:"item_left"},ZB=["placeholder"],KB={class:"item_box"},QB={class:"item_left"},XB=["placeholder"],tY={key:0,class:"tip"},eY=["onClick"],aY={key:1},oY={class:"item_box"},nY={class:"item_left"},iY={class:"item_box"},rY={class:"item_left"},sY=["placeholder"],dY={class:"item_box"},lY={class:"item_left"},uY=["placeholder"],cY={class:"item_box"},pY={class:"item_left"},fY=["placeholder"],mY=T({emits:["openGloba"],setup(o,{emit:n}){const{$gettext:a}=W(),l=E({});(()=>O(this,null,function*(){try{const{data:V}=yield j.DeviceMangement.globalConfigs.GET();V.result&&(l.value=V.result||{})}catch(V){}}))();const s=E([]),c=E([]),x=E(!1),v=E([{label:"\u4E3B\u673A\u540D\u79F0",prop:"hostname"},{label:"IP\u5730\u5740",prop:"ip"},{label:"MAC\u5730\u5740",prop:"mac"},{label:"\u7981\u6B62\u7F51\u7EDC\u8BBF\u95EE",prop:"enabled",slot:"enabled"},{label:"\u4E0A\u4F20\u9650\u901F\uFF08Mbit/s\uFF09",prop:"uploadSpeed",slot:"uploadSpeed"},{label:"\u4E0B\u8F7D\u9650\u901F\uFF08Mbit/s\uFF09",prop:"downloadSpeed",slot:"downloadSpeed"},{label:"\u6CE8\u89E3",prop:"comment"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),p=()=>O(this,null,function*(){let V=$.Loading(a("\u52A0\u8F7D\u4E2D..."));try{const{data:I}=yield j.DeviceMangement.listSpeedLimitedDevices.GET();I.result&&(s.value=I.result||[],c.value=I.result||[])}catch(I){}finally{V.Close()}});p();const f=E(!0),m=E([]),_=V=>{m.value=V},y=()=>O(this,null,function*(){s.value=[];let V=$.Loading(a("\u52A0\u8F7D\u4E2D..."));yield p(),V.Close()}),b=V=>s.value.filter(I=>{const M=I.ip.includes(V),H=I.mac.toLowerCase().includes(V.toLowerCase());return M||H}),k=V=>{V===""&&(c.value=s.value),c.value=b(V)},g=V=>O(this,null,function*(){if(confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9650\u901F\u914D\u7F6E\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u5E26\u5BBD\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))){let I={ip:V.ip||"",mac:V.mac||"",uploadSpeed:V.uploadSpeed||0,downloadSpeed:V.downloadSpeed||0,networkAccess:V.networkAccess||!1,comment:"",action:"delete"};h(I,1)}}),h=(V,I)=>O(this,null,function*(){let M=$.Loading(a("\u5220\u9664\u4E2D..."));try{const{data:H}=yield j.DeviceMangement.speedLimitConfig.POST(V);return I==1&&(JSON.stringify(H)==="{}"?$.Success("\u5220\u9664\u6210\u529F !"):$.Success((H==null?void 0:H.error)||"\u5220\u9664\u5931\u8D25\uFF01"),p()),H}catch(H){}finally{M.Close()}}),w=()=>O(this,null,function*(){if(m.value.length===0)return $.Warning(a("\u8BF7\u52FE\u9009\u8981\u5220\u9664\u7684\u6570\u636E")+" !");if(confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9650\u901F\u914D\u7F6E\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u5E26\u5BBD\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01")))try{const V=m.value.map(I=>{const M={ip:I.ip||"",mac:I.mac||"",uploadSpeed:I.uploadSpeed||0,downloadSpeed:I.downloadSpeed||0,networkAccess:I.networkAccess||!1,comment:"",action:"delete"};return h(M)});yield Promise.all(V),$.Success(a("\u6240\u6709\u5220\u9664\u64CD\u4F5C\u5DF2\u5B8C\u6210")),p()}catch(V){}}),F=()=>{x.value=!1,n("openGloba")},Y=V=>{var I,M;if(V==!0&&!((M=(I=l.value)==null?void 0:I.speedLimit)!=null&&M.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"))},P=mt({ip:"",mac:"",uploadSpeed:100,downloadSpeed:1e3,networkAccess:!1,enabled:!1,comment:"",action:"add"}),A=V=>/^([1-9]\d*(\.\d+)?|0\.\d*[1-9]\d*)$/.test(V.toString()),B=(V,I)=>I?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[V].test(I.trim()):!1,S=()=>O(this,null,function*(){var I,M;if(!((M=(I=l.value)==null?void 0:I.speedLimit)!=null&&M.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"));if(!P.ip)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("IP")}`);if(!B("ip",P.ip))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`);if(!P.mac)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("MAC")}`);if(!B("mac",P.mac))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684MAC\u5730\u5740")}`);if(P.networkAccess)P.downloadSpeed=0,P.uploadSpeed=0;else{if(!P.downloadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0B\u8F7D\u901F\u5EA6")}`);if(!A(P.downloadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0B\u8F7D\u901F\u5EA6")}`);if(!P.uploadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0A\u4F20\u901F\u5EA6")}`);if(!A(P.uploadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0A\u4F20\u901F\u5EA6")}`);P.downloadSpeed=Number(P.downloadSpeed),P.uploadSpeed=Number(P.uploadSpeed)}let V=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{P.networkAccess=!P.networkAccess;const{data:H}=yield j.DeviceMangement.speedLimitConfig.POST(P);JSON.stringify(H)==="{}"?(y(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((H==null?void 0:H.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01"),x.value=!1,R()}catch(H){$.Warning(`${H==null?void 0:H.error} || ${H==null?void 0:H.message}`)}finally{P.downloadSpeed=1e3,P.uploadSpeed=100,V.Close()}}),R=()=>{P.ip="",P.mac="",P.uploadSpeed=100,P.downloadSpeed=1e3,P.networkAccess=!1,P.comment="",P.action="add"};return(V,I)=>(r(),d("div",GB,[t("div",jB,[D(fa,{onHandleAdd:I[0]||(I[0]=M=>x.value=!0),onRefresh:y,onBatchDelete:w,onSearch:k})]),t("div",null,[D(je,{data:c.value,columns:v.value,rowKey:"mac",showSelection:f.value,showPagination:!1,onSelectionChange:_},{action:G(({row:M})=>[t("button",{class:"del-button del-button--danger",onClick:H=>g(M)},[t("span",null,i(e(a)("\u5220\u9664")),1)],8,UB)]),enabled:G(({row:M})=>[t("span",null,i(M!=null&&M.enabled?e(a)("\u662F"):e(a)("\u5426")),1)]),uploadSpeed:G(({row:M})=>[t("span",null,i((M==null?void 0:M.uploadSpeed)||"-")+" "+i(M!=null&&M.uploadSpeed?"Mbit/s":""),1)]),downloadSpeed:G(({row:M})=>[t("span",null,i((M==null?void 0:M.downloadSpeed)||"-")+" "+i(M!=null&&M.downloadSpeed?"Mbit/s":""),1)]),_:1},8,["data","columns","showSelection"])]),D(ee,{modelValue:x.value,"onUpdate:modelValue":I[9]||(I[9]=M=>x.value=M),title:"\u9650\u901F\u914D\u7F6E","show-close":!0,onConfirm:S,onCancel:R},{default:G(()=>{var M,H,bt,Bt;return[t("div",qB,[t("div",RB,[t("div",HB,i(e(a)("\u5BF9\u8BBE\u5907\u5F00\u542F\u9650\u901F"))+"\uFF1A",1),D(Ot,{modelValue:e(P).enabled,"onUpdate:modelValue":I[1]||(I[1]=gt=>e(P).enabled=gt),disabled:!((H=(M=l.value)==null?void 0:M.speedLimit)!=null&&H.enabled),onBeforeChange:Y},null,8,["modelValue","disabled"])]),t("div",WB,[t("div",JB,i(e(a)("IP\u5730\u5740"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[2]||(I[2]=gt=>e(P).ip=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,ZB),[[et,e(P).ip,void 0,{trim:!0}]])]),t("div",KB,[t("div",QB,i(e(a)("MAC\u5730\u5740"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[3]||(I[3]=gt=>e(P).mac=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,XB),[[et,e(P).mac,void 0,{trim:!0}]])]),(Bt=(bt=l.value)==null?void 0:bt.speedLimit)!=null&&Bt.enabled?C("",!0):(r(),d("div",tY,[t("a",{href:"",onClick:ut(F,["prevent"])},i(e(a)("\u70B9\u6211\u8DF3\u8F6C\u5168\u5C40\u914D\u7F6E")),9,eY)])),e(P).enabled?(r(),d("div",aY,[t("div",oY,[t("div",nY,i(e(a)("\u7981\u6B62\u8BE5\u8BBE\u5907\u8BBF\u95EE\u7F51\u7EDC"))+"\uFF1A",1),D(Ot,{modelValue:e(P).networkAccess,"onUpdate:modelValue":I[4]||(I[4]=gt=>e(P).networkAccess=gt),onChange:I[5]||(I[5]=()=>{})},null,8,["modelValue"])]),e(P).networkAccess?C("",!0):(r(),d(U,{key:0},[t("div",iY,[t("div",rY,i(e(a)("\u4E0B\u8F7D\u9650\u901F\uFF08Mbit/s\uFF09"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[6]||(I[6]=gt=>e(P).downloadSpeed=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,sY),[[et,e(P).downloadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",dY,[t("div",lY,i(e(a)("\u4E0A\u4F20\u9650\u901F\uFF08Mbit/s\uFF09"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[7]||(I[7]=gt=>e(P).uploadSpeed=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,uY),[[et,e(P).uploadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",cY,[t("div",pY,i(e(a)("\u6CE8\u89E3"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[8]||(I[8]=gt=>e(P).comment=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,fY),[[et,e(P).comment,void 0,{trim:!0}]])])],64))])):C("",!0)])]}),_:1},8,["modelValue"])]))}});var gY=N(mY,[["__scopeId","data-v-1c110960"]]);const ga=o=>(it("data-v-15068472"),o=o(),rt(),o),vY={key:0,class:"dialog-overlay"},bY={class:"dialog-container"},hY={class:"dialog-title"},_Y=ga(()=>t("div",{class:"loading-animation"},[t("div",{class:"spinner"})],-1)),xY={class:"dialog-message"},wY={key:0,class:"dialog-overlay"},kY={class:"dialog-container"},yY={class:"dialog-title"},FY=ga(()=>t("div",{style:{display:"flex","justify-content":"center"}},[t("svg",{t:"1752661662572",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5921",width:"50",height:"50"},[t("path",{d:"M0 512C0 229.234759 229.234759 0 512 0s512 229.234759 512 512-229.234759 512-512 512S0 794.765241 0 512z m419.310345 194.630621a35.310345 35.310345 0 0 0 49.399172 1.271172l335.518897-311.931586a35.310345 35.310345 0 0 0-48.075035-51.729655l-309.124413 289.544827-145.125518-149.645241a35.310345 35.310345 0 1 0-50.688 49.169655l168.112552 173.320828z",fill:"#553afe","p-id":"5922"})])],-1)),EY={class:"dialog-message"},$Y={key:0,class:"dialog-overlay"},CY={class:"dialog-container tag-dialog"},DY={class:"dialog-title"},BY={class:"warning-message"},YY=ga(()=>t("svg",{class:"warning-icon",viewBox:"0 0 24 24"},[t("path",{fill:"currentColor",d:"M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16"})],-1)),AY={class:"input-group"},SY={for:"tagTitle"},zY=["placeholder"],PY={class:"input-group"},TY={for:"tagName"},IY=["disabled","placeholder"],MY={class:"input-group"},LY={for:"gateway"},NY=["placeholder"],OY={class:"button-group"},VY=T({props:{title:{type:String,required:!0}},emits:["confirm","update:modelValue"],setup(o,{expose:n,emit:a}){const{$gettext:l}=W(),u=E("install"),s=E(!1),c=E(!1),x=E(!1),v=E(""),p=E(""),f=E(""),m=()=>{u.value="install",s.value=!0},_=()=>{s.value=!1},y=()=>{s.value=!1,setTimeout(()=>{c.value=!0},300)},b=()=>{c.value=!1},k=E("1"),g=()=>{u.value="tag",k.value="1",p.value="",v.value="",f.value="",x.value=!0},h=()=>{u.value="tag",k.value="2",x.value=!0},w=()=>{x.value=!1},F=A=>{p.value=A.target.value.replace(/[\u4e00-\u9fa5]/g,"")},Y=(A,B)=>B?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[A].test(B.trim()):!1,P=()=>{if(!Y("ip",f.value.trim()))return $.Warning(`${l("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`);v.value.trim()&&p.value.trim()&&f.value.trim()&&(a("confirm",{tagTitle:v.value.trim(),tagName:p.value.trim(),gateway:f.value.trim(),type:k.value}),w())};return Yt(v,A=>{a("update:modelValue",A)}),Yt(p,A=>{a("update:modelValue",A)}),Yt(f,A=>{a("update:modelValue",A)}),n({tagTitle:v,tagName:p,gateway:f,openInstallDialog:m,showInstallResult:y,openTagDialog:g,closeTagDialog:w,cancelInstall:_,openEditTagDialog:h}),(A,B)=>(r(),d(U,null,[D($t,{name:"fade"},{default:G(()=>[s.value&&u.value==="install"?(r(),d("div",vY,[t("div",bY,[t("div",hY,i(o.title),1),_Y,t("p",xY,i(e(l)("\u6B63\u5728\u5B89\u88C5"))+"...",1),t("button",{class:"dialog-button",onClick:_},i(e(l)("\u5173\u95ED")),1)])])):C("",!0)]),_:1}),D($t,{name:"fade"},{default:G(()=>[c.value&&u.value==="install"?(r(),d("div",wY,[t("div",kY,[t("div",yY,i(e(l)("\u7ED3\u679C")),1),FY,t("p",EY,i(e(l)("\u5B89\u88C5\u6210\u529F"))+"\uFF01",1),t("button",{class:"dialog-button",onClick:b},i(e(l)("\u786E\u5B9A")),1)])])):C("",!0)]),_:1}),D($t,{name:"fade"},{default:G(()=>[x.value&&u.value==="tag"?(r(),d("div",$Y,[t("div",CY,[t("div",DY,i(k.value==="1"?e(l)("\u6DFB\u52A0\u6807\u7B7E"):e(l)("\u7F16\u8F91\u6807\u7B7E")),1),t("div",BY,[YY,t("span",null,i(e(l)("\u6CE8\u610F\uFF1A\u6DFB\u52A0ID\u65F6\uFF0C\u8BF7\u52FF\u5C06\u201Codhcpd\u201D\u6216\u7F51\u7EDC\u63A5\u53E3\uFF08\u4F8B\u5982\u201Clan\u201D,\u201Cwan\u201D,\u201Cwan6\u201D\u7B49\uFF09\u4F5C\u4E3AID\uFF0C\u6B64\u4E3E\u5C06\u4EA7\u751F\u51B2\u7A81\u3002\u5EFA\u8BAE\u5728ID\u524D\u9762\u52A0\u4E0A\u524D\u7F00\u201Ct_\u201D\u4EE5\u675C\u7EDD\u6B64\u7C7B\u51B2\u7A81\u3002")),1)]),t("div",AY,[t("label",SY,i(e(l)("\u6807\u9898"))+"\uFF1A",1),L(t("input",{id:"tagTitle","onUpdate:modelValue":B[0]||(B[0]=S=>v.value=S),type:"text",placeholder:e(l)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,zY),[[et,v.value]])]),t("div",PY,[t("label",TY,i(e(l)("ID"))+"\uFF1A",1),L(t("input",{id:"tagName","onUpdate:modelValue":B[1]||(B[1]=S=>p.value=S),onInput:F,disabled:k.value=="2",type:"text",placeholder:e(l)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,40,IY),[[et,p.value]])]),t("div",MY,[t("label",LY,i(e(l)("\u7F51\u5173"))+"\uFF1A",1),L(t("input",{id:"gateway","onUpdate:modelValue":B[2]||(B[2]=S=>f.value=S),type:"text",placeholder:e(l)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,NY),[[et,f.value]])]),t("div",OY,[t("button",{class:"cancel-button",onClick:w},i(e(l)("\u53D6\u6D88")),1),t("button",{class:"confirm-button",onClick:P},i(e(l)("\u786E\u5B9A")),1)])])])):C("",!0)]),_:1})],64))}});var GY=N(VY,[["__scopeId","data-v-15068472"]]);const io=o=>(it("data-v-66e54129"),o=o(),rt(),o),jY={class:"tab-container"},UY={class:"tab-header"},qY=["onClick"],RY={class:"tab-content_g"},HY={key:0,class:"not_installed"},WY=io(()=>t("svg",{t:"1752659436579",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4943",width:"150",height:"150"},[t("path",{d:"M216.896 97.232l-55.792 106.24 704.784 8.928-24.352-75.888-38.496-39.28z",fill:"#FFFFFF","p-id":"4944"}),t("path",{d:"M192.016 255.968h655.968v592H192.016z",fill:"#FFFFFF","p-id":"4945"}),t("path",{d:"M921.904 187.008l-66.72-80.656a69.744 69.744 0 0 0-55.168-26.32h-576a71.296 71.296 0 0 0-55.664 26.416l-66.256 80.56a93.984 93.984 0 0 0-22.08 61.024v600a96.288 96.288 0 0 0 96 96h672a96.288 96.288 0 0 0 96-96v-600a93.984 93.984 0 0 0-22.112-61.024zM512.016 777.856L246.128 512.032h166.144v-132.976h199.392v132.976h166.128zM179.664 179.664l33.152-66.464h598.128l33.2 66.464z",fill:"#909399","p-id":"4946"})],-1)),JY={key:1},ZY={class:"item_box"},KY={class:"item_left"},QY={class:"item_box"},XY={class:"item_left"},tA=["placeholder"],eA={class:"item_box"},aA={class:"item_left"},oA=["placeholder"],nA={class:"item_box"},iA={class:"item_left"},rA={key:0,class:"not_installed"},sA=io(()=>t("svg",{t:"1752659436579",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4943",width:"150",height:"150"},[t("path",{d:"M216.896 97.232l-55.792 106.24 704.784 8.928-24.352-75.888-38.496-39.28z",fill:"#FFFFFF","p-id":"4944"}),t("path",{d:"M192.016 255.968h655.968v592H192.016z",fill:"#FFFFFF","p-id":"4945"}),t("path",{d:"M921.904 187.008l-66.72-80.656a69.744 69.744 0 0 0-55.168-26.32h-576a71.296 71.296 0 0 0-55.664 26.416l-66.256 80.56a93.984 93.984 0 0 0-22.08 61.024v600a96.288 96.288 0 0 0 96 96h672a96.288 96.288 0 0 0 96-96v-600a93.984 93.984 0 0 0-22.112-61.024zM512.016 777.856L246.128 512.032h166.144v-132.976h199.392v132.976h166.128zM179.664 179.664l33.152-66.464h598.128l33.2 66.464z",fill:"#909399","p-id":"4946"})],-1)),dA={key:1},lA={class:"item_box"},uA={class:"item_left"},cA={class:"item_box"},pA={class:"item_left"},fA={key:0,value:"",disabled:""},mA=["value"],gA={class:"item_box"},vA={class:"item_left"},bA=["placeholder"],hA={class:"item_box"},_A={class:"item_left"},xA=["placeholder"],wA={class:"item_box"},kA={class:"item_left"},yA={style:{"margin-bottom":"16px"}},FA={class:"item_box"},EA={class:"item_left"},$A={class:"item_box"},CA={class:"item_left"},DA=["value"],BA={class:"item_box"},YA={class:"item_left"},AA={style:{display:"flex","justify-content":"end","margin-bottom":"8px"}},SA=["onClick"],zA=["onClick"],PA=T({setup(o,{expose:n}){const{$gettext:a}=W(),l=Q(()=>!p.role),u=E([]),s=E([{label:"\u6807\u9898",prop:"tagTitle",slot:"tagTitle"},{label:"ID",prop:"tagName",slot:"tagName"},{label:"\u7F51\u5173",prop:"gateway",slot:"gateway"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),c=E([{name:a("\u4E3B\u8DEF\u7531"),value:"fallback"},{name:a("\u65C1\u8DEF\u7531"),value:"main"}]),x=mt({dhcpEnabled:!1,dhcpGateway:""}),v=mt({enabled:!1,uploadSpeed:"",downloadSpeed:"",installed:!0}),p=mt({enabled:!1,role:"",setIP:"",checkIP:""}),f=E({}),m=()=>O(this,null,function*(){var at,Z,Ct,ct,z,K,X,ot,xt,St,wt,ne,ie,re,se,de,le,ue,ce,pe,fe,me,ge;try{const{data:kt}=yield j.DeviceMangement.globalConfigs.GET();if(kt.result){if(f.value=kt.result||{},x.dhcpEnabled=((Z=(at=kt.result)==null?void 0:at.dhcpGlobal)==null?void 0:Z.dhcpEnabled)||!1,(ct=(Ct=kt.result)==null?void 0:Ct.dhcpGlobal)!=null&&ct.dhcpGateway)x.dhcpGateway=(K=(z=kt.result)==null?void 0:z.dhcpGlobal)==null?void 0:K.dhcpGateway;else{const ba=(ot=(X=kt.result)==null?void 0:X.dhcpGlobal)==null?void 0:ot.gatewaySels.find(lo=>lo.title==="myself");ba?x.dhcpGateway=ba.gateway:x.dhcpGateway=""}u.value=((xt=kt.result)==null?void 0:xt.dhcpTags)||[],v.enabled=((wt=(St=kt.result)==null?void 0:St.speedLimit)==null?void 0:wt.enabled)||!1,v.uploadSpeed=((ie=(ne=kt.result)==null?void 0:ne.speedLimit)==null?void 0:ie.uploadSpeed)||"",v.downloadSpeed=((se=(re=kt.result)==null?void 0:re.speedLimit)==null?void 0:se.downloadSpeed)||"",p.enabled=((le=(de=kt.result)==null?void 0:de.floatGateway)==null?void 0:le.enabled)||!1,p.role=((ce=(ue=kt.result)==null?void 0:ue.floatGateway)==null?void 0:ce.role)||"",p.setIP=((fe=(pe=kt.result)==null?void 0:pe.floatGateway)==null?void 0:fe.setIP)||"",p.checkIP=((ge=(me=kt.result)==null?void 0:me.floatGateway)==null?void 0:ge.checkIP)||""}}catch(kt){}});m();const _=()=>O(this,null,function*(){let at=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:Z}=yield j.DeviceMangement.dhcpGatewayConfig.POST(x);JSON.stringify(Z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((Z==null?void 0:Z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(Z){$.Warning(`${Z==null?void 0:Z.error} || ${Z==null?void 0:Z.message}`)}finally{at.Close()}}),y=(at,Z)=>O(this,null,function*(){let Ct=$.Loading(a("\u68C0\u67E5\u4E2D..."));try{const ct=yield j.App.Check.POST({name:at});if(Ct.Close(),ct!=null&&ct.data){const{result:z,error:K}=ct.data;if(K)$.Warning(K);else{if(z)return z.status=="installed";$.Warning(a("\u68C0\u67E5\u63D2\u4EF6\u72B6\u6001\u5931\u8D25"))}}return!1}catch(ct){return Ct.Close(),$.Warning(ct),!1}}),b=E(!1),k=E(!1),g=()=>O(this,null,function*(){(yield y("app-meta-floatip"))&&(k.value=!0)}),h=()=>O(this,null,function*(){(yield y("app-meta-eqos"))&&(b.value=!0)});g(),h();const w=[{id:"tag",label:a("DHCP")},{id:"gateway",label:a("\u6D6E\u52A8\u7F51\u5173")},{id:"ip",label:a("IP\u9650\u901F")}],F=E("tag");n({activeTab:F});const Y=at=>{F.value=at},P=E(),A=at=>({default:a("\u9ED8\u8BA4\u7F51\u5173"),parent:a("\u4E0A\u7EA7\u8DEF\u7531"),myself:a("\u672C\u8BBE\u5907"),bypass:a("\u65C1\u8DEF\u7531"),floatip:a("\u6D6E\u52A8\u7F51\u5173")})[at]||at,B=E("app-meta-floatip"),S=Q(()=>B.value==="app-meta-floatip"?a("\u6D6E\u52A8\u7F51\u5173"):a("IP\u9650\u901F")),R=at=>O(this,null,function*(){if(B.value=at,P.value.openInstallDialog(),yield Dt.installApp(at))return at=="app-meta-floatip"?g():h(),P.value.showInstallResult(),!0;P.value.cancelInstall(),$.Error(a("\u5B89\u88C5\u5931\u8D25\u6216\u8D85\u65F6\uFF0C\u8BF7\u68C0\u67E5\u8F6F\u4EF6\u6E90\u6216\u7A0D\u5019\u91CD\u8BD5"))}),V=at=>/^([1-9]\d*(\.\d+)?|0\.\d*[1-9]\d*)$/.test(at.toString()),I=()=>O(this,null,function*(){if(v.enabled){if(!v.downloadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0B\u8F7D\u901F\u5EA6")}`);if(!V(v.downloadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0B\u8F7D\u901F\u5EA6")}`);if(!v.uploadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0A\u4F20\u901F\u5EA6")}`);if(!V(v.uploadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0A\u4F20\u901F\u5EA6")}`);v.downloadSpeed=Number(v.downloadSpeed),v.uploadSpeed=Number(v.uploadSpeed)}else v.downloadSpeed=0,v.uploadSpeed=0;let at=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:Z}=yield j.DeviceMangement.enableSpeedLimit.POST(v);JSON.stringify(Z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((Z==null?void 0:Z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(Z){$.Warning(`${Z==null?void 0:Z.error} || ${Z==null?void 0:Z.message}`)}finally{at.Close()}}),M=(at,Z)=>Z?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(?:\/([0-9]|[1-2][0-9]|3[0-2]))?$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[at].test(Z.trim()):!1,H=()=>O(this,null,function*(){if(!p.role)return $.Warning(a("\u8BF7\u9009\u62E9\u8282\u70B9\u89D2\u8272"));if(!p.setIP)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u6D6E\u52A8\u7F51\u5173")}IP`);if(!M("ip",p.setIP))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6D6E\u52A8\u7F51\u5173IP\u5730\u5740")}`);if(!p.checkIP)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u65C1\u8DEF\u7531")}IP`);if(!M("ip",p.checkIP))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u65C1\u8DEF\u7531IP\u5730\u5740")}`);let at=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:Z}=yield j.DeviceMangement.enableFloatGateway.POST(p);JSON.stringify(Z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((Z==null?void 0:Z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(Z){$.Warning(`${Z==null?void 0:Z.error} || ${Z==null?void 0:Z.message}`)}finally{at.Close()}}),bt=at=>{at||confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5173\u95EDDHCP\u53EF\u80FD\u5F71\u54CD\u5C40\u57DF\u7F51\u5185\u8BBE\u5907\u7684IP\u5206\u914D\u548C\u8054\u7F51\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))||(x.dhcpEnabled=!0)},Bt=at=>{at||confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5173\u95ED\u6D6E\u52A8\u7F51\u5173\u53EF\u80FD\u5F71\u54CD\u6B63\u5728\u4F7F\u7528\u6D6E\u52A8\u7F51\u5173\u7684\u8BBE\u5907\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))||(p.enabled=!0)},gt=at=>{at||confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5173\u95ED\u9650\u901F\u4F1A\u8BA9\u5DF2\u914D\u7F6E\u9650\u901F\u7684\u8BBE\u5907\u7684\u5E26\u5BBD\u9650\u5236\u5168\u90E8\u5931\u6548\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))||(v.enabled=!0)},jt=at=>O(this,null,function*(){if(confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u7F51\u5173\u6807\u7B7E\u53EF\u80FD\u5F71\u54CD\u6B63\u5728\u4F7F\u7528\u6B64\u6807\u7B7E\u7684\u8BBE\u5907\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))){let Z=$.Loading(a("\u5220\u9664\u4E2D...")),Ct={action:"delete",tagTitle:at.tagTitle||"",tagName:at.tagName||"",dhcpOption:(at==null?void 0:at.dhcpOption)||[]};try{const{data:ct}=yield j.DeviceMangement.dhcpTagsConfig.POST(Ct);JSON.stringify(ct)==="{}"?($.Success(a("\u5220\u9664\u6210\u529F")),m()):$.Success((ct==null?void 0:ct.error)||"\u5220\u9664\u5931\u8D25\uFF01")}catch(ct){$.Warning(`${ct==null?void 0:ct.error} || ${ct==null?void 0:ct.message}`)}finally{Z.Close()}}}),Qt=()=>{P.value.openTagDialog()},Tt=E([]),Lt=at=>O(this,null,function*(){Tt.value=at.dhcpOption?at.dhcpOption:[],P.value.tagTitle=at.tagTitle||"",P.value.tagName=at.tagName||"",P.value.gateway=at.gateway||"",yield oa(),P.value.openEditTagDialog()}),qe=at=>O(this,null,function*(){let Z=$.Loading(a("\u4FDD\u5B58\u4E2D..."));const Ct=[`3,${at.gateway}`,`6,${at.gateway}`];let ct={action:at.type==1?"add":"modify",tagTitle:at.tagTitle,tagName:at.tagName,dhcpOption:Ct};try{const{data:z}=yield j.DeviceMangement.dhcpTagsConfig.POST(ct);JSON.stringify(z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((z==null?void 0:z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(z){$.Warning(`${z==null?void 0:z.error} || ${z==null?void 0:z.message}`)}finally{Z.Close()}});return(at,Z)=>{var Ct,ct;return r(),d("div",jY,[t("div",UY,[(r(),d(U,null,tt(w,z=>t("button",{key:z.id,class:st(["tab-button",{active:F.value===z.id}]),onClick:K=>Y(z.id)},i(z.label),11,qY)),64))]),t("div",RY,[L(t("div",null,[b.value?(r(),d("div",JY,[t("div",ZY,[t("div",KY,i(e(a)("IP\u9650\u901F"))+"\uFF1A",1),D(Ot,{modelValue:e(v).enabled,"onUpdate:modelValue":Z[1]||(Z[1]=z=>e(v).enabled=z),onChange:gt},null,8,["modelValue"])]),e(v).enabled?(r(),d(U,{key:0},[t("div",QY,[t("div",XY,i(e(a)("\u4E0B\u8F7D\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[2]||(Z[2]=z=>e(v).downloadSpeed=z),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,tA),[[et,e(v).downloadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",eA,[t("div",aA,i(e(a)("\u4E0A\u4F20\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[3]||(Z[3]=z=>e(v).uploadSpeed=z),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,oA),[[et,e(v).uploadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)])],64)):C("",!0),t("div",nA,[t("div",iA,[t("button",{class:"add-button add-button--danger",onClick:I},i(e(a)("\u4FDD\u5B58")),1)])])])):(r(),d("div",HY,[WY,t("span",null,i(e(a)("\u8F6F\u4EF6\u6682\u672A\u5B89\u88C5")),1),t("div",{class:"not_installed_btn",onClick:Z[0]||(Z[0]=z=>R("app-meta-eqos"))},i(e(a)("\u7ACB\u5373\u5B89\u88C5")),1)]))],512),[[te,F.value==="ip"]]),L(t("div",null,[k.value?(r(),d("div",dA,[t("div",lA,[t("div",uA,i(e(a)("\u6D6E\u52A8\u7F51\u5173"))+"\uFF1A",1),D(Ot,{modelValue:e(p).enabled,"onUpdate:modelValue":Z[5]||(Z[5]=z=>e(p).enabled=z),onChange:Bt},null,8,["modelValue"])]),t("div",cA,[t("div",pA,i(e(a)("\u8282\u70B9\u89D2\u8272"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":Z[6]||(Z[6]=z=>e(p).role=z),onChange:Z[7]||(Z[7]=()=>{})},[e(l)?(r(),d("option",fA,i(e(a)("\u8BF7\u9009\u62E9")),1)):C("",!0),(r(!0),d(U,null,tt(c.value,z=>(r(),d("option",{value:z.value},i(z.name),9,mA))),256))],544),[[dt,e(p).role]])]),t("div",gA,[t("div",vA,i(e(a)("\u6D6E\u52A8\u7F51\u5173"))+"IP\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[8]||(Z[8]=z=>e(p).setIP=z),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,bA),[[et,e(p).setIP,void 0,{trim:!0}]])]),t("div",hA,[t("div",_A,i(e(a)("\u65C1\u8DEF\u7531IP"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[9]||(Z[9]=z=>e(p).checkIP=z),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,xA),[[et,e(p).checkIP,void 0,{trim:!0}]])]),t("div",wA,[t("div",kA,[t("button",{class:"add-button add-button--danger",onClick:H},i(e(a)("\u4FDD\u5B58")),1)])])])):(r(),d("div",rA,[sA,t("span",null,i(e(a)("\u8F6F\u4EF6\u6682\u672A\u5B89\u88C5")),1),t("div",{class:"not_installed_btn",onClick:Z[4]||(Z[4]=z=>R("app-meta-floatip"))},i(e(a)("\u7ACB\u5373\u5B89\u88C5")),1)]))],512),[[te,F.value==="gateway"]]),L(t("div",null,[t("div",yA,[t("div",FA,[t("div",EA,i(e(a)("\u542F\u7528"))+"DHCP\uFF1A",1),D(Ot,{modelValue:e(x).dhcpEnabled,"onUpdate:modelValue":Z[10]||(Z[10]=z=>e(x).dhcpEnabled=z),onChange:bt},null,8,["modelValue"])]),t("div",$A,[t("div",CA,"DHCP"+i(e(a)("\u7F51\u5173"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":Z[11]||(Z[11]=z=>e(x).dhcpGateway=z),onChange:Z[12]||(Z[12]=()=>{})},[(r(!0),d(U,null,tt((ct=(Ct=f.value)==null?void 0:Ct.dhcpGlobal)==null?void 0:ct.gatewaySels,z=>(r(),d("option",{value:z.gateway},i(z.gateway)+" ("+i(z.title?A(z.title):"")+") ",9,DA))),256))],544),[[dt,e(x).dhcpGateway]])]),t("div",BA,[t("div",YA,[t("button",{class:"add-button add-button--danger",onClick:_},i(e(a)("\u4FDD\u5B58")),1)])])]),t("div",AA,[t("button",{class:"add-button add-button--danger",onClick:Qt},[t("span",null,i(e(a)("\u6DFB\u52A0")),1)])]),D(je,{data:u.value,columns:s.value,showSelection:!1,showPagination:!1,theadBgColor:"#e8e6f9"},{action:G(({row:z})=>[z.autoCreated?C("",!0):(r(),d("span",{key:0,style:{color:"#553AFE",cursor:"pointer"},onClick:K=>Lt(z)},i(e(a)("\u7F16\u8F91")),9,SA)),z.autoCreated?C("",!0):(r(),d("span",{key:1,style:{color:"#F04134",cursor:"pointer","margin-left":"18px"},onClick:K=>jt(z)},i(e(a)("\u5220\u9664")),9,zA))]),tagTitle:G(({row:z})=>[t("span",null,i(A(z.tagTitle)),1)]),tagName:G(({row:z})=>[t("span",null,i(z.tagName||"-"),1)]),gateway:G(({row:z})=>[t("span",null,i(z.gateway||"-"),1)]),_:1},8,["data","columns"])],512),[[te,F.value==="tag"]])]),D(GY,{ref_key:"tagDialogRef",ref:P,title:e(S),onConfirm:qe},null,8,["title"])])}}});var TA=N(PA,[["__scopeId","data-v-66e54129"]]);const ro=o=>(it("data-v-a5a78984"),o=o(),rt(),o),IA={id:"page"},MA={style:{"text-align":"left",display:"flex","align-items":"center","margin-bottom":"20px","padding-top":"4px"}},LA=ro(()=>t("svg",{width:"20",height:"20",viewBox:"0 0 100 100",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M20 30 L50 50 L20 70",stroke:"#d6dbf8","stroke-width":"8","stroke-linecap":"round",fill:"none"})],-1)),NA={style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color1)","line-height":"1.5em"}},OA={class:"device_container",style:{color:"black"}},VA={class:"tab-container"},GA={class:"tabs_box_g"},jA=["onClick"],UA={class:"tab-content_g"},qA={key:0,class:"content-item"},RA={key:1,class:"content-item"},HA={key:2,class:"content-item"},WA={key:3,class:"content-item"},JA=ro(()=>t("div",{style:{height:"30px"}},null,-1)),ZA=T({setup(o){const{$gettext:n}=W(),a=E(["\u8BBE\u5907\u5217\u8868","\u9759\u6001\u5206\u914D\u5217\u8868","\u9650\u901F\u8BBE\u5907\u5217\u8868","\u5168\u5C40\u8BBE\u7F6E"]),l=E(0),u=E(null),s=()=>O(this,null,function*(){l.value=3,yield oa(),u.value&&(u.value.activeTab="ip")});return(c,x)=>{const v=ht("router-link");return r(),d(U,null,[t("div",IA,[t("div",MA,[D(v,{to:"/",style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color)","line-height":"1.5em","margin-right":"4px"}},{default:G(()=>[nt(i(e(n)("\u9996\u9875")),1)]),_:1}),LA,t("a",NA,i(e(n)("\u8BBE\u5907\u7BA1\u7406")),1)])]),t("div",OA,[t("div",VA,[t("div",GA,[(r(!0),d(U,null,tt(a.value,(p,f)=>(r(),d("button",{key:f,onClick:m=>l.value=f,class:st({active:l.value===f})},i(e(n)(p)),11,jA))),128))]),t("div",UA,[l.value===0?(r(),d("div",qA,[D(_B,{onOpenGloba:s})])):C("",!0),l.value===1?(r(),d("div",RA,[D(VB)])):C("",!0),l.value===2?(r(),d("div",HA,[D(gY,{onOpenGloba:s})])):C("",!0),l.value===3?(r(),d("div",WA,[D(TA,{ref_key:"configureRef",ref:u},null,512)])):C("",!0)]),JA])])],64)}}});var KA=N(ZA,[["__scopeId","data-v-a5a78984"]]);const QA={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},XA=["fill"],tS=["fill"],eS=T({props:{color:{type:String,default:"#ffa847"}},setup(o){return(n,a)=>(r(),d("svg",QA,[t("path",{d:"M640.825806 900.129032c-18.167742 6.606452-37.987097 9.909677-57.806451 13.212903-26.425806 4.954839-44.593548 29.729032-41.290323 56.154839 4.954839 26.425806 29.729032 44.593548 56.154839 41.290323 24.774194-3.303226 47.896774-9.909677 71.019355-16.516129 26.425806-8.258065 41.290323-36.335484 33.032258-62.761291s-34.683871-39.63871-61.109678-31.380645zM974.451613 576.412903c-26.425806-6.606452-52.851613 9.909677-61.109678 36.335484-4.954839 19.819355-11.56129 37.987097-18.167741 56.154839-9.909677 24.774194 1.651613 54.503226 26.425806 64.412903 24.774194 9.909677 54.503226-1.651613 64.412903-26.425806 9.909677-23.122581 16.516129-46.245161 23.122581-69.367742 6.606452-28.077419-8.258065-54.503226-34.683871-61.109678zM814.245161 791.122581c-13.212903 14.864516-28.077419 28.077419-42.941935 39.638709-21.470968 16.516129-24.774194 47.896774-8.258065 69.367742 16.516129 21.470968 47.896774 24.774194 69.367742 8.258065 19.819355-14.864516 37.987097-31.380645 54.503226-49.548387 18.167742-19.819355 18.167742-51.2-1.651613-69.367742s-51.2-18.167742-71.019355 1.651613zM526.864516 341.883871c-28.077419 0-49.548387 21.470968-49.548387 49.548387v122.219355c0 14.864516 6.606452 28.077419 18.167742 37.987097l117.264516 97.445161c21.470968 18.167742 52.851613 14.864516 69.367742-6.606452s14.864516-52.851613-6.606452-69.367742l-99.096774-82.580645v-99.096774c0-26.425806-21.470968-49.548387-49.548387-49.548387z",fill:o.color,"p-id":"4722"},null,8,XA),t("path",{d:"M910.03871 327.019355c28.077419 1.651613 51.2-18.167742 52.851613-46.245161l9.909677-142.03871c1.651613-28.077419-18.167742-51.2-46.245161-52.851613-28.077419-1.651613-51.2 18.167742-52.851613 46.245161v16.516129c-1.651613-1.651613-3.303226-3.303226-4.954839-3.303226-1.651613-3.303226-4.954839-4.954839-6.606452-8.258064-18.167742-16.516129-36.335484-31.380645-57.806451-46.245161-1.651613-1.651613-4.954839-3.303226-6.606452-3.303226-46.245161-31.380645-99.096774-54.503226-155.251613-69.367742-1.651613 0-3.303226-1.651613-4.954838-1.651613-8.258065-1.651613-14.864516-3.303226-23.122581-4.954839h-1.651613c-6.606452-1.651613-13.212903-3.303226-21.470968-3.303225-4.954839-1.651613-11.56129-1.651613-16.516129-1.651613-3.303226 0-6.606452-1.651613-9.909677-1.651613h-1.651613C307.2-19.819355 69.367742 153.6 18.167742 412.903226c-52.851613 275.819355 125.522581 541.729032 401.341935 594.580645 26.425806 4.954839 52.851613-11.56129 57.806452-39.63871 4.954839-26.425806-11.56129-52.851613-39.63871-57.806451h-1.651613c-19.819355-3.303226-37.987097-9.909677-56.154838-16.516129h-3.303226c-44.593548-16.516129-84.232258-39.63871-118.916129-67.716129l-4.954839-4.954839c-14.864516-13.212903-29.729032-26.425806-41.290322-41.290323-1.651613-1.651613-3.303226-3.303226-6.606452-4.954838-28.077419-33.032258-51.2-71.019355-67.716129-112.309678 0-3.303226-1.651613-6.606452-1.651613-8.258064-6.606452-18.167742-13.212903-37.987097-16.516129-56.154839 0-3.303226-1.651613-6.606452-3.303226-9.909677-8.258065-41.290323-9.909677-82.580645-4.954838-125.522581 1.651613-3.303226 1.651613-6.606452 3.303225-9.909678 3.303226-19.819355 6.606452-37.987097 13.212904-57.806451 1.651613-3.303226 1.651613-6.606452 1.651612-9.909678 13.212903-41.290323 33.032258-80.929032 57.806452-115.612903 3.303226-1.651613 4.954839-4.954839 6.606452-6.606451 11.56129-14.864516 24.774194-29.729032 39.638709-44.593549 1.651613-1.651613 3.303226-4.954839 4.954839-6.606451 33.032258-31.380645 71.019355-56.154839 112.309677-74.322581 1.651613 0 3.303226 0 3.303226-1.651613 18.167742-8.258065 37.987097-14.864516 56.154839-19.819355 1.651613 0 1.651613-1.651613 3.303226-1.651613 47.896774-13.212903 100.748387-16.516129 153.6-9.909677 3.303226 0 6.606452 1.651613 9.909677 1.651613 6.606452 1.651613 11.56129 1.651613 18.167742 3.303226 80.929032 16.516129 153.6 54.503226 209.754839 112.309677l-29.729032-1.651613c-28.077419-1.651613-51.2 18.167742-52.851613 46.245161-1.651613 28.077419 18.167742 51.2 46.245161 52.851613l142.03871 8.258065z",fill:o.color,"p-id":"4723"},null,8,tS)]))}}),aS={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},oS=["fill"],nS=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",aS,[t("path",{d:"M914.285714 548.571429a36.571429 36.571429 0 0 1 36.571429 36.571428v219.428572a146.285714 146.285714 0 0 1-146.285714 146.285714H219.428571a146.285714 146.285714 0 0 1-146.285714-146.285714v-219.428572a36.571429 36.571429 0 1 1 73.142857 0v219.428572a73.142857 73.142857 0 0 0 67.657143 72.96L219.428571 877.714286h585.142858a73.142857 73.142857 0 0 0 72.96-67.657143L877.714286 804.571429v-219.428572a36.571429 36.571429 0 0 1 36.571428-36.571428zM537.307429 83.858286l258.596571 258.596571a36.571429 36.571429 0 1 1-51.712 51.712L548.571429 198.509714 548.571429 634.733714a36.571429 36.571429 0 1 1-73.142858 0V197.485714L278.674286 394.166857a36.571429 36.571429 0 1 1-51.712-51.712l258.596571-258.596571a36.571429 36.571429 0 0 1 51.712 0z",fill:o.color,"p-id":"9077"},null,8,oS)]))}}),Ht=o=>(it("data-v-de94d0fe"),o=o(),rt(),o),iS={class:"item_container"},rS={class:"item"},sS={class:"item_title"},dS={class:"tip"},lS={class:"item"},uS={class:"item_title"},cS={class:"select_box"},pS={value:null,disabled:"",selected:""},fS=["value"],mS={class:"start_btn"},gS={key:0,class:"progress"},vS=Ht(()=>t("span",null,"25%",-1)),bS={class:"item"},hS={class:"item_title"},_S={class:"log_info"},xS={class:"item"},wS={class:"item_title"},kS={class:"result_box"},yS={class:"result"},FS={class:"result_item"},ES=Ht(()=>t("div",{class:"speed_value"},"105.5",-1)),$S=Ht(()=>t("span",{class:"unit"},"Mbps",-1)),CS=Ht(()=>t("span",{class:"status status_bg1"},"\u4F18\u79C0",-1)),DS={class:"speed_title"},BS={class:"result_item"},YS=Ht(()=>t("div",{class:"speed_value"},"105.5",-1)),AS=Ht(()=>t("span",{class:"unit"},"Mbps",-1)),SS=Ht(()=>t("span",{class:"status status_bg2"},"\u826F\u597D",-1)),zS={class:"speed_title"},PS=Vt('18 ms
\u826F\u597D\u5EF6\u8FDF ',2),TS=Ht(()=>t("div",{class:"custom-content"},[t("p",null,"\u4EE5\u4E0B\u662F\u68C0\u6D4B\u5230\u7684\u5185\u7F51\u5730\u5740\uFF0C\u8BF7\u70B9\u51FB\u8BBF\u95EE\u8FDB\u884C\u6D4B\u901F"),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")])],-1)),IS=T({setup(o){const{$gettext:n}=W(),a=E(!1),l=E([{title:"SpeedTest.Net",describe:"\u5168\u7403\u6807\u51C6\u7F51\u901F\u6D4B\u8BD5\u670D\u52A1",value:"SpeedTest"},{title:"CDN\u8282\u70B9\u6D4B\u8BD5",describe:"\u6D4B\u8BD5\u5230\u4E3B\u8981CDN\u8282\u70B9\u7684\u8FDE\u63A5\u901F\u5EA6",value:"CDN"},{title:"UST\u9AD8\u6821\u8282\u70B9",describe:"\u4E2D\u79D1\u5927\u6559\u80B2\u7F51\u8282\u70B9\u6D4B\u8BD5",value:"UST"},{title:"NAT\u7C7B\u578B\u6D4B\u901F",describe:"\u68C0\u6D4B\u7F51\u7EDCNAT\u7C7B\u578B\u548C\u8FDE\u901A\u6027",value:"NAT"}]),u=E(null),s=E(!1),c=()=>{!u.value||(s.value=!0)};return(x,v)=>(r(),d(U,null,[t("div",iS,[t("div",rS,[t("div",sS,[D(ze,{color:"#155dfc",class:"icon"}),t("span",null,i(e(n)("\u5185\u7F51\u6D4B\u901F")),1)]),t("p",null,i(e(n)("\u68C0\u6D4B\u672C\u5730\u7F51\u7EDC\u73AF\u5883\uFF0C\u83B7\u53D6\u5185\u7F51\u8BBF\u95EE\u5730\u5740")),1),t("div",{class:"wifi_btn",onClick:v[0]||(v[0]=p=>a.value=!0)},[t("div",null,[D(ze,{color:"#ffffff",class:"icon1"}),t("span",null,i(e(n)("\u5F00\u59CB\u5185\u7F51\u6D4B\u901F")),1)])]),t("p",dS,i(e(n)("\u70B9\u51FB\u6309\u94AE\u83B7\u53D6\u5185\u7F51\u6D4B\u901F\u5730\u5740\uFF0C\u901A\u8FC7\u8BBF\u95EE\u8FD9\u4E9B\u5730\u5740\u6765\u6D4B\u8BD5\u5185\u7F51\u8FDE\u63A5\u901F\u5EA6")),1)]),t("div",lS,[t("div",uS,[D(xe,{color:"#2bb55e",class:"icon"}),t("span",null,i(e(n)("\u5185\u7F51\u6D4B\u901F")),1)]),t("p",null,i(e(n)("\u9009\u62E9\u6D4B\u901F\u8282\u70B9\uFF0C\u8FDB\u884C\u7F51\u7EDC\u901F\u5EA6\u548C\u8FDE\u63A5\u8D28\u91CF\u6D4B\u8BD5")),1),t("div",cS,[t("div",null,i(e(n)("\u9009\u62E9\u6D4B\u901F\u8282\u70B9")),1),L(t("select",{"onUpdate:modelValue":v[1]||(v[1]=p=>u.value=p),id:"node",required:"",class:st({"is-placeholder":!u.value})},[t("option",pS,i(e(n)("\u8BF7\u9009\u62E9\u6D4B\u901F\u8282\u70B9")),1),(r(!0),d(U,null,tt(l.value,p=>(r(),d("option",{value:p},i(p.title)+" - "+i(p.describe),9,fS))),256))],2),[[dt,u.value]])]),t("div",{class:st(["wifi_btn m-20",{"is-bg":!u.value||s.value}]),onClick:c},[t("div",mS,[s.value?(r(),d("span",{key:0,class:st(["icon3-wrap",{"is-rotating":s.value}])},[D(eS,{color:"#ffffff",class:"icon3"})],2)):(r(),J(xe,{key:1,color:"#ffffff",class:"icon2"})),t("span",null,i(e(n)("\u5F00\u59CB\u6D4B\u901F")),1)])],2),s.value?(r(),d("div",gS,[t("p",null,[nt(i(e(n)("\u6D4B\u901F\u8FDB\u5EA6"))+" ",1),vS]),D(Xa,{percentage:25,showPercentage:!1,height:"10px",borderRadius:"10px",color:"#030213",backgroundColor:"#cdccd0"})])):C("",!0)]),t("div",bS,[t("div",hS,[D(Wa,{color:"#ff6900",class:"icon2"}),t("span",null,i(e(n)("\u6D4B\u901F\u65E5\u5FD7")),1)]),t("p",null,i(e(n)("\u5B9E\u65F6\u6D4B\u901F\u8FC7\u7A0B\u8BB0\u5F55")),1),t("div",_S,[(r(),d(U,null,tt(20,p=>t("p",null,"[17:00:20] \u6B63\u5728\u8FDE\u63A5\u5230\u6D4B\u8BD5\u670D\u52A1\u5668...")),64))])]),t("div",xS,[t("div",wS,[D(eo,{color:"#9865ff",class:"icon2"}),t("span",null,i(e(n)("\u6D4B\u901F\u7ED3\u679C")),1)]),t("p",null,i(e(n)("\u6D4B\u901F\u8282\u70B9"))+"\uFF1ACDN\u8282\u70B9 (\u5317\u4EAC)",1),t("div",kS,[t("div",yS,[t("div",FS,[D(Zt,{color:"#155dfc",class:"icon_speed"}),ES,$S,CS,t("div",DS,i(e(n)("\u4E0B\u8F7D\u901F\u5EA6")),1)]),t("div",BS,[D(nS,{color:"#00a63e",class:"icon_speed1"}),YS,AS,SS,t("div",zS,i(e(n)("\u4E0A\u4F20\u901F\u5EA6")),1)])]),PS])])]),D(ee,{modelValue:a.value,"onUpdate:modelValue":v[2]||(v[2]=p=>a.value=p),title:"\u5185\u7F51\u8BBF\u95EE\u5730\u5740",width:"550px",footerShow:!1,"show-close":!0},{default:G(()=>[TS]),_:1},8,["modelValue"])],64))}});var MS=N(IS,[["__scopeId","data-v-de94d0fe"]]);const LS={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},NS=["fill"],OS=T({props:{color:{type:String,default:"#155dfc"}},setup(o){return(n,a)=>(r(),d("svg",LS,[t("path",{d:"M0 855.04a64.896 64.896 0 0 1 129.792 0v55.637333a64.896 64.896 0 0 1-129.792 0V855.04zM213.248 669.610667a64.896 64.896 0 0 1 129.792 0v241.066666a64.896 64.896 0 0 1-129.792 0v-241.066666zM426.496 484.181333a64.896 64.896 0 0 1 129.792 0v426.496a64.896 64.896 0 1 1-129.792 0v-426.496zM639.701333 298.752a64.896 64.896 0 1 1 129.792 0v611.925333a64.896 64.896 0 0 1-129.792 0V298.752zM852.949333 113.322667a64.896 64.896 0 0 1 129.792 0v797.354666a64.896 64.896 0 0 1-129.792 0V113.322667z",fill:o.color,"p-id":"11967"},null,8,NS)]))}}),va=o=>(it("data-v-63694ef8"),o=o(),rt(),o),VS={id:"page"},GS={style:{"text-align":"left",display:"flex","align-items":"center","margin-bottom":"20px","padding-top":"4px"}},jS=va(()=>t("svg",{width:"20",height:"20",viewBox:"0 0 100 100",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M20 30 L50 50 L20 70",stroke:"#d6dbf8","stroke-width":"8","stroke-linecap":"round",fill:"none"})],-1)),US={style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color1)","line-height":"1.5em"}},qS={class:"container",style:{color:"black"}},RS={class:"title"},HS=va(()=>t("span",null,"\u7F51\u7EDC\u6D4B\u901F\u5DE5\u5177",-1)),WS=va(()=>t("p",null,"\u4E13\u4E1A\u7684\u7F51\u7EDC\u8FDE\u63A5\u901F\u5EA6\u68C0\u6D4B\u5DE5\u5177\uFF0C\u652F\u6301\u5185\u7F51\u548C\u5916\u7F51\u6D4B\u901F",-1)),JS=T({setup(o){const{$gettext:n}=W();return(a,l)=>{const u=ht("router-link");return r(),d(U,null,[t("div",VS,[t("div",GS,[D(u,{to:"/",style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color)","line-height":"1.5em","margin-right":"4px"}},{default:G(()=>[nt(i(e(n)("\u9996\u9875")),1)]),_:1}),jS,t("a",US,i(e(n)("\u7F51\u7EDC\u6D4B\u901F")),1)])]),t("div",qS,[t("div",RS,[t("div",null,[D(OS,{class:"icon"}),HS]),WS]),D(MS)])],64)}}});var ZS=N(JS,[["__scopeId","data-v-63694ef8"]]);const Ce=o=>(it("data-v-1f11eeec"),o=o(),rt(),o),KS=["onSubmit"],QS={class:"form-item"},XS={class:"label-name"},tz={class:"label-value switch_label"},ez={class:"label-flex pc-radio"},az=["disabled"],oz=["disabled"],nz=Ce(()=>t("div",{class:"switch-button"},null,-1)),iz=[nz],rz={key:0,class:"form-item"},sz={class:"label-name"},dz={class:"label-value"},lz=["disabled"],uz={value:100},cz={value:70},pz={value:50},fz={value:30},mz={key:0,class:"select-arrow"},gz={class:"form-item"},vz={class:"label-name"},bz={class:"label-value"},hz=["disabled","placeholder"],_z={class:"form-item"},xz={class:"label-name"},wz={class:"label-value"},kz=["disabled"],yz=["value"],Fz={key:0,class:"select-arrow"},Ez={class:"form-item"},$z={class:"label-name"},Cz={class:"label-value"},Dz=["type","disabled","placeholder"],Bz={key:0,class:"seeIcon",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Yz=Ce(()=>t("path",{d:"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z",fill:"currentColor"},null,-1)),Az=[Yz],Sz={key:1,class:"seeIcon",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},zz=Ce(()=>t("path",{d:"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",fill:"currentColor"},null,-1)),Pz=[zz],Tz={class:"form-item"},Iz={class:"label-name"},Mz={class:"label-value"},Lz=["disabled"],Nz={value:!1},Oz={value:!0},Vz={key:0,class:"select-arrow"},Gz={key:1,class:"form-item"},jz={class:"label-name"},Uz={class:"label-value"},qz=["disabled"],Rz=["value"],Hz={key:0,class:"select-arrow"},Wz={key:2,class:"form-item"},Jz={class:"label-name"},Zz={class:"label-value"},Kz=["disabled"],Qz=Ce(()=>t("option",{value:"20"},"20 MHz",-1)),Xz=Ce(()=>t("option",{value:"40"},"40 MHz",-1)),tP={key:0,value:"auto"},eP={key:1,value:"80"},aP={key:2,value:"160"},oP={key:0,class:"select-arrow"},nP={key:3,class:"form-item"},iP={class:"label-name"},rP={class:"label-value"},sP=["disabled"],dP={value:0},lP=["value"],uP=["disabled"],cP={value:0},pP=Vt('',12),fP={key:2,class:"select-arrow"},mP={key:4,class:"form-item"},gP={class:"label-name"},vP={class:"label-value"},bP=["placeholder","disabled"],hP={class:"label-btns"},_P=["disabled"],xP=T({props:{data:null},emits:["getData"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:u}=W(),s=E(Object.assign({},a.data)),c=$o("disabled"),x=E(!0),v=()=>{c.value||(s.value.disabled=!s.value.disabled)};Yt(()=>s.value.disabled,y=>{f()});const p=()=>O(this,null,function*(){if(s.value.txpower===a.data.txpower)return;const y=$.Loading("\u914D\u7F6E\u4E2D...");try{const{data:b}=yield j.Quickwifi.Power.POST({device:s.value.device||"",txpower:s.value.txpower||0}),{error:k,success:g}=b;if(k)throw k;(g==null||g==0)&&$.Success("\u914D\u7F6E\u5B8C\u6210")}catch(b){throw $.Error("\u914D\u7F6E\u5931\u8D25\uFF0C\u8BF7\u91CD\u8BD5"),b}finally{y.Close()}}),f=()=>O(this,null,function*(){const y=$.Loading("\u914D\u7F6E\u4E2D...");try{const{data:b}=yield j.Quickwifi.Switch.POST({ifaceName:s.value.ifaceName||"",enable:!s.value.disabled}),{error:k,success:g}=b;if(k)throw k;(g==null||g==0)&&$.Success("\u914D\u7F6E\u5B8C\u6210")}catch(b){throw console.error("\u8BF7\u6C42\u51FA\u9519:",b),$.Error("\u914D\u7F6E\u5931\u8D25\uFF0C\u8BF7\u91CD\u8BD5"),b}finally{y.Close()}}),m=()=>O(this,null,function*(){const y=lt({},s.value);delete y.encryptSelects,delete y.hwmodeSelects,delete y.disabled,delete y.txpower;const{data:b}=yield j.Quickwifi.Edit.POST(y),{error:k,success:g}=b;if(k)throw k;(g==null||g==0)&&$.Success("\u914D\u7F6E\u5B8C\u6210")}),_=()=>O(this,null,function*(){if(c.value)return;c.value=!0;const y=$.Loading("\u914D\u7F6E\u4E2D...");try{yield m(),yield n("getData")}catch(b){const k=$.Error(`${b}`);setTimeout(()=>{k.Close()},2e3)}finally{y.Close(),c.value=!1}});return(y,b)=>(r(),d("form",{class:"form-container",onSubmit:ut(_,["prevent"])},[t("div",QS,[t("div",XS,[t("span",null,i(e(l)("\u542F\u7528Wi-Fi")),1)]),t("div",tz,[t("div",ez,[t("label",null,[L(t("input",{type:"radio",value:!1,"onUpdate:modelValue":b[0]||(b[0]=k=>s.value.disabled=k),disabled:e(c)},null,8,az),[[Ft,s.value.disabled]]),nt(" "+i(e(l)("\u5F00\u542F")),1)]),t("label",null,[L(t("input",{type:"radio",value:!0,"onUpdate:modelValue":b[1]||(b[1]=k=>s.value.disabled=k),disabled:e(c)},null,8,oz),[[Ft,s.value.disabled]]),nt(" "+i(e(l)("\u5173\u95ED")),1)])]),t("div",{class:"mobile-switch",onClick:v},[t("div",{class:st(["switch-core",{"is-checked":!s.value.disabled,"is-disabled":e(c)}])},iz,2)])])]),s.value.isGuest?C("",!0):(r(),d("div",rz,[t("div",sz,[t("span",null,i(e(l)("\u53D1\u5C04\u529F\u7387")),1)]),t("div",dz,[L(t("select",{"onUpdate:modelValue":b[2]||(b[2]=k=>s.value.txpower=k),disabled:e(c),onChange:p},[t("option",uz,i(e(l)("\u6700\u5927")),1),t("option",cz,i(e(l)("\u9AD8")),1),t("option",pz,i(e(l)("\u4E2D")),1),t("option",fz,i(e(l)("\u4F4E")),1)],40,lz),[[dt,s.value.txpower]]),e(c)?C("",!0):(r(),d("div",mz))])])),t("div",gz,[t("div",vz,[t("span",null,i(e(l)("Wi-Fi\u540D\u79F0\uFF08SSID\uFF09")),1)]),t("div",bz,[L(t("input",{"onUpdate:modelValue":b[3]||(b[3]=k=>s.value.ssid=k),disabled:e(c),placeholder:e(l)("\u8BF7\u8F93\u5165WIFI\u540D\u79F0")},null,8,hz),[[et,s.value.ssid]])])]),t("div",_z,[t("div",xz,[t("span",null,i(e(l)("Wi-Fi \u5B89\u5168\u6027")),1)]),t("div",wz,[L(t("select",{"onUpdate:modelValue":b[4]||(b[4]=k=>s.value.encryption=k),disabled:e(c)},[(r(!0),d(U,null,tt(s.value.encryptSelects,k=>(r(),d("option",{value:k},i(k),9,yz))),256))],8,kz),[[dt,s.value.encryption]]),e(c)?C("",!0):(r(),d("div",Fz))])]),t("div",Ez,[t("div",$z,[t("span",null,i(e(l)("Wi-Fi \u5BC6\u7801")),1)]),t("div",Cz,[L(t("input",{"onUpdate:modelValue":b[5]||(b[5]=k=>s.value.key=k),class:"password_input",type:x.value?"password":"",disabled:e(c),placeholder:e(l)("\u8BF7\u8F93\u5165WIFI\u5BC6\u7801")},null,8,Dz),[[Co,s.value.key]]),e(c)?C("",!0):(r(),d("div",{key:0,onClick:b[6]||(b[6]=k=>x.value=!x.value)},[x.value?(r(),d("svg",Bz,Az)):(r(),d("svg",Sz,Pz))]))])]),t("div",Tz,[t("div",Iz,[t("span",null,i(e(l)("SSID \u53EF\u89C1\u6027")),1)]),t("div",Mz,[L(t("select",{"onUpdate:modelValue":b[7]||(b[7]=k=>s.value.hidden=k),disabled:e(c)},[t("option",Nz,i(e(l)("\u663E\u793A")),1),t("option",Oz,i(e(l)("\u9690\u85CF")),1)],8,Lz),[[dt,s.value.hidden]]),e(c)?C("",!0):(r(),d("div",Vz))])]),s.value.isGuest?C("",!0):(r(),d("div",Gz,[t("div",jz,[t("span",null,i(e(l)("\u65E0\u7EBF\u6A21\u5F0F")),1)]),t("div",Uz,[L(t("select",{"onUpdate:modelValue":b[8]||(b[8]=k=>s.value.hwmode=k),disabled:e(c)},[(r(!0),d(U,null,tt(s.value.hwmodeSelects,k=>(r(),d("option",{value:k},i(k),9,Rz))),256))],8,qz),[[dt,s.value.hwmode]]),e(c)?C("",!0):(r(),d("div",Hz))])])),s.value.isGuest?C("",!0):(r(),d("div",Wz,[t("div",Jz,[t("span",null,i(e(l)("\u9891\u5BBD")),1)]),t("div",Zz,[L(t("select",{"onUpdate:modelValue":b[9]||(b[9]=k=>s.value.htmode=k),disabled:e(c)},[Qz,Xz,s.value.band==="2g"?(r(),d("option",tP," 20/40 MHz ")):C("",!0),s.value.band==="5g"?(r(),d("option",eP," 80 MHz ")):C("",!0),s.value.band==="5g"?(r(),d("option",aP," 160 MHz ")):C("",!0)],8,Kz),[[dt,s.value.htmode]]),e(c)?C("",!0):(r(),d("div",oP))])])),s.value.isGuest?C("",!0):(r(),d("div",nP,[t("div",iP,[t("span",null,i(e(l)("\u4FE1\u9053")),1)]),t("div",rP,[s.value.band==="2g"?L((r(),d("select",{key:0,"onUpdate:modelValue":b[10]||(b[10]=k=>s.value.channel=k),disabled:e(c)},[t("option",dP,i(e(l)("\u81EA\u52A8")),1),(r(),d(U,null,tt(13,k=>t("option",{value:k},i(k),9,lP)),64))],8,sP)),[[dt,s.value.channel,void 0,{number:!0}]]):C("",!0),s.value.band==="5g"?L((r(),d("select",{key:1,"onUpdate:modelValue":b[11]||(b[11]=k=>s.value.channel=k),disabled:e(c)},[t("option",cP,i(e(l)("\u81EA\u52A8")),1),pP],8,uP)),[[dt,s.value.channel,void 0,{number:!0}]]):C("",!0),e(c)?C("",!0):(r(),d("div",fP))])])),s.value.isGuest?C("",!0):(r(),d("div",mP,[t("div",gP,[t("span",null,i(e(l)("\u7F51\u7EDC")),1)]),t("div",vP,[L(t("input",{type:"text",placeholder:e(l)("\u8BF7\u914D\u7F6E\u7F51\u7EDC\u540D\u79F0"),required:"","onUpdate:modelValue":b[12]||(b[12]=k=>s.value.network=k),disabled:e(c)},null,8,bP),[[et,s.value.network]])])])),t("div",hP,[t("button",{class:"btn primary-btn",disabled:e(c),onClick:_},i(e(l)("\u4FDD\u5B58\u914D\u7F6E")),9,_P)])],40,KS))}});var wP=N(xP,[["__scopeId","data-v-1f11eeec"]]);const Ue=o=>(it("data-v-40cb5302"),o=o(),rt(),o),kP={id:"page",class:"page-container"},yP={class:"mobile-tags-container"},FP={class:"tags-wrapper"},EP={class:"tags-scroll"},$P=["onClick"],CP={class:"more-btn-wrapper"},DP=Ue(()=>t("div",{class:"fade-overlay"},null,-1)),BP=Ue(()=>t("div",{class:"line"},null,-1)),YP=Ue(()=>t("div",{class:"line"},null,-1)),AP=Ue(()=>t("div",{class:"line"},null,-1)),SP=[BP,YP,AP],zP={class:"page-flex"},PP={class:"page-sidebar"},TP=["onClick"],IP={class:"page-main"},MP={class:"popup-content"},LP={class:"popup-tags"},NP=["onClick"],OP={class:"popup-footer"},VP=T({setup(o){var k;const{$gettext:n}=W(),a=E(!1);Do("disabled",a);const l=E([]),u=Pe(),s=aa(),c=E(String((k=u==null?void 0:u.query)==null?void 0:k.tab)),x=E(!1),v=g=>{var h;return(h=g.band)==null?void 0:h.toUpperCase()},p=g=>g.isGuest?g.band+"_Guest":g.ssid,f=g=>{a.value||(c.value=p(g),x.value=!1,c.value!==u.query.tab&&s.push({query:{tab:c.value}}))},m=E(),_=g=>{a.value||(m.value=p(g))},y=()=>{x.value=!1,m.value!==u.query.tab&&s.push({query:{tab:m.value}})};Yt(()=>x.value,g=>{g?m.value=c.value:c.value=m.value});const b=()=>O(this,null,function*(){try{const{data:g}=yield j.Quickwifi.List.GET(),{error:h,result:w}=g;if(h)throw h;w!=null&&w.ifaces&&(l.value=w.ifaces.map(Y=>pt(lt({},Y),{hidden:Y.hidden||!1,disabled:Y.disabled||!1,isGuest:Y.isGuest||!1,channel:Y.channel||0,txpower:Y.txpower||0,ifaceIndex:Y.ifaceIndex||0})));let F=!1;for(let Y=0;Y0&&f(l.value[0])}catch(g){console.log(g)}});return b(),(g,h)=>(r(),d("div",kP,[t("div",yP,[t("div",FP,[t("div",EP,[(r(!0),d(U,null,tt(l.value,w=>(r(),d("div",{key:p(w),class:st(c.value===p(w)?"tag-item active":"tag-item"),onClick:ut(F=>f(w),["stop"])},i(v(w))+" "+i(w.isGuest?` ${e(n)("\u8BBF\u5BA2")}`:"")+" Wi-Fi "+i(w.ifaceIndex?`[${w.ifaceIndex}]`:""),11,$P))),128))]),t("div",CP,[DP,t("div",{class:"more-btn",onClick:h[0]||(h[0]=w=>x.value=!0)},SP)])])]),t("div",zP,[t("div",PP,[(r(!0),d(U,null,tt(l.value,w=>(r(),d("div",{key:p(w),class:st(c.value===p(w)?"item activeItem":"item"),onClick:ut(F=>f(w),["stop"])},i(v(w))+" "+i(w.isGuest?` ${e(n)("\u8BBF\u5BA2")}`:"")+" Wi-Fi "+i(w.ifaceIndex?`[${w.ifaceIndex}]`:""),11,TP))),128))]),t("div",IP,[(r(!0),d(U,null,tt(l.value,w=>(r(),d(U,{key:p(w)},[c.value===p(w)?(r(),J(wP,{key:0,data:w,onGetData:b},null,8,["data"])):C("",!0)],64))),128))])]),x.value?(r(),d("div",{key:0,class:"popup-overlay",onClick:h[2]||(h[2]=ut(w=>x.value=!1,["self"]))},[t("div",MP,[t("div",LP,[(r(!0),d(U,null,tt(l.value,w=>(r(),d("div",{key:p(w),class:st(m.value===p(w)?"popup-tag-item active":"popup-tag-item"),onClick:ut(F=>_(w),["stop"])},i(v(w))+" "+i(w.isGuest?` ${e(n)("\u8BBF\u5BA2")}`:"")+" Wi-Fi "+i(w.ifaceIndex?`[${w.ifaceIndex}]`:""),11,NP))),128))]),t("div",OP,[t("button",{class:"cancel-btn",onClick:h[1]||(h[1]=w=>x.value=!1)},i(e(n)("\u53D6\u6D88")),1),t("button",{class:"confirm-btn",onClick:y},i(e(n)("\u786E\u5B9A")),1)])])])):C("",!0)]))}});var GP=N(VP,[["__scopeId","data-v-40cb5302"]]);const jP=()=>window.vue_base||"/cgi-bin/luci/admin/quickstart",so=Bo({history:Yo(jP()),routes:[{name:"IndexPage",path:"/",meta:{title:"\u63A7\u5236\u53F0"},component:Vb},{name:"NetworkPage",path:"/network",meta:{title:"\u7F51\u7EDC\u8BBE\u7F6E\u5411\u5BFC"},component:Ub,children:[{path:"",component:Fh},{path:"pppoe",component:Hh},{path:"dhcp",component:S_},{path:"gateway",component:kx}]},{path:"/quickwifi",component:GP},{name:"RaidPage",path:"/raid",meta:{title:"raid\u5411\u5BFC"},component:qk},{name:"SmartPage",path:"/smart",meta:{title:"smart\u68C0\u6D4B"},component:Xk,children:[{path:"",component:t$},{path:"task",component:g$},{path:"log",component:_$}]},{path:"/interfaceconfig",component:BC},{path:"/devicemanagement",component:KA},{path:"/networkSpeedTest",component:ZS}]});so.beforeEach((o,n)=>(o.meta.title,!0));const yt=vt(en);yt.component("svg-menu",ln);yt.component("svg-system",gn);yt.component("svg-download",wn);yt.component("svg-store",Bn);yt.component("svg-info",Tn);yt.component("svg-disk",ii);yt.component("svg-nav",ci);yt.component("progress-item",La);yt.component("svg-view-show",Ti);yt.component("svg-view-hidden",Vi);yt.component("article-item",Wi);yt.component("switch-box",Na);yt.component("editable-select",Jt);yt.use(Oa);yt.use(so);yt.use(Ao());zo(yt).finally(()=>yt.mount("#app"))});export default UP();
+var co=Object.defineProperty,uo=Object.defineProperties;var po=Object.getOwnPropertyDescriptors;var ha=Object.getOwnPropertySymbols;var fo=Object.prototype.hasOwnProperty,mo=Object.prototype.propertyIsEnumerable;var Re=(o,n,a)=>n in o?co(o,n,{enumerable:!0,configurable:!0,writable:!0,value:a}):o[n]=a,lt=(o,n)=>{for(var a in n||(n={}))fo.call(n,a)&&Re(o,a,n[a]);if(ha)for(var a of ha(n))mo.call(n,a)&&Re(o,a,n[a]);return o},pt=(o,n)=>uo(o,po(n));var go=(o,n)=>()=>(n||o((n={exports:{}}).exports,n),n.exports);var ve=(o,n,a)=>(Re(o,typeof n!="symbol"?n+"":n,a),a);var N=(o,n,a)=>new Promise((l,c)=>{var s=g=>{try{_(a.next(g))}catch(p){c(p)}},u=g=>{try{_(a.throw(g))}catch(p){c(p)}},_=g=>g.done?l(g.value):Promise.resolve(g.value).then(s,u);_((a=a.apply(o,n)).next())});import{a as vo,c as bo,d as we,b as T,e as Q,u as e,o as r,f as d,g as t,t as i,n as ft,h as D,i as B,r as ht,j as st,k as Et,w as L,v as qt,l as ho,m as J,p as G,q as E,s as Yt,x as At,y as dt,F as U,z as tt,A as et,B as Vt,C as it,D as rt,E as ke,G as te,T as $t,H as Mt,I as ct,J as vt,K as nt,L as mt,M as Ft,N as Qe,O as Ya,P as Aa,Q as Sa,R as Xe,S as ta,U as za,V as ea,W as aa,X as _o,Y as Pa,Z as ye,_ as xo,$ as wo,a0 as oa,a1 as Pe,a2 as ko,a3 as Te,a4 as yo,a5 as Fo,a6 as Eo,a7 as $o,a8 as Co,a9 as Do,aa as Bo,ab as Yo,ac as Ao}from"./vendor.js?v=7154674e";var jP=go(ae=>{const So=function(){const n=document.createElement("link").relList;if(n&&n.supports&&n.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))l(c);new MutationObserver(c=>{for(const s of c)if(s.type==="childList")for(const u of s.addedNodes)u.tagName==="LINK"&&u.rel==="modulepreload"&&l(u)}).observe(document,{childList:!0,subtree:!0});function a(c){const s={};return c.integrity&&(s.integrity=c.integrity),c.referrerpolicy&&(s.referrerPolicy=c.referrerpolicy),c.crossorigin==="use-credentials"?s.credentials="include":c.crossorigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function l(c){if(c.ep)return;c.ep=!0;const s=a(c);fetch(c.href,s)}};So();const Ot={language:void 0,numberFormat:new Intl.NumberFormat("en",{notation:"compact"})},zo=o=>N(ae,null,function*(){const n=window.vue_lang;new Date().getTime();let a={};try{const s=yield vo({url:window.vue_lang_data,method:"GET"});s.data&&(a=s.data)}catch(s){console.log(s)}const l=bo({defaultLanguage:n,mutedLanguages:["zh-cn"],translations:a,setGlobalProperties:!1,provideDirective:!1,provideComponent:!1});o.use(l),Ot.language=l;const{$gettext:c}=l;window.$i18n=c;try{Ot.numberFormat=new Intl.NumberFormat(n,{notation:"compact"})}catch(s){console.error("Intl.NumberFormat unsupported lang",n,s)}}),H=()=>{if(Ot.language)return Ot.language;throw new Error("I18N Uninitialized!")},Ie=()=>({$gettext:(o,n,a)=>{if(Ot.language)return Ot.language.$gettext(o,n,a);throw new Error("I18N Uninitialized!")},$ngettext:(o,n,a,l,c)=>{if(Ot.language)return Ot.language.$ngettext(o,n,a,l,c);throw new Error("I18N Uninitialized!")}}),De=o=>typeof o=="number"?Ot.numberFormat.format(o):"?",{$gettext:Po,$ngettext:RP}=Ie(),Ta=(o,n)=>N(ae,null,function*(){return new Promise((a,l)=>N(ae,null,function*(){try{const c=yield fetch(o,n);if(Math.floor(c.status/100)!=2)throw c.status+" "+c.statusText;const s=lt({},c);s.data=yield c.json(),a(s)}catch(c){const s=c;l(Po("\u7F51\u7EDC\u5F02\u5E38\uFF1A")+((s==null?void 0:s.message)||c))}}))});class na{constructor(n){ve(this,"config",{baseURL:"",headers:{}});ve(this,"useRequest",n=>n);ve(this,"useResponse",n=>n);ve(this,"useError",n=>n);n.baseURL&&(this.config.baseURL=n.baseURL),n.headers&&(this.config.headers=n.headers)}static create(n){return new na(n)}Do(n,a){return N(this,null,function*(){return new Promise((l,c)=>N(this,null,function*(){try{const s=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});n=`${s.baseURL||""}${n}`,a.headers==null&&(a.headers={}),s.headers&&(a.headers=lt({},s.headers));const _=yield fetch(n,a),g=lt({},_);g.data=yield _.json(),l(this.useResponse(g))}catch(s){this.useError(s),c(s)}}))})}TEXT(n,a){return N(this,null,function*(){return new Promise((l,c)=>N(this,null,function*(){try{const s=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});n=`${s.baseURL||""}${n}`,a.headers==null&&(a.headers={}),s.headers&&(a.headers=lt({},s.headers));const _=yield fetch(n,a),g=lt({},_);g.data=yield _.text(),l(g)}catch(s){this.useError(s),c(s)}}))})}interceptors(){const n=this;return{requset:{use(a){n.useRequest=a}},response:{use(a,l){n.useResponse=a,l&&(n.useError=l)}}}}}const Ia=na.create({});Ia.interceptors().requset.use(o=>o);Ia.interceptors().response.use(o=>(o.data&&o.data.success==null&&o.data.success==0,o));const{$gettext:Ma,$ngettext:WP}=Ie(),To="/cgi-bin/luci/istore",Io="/cgi-bin/luci/admin";let Ae=!1;const q=(o,n)=>(o.indexOf("//")==-1&&(o=`${To}${o}`),Ta(o,n).then(a=>(a!=null&&a.data&&a.data.success==-1001&&a.data.error=="Forbidden"&&(Ae||(Ae=!0,alert(Ma("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55")),location.reload())),a))),Mo=(o,n)=>(o.indexOf("//")==-1&&(o=`${Io}${o}`),Ta(o,n).then(a=>(a!=null&&a.data&&a.data.success==-1001&&a.data.error=="Forbidden"&&(Ae||(Ae=!0,alert(Ma("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55")),location.reload())),a))),Lo={Statistics:{GET(){return q("/u/network/statistics/",{method:"GET"})}},Status:{GET(){return q("/u/network/status/",{method:"GET"})}},Device:{List:{GET(){return q("/network/device/list/",{method:"GET"})}}},Homebox:{Enable:{POST(){return q("/network/homebox/enable/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},CheckPublickNet:{POST(o){return q("/network/checkPublicNet/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetInterfaceConfig:{GET(){return q("/network/interface/config/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}},POSTInterfaceConfig:{POST(o){return q("/network/interface/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},PortList:{GET(){return q("/network/port/list/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Oo={Version:{GET(){return q("/u/system/version/",{method:"GET"})}},CheckUpdate:{GET(){return q("/system/check-update/",{method:"GET"})}},AutoCheckUpdate:{POST(o){return q("/system/auto-check-update/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Reboot:{POST(o){return q("/system/reboot/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Status:{GET(){return q("/system/status/",{method:"GET"})}}},No={Disk:{Status:{GET(){return q("/nas/disk/status/",{method:"GET"})}},Erase:{POST(o){return q("/nas/disk/erase",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Init:{POST:o=>q("/nas/disk/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},InitRest:{POST:o=>q("/nas/disk/initrest/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},Partition:{Format:{POST:o=>q("/nas/disk/partition/format",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},Mount:{POST:o=>q("/nas/disk/partition/mount",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Service:{Status:{GET(){return q("/u/nas/service/status/",{method:"GET"})}}},Samba:{Create:{POST(o){return q("/nas/samba/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Webdav:{Create:{POST(o){return q("/nas/webdav/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Status:{GET(){return q("/nas/webdav/status/",{method:"GET"})}}},Linkease:{Enable:{POST(){return q("/u/nas/linkease/enable",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Sandbox:{POST(o){return q("/nas/sandbox/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetSandbox:{GET(){return q("/nas/sandbox/",{method:"GET"})}},SandboxDisks:{GET(){return q("/nas/sandbox/disks/",{method:"GET"})}},SandboxCommit:{POST(){return q("/u/nas/sandbox/commit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify({})})}},SandboxReset:{POST(){return q("/nas/sandbox/reset/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}},SandboxExit:{POST(){return q("/nas/sandbox/exit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Vo={Check:{POST(o){return q("/app/check/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Install:{POST(o){return q("/app/install/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Go={Pppoe:{GET(){return q("/guide/pppoe/",{method:"GET"})},POST(o){return q("/guide/pppoe/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DnsConfig:{GET(){return q("/guide/dns-config/",{method:"GET"})},POST(o){return q("/guide/dns-config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DhcpClient:{POST(o){return q("/guide/dhcp-client/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},ClientModel:{GET(){return q("/guide/client-mode/",{method:"GET"})},POST(o){return q("/guide/client-mode/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GatewayRouter:{POST(o){return q("/guide/gateway-router/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DockerStatus:{GET(){return q("/guide/docker/status/",{method:"GET"})}},DockerPartitionList:{GET(){return q("/guide/docker/partition/list/",{method:"GET"})}},DockerTransfer:{POST(o){return q("/guide/docker/transfer/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DockerSwitch:{POST(o){return q("/guide/docker/switch/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DownloadService:{Status:{GET(){return q("/guide/download-service/status/",{method:"GET"})}}},DownloadPartition:{List:{GET(){return q("/guide/download/partition/list/",{method:"GET"})}}},Aria2Init:{POST(o){return q("/guide/aria2/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},qbitorrentInit:{POST(o){return q("/guide/qbittorrent/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},transmissionInit:{POST(o){return q("/guide/transmission/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetLan:{GET(){return q("/guide/lan/",{method:"GET"})}},LanIp:{POST(o){return q("/guide/lan/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},SoftSource:{POST(o){return q("/guide/soft-source/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetSoftSource:{GET(){return q("/guide/soft-source/",{method:"GET"})}},SoftSourceList:{GET(){return q("/guide/soft-source/list/",{method:"GET"})}},PostDdns:{POST(o){return q("/u/guide/ddns/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},GetDdns:{GET(){return q("/u/guide/ddns/",{method:"GET"})}},Ddnsto:{POST(o){return q("/guide/ddnsto/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},DdntoConfig:{GET(){return q("/guide/ddnsto/config/",{method:"GET"})}},DdnstoAddress:{POST(o){return q("/guide/ddnsto/address/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},jo={Create:{POST(o){return q("/raid/create/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Delete:{POST(o){return q("/raid/delete/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Add:{POST(o){return q("/raid/add/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Remove:{POST(o){return q("/raid/remove/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Recover:{POST(o){return q("/raid/recover/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Detail:{POST(o){return q("/raid/detail/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},List:{GET(){return q("/raid/list/",{method:"GET"})}},CreateList:{GET(){return q("/raid/create/list/",{method:"GET"})}},Autofix:{GET(){return q("/raid/autofix/",{method:"GET"})}}},Uo={Log:{GET(){return q("/smart/log/",{method:"GET"})}},List:{GET(){return q("/u/smart/list/",{method:"GET"})}},Config:{GET(){return q("/smart/config/",{method:"GET"})},POST(o){return q("/smart/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}},Test:{POST(o){return q("/u/smart/test/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})},Result:{POST(o){return q("/smart/test/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Attribute:{Result:{POST(o){return q("/smart/attribute/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}},Extend:{Result:{POST(o){return q("/smart/extend/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(o)})}}}},qo={List:{GET(){return q("/wireless/list-iface/",{method:"GET"})}},Switch:{POST(o){return q("/wireless/enable-iface/",{body:JSON.stringify(o),method:"POST"})}},Power:{POST(o){return q("/wireless/set-device-power/",{body:JSON.stringify(o),method:"POST"})}},Edit:{POST(o){return q("/wireless/edit-iface/",{body:JSON.stringify(o),method:"POST"})}},Setup:{POST(o){return q("/wireless/setup/",{body:JSON.stringify(o),method:"POST"})}}},Ro={getInstalled:{GET(){return Mo("/store/installed/",{method:"GET"})}},needSetup:{GET(){return q("/guide/need/setup/",{method:"GET"})}},setPassword:{POST(o){return q("/system/setPassword/",{body:JSON.stringify(o),method:"POST"})}},completeGuide:{POST(){return q("/guide/finish/setup/",{method:"POST"})}}},Wo={listDevices:{GET(){return q("/lanctrl/listDevices/",{method:"GET"})}},staticDeviceConfig:{POST(o){return q("/lanctrl/staticDeviceConfig/",{body:JSON.stringify(o),method:"POST"})}},globalConfigs:{GET(){return q("/lanctrl/globalConfigs/",{method:"GET"})}},speedLimitConfig:{POST(o){return q("/lanctrl/speedLimitConfig/",{body:JSON.stringify(o),method:"POST"})}},listStaticDevices:{GET(){return q("/lanctrl/listStaticDevices/",{method:"GET"})}},listSpeedLimitedDevices:{GET(){return q("/lanctrl/listSpeedLimitedDevices/",{method:"GET"})}},dhcpGatewayConfig:{POST(o){return q("/lanctrl/dhcpGatewayConfig/",{body:JSON.stringify(o),method:"POST"})}},dhcpTagsConfig:{POST(o){return q("/lanctrl/dhcpTagsConfig/",{body:JSON.stringify(o),method:"POST"})}},enableSpeedLimit:{POST(o){return q("/lanctrl/enableSpeedLimit/",{body:JSON.stringify(o),method:"POST"})}},enableFloatGateway:{POST(o){return q("/lanctrl/enableFloatGateway/",{body:JSON.stringify(o),method:"POST"})}},speedsForDevices:{GET(){return q("/lanctrl/speedsForDevices/",{method:"GET"})}},speedsForOneDevice:{POST(o){return q("/lanctrl/speedsForOneDevice/",{body:JSON.stringify(o),method:"POST"})}}};var Ho=Object.freeze(Object.defineProperty({__proto__:null,Network:Lo,System:Oo,Nas:No,App:Vo,Guide:Go,Raid:jo,Smart:Uo,Quickwifi:qo,GuidePage:Ro,DeviceMangement:Wo},Symbol.toStringTag,{value:"Module"})),j=lt({},Ho);const ia=we("app",{state:()=>({portitemStyle:{show:!1,left:0,top:0,portitem:{name:"",macAddress:"",linkSpeed:"",linkState:"",rx_packets:"",tx_packets:"",interfaceNames:[],master:"",duplex:""}}})});we("guide",{});const Jo=we("nas",{state:()=>({webdav:{}})}),Fe=we("network",{state:()=>({status:{},deviceList:{}}),getters:{},actions:{updateNetworkStatus(o){this.status=o},requestDeviceList(){j.Network.Device.List.GET().then(o=>{if(o!=null&&o.data){const{result:n}=o==null?void 0:o.data;n&&(this.deviceList=n)}})},incrTime(){this.status.uptimeStamp&&this.status.uptimeStamp++}}}),Me=we("system",{state:()=>({version:{},checkUpdate:null,updateChecked:!1,systemStatus:{}}),getters:{},actions:{incrTime(){var o;(o=this.systemStatus)!=null&&o.uptime&&this.systemStatus.uptime++},requestVersion(){j.System.Version.GET().then(o=>{var n;(n=o==null?void 0:o.data)!=null&&n.result&&(this.version=o.data.result)})},requestCheckUpdate(){this.updateChecked||(this.updateChecked=!0,j.System.CheckUpdate.GET().then(o=>{var n;(n=o==null?void 0:o.data)!=null&&n.result&&(this.checkUpdate=o.data.result)}).finally(()=>{this.checkUpdate==null&&(this.checkUpdate={needUpdate:!1,msg:"skip"})}))},updateSystemStatus(o){this.systemStatus=o}}});let _a=!1;const Zo=()=>{if(_a)return;_a=!0;let o=!0,n=!0;const a=Fe(),l=Me(),c=function(){return(!o&&document.hidden?Promise.resolve():j.System.Status.GET().then(u=>{u!=null&&u.data.result&&l.updateSystemStatus(u.data.result)})).finally(()=>{setTimeout(c,5e3),o&&(setInterval(()=>{l.incrTime()},1e3),o=!1)})},s=function(){return(!n&&document.hidden?Promise.resolve():j.Network.Status.GET().then(u=>{if(u!=null&&u.data){const{result:_}=u==null?void 0:u.data;_&&a.updateNetworkStatus(_)}})).finally(()=>{setTimeout(s,5e3),n&&(setInterval(()=>{a.incrTime()},1e3),n=!1)})};s(),a.requestDeviceList(),setTimeout(()=>{l.requestVersion(),c()},1100)};var O=(o,n)=>{const a=o.__vccOpts||o;for(const[l,c]of n)a[l]=c;return a};const Ko=T({setup(o){const{$gettext:n,$ngettext:a}=H(),l=ia(),c=Q(()=>l.portitemStyle.portitem),s=Q(()=>l.portitemStyle.show),u=Q(()=>({bottom:`calc(100% - ${l.portitemStyle.top}px)`,left:`${l.portitemStyle.left}px`})),_=f=>{switch(f){case"full":return n("\u5168\u53CC\u5DE5");case"half":return n("\u534A\u53CC\u5DE5")}},g=f=>{l.portitemStyle.show=!0},p=f=>{l.portitemStyle.show=!1};return(f,m)=>e(s)?(r(),d("div",{key:0,class:"disk-item-tooltip",style:ft(e(u)),onMouseenter:g,onMouseleave:p},[t("div",null,i(_(e(c).duplex)),1),t("div",null,i(e(n)("\u540D\u79F0\uFF1A"))+i(e(c).name||"--"),1),t("div",null,i(e(n)("MAC\uFF1A"))+i(e(c).macAddress||"--"),1),t("div",null,i(e(n)("\u63A5\u6536\uFF1A"))+i(e(c).rx_packets||"--"),1),t("div",null,i(e(n)("\u53D1\u9001\uFF1A"))+i(e(c).tx_packets||"--"),1)],36)):D("",!0)}});var Qo=O(Ko,[["__scopeId","data-v-41cbce66"]]);const Xo={id:"main"},tn=T({setup(o){return(n,a)=>{const l=ht("router-view");return r(),d("div",Xo,[B(l),B(Qo)])}}});var en=O(tn,[["__scopeId","data-v-2d97dedc"]]);const an={},on={t:"1640593669834",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"54870",width:"128",height:"128"},nn=t("path",{d:"M148.7872 57.4464h177.152c64.9216 0 118.0672 53.1456 118.0672 118.0672v295.2192H148.7872C83.8656 470.7328 30.72 417.5872 30.72 352.5632v-177.152C30.72 110.592 83.8656 57.4464 148.7872 57.4464z m0 531.3536h295.2192v295.2192c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152C83.8656 1001.984 30.72 948.9408 30.72 883.9168v-177.152C30.72 641.9456 83.8656 588.8 148.7872 588.8z m0 0M768.7168 559.2064L562.0736 346.7264c-23.6544-17.7152-35.4304-53.1456-35.4304-82.6368s11.776-59.0848 35.4304-82.6368L686.08 57.4464C733.2864 10.24 810.0864 10.24 851.3536 57.4464l124.0064 124.0064c23.6544 23.6544 35.4304 53.1456 35.4304 82.6368s-11.776 59.0848-35.4304 82.6368L768.7168 559.2064z m0-478.208c-17.7152 0-29.4912 5.9392-41.3696 17.7152l-123.904 124.0064c-11.776 11.776-17.7152 23.6544-17.7152 41.3696s5.9392 29.4912 17.7152 41.3696l165.2736 165.2736 165.2736-165.2736c11.776-11.776 17.7152-23.6544 17.7152-41.3696s-5.9392-29.4912-17.7152-41.3696L809.984 98.7136c-11.776-11.776-23.552-17.7152-41.2672-17.7152z m0 0","p-id":"54871"},null,-1),rn=t("path",{d:"M562.0736 588.8h295.2192c64.9216 0 118.0672 53.1456 118.0672 118.0672v177.152c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152c-64.9216 0-118.0672-53.1456-118.0672-118.0672V588.8z m0 0","p-id":"54872"},null,-1),sn=[nn,rn];function dn(o,n){return r(),d("svg",on,sn)}var ln=O(an,[["render",dn]]);const cn={},un={t:"1640598743438",class:"icon",viewBox:"0 0 1036 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"65341",width:"128",height:"128"},pn=t("path",{d:"M984.177778 432.355556l-45.511111 0c-22.755556 0-45.511111-17.066667-51.2-39.822222l-28.444444-68.266667C847.644444 312.888889 853.333333 284.444444 870.4 267.377778l34.133333-34.133333c17.066667-17.066667 17.066667-39.822222 0-56.888889l-56.888889-56.888889c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-34.133333 34.133333C739.555556 170.666667 711.111111 176.355556 694.044444 164.977778L625.777778 136.533333c-22.755556-5.688889-39.822222-28.444444-39.822222-51.2L585.955556 39.822222c0-22.755556-17.066667-39.822222-39.822222-39.822222L472.177778 0C449.422222 0 432.355556 17.066667 432.355556 39.822222l0 45.511111c0 22.755556-17.066667 45.511111-39.822222 51.2L329.955556 164.977778C312.888889 176.355556 284.444444 170.666667 267.377778 153.6L233.244444 119.466667c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-56.888889 56.888889c-17.066667 17.066667-17.066667 39.822222 0 56.888889l34.133333 34.133333C170.666667 284.444444 176.355556 312.888889 164.977778 329.955556L136.533333 398.222222C130.844444 415.288889 108.088889 432.355556 85.333333 432.355556l-45.511111 0C17.066667 432.355556 0 449.422222 0 472.177778l0 79.644444c0 22.755556 17.066667 39.822222 39.822222 39.822222l45.511111 0c22.755556 0 45.511111 17.066667 51.2 39.822222l28.444444 68.266667C176.355556 711.111111 170.666667 739.555556 153.6 756.622222l-34.133333 34.133333c-17.066667 17.066667-17.066667 39.822222 0 56.888889l56.888889 56.888889c17.066667 17.066667 39.822222 17.066667 56.888889 0l34.133333-34.133333C284.444444 853.333333 312.888889 847.644444 329.955556 859.022222L398.222222 887.466667c22.755556 5.688889 39.822222 28.444444 39.822222 51.2l0 45.511111c0 22.755556 17.066667 39.822222 39.822222 39.822222l79.644444 0c22.755556 0 39.822222-17.066667 39.822222-39.822222l0-45.511111c0-22.755556 17.066667-45.511111 39.822222-51.2l68.266667-28.444444c17.066667-11.377778 45.511111-5.688889 62.577778 11.377778l34.133333 34.133333c17.066667 17.066667 39.822222 17.066667 56.888889 0l56.888889-56.888889c17.066667-17.066667 17.066667-39.822222 0-56.888889l-34.133333-34.133333c-17.066667-17.066667-17.066667-45.511111-11.377778-62.577778l28.444444-68.266667c5.688889-22.755556 28.444444-39.822222 51.2-39.822222l45.511111 0c22.755556 0 39.822222-17.066667 39.822222-39.822222L1035.377778 472.177778C1024 449.422222 1006.933333 432.355556 984.177778 432.355556L984.177778 432.355556zM711.111111 512c0 108.088889-91.022222 199.111111-199.111111 199.111111-108.088889 0-199.111111-85.333333-199.111111-199.111111 0-108.088889 85.333333-199.111111 199.111111-199.111111C620.088889 312.888889 711.111111 403.911111 711.111111 512L711.111111 512zM711.111111 512","p-id":"65342"},null,-1),fn=[pn];function mn(o,n){return r(),d("svg",un,fn)}var gn=O(cn,[["render",mn]]);const vn={},bn={t:"1640599890701",class:"icon",viewBox:"0 0 1565 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"76947",width:"128",height:"128"},hn=t("path",{d:"M1206.477959 299.331595c-27.357038 0-53.867311 3.354494-79.465683 9.151581C1078.518669 130.792698 916.428217 0 723.365689 0 492.068443 0 304.575027 187.493416 304.575027 418.790662c0 16.055976 1.074741 31.786273 2.865975 47.386299-9.184149-0.911901-18.400865-1.40042-27.812989-1.40042C125.191018 464.743973 0 589.934991 0 744.371987c0 154.469563 125.191018 279.628013 279.595446 279.628013 59.990077 0 221.233764 0 394.527575 0l0-302.295274L496.986197 721.704726l285.457668-339.031868 285.457668 339.031868-177.136823 0 0 302.295274c139.748871 0 262.204185 0 315.71325 0 197.947713 0 358.40977-168.34349 358.40977-366.291203S1404.425673 299.331595 1206.477959 299.331595z","p-id":"76948"},null,-1),_n=[hn];function xn(o,n){return r(),d("svg",bn,_n)}var wn=O(vn,[["render",xn]]);const kn={},yn={t:"1640599792937",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"68605",width:"128",height:"128"},Fn=t("path",{d:"M512 825.6c-211.2 0-377.6-57.6-377.6-128l0 0L134.4 896l0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0 0-204.8 0 0C889.6 768 723.2 825.6 512 825.6L512 825.6z","p-id":"68606"},null,-1),En=t("path",{d:"M512 544c-211.2 0-377.6-57.6-377.6-128l0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 416l0 0C889.6 486.4 723.2 544 512 544L512 544z","p-id":"68607"},null,-1),$n=t("path",{d:"M889.6 128 889.6 128c0-70.4-166.4-128-377.6-128C300.8 0 134.4 57.6 134.4 128l0 0 0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 128 889.6 128 889.6 128zM512 217.6c-153.6 0-281.6-44.8-281.6-96 0-51.2 128-96 281.6-96 153.6 0 281.6 44.8 281.6 96C793.6 179.2 665.6 217.6 512 217.6L512 217.6z","p-id":"68608"},null,-1),Cn=[Fn,En,$n];function Dn(o,n){return r(),d("svg",yn,Cn)}var Bn=O(kn,[["render",Dn]]);const Yn={},An={t:"1640575557247",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4211",width:"128",height:"128"},Sn=t("path",{d:"M560 800l-10.464-416h-75.072L464 800h96z m-14.144-493.984c9.44-9.312 14.144-20.672 14.144-34.016 0-13.6-4.704-24.992-14.144-34.208A46.784 46.784 0 0 0 512 224c-13.12 0-24.448 4.608-33.856 13.792A45.856 45.856 0 0 0 464 272c0 13.344 4.704 24.704 14.144 34.016 9.408 9.312 20.704 13.984 33.856 13.984 13.12 0 24.448-4.672 33.856-13.984zM512 32C246.912 32 32 246.912 32 512c0 265.088 214.912 480 480 480 265.088 0 480-214.912 480-480 0-265.088-214.912-480-480-480z m0 64c229.76 0 416 186.24 416 416s-186.24 416-416 416S96 741.76 96 512 282.24 96 512 96z","p-id":"4212"},null,-1),zn=[Sn];function Pn(o,n){return r(),d("svg",An,zn)}var Tn=O(Yn,[["render",Pn]]);const In={},Mn={t:"1640681742480",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"80687",width:"128",height:"128"},Ln=t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"80688"},null,-1),On=t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"80689"},null,-1),Nn=t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"80690"},null,-1),Vn=t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"80691"},null,-1),Gn=t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"80692"},null,-1),jn=t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"80693"},null,-1),Un=t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"80694"},null,-1),qn=t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"80695"},null,-1),Rn=t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"80696"},null,-1),Wn=t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"80697"},null,-1),Hn=t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80698"},null,-1),Jn=t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80699"},null,-1),Zn=t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80700"},null,-1),Kn=t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80701"},null,-1),Qn=t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80702"},null,-1),Xn=t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"80703"},null,-1),ti=t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"80704"},null,-1),ei=t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"80705"},null,-1),ai=t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"80706"},null,-1),oi=[Ln,On,Nn,Vn,Gn,jn,Un,qn,Rn,Wn,Hn,Jn,Zn,Kn,Qn,Xn,ti,ei,ai];function ni(o,n){return r(),d("svg",Mn,oi)}var ii=O(In,[["render",ni]]);const ri={},si={t:"1640775712185",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2996",width:"128",height:"128"},di=t("path",{d:"M894.185422 128.023792 129.814578 445.743994 445.99982 577.744353 571.860343 893.929596Z","p-id":"2997"},null,-1),li=[di];function ci(o,n){return r(),d("svg",si,li)}var ui=O(ri,[["render",ci]]);const pi={class:"progress"},fi=T({props:{value:{type:Number,required:!0},text:{type:String}},setup(o){const n=o,a=Q(()=>n.value>=80?"#e45e5e":n.value>=70?"#ff9800":n.value>=60?"#297ff3":n.value>0?"#53c31b":"");return(l,c)=>(r(),d("div",pi,[t("div",{class:st(["progress-value",`${o.value>50}`]),style:ft({width:`${o.value}%`,backgroundColor:e(a)})},[t("span",null,i(o.text),1)],6),Et(l.$slots,"default",{},void 0,!0)]))}});var La=O(fi,[["__scopeId","data-v-3ee635ef"]]);const mi={},gi={height:"32",width:"64",t:"1649907260906",viewBox:"-8 248 1045 537",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink"},vi=t("path",{d:"M764.904497 251.418146 259.086289 251.418146c-143.076626 0-259.065314 115.989711-259.065314 259.065314 0 143.077649 115.988688 259.063267 259.065314 259.063267l505.818207 0c143.074579 0 259.063267-115.985618 259.063267-259.063267C1023.967764 367.407857 907.980099 251.418146 764.904497 251.418146zM764.904497 747.164974c-130.507356 0-236.682537-106.175181-236.682537-236.682537S634.397141 273.798876 764.904497 273.798876s236.683561 106.176205 236.683561 236.683561S895.411853 747.164974 764.904497 747.164974z","p-id":"2794",fill:"#52C41A"},null,-1),bi=[vi];function hi(o,n){return r(),d("svg",gi,bi)}var _i=O(mi,[["render",hi]]);const xi={},wi={height:"32",width:"64",t:"1649907515643",viewBox:"-8 248 1045 537",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2971","xmlns:xlink":"http://www.w3.org/1999/xlink"},ki=t("path",{d:"M764.867148 249.793136 259.0735 249.793136c-143.070486 0-259.052011 115.984594-259.052011 259.052011 0 143.07151 115.982548 259.050987 259.052011 259.050987l505.793648 0c143.067416 0 259.050987-115.979478 259.050987-259.050987C1023.917112 365.778754 907.933541 249.793136 764.867148 249.793136zM259.0735 745.516428c-130.501216 0-236.671281-106.172111-236.671281-236.671281 0-130.501216 106.170065-236.671281 236.671281-236.671281S495.744781 378.344954 495.744781 508.84617C495.744781 639.34534 389.574716 745.516428 259.0735 745.516428z","p-id":"2972",fill:"#999"},null,-1),yi=[ki];function Fi(o,n){return r(),d("svg",wi,yi)}var Ei=O(xi,[["render",Fi]]);const $i={class:"checkbox_switch"},Ci={class:"checkbox_switch_on"},Di={class:"checkbox_switch_off"},Bi=T({props:{modelValue:{type:Boolean,required:!0}},emits:["update:modelValue"],setup(o,{emit:n}){const a=o,l=Q({get:()=>a.modelValue.valueOf(),set:c=>n("update:modelValue",c)});return(c,s)=>(r(),d("label",$i,[L(t("input",{type:"checkbox","onUpdate:modelValue":s[0]||(s[0]=u=>ho(l)?l.value=u:null)},null,512),[[qt,e(l)]]),t("span",Ci,[B(_i)]),t("span",Di,[B(Ei)]),Et(c.$slots,"default",{},void 0,!0)]))}});var Oa=O(Bi,[["__scopeId","data-v-54af3568"]]);const Yi={},Ai={t:"1641369474206",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7685",width:"128",height:"128"},Si=t("path",{d:"M757.76 637.44l-218.88 245.76c-14.72 16.64-40.32 16.64-54.4 0L265.6 637.44C244.48 613.76 261.12 576 293.12 576l437.76 0C762.24 576 779.52 613.76 757.76 637.44z","p-id":"7686"},null,-1),zi=[Si];function Pi(o,n){return r(),d("svg",Ai,zi)}var Ti=O(Yi,[["render",Pi]]);const Ii={},Mi={t:"1641369492518",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7831",width:"128",height:"128"},Li=t("path",{d:"M758.4 385.92 539.52 140.16c-14.72-16.64-40.32-16.64-54.4 0L266.24 385.92C244.48 409.6 261.76 448 293.12 448l437.76 0C762.88 448 779.52 409.6 758.4 385.92z","p-id":"7832"},null,-1),Oi=[Li];function Ni(o,n){return r(),d("svg",Mi,Oi)}var Vi=O(Ii,[["render",Ni]]);const Gi={};function ji(o,n){return r(),d("article",null,[Et(o.$slots,"default",{},void 0,!0)])}var Ui=O(Gi,[["render",ji],["__scopeId","data-v-995510fc"]]);const qi={class:"cover"},Ri={class:"thumbnail"},Wi=T({emits:["click"],setup(o,{emit:n}){const a=()=>{n("click")};return(l,c)=>(r(),J(Ui,null,{default:G(()=>[t("a",{onClick:a},[t("div",qi,[t("div",Ri,[Et(l.$slots,"default",{},void 0,!0)])])])]),_:3}))}});var Hi=O(Wi,[["__scopeId","data-v-782f97c0"]]);const Ji={class:"select-editable"},Zi={selected:"",value:""},Ki=["value"],Qi={value:"useInput"},Xi=["placeholder"],tr=T({props:{modelValue:{type:String,required:!0},title:{type:String,default:""},options:{type:Array,default:[]}},emits:["update:modelValue"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:c}=H(),s=E(""),u=E(""),_=Q({get:()=>a.modelValue.valueOf(),set:m=>n("update:modelValue",m)}),g=m=>{m===s.value||s.value==="useInput"&&m===u.value||(m===""||a.options.some(w=>w.key===m)?s.value=m:(u.value=m,s.value="useInput"))};Yt(()=>a.modelValue,m=>{g(m)}),At(()=>{const m=_.value;g(m)});const p=m=>{s.value==="useInput"?_.value=u.value:_.value=s.value},f=m=>{_.value=u.value};return(m,w)=>(r(),d("label",null,[t("div",Ji,[L(t("select",{"onUpdate:modelValue":w[0]||(w[0]=y=>s.value=y),autocomplete:"off",onChange:p},[t("option",Zi,i(e(l)("\u8BF7\u9009\u62E9%{title}",{title:o.title})),1),(r(!0),d(U,null,tt(o.options,(y,x)=>(r(),d("option",{value:y.key,key:x},i(y.value||y.key),9,Ki))),128)),t("option",Qi,i(e(l)("- -\u81EA\u5B9A\u4E49- -")),1)],544),[[dt,s.value,void 0,{trim:!0}]]),s.value=="useInput"?L((r(),d("input",{key:0,type:"text","onUpdate:modelValue":w[1]||(w[1]=y=>u.value=y),required:"",placeholder:e(l)("\u8BF7\u8F93\u5165%{title}",{title:o.title}),onChange:f},null,40,Xi)),[[et,u.value,void 0,{trim:!0}]]):D("",!0)])]))}});var Jt=O(tr,[["__scopeId","data-v-c446588c"]]);const er={t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},ar=T({props:{size:{type:[Number,String],default:50},color:{type:String,default:"#fff"}},setup(o){const n=a=>{if(a==null)return;if(typeof a=="number")return a+"px";const l=a.toString();return parseInt(l)+""==l?l+"px":l};return(a,l)=>(r(),d("div",{class:"quick-loading",style:ft({width:n(o.size),height:n(o.size)})},[(r(),d("svg",er,[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454",style:ft({fill:o.color})},null,4)]))],4))}});var or=O(ar,[["__scopeId","data-v-47c6049a"]]);const nr={},ir={t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},rr=t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""},null,-1),sr=[rr];function dr(o,n){return r(),d("svg",ir,sr)}var lr=O(nr,[["render",dr]]);const cr={},ur={width:"128",height:"128",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},pr=Vt('',1),fr=[pr];function mr(o,n){return r(),d("svg",ur,fr)}var gr=O(cr,[["render",mr]]);const vr=o=>(it("data-v-0cc5bf50"),o=o(),rt(),o),br=["href","title"],hr=vr(()=>t("svg",{t:"1684144670421",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4343"},[t("path",{d:"M512 74.666667c241.066667 0 437.333333 196.266667 437.333333 437.333333S753.066667 949.333333 512 949.333333 74.666667 753.066667 74.666667 512 270.933333 74.666667 512 74.666667zM512 704c-23.466667 0-42.666667 19.2-42.666667 42.666667s19.2 42.666667 42.666667 42.666666 42.666667-19.2 42.666667-42.666666-19.2-42.666667-42.666667-42.666667z m0-458.666667c-76.8 0-138.666667 61.866667-138.666667 138.666667 0 17.066667 14.933333 32 32 32s32-14.933333 32-32c0-40.533333 34.133333-74.666667 74.666667-74.666667s74.666667 34.133333 74.666667 74.666667c0 2.133333 0 6.4-2.133334 10.666667-6.4 14.933333-19.2 32-40.533333 51.2-10.666667 10.666667-21.333333 19.2-34.133333 27.733333-2.133333 2.133333-6.4 4.266667-8.533334 6.4l-6.4 4.266667c-8.533333 6.4-14.933333 17.066667-14.933333 27.733333v108.8c2.133333 17.066667 14.933333 29.866667 32 29.866667h2.133333c17.066667-2.133333 29.866667-14.933333 29.866667-32v-89.6l12.8-10.666667c10.666667-8.533333 19.2-17.066667 29.866667-25.6 27.733333-25.6 46.933333-49.066667 57.6-74.666667 4.266667-10.666667 6.4-23.466667 6.4-34.133333 0-76.8-61.866667-138.666667-138.666667-138.666667z",fill:"#666666","p-id":"4344"})],-1)),_r=[hr],xr=T({props:{type:null},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{switch(n.type){case"disk":return"https://www.linkease.com/rd/8myYAEVA/";case"store":return"https://www.linkease.com/rd/1F58VUTT/";case"docker":return"https://www.linkease.com/rd/2Q28MDtf/";case"download":return"https://www.linkease.com/rd/1tJo1KX-/";case"ddns":return"https://www.linkease.com/rd/3yFiX5-X/";case"network-interface":return"https://www.linkease.com/rd/3ca51a3G/"}});return(s,u)=>(r(),d("a",{href:e(c),target:"_blank",title:e(a)("\u8DF3\u8F6C\u6559\u7A0B")},_r,8,br))}});var wr=O(xr,[["__scopeId","data-v-0cc5bf50"]]),Na={install:o=>{o.component("icon-loading",or),o.component("icon-success",lr),o.component("icon-error",gr),o.component("GlHelp",wr)}};const kr={class:"reusable-card",role:"group"},yr={class:"card-header"},Fr={class:"left"},Er={class:"title"},$r={class:"settings-wrapper"},Cr={key:0,class:"settings-btn"},Dr={class:"dropdown-menu"},Br={class:"card-body"},Yr={props:{title:{type:String,required:!0},showSettings:{type:Boolean,default:!0},isSettingsMenuOpen:{type:Boolean,default:!1}},emits:["settings","update:isSettingsMenuOpen"],setup(o,{emit:n}){const a=o;H(),At(()=>document.addEventListener("click",c)),ke(()=>document.removeEventListener("click",c));const l=Q({get:()=>a.isSettingsMenuOpen,set:s=>n("update:isSettingsMenuOpen",s)}),c=s=>{s.target.closest(".settings-wrapper")||(l.value=!1)};return(s,u)=>(r(),d("div",kr,[t("div",yr,[t("div",Fr,[Et(s.$slots,"icon",{},void 0,!0),t("div",Er,i(o.title),1)]),t("div",$r,[o.showSettings?(r(),d("div",Cr,[Et(s.$slots,"settings",{},void 0,!0)])):D("",!0),B($t,{name:"fade"},{default:G(()=>[L(t("div",Dr,[Et(s.$slots,"settings-menu",{},void 0,!0)],512),[[te,e(l)]])]),_:3})])]),t("div",Br,[Et(s.$slots,"default",{},void 0,!0)])]))}};var Rt=O(Yr,[["__scopeId","data-v-7af4a3d5"]]);const Ar={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Sr=["fill"],zr=["fill"],Pr=["fill"],Zt=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",Ar,[t("path",{d:"M665.6 911.36H358.4c-76.8 0-117.76 0-153.6-20.48-30.72-15.36-56.32-40.96-71.68-71.68-20.48-35.84-20.48-76.8-20.48-153.6v-51.2c0-20.48 15.36-40.96 40.96-40.96s40.96 15.36 40.96 40.96v51.2c0 61.44 0 97.28 10.24 117.76 10.24 15.36 20.48 30.72 40.96 40.96 20.48 10.24 56.32 10.24 117.76 10.24h307.2c61.44 0 97.28 0 117.76-10.24 15.36-10.24 30.72-20.48 40.96-40.96 10.24-20.48 10.24-56.32 10.24-117.76v-51.2c0-20.48 15.36-40.96 40.96-40.96s40.96 15.36 40.96 40.96v51.2c0 76.8 0 117.76-20.48 153.6-15.36 30.72-40.96 56.32-71.68 71.68-35.84 20.48-76.8 20.48-153.6 20.48z","p-id":"4906",fill:o.color},null,8,Sr),t("path",{d:"M512 645.12c-10.24 0-15.36 0-20.48-10.24l-204.8-204.8c-10.24-10.24-10.24-30.72 0-46.08s30.72-10.24 46.08 0l184.32 184.32 184.32-184.32c10.24-10.24 30.72-10.24 46.08 0 10.24 10.24 10.24 30.72 0 46.08l-204.8 204.8c-5.12 5.12-15.36 10.24-20.48 10.24z","p-id":"4907",fill:o.color},null,8,zr),t("path",{d:"M512 645.12c-15.36 0-30.72-15.36-30.72-30.72V153.6c0-15.36 15.36-30.72 30.72-30.72s30.72 15.36 30.72 30.72v460.8c0 15.36-15.36 30.72-30.72 30.72z","p-id":"4908",fill:o.color},null,8,Pr)]))}}),Tr={},Ir={t:"1649668202191",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2338","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"28px",height:"28px"},Mr=t("path",{d:"M288 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2339",fill:"#666"},null,-1),Lr=t("path",{d:"M512 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2340",fill:"#666"},null,-1),Or=t("path",{d:"M736 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2341",fill:"#666"},null,-1),Nr=[Mr,Lr,Or];function Vr(o,n){return r(),d("svg",Ir,Nr)}var Ee=O(Tr,[["render",Vr]]);const Gr={viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none",width:"128",height:"128"},jr=["fill"],Ur=T({props:{color:{type:String,default:"#000000"}},setup(o){return(n,a)=>(r(),d("svg",Gr,[t("path",{d:"M511.232 438.8352L112.9984 40.6016A51.2 51.2 0 0 0 40.6016 112.9984L438.784 511.232 40.6016 909.4656a51.2 51.2 0 1 0 72.3968 72.448l398.2336-398.2848 398.2336 398.2848a51.2 51.2 0 1 0 72.448-72.448l-398.2848-398.2336 398.2848-398.2336A51.2 51.2 0 0 0 909.4656 40.6016L511.232 438.784z","p-id":"1217",fill:o.color},null,8,jr)]))}}),qr=o=>(it("data-v-a96d68d4"),o=o(),rt(),o),Rr={id:"actioner"},Wr={key:0,class:"action-container"},Hr={class:"action-container_header"},Jr=qr(()=>t("div",null,null,-1)),Zr={class:"title"},Kr=["title"],Qr={class:"action-container_body"},Xr=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!1);At(()=>{c.value=!0,document.body.setAttribute("lock-scroll","true")}),Mt(()=>{document.body.removeAttribute("lock-scroll")});const s=()=>{n.Close&&(c.value=!1,setTimeout(()=>{n.Close&&n.Close()},300))};return(u,_)=>(r(),d("div",Rr,[t("div",{class:"bg",onClick:s}),o.type!=null?Et(u.$slots,"default",{key:0},void 0,!0):(r(),d(U,{key:1},[c.value?(r(),d("div",Wr,[t("div",Hr,[Jr,t("div",Zr,i(o.title),1),t("button",{class:"close",title:e(a)("\u5173\u95ED"),onClick:s},[B(Ur)],8,Kr)]),t("div",Qr,[Et(u.$slots,"default",{},void 0,!0)])])):D("",!0)],64))]))}});var ts=O(Xr,[["__scopeId","data-v-a96d68d4"]]);const _t=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(o){return(n,a)=>(r(),J(ts,{Close:o.Close,type:o.type,title:o.title},{default:G(()=>[Et(n.$slots,"default")]),_:3},8,["Close","type","title"]))}}),ra=o=>(it("data-v-0bd83418"),o=o(),rt(),o),es={class:"disk-item"},as=ra(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563338465",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2216",width:"128",height:"128"},[t("path",{d:"M998.4 711.68l-119.467-512c-6.826-42.667-42.666-75.093-87.04-76.8H232.107c-44.374 1.707-80.214 35.84-87.04 78.507L25.6 711.68c-5.12 13.653-6.827 29.013-6.827 42.667 0 76.8 63.147 139.946 141.654 139.946H865.28c78.507 0 141.653-63.146 141.653-139.946 0-13.654-3.413-29.014-8.533-42.667zM394.24 366.933c1.707-51.2 56.32-92.16 124.587-92.16S640 315.733 640 365.227c44.373-1.707 81.92 23.893 83.627 58.026s-34.134 63.147-78.507 64.854h-6.827l-245.76 1.706c-44.373 0-80.213-27.306-80.213-59.733 0-35.84 37.547-63.147 81.92-63.147z m471.04 459.094H160.427c-39.254 0-69.974-30.72-69.974-69.974s32.427-69.973 69.974-69.973H865.28c39.253 0 69.973 30.72 69.973 69.973 1.707 37.547-30.72 69.974-69.973 69.974z m-35.84-92.16c-11.947 0-22.187 8.533-23.893 20.48 0 11.946 8.533 22.186 20.48 23.893h3.413c11.947 0 22.187-10.24 22.187-22.187 0-13.653-8.534-22.186-22.187-22.186z m-46.08 22.186c0-25.6 20.48-46.08 46.08-46.08s46.08 20.48 46.08 46.08-20.48 46.08-46.08 46.08-46.08-20.48-46.08-46.08z","p-id":"2217"})])],-1)),os={class:"disk-item_f"},ns={class:"disk-item_venderModel"},is={class:"disk-item_used"},rs=ra(()=>t("div",{class:"auto"},null,-1)),ss={class:"disk-item-r"},ds={class:"disk-children"},ls=["onClick"],cs=ra(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563581459",class:"icon",viewBox:"0 0 1228 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7132",width:"128",height:"128"},[t("path",{d:"M525.2096 145.3568c1.9968-45.568-35.6864-99.1232-57.4976-99.1232H57.4976C15.872 79.9232 17.8176 145.408 17.8176 145.408h507.392z",fill:"#ECC049","p-id":"7133"}),t("path",{d:"M21.8112 143.36L19.8144 825.1392c0 75.3152 75.3152 152.576 150.6304 152.576h887.9104c75.264 0 150.6304-75.264 150.6304-152.576V297.984c0-75.264-75.3152-152.576-150.6304-152.576h-434.0224L21.8112 143.36z",fill:"#FFD658","p-id":"7134"})])],-1)),us={key:0},ps={key:1},fs=T({props:{disk:{type:Object,required:!0},currDisk:{type:Object},currMountPoint:{type:Object},onDisk:{type:Function,required:!0}},setup(o){var u,_;const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!1);n.currDisk!=null&&((u=n.currDisk)==null?void 0:u.venderModel)==((_=n.disk)==null?void 0:_.venderModel)&&(c.value=!0);const s=g=>{c.value=!c.value,n.onDisk(g,null)};return(g,p)=>{var f;return r(),d("ul",es,[t("li",{class:st(["disk-info",{on:o.disk.venderModel==((f=o.currDisk)==null?void 0:f.venderModel),nopoint:o.disk.childrens==null||o.disk.childrens.length==0}]),onClick:p[0]||(p[0]=m=>s(o.disk))},[as,t("div",os,[t("div",ns,i(o.disk.venderModel),1),t("div",is,i(o.disk.used)+"/"+i(o.disk.size),1)]),rs,t("div",ss,i(o.disk.path),1)],2),L(t("div",ds,[(r(!0),d(U,null,tt(o.disk.childrens,m=>{var w,y;return r(),d("li",{class:st(["disk-children_item",{on:m.uuid==((w=o.currMountPoint)==null?void 0:w.uuid)&&m.path==((y=o.currMountPoint)==null?void 0:y.path)}]),onClick:x=>o.onDisk(o.disk,m)},[cs,m.mountPoint?(r(),d("span",us," \u3010"+i(m.filesystem)+"\u3011 "+i(m.mountPoint)+" \uFF08"+i(m.used)+"/"+i(m.total)+"\uFF09 ["+i(m.uuid)+"] ",1)):(r(),d("span",ps," \u3010"+i(m.filesystem)+"\u3011 "+i(m.mountPoint||m.path||e(a)("\u672A\u6302\u8F7D\u78C1\u76D8"))+" ["+i(m.uuid)+"] ",1))],10,ls)}),256))],512),[[te,c.value]])])}}});var xa=O(fs,[["__scopeId","data-v-0bd83418"]]);let Be=0;const ms={props:{type:String,message:String|Function,Close:Function,countdown:Number},data(){return{show:!1,remain:0}},mounted(){if(window.setTimeout(()=>{this.show=!0},0),this.countdown){this.remain=this.countdown;const o=()=>{this.show&&this.remain>0&&(this.remain=this.remain-1,Be=window.setTimeout(o,1e3))};Be=window.setTimeout(o,1e3)}},computed:{Message(){return this.message+(this.countdown?" "+this.remain+"s":"")}},methods:{Stop(){this.type!="loading"&&(this.show=!1,Be!=0&&clearTimeout(Be),this.Close())}}},Le=o=>(it("data-v-48bf84c6"),o=o(),rt(),o),gs={key:0,class:"loading icon"},vs=Le(()=>t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454"})],-1)),bs=[vs],hs={key:1,class:"success icon"},_s=Le(()=>t("svg",{t:"1632451272305",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M1001.305115 275.874141 431.461709 845.718571c-28.221762 28.221762-73.977875 28.221762-102.20066 0L22.661116 539.116591c-28.222785-28.221762-28.222785-73.979922 0-102.20066 28.221762-28.221762 73.977875-28.221762 102.20066 0l255.500115 255.502162 518.743588-518.743588c28.221762-28.221762 73.977875-28.221762 102.199637 0C1029.5279 201.89422 1029.5279 247.65238 1001.305115 275.874141z","p-id":"2205"})],-1)),xs=[_s],ws={key:2,class:"error icon"},ks=Le(()=>t("svg",{t:"1632451325789",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M823.04 840.32 524.16 540.16l296.32-294.4c12.8-12.8 12.8-33.28 0-45.44-12.8-12.8-33.28-12.8-46.08 0L478.08 494.08 184.96 200.32c-12.8-12.8-33.28-12.8-45.44 0s-12.8 33.28 0 45.44l292.48 293.76-302.72 300.8c-12.8 12.8-12.8 33.28 0 45.44 12.8 12.8 33.28 12.8 46.08 0l302.72-300.16 299.52 300.16c12.8 12.8 33.28 12.8 45.44 0C835.2 873.6 835.2 853.12 823.04 840.32z","p-id":"2205"})],-1)),ys=[ks],Fs={key:3,class:"warning icon"},Es=Le(()=>t("svg",{t:"1632451401172",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1638",width:"128",height:"128"},[t("path",{d:"M512 1021.45211835a60.32985613 60.32985613 0 1 1 60.32985613-60.32985611 60.32985613 60.32985613 0 0 1-60.32985613 60.32985611z m86.85823451-924.97400238L572.32985613 719.80283775a60.32985613 60.32985613 0 0 1-120.65971226 0l-26.52837838-623.32472178c-0.16758294-2.22885301-0.28489098-4.49122263-0.284891-6.78710881a87.14312551 87.14312551 0 0 1 174.28625102 0c0 2.2958862-0.11730806 4.5582558-0.284891 6.78710881z","p-id":"1639"})],-1)),$s=[Es];function Cs(o,n,a,l,c,s){return r(),J($t,{name:"el-fade-in-linear"},{default:G(()=>[c.show?(r(),d("div",{key:0,class:"toast",onClick:n[1]||(n[1]=u=>s.Stop())},[a.type=="loading"?(r(),d("div",gs,bs)):a.type=="success"?(r(),d("div",hs,xs)):a.type=="error"?(r(),d("div",ws,ys)):a.type=="warning"?(r(),d("div",Fs,$s)):D("",!0),t("div",{class:"message",onClick:n[0]||(n[0]=ct(()=>{},["stop"]))},i(s.Message),1)])):D("",!0)]),_:1})}var Ds=O(ms,[["render",Cs],["__scopeId","data-v-48bf84c6"]]);const _e=new Map,oe=o=>{const n=vt(Ds,pt(lt({},o),{Close:()=>{l()}})),a=document.createElement("div");document.body.append(a),n.mount(a);const l=()=>{a.remove(),_e.get(n._uid)&&_e.delete(n._uid)};return o.type=="loading"&&_e.set(n._uid,{Close:l}),(o==null?void 0:o.duration)==0||((o==null?void 0:o.duration)>0?setTimeout(()=>{l()},o==null?void 0:o.duration):setTimeout(()=>{l()},3e3)),{Close:l}},$=o=>oe(o);$.Loading=(o,n)=>oe({type:"loading",message:o||"\u52A0\u8F7D\u4E2D...",duration:0,countdown:n||0});$.Success=o=>oe({type:"success",message:o});$.Error=o=>oe({type:"error",message:o,duration:0});$.Warning=o=>oe({type:"warning",message:o});$.Message=o=>oe({message:o});$.Clear=()=>{_e.forEach((o,n)=>{o.Close(),_e.delete(n)})};const sa=o=>(it("data-v-3dae3be2"),o=o(),rt(),o),Bs=["onSubmit"],Ys={class:"action-header"},As={class:"action-header_title"},Ss={class:"action-body"},zs={class:"disk-info"},Ps=sa(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),Ts={key:0,class:"disk-info_mount-name"},Is={key:1,class:"disk-info_mount-name"},Ms={key:0,class:"label-item"},Ls={class:"label-item_key"},Os={class:"label-item_path"},Ns={class:"label-item"},Vs={class:"label-item_key"},Gs={class:"label-item_value"},js=["disabled"],Us={key:0,value:""},qs={value:"format"},Rs={key:1,value:"default"},Ws={class:"label-item_value"},Hs={key:0,class:"msg"},Js={key:1,class:"msg"},Zs={class:"action-footer"},Ks=sa(()=>t("div",{class:"auto"},null,-1)),Qs=["disabled"],Xs=["disabled"],td={key:1,class:"action result"},ed={class:"action-body"},ad=sa(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),od={class:"action-body_msg"},nd={key:0,class:"action-body_info"},id={key:1,class:"action-body_info"},rd={class:"btns"},sd=T({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close&&n.Close()},s=k=>{k.preventDefault(),n.Cancel&&n.Cancel(),c()},u=k=>{n.Next&&n.Next(k),c()},_=E(!1),g=E(0),p=k=>{g.value=k},f=E(n.action=="nas"?"":"format"),m=E(),w=E(),y=()=>{switch(f.value){case"format":F();return;case"default":x();return;default:$.Warning(a("\u8BF7\u9009\u62E9\u9009\u9879"));return}},x=()=>{let k="";const C=n.mount;if(C!=null&&C.mountPoint!=null&&(k=C.mountPoint),k!=""){u(k);return}$.Warning(a("\u65E0\u6CD5\u8BC6\u522B\u8DEF\u5F84"))},F=()=>{const k=n.disk,C=n.mount;if(C){const A=C.mountPoint||C.path;if(!confirm(a("\u8B66\u544A\uFF1A\u683C\u5F0F\u5316\u4F1A\u6E05\u7A7A %{partname} \u5206\u533A\u6570\u636E\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C",{partname:A||""}))||!confirm(a("\u662F\u5426\u786E\u5B9A\u683C\u5F0F\u5316 %{partname}?",{partname:A||""})))return;h(C);return}if(k){if(!confirm(a("\u8B66\u544A\uFF1A\u8BE5\u64CD\u4F5C\u5C06\u521D\u59CB\u5316 %{model} \u786C\u76D8\u5E76\u521B\u5EFA\u5206\u533A\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C",{model:k.venderModel||""}))||!confirm(a("\u662F\u5426\u786E\u5B9A\u521D\u59CB\u5316?")))return;b(k);return}$.Warning(a("\u65E0\u6CD5\u8BC6\u522B\u6570\u636E"))},b=k=>N(this,null,function*(){if(k.name==null||k.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u540D\u79F0"));return}if(k.path==null||k.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u8DEF\u5F84"));return}_.value=!0;const C=$.Loading(a("\u521D\u59CB\u5316\u4E2D..."));try{const A=yield j.Nas.Disk.Init.POST({name:k.name,path:k.path});if(A!=null&&A.data){const{result:S,error:Y}=A==null?void 0:A.data;Y&&$.Warning(Y),S&&(S.errorInfo?$.Warning(S.errorInfo):($.Success(a("\u521D\u59CB\u5316\u6210\u529F")),S.childrens&&S.childrens.length>0&&(w.value=S.childrens[0]),m.value=S,p(1)))}}catch(A){$.Error(A)}C.Close(),_.value=!1}),h=k=>N(this,null,function*(){if(k.path==null||k.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84"));return}_.value=!0;const C=$.Loading(a("\u683C\u5F0F\u5316\u4E2D..."));try{const A=yield j.Nas.Disk.Partition.Format.POST({path:k.path,uuid:k.uuid,mountPoint:k.mountPoint});if(A!=null&&A.data){const{result:S,error:Y}=A==null?void 0:A.data;Y&&$.Warning(Y),S&&($.Success(a("\u683C\u5F0F\u5316\u6210\u529F")),w.value=S,p(1))}}catch(A){$.Error(A)}C.Close(),_.value=!1}),v=()=>{if(w.value&&w.value.mountPoint){u(w.value.mountPoint);return}$.Warning(a("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25"))};return(k,C)=>(r(),J(_t,{type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>{var A;return[g.value==0?(r(),d("form",{key:0,class:"action format",onSubmit:ct(y,["prevent"])},[t("div",Ys,[t("div",As,i(e(a)("\u786C\u76D8\u914D\u7F6E")),1)]),t("div",Ss,[t("div",zs,[Ps,o.mount?(r(),d("div",Ts,[t("span",null,"\u3010"+i(o.mount.total)+"\u3011",1),t("span",null,i(o.mount.mountPoint||o.mount.path),1)])):o.disk?(r(),d("div",Is,[t("span",null,"\u3010"+i(o.disk.size)+"\u3011",1),t("span",null,i(o.disk.venderModel),1)])):D("",!0)]),o.mount?(r(),d("div",Ms,[t("div",Ls,[t("span",null,i(e(a)("\u76EE\u6807\u5206\u533A")),1)]),t("div",Os,i(o.mount.mountPoint||o.mount.path)+"\uFF08"+i(o.mount.total)+"\uFF09",1)])):D("",!0),t("div",Ns,[t("div",Vs,[t("span",null,i(e(a)("\u683C\u5F0F\u5316\u9009\u9879")),1)]),t("div",Gs,[L(t("select",{"onUpdate:modelValue":C[0]||(C[0]=S=>f.value=S),required:"",disabled:o.action=="disk"},[o.mount!=null?(r(),d("option",Us,i(e(a)("\u8BF7\u9009\u62E9\u9009\u9879")),1)):D("",!0),t("option",qs,i(e(a)("\u683C\u5F0F\u5316")),1),o.mount!=null?(r(),d("option",Rs,i(e(a)("\u4E0D\u683C\u5F0F\u5316,\u4F7F\u7528\u539F\u6587\u4EF6\u7CFB\u7EDF")),1)):D("",!0)],8,js),[[dt,f.value]])]),t("div",Ws,[f.value=="format"?(r(),d("p",Hs,i(e(a)("\u683C\u5F0F\u5316\u4E3AEXT4\u6587\u4EF6\u7CFB\u7EDF")),1)):f.value=="default"?(r(),d("p",Js)):D("",!0)])])]),t("div",Zs,[Ks,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button",disabled:_.value},i(e(a)("\u8FD4\u56DE")),9,Qs),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:_.value},i(e(a)("\u4E0B\u4E00\u6B65")),9,Xs)])],40,Bs)):g.value==1?(r(),d("div",td,[t("div",ed,[ad,t("div",od,i(e(a)("\u683C\u5F0F\u5316\u6210\u529F")),1),m.value?(r(),d("div",nd,[nt(i(e(a)("\u5DF2\u7ECF\u6210\u529F\u683C\u5F0F\u5316\u78C1\u76D8"))+" "+i(m.value.venderModel)+" "+i(e(a)("\u5E76\u6302\u8F7D\u5230"))+" ",1),t("a",null,i((A=w.value)==null?void 0:A.mountPoint),1)])):D("",!0),w.value?(r(),d("div",id,[nt(i(e(a)("\u5DF2\u7ECF\u6210\u529F\u521D\u59CB\u5316\u5206\u533A"))+" ",1),t("a",null,i(w.value.mountPoint),1)])):D("",!0),t("div",rd,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:v},i(o.action=="nas"?e(a)("\u4E0B\u4E00\u6B65"):e(a)("\u5B8C\u6210")),1)])])])):D("",!0)]}),_:1})]),_:1}))}});var dd=O(sd,[["__scopeId","data-v-3dae3be2"]]),da=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(dd,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const ld=o=>(it("data-v-b222ef5e"),o=o(),rt(),o),cd={class:"action list"},ud={class:"action-header"},pd={class:"action-header_title"},fd={class:"action-body"},md={class:"disk-list"},gd={class:"action-msg"},vd={href:"/cgi-bin/luci/admin/system/diskman"},bd={class:"action-footer"},hd=ld(()=>t("div",{class:"auto"},null,-1)),_d=T({props:{Cancel:{type:Function},Next:{type:Function},Close:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!0),s=mt({disks:[],raids:[]});(()=>N(this,null,function*(){const x=yield Promise.all([j.Nas.Disk.Status.GET(),j.Raid.List.GET()]);try{if(x[0]){const F=x[0];F!=null&&F.data.result&&(s.disks=(F==null?void 0:F.data.result.disks)||[])}if(x[1]){const F=x[1];F.data.result&&(s.raids=F.data.result.disks||[])}}catch(F){$.Warning(F)}}))();const _=E(),g=E(),p=(x,F)=>{_.value=x,g.value=F},f=()=>{n.Close&&n.Close()},m=()=>{n.Cancel&&n.Cancel(),f()},w=x=>{n.Next&&n.Next(x),f()},y=()=>{if(_.value==null){$.Warning(a("\u8BF7\u9009\u62E9\u76EE\u6807\u786C\u76D8"));return}if(_.value.childrens!=null&&_.value.childrens.length>0&&g.value==null){$.Warning(a("\u8BF7\u9009\u62E9\u786C\u76D8\u5206\u533A"));return}if(g.value!=null&&(g.value.mountPoint==null||g.value.mountPoint=="")){$.Warning(a("\u8BE5\u5206\u533A\u5C1A\u672A\u6302\u8F7D\uFF0C\u8BF7\u5148\u53BB\u6302\u8F7D"));return}c.value=!1,da({action:"nas",disk:_.value,mount:g.value,Cancel:()=>{c.value=!0},Next:x=>{w(x)}})};return(x,F)=>c.value?(r(),J(_t,{key:0,type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("div",cd,[t("div",ud,[t("div",pd,i(e(a)("\u8BF7\u9009\u62E9\u4E00\u4E2A\u786C\u76D8\u6216\u5206\u533A")),1)]),t("div",fd,[t("div",md,[(r(!0),d(U,null,tt(e(s).disks,b=>(r(),J(xa,{disk:b,onDisk:p,currDisk:_.value,currMountPoint:g.value},null,8,["disk","currDisk","currMountPoint"]))),256)),(r(!0),d(U,null,tt(e(s).raids,b=>(r(),J(xa,{disk:b,onDisk:p,currDisk:_.value,currMountPoint:g.value},null,8,["disk","currDisk","currMountPoint"]))),256))])]),t("div",gd,[t("span",null,[nt(i(e(a)("\u60F3\u8981\u66F4\u7CBE\u786E\u7684\u914D\u7F6E\uFF1F\u8BF7\u524D\u5F80"))+" ",1),t("a",vd,i(e(a)("\u9AD8\u7EA7\u8BBE\u7F6E")),1)])]),t("div",bd,[hd,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:m,type:"button"},i(e(a)("\u8FD4\u56DE")),1),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:y,type:"button"},i(e(a)("\u4E0B\u4E00\u6B65")),1)])])]),_:1})]),_:1})):D("",!0)}});var xd=O(_d,[["__scopeId","data-v-b222ef5e"]]),wd=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(xd,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const kd=o=>(it("data-v-45926ac6"),o=o(),rt(),o),yd={class:"action"},Fd={class:"action-body"},Ed=kd(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),$d={class:"title"},Cd={class:"info"},Dd=["href"],Bd={class:"btns"},Yd=T({props:{Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(""),s=Q(()=>`http://${location.hostname}:${c.value}`);(()=>{j.Nas.Linkease.Enable.POST().then(g=>{var p,f;(p=g==null?void 0:g.data)!=null&&p.result&&(c.value=((f=g.data.result)==null?void 0:f.port)||"")})})();const _=()=>{n.Close&&n.Close(),location.reload()};return(g,p)=>(r(),J(_t,{type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("div",yd,[t("div",Fd,[Ed,t("h2",$d,i(e(a)("\u670D\u52A1\u5DF2\u542F\u52A8")),1),t("div",Cd,[t("span",null,i(e(a)("\u524D\u5F80")),1),t("a",{href:e(s),target:"_blank",rel:"noopener noreferrer"},i(e(s)),9,Dd),t("span",null,i(e(a)("\u7EE7\u7EED\u914D\u7F6E")),1)]),t("div",Bd,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:_},i(e(a)("\u5173\u95ED")),1)])])])]),_:1})]),_:1}))}});var Ad=O(Yd,[["__scopeId","data-v-45926ac6"]]),Sd=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Ad,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const zd=o=>(it("data-v-2b3974a4"),o=o(),rt(),o),Pd=["onSubmit"],Td={class:"action-header"},Id={class:"action-header_title"},Md={class:"action-body"},Ld={class:"label-item"},Od={class:"label-item_key"},Nd={class:"label-item_value"},Vd=["value"],Gd={class:"label-item"},jd={class:"label-item_key"},Ud={class:"label-item_value"},qd=["placeholder"],Rd={class:"label-item"},Wd={class:"label-item_key"},Hd={class:"label-item_value"},Jd={class:"action-footer"},Zd=zd(()=>t("div",{class:"auto"},null,-1)),Kd=["disabled"],Qd=["disabled"],Xd=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=f=>{f.preventDefault(),n.Close&&n.Close()},s=E(!1),u=E({username:"root",password:"",rootPath:n.rootPath});(()=>N(this,null,function*(){const f=$.Loading(a("\u52A0\u8F7D\u4E2D..."));s.value=!0;try{const m=yield j.Nas.Webdav.Status.GET();if(m!=null&&m.data){const{result:w,error:y}=m.data;if(y){$.Warning(y);return}w&&(w.username&&(u.value.username=w.username),w.password&&(u.value.password=w.password))}}catch(m){$.Error(m)}s.value=!1,f.Close()}))();const g=()=>{const f=u.value;if(f.rootPath==""){$.Warning(a("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A"));return}if(f.username==""){$.Warning(a("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A"));return}if(f.password==""){$.Warning(a("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A"));return}p(f)},p=f=>N(this,null,function*(){s.value=!0;const m=$.Loading(a("\u521B\u5EFA\u4E2D..."));try{const w=yield j.Nas.Webdav.Create.POST(f);if(w!=null&&w.data){const{error:y,result:x}=w.data;y&&$.Warning(y),x&&($.Success(a("\u521B\u5EFA\u6210\u529F")),window.setTimeout(()=>{location.reload()},1e3))}}catch(w){$.Error(w)}m.Close(),s.value=!1});return(f,m)=>(r(),J(_t,{type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("form",{class:"action",onSubmit:ct(g,["prevent"])},[t("div",Td,[t("div",Id,i(e(a)("Webdav\u5171\u4EAB\u914D\u7F6E")),1)]),t("div",Md,[t("div",Ld,[t("div",Od,[t("span",null,i(e(a)("\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")),1)]),t("div",Nd,[t("input",{type:"text",value:u.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,Vd)])]),t("div",Gd,[t("div",jd,[t("span",null,i(e(a)("\u7528\u6237\u540D")),1)]),t("div",Ud,[L(t("input",{type:"text",required:"",placeholder:e(a)("\u8D26\u53F7\u7528\u6237\u540D"),"onUpdate:modelValue":m[0]||(m[0]=w=>u.value.username=w)},null,8,qd),[[et,u.value.username,void 0,{trim:!0}]])])]),t("div",Rd,[t("div",Wd,[t("span",null,i(e(a)("\u5BC6\u7801")),1)]),t("div",Hd,[L(t("input",{type:"password","onUpdate:modelValue":m[1]||(m[1]=w=>u.value.password=w)},null,512),[[et,u.value.password,void 0,{trim:!0}]])])])]),t("div",Jd,[Zd,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:c,disabled:s.value},i(e(a)("\u5173\u95ED")),9,Kd),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},i(e(a)("\u521B\u5EFA")),9,Qd)])],40,Pd)]),_:1})]),_:1}))}});var t0=O(Xd,[["__scopeId","data-v-2b3974a4"]]),e0=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(t0,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const a0={},o0={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},n0=t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),i0=[n0];function r0(o,n){return r(),d("svg",o0,i0)}var zt=O(a0,[["render",r0]]);const{$gettext:be,$ngettext:Ye}=Ie(),s0=o=>{},d0=()=>new Date().getTime(),l0=o=>{if(o<1e3)return`${o} B`;let a=1e3,l=0;for(let u=o/1e3;u>=1e3;u/=1e3)a*=1e3,l++;let c=[" KB"," MB"," GB"," TB"," PB"," EB"];return(o/100/(a/100)).toFixed(1)+c[l]},c0=o=>{if(o==null)return 0;if(o<1e4)return o;let a=parseInt(`${o/1e4}`),l=o%1e4;return`${a}\u4E07${l}`},u0=o=>{if(o)try{var n=new Date(o),a=n.getHours(),l=n.getMinutes(),c=n.getSeconds();return a<10&&(a=`0${a}`),l<10&&(l=`0${l}`),c<10&&(c=`0${c}`),`${a}:${l}:${c}`}catch(s){}return""},p0=o=>{if(o){let n=Math.floor(o/86400),a=Math.floor(o/3600)%24,l=Math.floor(o/60)%60,c=o%60;return(n>0?Ye("%{ days }\u5929","%{ days }\u5929",n,{days:De(n)}):"")+Ye("%{ hours }\u5C0F\u65F6","%{ hours }\u5C0F\u65F6",a,{hours:De(a)})+Ye("%{ minutes }\u5206","%{ minutes }\u5206",l,{minutes:De(l)})+Ye("%{ seconds }\u79D2","%{ seconds }\u79D2",c,{seconds:De(c)})}},f0=o=>/^\d+\.\d+\.\d+\.\d+$/.test(o),m0=o=>o.length<3?be("\u7528\u6237\u540D\u592A\u77ED"):o.toLowerCase()!=o?be("\u7528\u6237\u540D\u53EA\u80FD\u4E3A\u5C0F\u5199"):new RegExp("^\\d").exec(o)?be("\u7528\u6237\u540D\u4E0D\u80FD\u4EE5\u6570\u5B57\u5F00\u5934"):new RegExp("^_").exec(o)?be("\u7528\u6237\u540D\u4E0D\u80FD\u4EE5_\u5F00\u5934"):new RegExp("^[a-z0-9_]+$").exec(o)?!0:be("\u975E\u6CD5\u7684\u7528\u6237\u540D"),g0=(o,n)=>{let a=!0,l=null;const c=()=>{l=null,a&&o().finally(()=>{a&&(l=setTimeout(c,n))})};return l=setTimeout(c,0),()=>{a=!1,l!=null&&clearTimeout(l)}};var v0=Object.freeze(Object.defineProperty({__proto__:null,formatDate:s0,UnixDate:d0,byteToSize:l0,numberToSum:c0,dateForm:u0,stampForm:p0,checkIsIP:f0,checkSmabaUserName:m0,easyInterval:g0},Symbol.toStringTag,{value:"Module"})),Pt=lt({},v0);const b0=o=>(it("data-v-88275da0"),o=o(),rt(),o),h0=["onSubmit"],_0={class:"action-header"},x0={class:"action-header_title"},w0={class:"action-body"},k0={class:"label-item"},y0={class:"label-item_key"},F0={class:"label-item_value"},E0=["value"],$0={class:"label-item"},C0={class:"label-item_key"},D0={class:"label-item_value"},B0=["placeholder"],Y0={class:"label-item"},A0={class:"label-item_key"},S0={class:"label-item_value"},z0=["placeholder"],P0={class:"label-item"},T0={class:"label-item_key"},I0={class:"label-item_value"},M0={class:"samba-item"},L0={class:"samba-item_allow"},O0={for:"allow",class:"samba-allow"},N0={class:"samba-item_tips"},V0={class:"tooltip-trigger"},G0={class:"samba_tip"},j0={class:"samba_dir_tip"},U0={class:"action-footer"},q0=b0(()=>t("div",{class:"auto"},null,-1)),R0=["disabled"],W0=["disabled"],H0=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=p=>{p.preventDefault(),n.Close&&n.Close()},s=E(!1),u=E({shareName:"",username:"",password:"",rootPath:n.rootPath,allowLegacy:!1}),_=()=>{const p=u.value;if(p.rootPath==""){$.Warning(a("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A"));return}if(p.shareName==""){$.Warning(a("\u5171\u4EAB\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A"));return}if(p.username==""){$.Warning(a("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A"));return}if(p.password==""){$.Warning(a("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A"));return}const f=Pt.checkSmabaUserName(p.username);if(f!==!0){$.Warning(`${f}`);return}g(p)},g=p=>N(this,null,function*(){s.value=!0;const f=$.Loading(a("\u521B\u5EFA\u4E2D..."));try{const m=yield j.Nas.Samba.Create.POST(p);if(m!=null&&m.data){const{error:w,result:y}=m.data;w&&$.Warning(w),y&&($.Success(a("\u521B\u5EFA\u6210\u529F")),window.setTimeout(()=>{location.reload()},1e3))}}catch(m){$.Error(m)}f.Close(),s.value=!1});return(p,f)=>(r(),J(_t,{type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("form",{class:"action",onSubmit:ct(_,["prevent"])},[t("div",_0,[t("div",x0,i(e(a)("Samba\u5171\u4EAB\u914D\u7F6E")),1)]),t("div",w0,[t("div",k0,[t("div",y0,[t("span",null,i(e(a)("\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")),1)]),t("div",F0,[t("input",{type:"text",value:u.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,E0)])]),t("div",$0,[t("div",C0,[t("span",null,i(e(a)("\u5171\u4EAB\u540D\uFF08\u5EFA\u8BAE\u4F7F\u7528\u82F1\u6587\u5B57\u6BCD\uFF09")),1)]),t("div",D0,[L(t("input",{type:"text","onUpdate:modelValue":f[0]||(f[0]=m=>u.value.shareName=m),required:"",placeholder:e(a)("\u5171\u4EAB\u540D\u79F0")},null,8,B0),[[et,u.value.shareName,void 0,{trim:!0}]])])]),t("div",Y0,[t("div",A0,[t("span",null,i(e(a)("\u7528\u6237\u540D")),1)]),t("div",S0,[L(t("input",{type:"text",required:"",placeholder:e(a)("\u8D26\u53F7\u7528\u6237\u540D"),"onUpdate:modelValue":f[1]||(f[1]=m=>u.value.username=m)},null,8,z0),[[et,u.value.username,void 0,{trim:!0}]])])]),t("div",P0,[t("div",T0,[t("span",null,i(e(a)("\u5BC6\u7801")),1)]),t("div",I0,[L(t("input",{type:"password","onUpdate:modelValue":f[2]||(f[2]=m=>u.value.password=m)},null,512),[[et,u.value.password,void 0,{trim:!0}]])])]),t("div",M0,[t("div",L0,[L(t("input",{type:"checkbox",id:"allow","onUpdate:modelValue":f[3]||(f[3]=m=>u.value.allowLegacy=m)},null,512),[[qt,u.value.allowLegacy]]),t("label",O0,i(e(a)("\u5141\u8BB8\u65E7\u534F\u8BAE\u4E0E\u8EAB\u4EFD\u9A8C\u8BC1(\u4E0D\u5B89\u5168)")),1)]),t("div",N0,[t("span",V0,[t("span",G0,[B(zt)]),t("span",j0,i(e(a)("\u517C\u5BB9\u4E00\u4E9B\u7535\u89C6\u6216\u8005\u7535\u89C6\u76D2\u5B50")),1)])])])]),t("div",U0,[q0,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:c,disabled:s.value},i(e(a)("\u5173\u95ED")),9,R0),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},i(e(a)("\u521B\u5EFA")),9,W0)])],40,h0)]),_:1})]),_:1}))}});var J0=O(H0,[["__scopeId","data-v-88275da0"]]),Z0=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(J0,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const{$gettext:Xt,$ngettext:HP}=Ie(),Dt={installApp:(o,n)=>new Promise((a,l)=>{let c=0;j.App.Install.POST({name:o}).then(()=>{const s=setTimeout(()=>{c==0&&(c=1,a(!1))},(n||60)*1e3),u=()=>{c==0&&j.App.Check.POST({name:o}).then(_=>{if(c==0&&_!=null&&_.data){const{result:g}=_.data;if((g==null?void 0:g.status)=="installed"){clearTimeout(s),c=1,a(!0);return}}}).catch(_=>{}).finally(()=>{c==0&&setTimeout(u,3e3)})};setTimeout(u,3e3)}).catch(s=>{c==0&&(c=1,l(Xt("\u5B89\u88C5\u5931\u8D25\uFF0C")+s))})}),checkAndInstallApp:(o,n,a)=>N(ae,null,function*(){let l=$.Loading(Xt("\u68C0\u67E5\u4E2D..."));try{const c=yield j.App.Check.POST({name:o});if(l.Close(),c!=null&&c.data){const{result:s,error:u}=c.data;if(u)$.Warning(u);else if(s){if(s.status=="installed")return!0;if(confirm(Xt("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 %{name} \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F",{name:n}))){l=$.Loading(Xt("\u6B63\u5728\u5B89\u88C5\u4E2D..."));const _=yield Dt.installApp(a||o);if(l.Close(),_)return!0;$.Error(Xt("\u5B89\u88C5\u5931\u8D25\u6216\u8D85\u65F6\uFF0C\u8BF7\u68C0\u67E5\u8F6F\u4EF6\u6E90\u6216\u7A0D\u5019\u91CD\u8BD5"))}}else $.Warning(Xt("\u68C0\u67E5\u63D2\u4EF6\u72B6\u6001\u5931\u8D25"))}return!1}catch(c){return l.Close(),$.Warning(c),!1}}),installAndGo:(o,n,a,l)=>N(ae,null,function*(){(yield Dt.checkAndInstallApp(o,n,l))&&(location.href=a)})},Kt=o=>!Array.isArray(window.quickstart_features)||window.quickstart_features.indexOf(o)!=-1,K0={key:0,class:"action"},Q0={class:"title"},X0={class:"desc"},tl={value:"linkease"},el={value:"samba"},al={value:"webdav"},ol=["innerHTML"],nl={class:"btns"},il=["disabled"],rl=T({props:{setup:Number,Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!0),s=E("linkease"),u=E(!1),_=E(n.setup||0),g=()=>{n.Close&&n.Close()},p=()=>N(this,null,function*(){switch(s.value){case"webdav":yield f();break;case"samba":yield w();break;case"linkease":yield m();break}}),f=()=>N(this,null,function*(){u.value=!0,(yield Dt.checkAndInstallApp("app-meta-gowebdav","GoWebdav"))&&y(),u.value=!1}),m=()=>N(this,null,function*(){u.value=!0,(yield Dt.checkAndInstallApp("linkease",a("\u6613\u6709\u4E91"),"app-meta-linkease"))&&x(),u.value=!1}),w=()=>N(this,null,function*(){u.value=!0;const h=$.Loading(a("\u914D\u7F6E\u4E2D..."));y(),h.Close(),u.value=!1}),y=()=>{u.value=!1,c.value=!1,wd({Cancel:()=>{c.value=!0},Next:h=>{switch(s.value){case"webdav":F(h);break;case"samba":b(h);break}}})},x=()=>{Sd({}),g()},F=h=>{e0({rootPath:h}),g()},b=h=>{Z0({rootPath:h}),g()};return(h,v)=>c.value?(r(),J(_t,{key:0,Close:o.Close,type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[_.value==0?(r(),d("div",K0,[t("h2",Q0,i(e(a)("\u6B22\u8FCE\u4F7F\u7528 NAS \u914D\u7F6E\u5411\u5BFC")),1),t("h3",X0,i(e(a)("\u8BF7\u9009\u62E9\u9700\u8981\u6DFB\u52A0\u7684NAS\u670D\u52A1")),1),t("form",null,[t("label",null,[L(t("select",{"onUpdate:modelValue":v[0]||(v[0]=k=>s.value=k)},[t("option",tl,i(e(a)("\u8DE8\u8BBE\u5907\u5171\u4EAB\uFF08\u6613\u6709\u4E91\uFF09")),1),t("option",el,i(e(a)("\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Samba\uFF09")),1),t("option",al,i(e(a)("\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08WebDAV\uFF09")),1)],512),[[dt,s.value]])])]),e(Kt)("unishare")?(r(),d("div",{key:0,class:"tips",innerHTML:e(a)("\u5982\u9700\u5BF9 Samba \u6216 WebDAV \u8FDB\u884C\u66F4\u7EC6\u81F4\u7684\u6743\u9650\u63A7\u5236\uFF0C\u8BF7\u4F7F\u7528\u201C%{unishare}\u201D",{unishare:''+e(a)("\u7EDF\u4E00\u6587\u4EF6\u5171\u4EAB")+""},!0)},null,8,ol)):D("",!0),t("div",nl,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:p,type:"button",disabled:u.value},i(e(a)("\u4E0B\u4E00\u6B65")),9,il),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g,type:"button"},i(e(a)("\u53D6\u6D88")),1)])])):D("",!0)]),_:1})]),_:1},8,["Close"])):D("",!0)}});var sl=O(rl,[["__scopeId","data-v-3f686017"]]),Va=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(sl,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const dl={class:"app-container_aria2"},ll={class:"aria2-item"},cl={class:"aria2-item_name"},ul={class:"aria2-item_value"},pl={key:0,class:"configure"},fl={key:1,class:"configure enabel"},ml={class:"aria2-item"},gl={class:"aria2-item_name"},vl={class:"aria2-item_value"},bl=["href"],hl={class:"aria2-item"},_l={class:"aria2-item_name"},xl={class:"aria2-item_value"},wl=["href"],kl={class:"aria2-item"},yl={class:"aria2-item_name right"},Fl={class:"aria2-item_value"},El=["href"],$l={class:"use-url_app"},Cl={href:"https://doc.linkease.com/zh/guide/linkease_app/tutorial.html#%E8%BF%9C%E7%A8%8B%E4%B8%8B%E8%BD%BD",target:"_blank"},Dl=T({props:{aria2:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{var u;return`${location.origin}${(u=n.aria2)==null?void 0:u.webPath}`}),s=Q(()=>{var g,p,f;let u=(g=n.aria2)==null?void 0:g.rpcToken;u?u=encodeURIComponent(btoa(u)):u="";const _=encodeURIComponent(location.hostname);return`${location.origin}${(p=n.aria2)==null?void 0:p.webPath}/#!/settings/rpc/set/http/${_}/${(f=n.aria2)==null?void 0:f.rpcPort}/jsonrpc/${u}`});return(u,_)=>{var g,p,f,m;return r(),d("ul",dl,[t("li",ll,[t("div",cl,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",ul,[((g=o.aria2)==null?void 0:g.status)=="running"?(r(),d("span",pl,i(e(a)("\u5DF2\u542F\u52A8")),1)):(r(),d("span",fl,i(e(a)("\u672A\u542F\u52A8")),1))])]),((p=o.aria2)==null?void 0:p.status)=="running"?(r(),d(U,{key:0},[t("li",ml,[t("div",gl,[t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55:")),1)]),t("div",vl,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((f=o.aria2)==null?void 0:f.downloadPath)},i((m=o.aria2)==null?void 0:m.downloadPath),9,bl)])]),t("li",hl,[t("div",_l,[t("span",null,i(e(a)("\u7F51\u7EDC\u5730\u5740:")),1)]),t("div",xl,[t("a",{href:e(c),target:"_blank",rel:"noopener noreferrer"},i(e(c)),9,wl)])]),t("li",kl,[t("div",yl,[t("span",null,i(e(a)("\u8BA4\u8BC1\u5931\u8D25\uFF1F")),1)]),t("div",Fl,[t("a",{href:e(s),target:"_blank",rel:"noopener noreferrer"},i(e(a)("\u70B9\u6B64\u81EA\u52A8\u914D\u7F6E AriaNg")),9,El)])])],64)):D("",!0),t("div",$l,[t("a",Cl,i(e(a)("\u4F7F\u7528\u6613\u6709\u4E91APP\uFF0C\u968F\u65F6\u968F\u5730\u8FDC\u7A0B\u4E0B\u8F7D")),1)])])}}});var Bl=O(Dl,[["__scopeId","data-v-376759fb"]]);const Yl={class:"app-container_qbittorrent"},Al={class:"qbittorrent-item"},Sl={class:"qbittorrent-item_name"},zl={class:"qbittorrent-item_value"},Pl={key:0,class:"configure"},Tl={key:1,class:"configure enabel"},Il={class:"qbittorrent-item"},Ml={class:"qbittorrent-item_name"},Ll={class:"qbittorrent-item_value"},Ol=["href"],Nl={class:"qbittorrent-item"},Vl={class:"qbittorrent-item_name"},Gl={class:"qbittorrent-item_value"},jl=["href"],Ul={class:"qbittorrent-item"},ql={class:"qbittorrent-item_name right"},Rl={class:"qbittorrent-item_value"},Wl=T({props:{qbittorrent:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{var s;return`http://${location.hostname}${(s=n.qbittorrent)==null?void 0:s.webPath}`});return(s,u)=>{var _,g,p,f;return r(),d("ul",Yl,[t("li",Al,[t("div",Sl,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",zl,[((_=o.qbittorrent)==null?void 0:_.status)=="running"?(r(),d("span",Pl,i(e(a)("\u5DF2\u542F\u52A8")),1)):(r(),d("span",Tl,i(e(a)("\u672A\u542F\u52A8")),1))])]),((g=o.qbittorrent)==null?void 0:g.status)=="running"?(r(),d(U,{key:0},[t("li",Il,[t("div",Ml,[t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55:")),1)]),t("div",Ll,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=o.qbittorrent)==null?void 0:p.downloadPath)},i((f=o.qbittorrent)==null?void 0:f.downloadPath),9,Ol)])]),t("li",Nl,[t("div",Vl,[t("span",null,i(e(a)("\u7F51\u7EDC\u5730\u5740:")),1)]),t("div",Gl,[t("a",{href:e(c),target:"_blank",rel:"noopener noreferrer"},i(e(c)),9,jl)])]),t("li",Ul,[t("div",ql,[t("span",null,i(e(a)("\u9ED8\u8BA4\u7528\u6237\u540D\uFF1A"))+"admin",1)]),t("div",Rl,[t("span",null,i(e(a)("\u9ED8\u8BA4\u5BC6\u7801\uFF1A"))+"adminadmin",1)])])],64)):D("",!0)])}}});var Hl=O(Wl,[["__scopeId","data-v-086db06c"]]);const Jl={class:"app-container_transmission"},Zl={class:"transmission-item"},Kl={class:"transmission-item_name"},Ql={class:"transmission-item_value"},Xl={key:0,class:"configure"},t1={key:1,class:"configure enabel"},e1={class:"transmission-item"},a1={class:"transmission-item_name"},o1={class:"transmission-item_value"},n1=["href"],i1={class:"transmission-item"},r1={class:"transmission-item_name"},s1={class:"transmission-item_value"},d1=["href"],l1=T({props:{transmission:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{var s;return`http://${location.hostname}${(s=n.transmission)==null?void 0:s.webPath}`});return(s,u)=>{var _,g,p,f;return r(),d("ul",Jl,[t("li",Zl,[t("div",Kl,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",Ql,[((_=o.transmission)==null?void 0:_.status)=="running"?(r(),d("span",Xl,i(e(a)("\u5DF2\u542F\u52A8")),1)):(r(),d("span",t1,i(e(a)("\u672A\u542F\u52A8")),1))])]),((g=o.transmission)==null?void 0:g.status)=="running"?(r(),d(U,{key:0},[t("li",e1,[t("div",a1,[t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55:")),1)]),t("div",o1,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=o.transmission)==null?void 0:p.downloadPath)},i((f=o.transmission)==null?void 0:f.downloadPath),9,n1)])]),t("li",i1,[t("div",r1,[t("span",null,i(e(a)("\u7F51\u7EDC\u5730\u5740:")),1)]),t("div",s1,[t("a",{href:e(c),target:"_blank",rel:"noopener noreferrer"},i(e(c)),9,d1)])])],64)):D("",!0)])}}});var c1=O(l1,[["__scopeId","data-v-3232162a"]]);const u1={},p1={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},f1=t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6","fill-opacity":"0.65"},null,-1),m1=[f1];function g1(o,n){return r(),d("svg",p1,m1)}var Ht=O(u1,[["render",g1]]);const v1={},b1={width:"82px",height:"82px",viewBox:"0 0 82 82",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},h1=Vt('',1),_1=[h1];function x1(o,n){return r(),d("svg",b1,_1)}var la=O(v1,[["render",x1]]);const Oe=o=>(it("data-v-395b81d2"),o=o(),rt(),o),w1={key:0,class:"action"},k1={class:"title"},y1={class:"load_service input_row"},F1={class:"left"},E1={class:"radios"},$1=Oe(()=>t("label",{for:"Aria2"},"Aria2",-1)),C1={class:"radios"},D1=Oe(()=>t("label",{for:"qB"},"qBittorrent",-1)),B1={class:"radios"},Y1=Oe(()=>t("label",{for:"Tr"},"Transmission",-1)),A1=["onSubmit"],S1={class:"input_row"},z1={class:"left"},P1={class:"tooltip-trigger"},T1={class:"tooltip-text tooltip-top"},I1={class:"dowload_dir_tip"},M1={class:"myinput_wrap"},L1={class:"input_row"},O1={class:"left"},N1={class:"tooltip-trigger"},V1={class:"tooltip-text tooltip-top"},G1={class:"dowload_dir_tip"},j1={class:"myinput_wrap"},U1={class:"input_row"},q1={class:"left"},R1={class:"tooltip-trigger"},W1={class:"tooltip-text tooltip-bottom"},H1={class:"dowload_rpc_tip"},J1=["placeholder"],Z1={class:"input_row"},K1={class:""},Q1={class:"radios"},X1={for:"default"},tc={class:"radios"},ec={for:"add"},ac={class:"input_row"},oc=Oe(()=>t("div",{class:"left"},null,-1)),nc={class:"myinput_wrap Tracker_input"},ic=["placeholder"],rc=["onSubmit"],sc={class:"input_row"},dc={class:"left"},lc={class:"tooltip-trigger"},cc={class:"tooltip-text tooltip-top"},uc={class:"dowload_dir_tip"},pc={class:"myinput_wrap"},fc={class:"input_row"},mc={class:"left"},gc={class:"tooltip-trigger"},vc={class:"tooltip-text tooltip-top"},bc={class:"dowload_dir_tip"},hc={class:"myinput_wrap"},_c=["onSubmit"],xc={class:"input_row"},wc={class:"left"},kc={class:"tooltip-trigger"},yc={class:"tooltip-text tooltip-top"},Fc={class:"dowload_dir_tip"},Ec={class:"myinput_wrap"},$c={class:"input_row"},Cc={class:"left"},Dc={class:"tooltip-trigger"},Bc={class:"tooltip-text tooltip-top"},Yc={class:"dowload_dir_tip"},Ac={class:"myinput_wrap"},Sc={class:"btns"},zc={key:1,class:"action"},Pc={class:"title"},Tc={class:"finished"},Ic={class:"successed"},Mc={class:"btns"},Lc=T({props:{services:{type:Object,required:!0},partitionList:{type:Array,required:!0},defaultTab:{type:String,required:!1},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(""),s=E(""),u=E(""),_=E(""),g=E("default"),p=E("Aria2"),f=E(""),m=E(""),w=E(""),y=E(""),x=E([]),F=E([]),b=E(0);At(()=>{var V,I,M,W,bt,Bt,gt,jt,Qt,Tt;switch(n.defaultTab){case"aria2":p.value="Aria2";break;case"qbittorrent":p.value="qBittorrent";break;case"transmission":p.value="Transmission";break}x.value=n.partitionList.map(Lt=>({key:Lt})),F.value=n.partitionList.filter(Lt=>Lt.startsWith("/mnt/")).map(Lt=>Lt.replace(/(\/mnt\/[^/]+).*/,"$1")),u.value=((V=n.services.aria2)==null?void 0:V.configPath)||"";const S=((I=n.services.aria2)==null?void 0:I.downloadPath)||((M=n.services.qbittorrent)==null?void 0:M.downloadPath)||((W=n.services.transmission)==null?void 0:W.downloadPath);S&&(_.value=S);const Y=(bt=n.services.aria2)==null?void 0:bt.rpcToken;Y&&(c.value=Y),f.value=((Bt=n.services.qbittorrent)==null?void 0:Bt.configPath)||"";const z=((gt=n.services.qbittorrent)==null?void 0:gt.downloadPath)||S||((jt=n.services.transmission)==null?void 0:jt.downloadPath);z&&(m.value=z),w.value=((Qt=n.services.transmission)==null?void 0:Qt.configPath)||"";const R=((Tt=n.services.transmission)==null?void 0:Tt.downloadPath)||S||z;R&&(y.value=R)});const h=()=>{let S=u.value,Y=_.value;S==null||S==""||Y==null||Y==""||N(this,null,function*(){if(yield Dt.checkAndInstallApp("app-meta-aria2","Aria2")){const R=$.Loading(a("\u914D\u7F6E\u4E2D..."));j.Guide.Aria2Init.POST({configPath:S,downloadPath:Y,rpcToken:c.value,btTracker:g.value=="add"?s.value:""}).then(V=>{var I;if(V!=null&&V.data){if((V.data.success||0)==0){b.value=1;return}else if((I=V.data)!=null&&I.error)throw V.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(V=>$.Error(V)).finally(()=>R.Close())}})},v=()=>{let S=f.value,Y=m.value;S==null||S==""||Y==null||Y==""||N(this,null,function*(){if(yield Dt.checkAndInstallApp("app-meta-qbittorrent","qBittorrent")){const R=$.Loading(a("\u914D\u7F6E\u4E2D..."));j.Guide.qbitorrentInit.POST({configPath:S,downloadPath:Y}).then(V=>{var I;if(V!=null&&V.data){if((V.data.success||0)==0){b.value=1;return}else if((I=V.data)!=null&&I.error)throw V.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(V=>$.Error(V)).finally(()=>R.Close())}})},k=()=>{let S=w.value,Y=y.value;S==null||S==""||Y==null||Y==""||N(this,null,function*(){if(yield Dt.checkAndInstallApp("app-meta-transmission","Transmission")){const R=$.Loading(a("\u914D\u7F6E\u4E2D..."));j.Guide.transmissionInit.POST({configPath:S,downloadPath:Y}).then(V=>{var I;if(V!=null&&V.data){if((V.data.success||0)==0){b.value=1;return}else if((I=V.data)!=null&&I.error)throw V.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(V=>$.Error(V)).finally(()=>R.Close())}})},C=S=>{S.preventDefault(),n.Close&&n.Close()},A=S=>{S.preventDefault(),location.reload()};return(S,Y)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[b.value==0?(r(),d("div",w1,[t("h2",k1,i(e(a)("\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC")),1),t("ul",null,[t("li",null,[t("div",y1,[t("div",F1,[t("span",null,i(e(a)("\u4E0B\u8F7D\u670D\u52A1\uFF1A")),1)]),t("div",E1,[L(t("input",{type:"radio",value:"Aria2","onUpdate:modelValue":Y[0]||(Y[0]=z=>p.value=z),name:"download",id:"Aria2"},null,512),[[Ft,p.value]]),$1]),t("div",C1,[L(t("input",{type:"radio",value:"qBittorrent","onUpdate:modelValue":Y[1]||(Y[1]=z=>p.value=z),name:"download",id:"qB"},null,512),[[Ft,p.value]]),D1]),t("div",B1,[L(t("input",{type:"radio",value:"Transmission","onUpdate:modelValue":Y[2]||(Y[2]=z=>p.value=z),name:"download",id:"Tr"},null,512),[[Ft,p.value]]),Y1])])])]),p.value=="Aria2"?(r(),d("form",{key:0,onSubmit:ct(h,["prevent"])},[t("ul",null,[t("li",null,[t("div",S1,[t("div",z1,[t("span",P1,[B(Ht),t("div",null,[t("div",T1,[t("span",I1,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/aria2\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")),1)])])]),t("span",null,i(e(a)("\u914D\u7F6E\u76EE\u5F55\uFF1A")),1)]),t("div",M1,[B(Jt,{modelValue:u.value,"onUpdate:modelValue":Y[3]||(Y[3]=z=>u.value=z),modelModifiers:{trim:!0},title:e(a)("\u914D\u7F6E\u76EE\u5F55"),options:F.value.concat("/root").map(z=>({key:z+"/Configs/aria2"}))},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",L1,[t("div",O1,[t("span",N1,[B(Ht),t("div",null,[t("div",V1,[t("span",G1,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")),1)])])]),t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55\uFF1A")),1)]),t("div",j1,[B(Jt,{modelValue:_.value,"onUpdate:modelValue":Y[4]||(Y[4]=z=>_.value=z),modelModifiers:{trim:!0},title:e(a)("\u4E0B\u8F7D\u76EE\u5F55"),options:x.value},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",U1,[t("div",q1,[t("span",R1,[B(Ht),t("div",null,[t("div",W1,[t("span",H1,i(e(a)("\u7528\u4E8E\u8FDC\u7A0B\u8BBF\u95EE\u7684\u4EE4\u724C\u3002")),1)])])]),t("span",null,i(e(a)("RPC \u4EE4\u724C\uFF1A")),1)]),L(t("input",{type:"text",class:"RPC_input",placeholder:e(a)("\u8BF7\u8F93\u5165RPC\u4EE4\u724C"),"onUpdate:modelValue":Y[5]||(Y[5]=z=>c.value=z)},null,8,J1),[[et,c.value,void 0,{trim:!0}]])])]),t("li",null,[t("div",Z1,[t("div",K1,[t("span",null,i(e(a)("\u9644\u52A0\u7684 BT Tracker\uFF1A")),1)]),t("div",Q1,[L(t("input",{type:"radio",value:"default",name:"BT",id:"default","onUpdate:modelValue":Y[6]||(Y[6]=z=>g.value=z)},null,512),[[Ft,g.value]]),t("label",X1,i(e(a)("\u9ED8\u8BA4")),1)]),t("div",tc,[L(t("input",{type:"radio",value:"add",name:"BT",id:"add","onUpdate:modelValue":Y[7]||(Y[7]=z=>g.value=z)},null,512),[[Ft,g.value]]),t("label",ec,i(e(a)("\u81EA\u5DF1\u6DFB\u52A0")),1)])])]),t("li",null,[t("div",ac,[oc,t("div",nc,[g.value=="add"?L((r(),d("textarea",{key:0,"onUpdate:modelValue":Y[8]||(Y[8]=z=>s.value=z),rows:"4",placeholder:e(a)("\u8BF7\u8F93\u5165BT Tracker\u670D\u52A1\u5668\u5730\u5740\uFF0C\u591A\u4E2A\u5730\u5740\u4F7F\u7528\u6362\u884C\u6216\u8005\u82F1\u6587\u9017\u53F7\u5206\u9694")},null,8,ic)),[[et,s.value,void 0,{trim:!0}]]):D("",!0)])])])])],40,A1)):D("",!0),p.value=="qBittorrent"?(r(),d("form",{key:1,onSubmit:ct(v,["prevent"])},[t("ul",null,[t("li",null,[t("div",sc,[t("div",dc,[t("span",lc,[B(Ht),t("div",null,[t("div",cc,[t("span",uc,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/qb\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")),1)])])]),t("span",null,i(e(a)("\u914D\u7F6E\u76EE\u5F55\uFF1A")),1)]),t("div",pc,[B(Jt,{modelValue:f.value,"onUpdate:modelValue":Y[9]||(Y[9]=z=>f.value=z),modelModifiers:{trim:!0},title:e(a)("\u914D\u7F6E\u76EE\u5F55"),options:F.value.concat("/root").map(z=>({key:z+"/Configs/qb"}))},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",fc,[t("div",mc,[t("span",gc,[B(Ht),t("div",null,[t("div",vc,[t("span",bc,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")),1)])])]),t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55\uFF1A")),1)]),t("div",hc,[B(Jt,{modelValue:m.value,"onUpdate:modelValue":Y[10]||(Y[10]=z=>m.value=z),modelModifiers:{trim:!0},title:e(a)("\u4E0B\u8F7D\u76EE\u5F55"),options:x.value},null,8,["modelValue","title","options"])])])])])],40,rc)):D("",!0),p.value=="Transmission"?(r(),d("form",{key:2,onSubmit:ct(k,["prevent"])},[t("ul",null,[t("li",null,[t("div",xc,[t("div",wc,[t("span",kc,[B(Ht),t("div",null,[t("div",yc,[t("span",Fc,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/tr\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")),1)])])]),t("span",null,i(e(a)("\u914D\u7F6E\u76EE\u5F55\uFF1A")),1)]),t("div",Ec,[B(Jt,{modelValue:w.value,"onUpdate:modelValue":Y[11]||(Y[11]=z=>w.value=z),modelModifiers:{trim:!0},title:e(a)("\u914D\u7F6E\u76EE\u5F55"),options:F.value.concat("/root").map(z=>({key:z+"/Configs/transmission"}))},null,8,["modelValue","title","options"])])])]),t("li",null,[t("div",$c,[t("div",Cc,[t("span",Dc,[B(Ht),t("div",null,[t("div",Bc,[t("span",Yc,i(e(a)("\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")),1)])])]),t("span",null,i(e(a)("\u4E0B\u8F7D\u76EE\u5F55\uFF1A")),1)]),t("div",Ac,[B(Jt,{modelValue:y.value,"onUpdate:modelValue":Y[12]||(Y[12]=z=>y.value=z),modelModifiers:{trim:!0},title:e(a)("\u4E0B\u8F7D\u76EE\u5F55"),options:x.value},null,8,["modelValue","title","options"])])])])])],40,_c)):D("",!0),t("div",Sc,[p.value=="Aria2"?(r(),d("button",{key:0,class:"cbi-button cbi-button-apply",onClick:h},i(e(a)("\u542F\u7528")),1)):D("",!0),p.value=="qBittorrent"?(r(),d("button",{key:1,class:"cbi-button cbi-button-apply",onClick:v},i(e(a)("\u542F\u7528")),1)):D("",!0),p.value=="Transmission"?(r(),d("button",{key:2,class:"cbi-button cbi-button-apply",onClick:k},i(e(a)("\u542F\u7528")),1)):D("",!0),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:C},i(e(a)("\u53D6\u6D88")),1)])])):b.value==1?(r(),d("div",zc,[t("h2",Pc,i(e(a)("%{status}\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",{status:p.value})),1),t("div",Tc,[B(la)]),t("p",Ic,i(e(a)("\u914D\u7F6E\u6210\u529F\uFF01")),1),t("div",Mc,[t("button",{class:"cbi-button cbi-button-apply",onClick:A},i(e(a)("\u786E\u5B9A")),1)])])):D("",!0)]),_:1},8,["Close"]))}});var Oc=O(Lc,[["__scopeId","data-v-395b81d2"]]);const Nc=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Oc,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},ca=o=>(it("data-v-2299b58c"),o=o(),rt(),o),Vc={class:"content"},Gc={class:"tab"},jc=ca(()=>t("div",{class:"title"},"Aria2",-1)),Uc={key:0},qc={key:1},Rc=ca(()=>t("div",{class:"title"},"qBittorrent",-1)),Wc={key:0},Hc={key:1},Jc=ca(()=>t("div",{class:"title"},"Transmission",-1)),Zc={key:0},Kc={key:1},Qc=T({setup(o){const{$gettext:n}=H(),a=E(!1),l=E("aria2"),c=x=>{l.value=x},s=E();setTimeout(()=>{j.Guide.DownloadService.Status.GET().then(x=>{var F;if((F=x==null?void 0:x.data)!=null&&F.result){const b=x.data.result;s.value=b}})},800),E(!1);const _=E(!1),g=()=>{_.value=!_.value},p=()=>{j.Guide.DownloadPartition.List.GET().then(x=>{var b,h;let F=[];(h=(b=x==null?void 0:x.data)==null?void 0:b.result)!=null&&h.partitionList&&(F=x.data.result.partitionList),Nc({services:s.value,partitionList:F,defaultTab:l.value})})},f=(x,F,b)=>N(this,null,function*(){g(),Dt.installAndGo(x,F,b)}),m=()=>{f("app-meta-aria2","Aria2","/cgi-bin/luci/admin/services/aria2")},w=()=>{f("app-meta-qbittorrent","qBittorrent","/cgi-bin/luci/admin/nas/qBittorrent")},y=()=>{f("app-meta-transmission","Transmission","/cgi-bin/luci/admin/services/transmission")};return(x,F)=>(r(),J(Rt,{title:e(n)("\u4E0B\u8F7D\u670D\u52A1"),showSettings:!0,onFooterClick:p,style:{width:"100%",height:"100%",display:"block"},"is-settings-menu-open":a.value,"onUpdate:isSettingsMenuOpen":F[4]||(F[4]=b=>a.value=b)},{icon:G(()=>[B(Zt,{color:"#00a63e",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:p},[B(Zt,{color:"#0a0a0a",class:"icon1 downloadIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u4E0B\u8F7D\u7BA1\u7406")),1),Boolean(s.value)?(r(),d("div",{key:0,class:"rotation",onClick:F[0]||(F[0]=ct(b=>a.value=!a.value,["stop"]))},[B(Ee,{class:"moreIcon"})])):D("",!0)])]),"settings-menu":G(()=>[t("div",null,[t("a",{onClick:m},i(e(n)("Aria2\u9AD8\u7EA7\u914D\u7F6E")),1)]),t("div",null,[t("a",{onClick:w},i(e(n)("qBittorrent\u9AD8\u7EA7\u914D\u7F6E")),1)]),t("div",null,[t("a",{onClick:y},i(e(n)("Transmission\u9AD8\u7EA7\u914D\u7F6E")),1)])]),default:G(()=>{var b,h,v,k,C,A,S,Y,z;return[t("div",Vc,[t("div",Gc,[t("div",{class:st(["item cloud",{active:l.value=="aria2"}]),onClick:F[1]||(F[1]=R=>c("aria2"))},[B(Zt,{color:"#f54900",class:"icon2"}),jc,((h=(b=s.value)==null?void 0:b.aria2)==null?void 0:h.status)=="running"?(r(),d("span",Uc,i(e(n)("\u5DF2\u542F\u7528")),1)):(r(),d("span",qc,i(e(n)("\u672A\u542F\u7528")),1))],2),t("div",{class:st(["item memory",{active:l.value=="qbittorrent"}]),onClick:F[2]||(F[2]=R=>c("qbittorrent"))},[B(Zt,{color:"#4a5565",class:"icon2"}),Rc,((k=(v=s.value)==null?void 0:v.qbittorrent)==null?void 0:k.status)=="running"?(r(),d("span",Wc,i(e(n)("\u5DF2\u542F\u7528")),1)):(r(),d("span",Hc,i(e(n)("\u672A\u542F\u7528")),1))],2),t("div",{class:st(["item network",{active:l.value=="transmission"}]),onClick:F[3]||(F[3]=R=>c("transmission"))},[B(Zt,{color:"#009689",class:"icon2"}),Jc,((A=(C=s.value)==null?void 0:C.transmission)==null?void 0:A.status)=="running"?(r(),d("span",Zc,i(e(n)("\u5DF2\u542F\u7528")),1)):(r(),d("span",Kc,i(e(n)("\u672A\u542F\u7528")),1))],2)]),l.value=="aria2"?(r(),J(Bl,{key:0,aria2:(S=s.value)==null?void 0:S.aria2},null,8,["aria2"])):l.value=="qbittorrent"?(r(),J(Hl,{key:1,qbittorrent:(Y=s.value)==null?void 0:Y.qbittorrent},null,8,["qbittorrent"])):l.value=="transmission"?(r(),J(c1,{key:2,transmission:(z=s.value)==null?void 0:z.transmission},null,8,["transmission"])):D("",!0)])]}),_:1},8,["title","is-settings-menu-open"]))}});var Xc=O(Qc,[["__scopeId","data-v-2299b58c"]]);const tu={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},eu=["fill"],We=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",tu,[t("path",{d:"M584.675 134.868C561.143 130.36 536.847 128 512 128a392 392 0 0 0-3.783 0.018l-24.19 169.685A32 32 0 0 1 466.68 321.8l-99.807 49.992-50.81 127.247a32 32 0 0 1-24.45 19.697l-162.145 27.069c8.105 92.926 49.308 176.368 111.754 238.473L223.089 657.52c-2.323-16.238 8.01-31.603 23.924-35.578l226.491-56.558a32 32 0 0 1 30.368 8.407l96.768 96.662a8 8 0 0 0 8.728 1.726l150.425-62.602 31.42-0.772c17.669-0.434 32.343 13.536 32.777 31.204 0.007 0.262 0.01 0.524 0.01 0.786v95.11c45.314-63.03 72-140.351 72-223.906 0-40.5-6.27-79.535-17.891-116.188l-103.215 27.656a32 32 0 0 1-23.36-2.684l-127.842-68.287a32 32 0 0 1-16.712-24.553l-22.305-193.076z m58.509 16.124l18.31 159.176 109.262 56.623 86.458-23.166c-43.44-88.897-120.207-158.532-214.03-192.633z m-336.132 685.8C366.357 874.295 436.644 896 512 896c94.536 0 181.093-34.162 248-90.814V683.96a8 8 0 0 0-11.074-7.386l-138.21 57.53a32 32 0 0 1-34.913-6.903l-99.24-99.132a8 8 0 0 0-7.592-2.102l-178.437 44.563a8 8 0 0 0-5.981 8.894l22.499 157.37zM128.65 489.473l140.726-23.504 49.219-123.244a32 32 0 0 1 15.386-16.744l96.748-48.46 20.65-144.762C275.347 160.675 139.137 308.212 128.65 489.47zM512 960C264.576 960 64 759.424 64 512S264.576 64 512 64s448 200.576 448 448-200.576 448-448 448z",fill:o.color,"p-id":"8679"},null,8,eu)]))}}),au={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},ou=["fill"],nu=["fill"],iu=["fill"],Ga=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",au,[t("path",{d:"M298.894222 482.417778c-35.271111 0-65.649778 12.231111-90.624 36.636444-25.031111 24.462222-37.603556 54.158222-37.603555 88.746667v87.153778h60.359111V607.857778c0-18.318222 6.599111-33.848889 19.854222-46.762667a65.991111 65.991111 0 0 1 48.014222-19.456h426.382222c18.887111 0 34.759111 6.428444 48.014223 19.399111 13.312 13.027556 19.854222 28.444444 19.854222 46.819556v87.04h60.359111v-87.04c0-34.702222-12.572444-64.341333-37.546667-88.746667a125.098667 125.098667 0 0 0-90.680889-36.750222H298.894222z",fill:o.color,"p-id":"8894"},null,8,ou),t("path",{d:"M488.049778 334.734222h47.900444V512h-47.900444V334.734222z",fill:o.color,"p-id":"8895"},null,8,nu),t("path",{d:"M597.333333 142.222222v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666zM284.444444 711.111111H113.777778v170.666667h170.666666v-170.666667z m-170.666666-56.888889h170.666666a56.888889 56.888889 0 0 1 56.888889 56.888889v170.666667a56.888889 56.888889 0 0 1-56.888889 56.888889H113.777778a56.888889 56.888889 0 0 1-56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 1 56.888889-56.888889zM910.222222 711.111111v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666z",fill:o.color,"p-id":"8896"},null,8,iu)]))}}),ru={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},su=["fill"],du=["fill"],lu=["fill"],cu=T({props:{color:{type:String,default:"#4a5565"}},setup(o){return(n,a)=>(r(),d("svg",ru,[t("path",{d:"M909.1 499.1h-797c-27.5 0-50 22.5-50 50v351.5c0 27.5 22.5 50 50 50h797c27.5 0 50-22.5 50-50V549.1c0-27.5-22.5-50-50-50z m-14 387.5h-769V563.1h769v323.5z",fill:o.color,"p-id":"19594"},null,8,su),t("path",{d:"M191.932 734.691a63 63 0 1 0 124.375-20.173 63 63 0 1 0-124.375 20.173zM395.56 774.136a63 63 0 1 0 89.093-89.097 63 63 0 1 0-89.094 89.097zM702.8 296.6c-19.4 0-35.2 8.4-35.2 18.7v198c0 10.3 15.9 18.7 35.2 18.7 19.4 0 35.2-8.4 35.2-18.7v-198c0.1-10.3-15.8-18.7-35.2-18.7z",fill:o.color,"p-id":"19595"},null,8,du),t("path",{d:"M701.8 218.6c-49.7 0-93.2 31.8-117.7 79.5h41.5c19.3-24.3 46.3-39.5 76.2-39.5 29.9 0 56.9 15.2 76.2 39.5h41.5c-24.4-47.7-68-79.5-117.7-79.5z m5.3-45.5c41.1 0 78.3 15.2 104.8 39.5H869c-33.7-47.7-93.7-79.5-162-79.5s-128.3 31.8-162 79.5h57.1c26.6-24.3 63.8-39.5 105-39.5z",fill:o.color,"p-id":"19596"},null,8,lu)]))}}),uu={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},pu=["fill"],wa=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",uu,[t("path",{d:"M526.41 117.029v58.514a7.314 7.314 0 0 1-7.315 7.314H219.429a36.571 36.571 0 0 0-35.987 29.989l-0.585 6.583V804.57a36.571 36.571 0 0 0 29.989 35.987l6.583 0.585H804.57a36.571 36.571 0 0 0 35.987-29.989l0.585-6.583v-317.44a7.314 7.314 0 0 1 7.314-7.314h58.514a7.314 7.314 0 0 1 7.315 7.314v317.44a109.714 109.714 0 0 1-99.182 109.203l-10.533 0.512H219.43a109.714 109.714 0 0 1-109.203-99.182l-0.512-10.533V219.43a109.714 109.714 0 0 1 99.182-109.203l10.533-0.512h299.666a7.314 7.314 0 0 1 7.314 7.315z m307.345 31.817l41.4 41.399a7.314 7.314 0 0 1 0 10.313L419.985 655.726a7.314 7.314 0 0 1-10.313 0l-41.399-41.4a7.314 7.314 0 0 1 0-10.312l455.168-455.168a7.314 7.314 0 0 1 10.313 0z","p-id":"4497",fill:o.color},null,8,pu)]))}}),fu={class:"actioner-container"},mu={class:"actioner-container_header"},gu={class:"actioner-container_body"},vu={class:"label-item"},bu={class:"label_info"},hu={class:"label-item"},_u={class:"label_info"},xu={class:"label-item"},wu={class:"label_info"},ku={class:"label-item"},yu={class:"label_info"},Fu={class:"actioner-container_footer"},Eu=T({props:{onSetup:{type:Function,required:!0},active:{type:String,default:"ddnsto"}},emits:["update:active"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:c}=H(),s=()=>{a.onSetup()},u=E(a.active),_=()=>{switch(n("update:active",u.value),u.value){case"ddnsto":a.onSetup("ddnsto");break;case"ali":a.onSetup("ddns-ali");break;case"dnspod":a.onSetup("ddns-dnspod");break;case"oray":a.onSetup("ddns-oray");break}};return(g,p)=>(r(),d("div",fu,[t("div",mu,[t("span",null,i(e(l)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",gu,[t("div",vu,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[0]||(p[0]=f=>u.value=f),value:"ddnsto"},null,512),[[Ft,u.value]]),t("span",null,i(e(l)("DDNSTO")),1)]),t("p",bu,i(e(l)("DDNSTO \u662F\u4E00\u4E2A\u4E0D\u9700\u8981\u516C\u7F51IP\u4E5F\u53EF\u4EE5\u5728\u5916\u7F51\u8BBF\u95EE\u7684\u7A7F\u900F\u57DF\u540D\u670D\u52A1\uFF0C\u4E00\u4E2A\u6D4F\u89C8\u5668\u641E\u5B9A\u5185\u7F51\u7A7F\u900F\uFF0C\u8FDC\u7A0B\u8BBF\u95EEOpenwrt\u3001\u8FDC\u7A0B\u7EC8\u7AEF\u3001\u8FDC\u7A0B\u684C\u9762...")),1)]),t("div",hu,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[1]||(p[1]=f=>u.value=f),value:"ali"},null,512),[[Ft,u.value]]),t("span",null,i(e(l)("\u963F\u91CC\u4E91")),1)]),t("p",_u,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1)]),t("div",xu,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[2]||(p[2]=f=>u.value=f),value:"dnspod"},null,512),[[Ft,u.value]]),t("span",null,i(e(l)("Dnspod")),1)]),t("p",wu,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1)]),t("div",ku,[t("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":p[3]||(p[3]=f=>u.value=f),value:"oray"},null,512),[[Ft,u.value]]),t("span",null,i(e(l)("\u82B1\u751F\u58F3")),1)]),t("p",yu,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1)])]),t("div",Fu,[t("div",{class:"close",onClick:s},i(e(l)("\u53D6\u6D88")),1),t("div",{class:"next",onClick:_},i(e(l)("\u4E0B\u4E00\u6B65")),1)])]))}});var $u=O(Eu,[["__scopeId","data-v-73552138"]]);const Cu=o=>(it("data-v-b9ee57da"),o=o(),rt(),o),Du={class:"actioner-container"},Bu={class:"actioner-container_body"},Yu=Cu(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),Au={class:"body-title"},Su={class:"body-tips"},zu={class:"body-info"},Pu=["href"],Tu={href:"/cgi-bin/luci/admin/services/ddns",target:"_blank"},Iu={class:"actioner-container_footer"},Mu=T({props:{target:{type:String,required:!0},onSetup:{type:Function,required:!0}},setup(o){const{$gettext:n,$ngettext:a}=H(),l=()=>{localStorage.setItem("firstOpen",JSON.stringify(!0)),location.reload()};return(c,s)=>(r(),d("div",Du,[t("div",Bu,[Yu,t("div",Au,i(e(n)("\u6DFB\u52A0\u6210\u529F")),1),t("p",Su,i(e(n)("\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002")),1),t("div",zu,[t("span",null,i(e(n)("\u8BBF\u95EE\u5730\u5740\uFF1A")),1),t("a",{href:o.target,target:"_blank",rel:"noopener noreferrer"},i(o.target),9,Pu)]),t("div",null,[t("span",null,i(e(n)("\u53EF\u524D\u5F80")),1),t("a",Tu,i(e(n)("\u670D\u52A1-\u52A8\u6001DNS")),1),t("span",null,i(e(n)("\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")),1)])]),t("div",Iu,[t("div",{class:"close",onClick:l},i(e(n)("\u5173\u95ED")),1)])]))}});var Lu=O(Mu,[["__scopeId","data-v-b9ee57da"]]);const Ou=o=>(it("data-v-aefb6fdc"),o=o(),rt(),o),Nu={class:"actioner-container"},Vu={class:"actioner-container_header"},Gu=Ou(()=>t("div",{class:"actioner-container_body ddnsto-login"},[t("iframe",{src:"https://www.kooldns.cn/bind/#/auth?send=1&source=openwrt&callback=*"})],-1)),ju={class:"actioner-container_footer"},Uu=T({props:{onSetup:{type:Function,required:!0},onDdnstoConfig:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.onSetup()},s=u=>{if(u.data.auth=="ddnsto"){const _=u.data.sign,g=u.data.token;_&&g&&(removeEventListener("message",s),n.onDdnstoConfig(_,g),n.onSetup("ddnsto-run"))}};return At(()=>{window.addEventListener("message",s)}),Mt(()=>{removeEventListener("message",s)}),(u,_)=>(r(),d("div",Nu,[t("div",Vu,[t("span",null,i(e(a)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),Gu,t("div",ju,[t("div",{class:"close",onClick:c},i(e(a)("\u53D6\u6D88")),1)])]))}});var qu=O(Uu,[["__scopeId","data-v-aefb6fdc"]]);const Ru={class:"actioner-container"},Wu={class:"actioner-container_header"},Hu={class:"actioner-container_body ddnsto-bind"},Ju=["src"],Zu=T({props:{onSetup:{type:Function,required:!0},config:{type:Object,required:!0},domain:{type:String,required:!0}},emits:["update:domain"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:c}=H(),s=Q(()=>{const{domain:g,token:p,sign:f,routerId:m,netaddr:w}=a.config,y=encodeURIComponent(g),x=encodeURIComponent(w);return`https://www.kooldns.cn/bind/#/domain?domain=${y}&sign=${f}&token=${p}&routerId=${m}&netaddr=${x}`}),u=g=>{if(g.data){const{auth:p,url:f}=g.data;p==="ddnsto"&&f&&_(f)}},_=g=>N(this,null,function*(){var p;try{const f=yield j.Guide.DdnstoAddress.POST({address:g});f!=null&&f.data&&(((p=f==null?void 0:f.data)==null?void 0:p.success)||0)==0&&(n("update:domain",g),a.onSetup("ddnsto-save"))}catch(f){}});return At(()=>{window.addEventListener("message",u)}),Mt(()=>{removeEventListener("message",u)}),(g,p)=>(r(),d("div",Ru,[t("div",Wu,[t("span",null,i(e(l)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",Hu,[t("iframe",{src:e(s)},null,8,Ju)])]))}});var Ku=O(Zu,[["__scopeId","data-v-0e2b47e6"]]);const Qu=o=>(it("data-v-29e2aec8"),o=o(),rt(),o),Xu={class:"actioner-container"},t2={class:"actioner-container_body"},e2=Qu(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),a2={class:"body-title"},o2={class:"body-tips"},n2={class:"body-info"},i2=["href"],r2={href:"https://www.ddnsto.com/app/#/devices",target:"_blank"},s2={class:"actioner-container_footer"},d2=T({props:{onSetup:{type:Function,required:!0},target:{type:String,required:!0}},setup(o){const{$gettext:n,$ngettext:a}=H(),l=()=>{localStorage.setItem("firstOpen",JSON.stringify(!0)),location.reload()};return(c,s)=>(r(),d("div",Xu,[t("div",t2,[e2,t("div",a2,i(e(n)("\u6DFB\u52A0\u6210\u529F")),1),t("p",o2,i(e(n)("\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002")),1),t("div",n2,[t("span",null,i(e(n)("\u8BBF\u95EE\u5730\u5740\uFF1A")),1),t("a",{href:o.target,target:"_blank",rel:"noopener noreferrer"},i(o.target),9,i2)]),t("div",null,[t("span",null,i(e(n)("\u53EF\u524D\u5F80")),1),t("a",r2,i(e(n)("DDNSTO\u63A7\u5236\u53F0")),1),t("span",null,i(e(n)("\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")),1)])]),t("div",s2,[t("div",{class:"close",onClick:l},i(e(n)("\u5173\u95ED")),1)])]))}});var l2=O(d2,[["__scopeId","data-v-29e2aec8"]]);const c2={class:"actioner-container"},u2={class:"actioner-container_header"},p2={class:"actioner-container_body"},f2={class:"actioner-container_footer"},m2=T({props:{onSetup:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.onSetup()},s=()=>N(this,null,function*(){if(g.value)return;g.value=!0;const f=$.Loading(a("\u5B89\u88C5\u4E2D..."));try{if(yield Dt.installApp("app-meta-ddnsto",30)){n.onSetup("ddnsto-login");return}else u.value=a("\u5B89\u88C5\u5931\u8D25")}catch(m){u.value=m}finally{f.Close()}g.value=!1}),u=E(a("\u6B63\u5728\u68C0\u6D4B\u4E2D...")),_=E(!1),g=E(!1);return(()=>N(this,null,function*(){try{const f=yield j.App.Check.POST({name:"ddnsto"});if(f!=null&&f.data){const{result:m,error:w}=f.data;if(w){u.value=w;return}if(m){if(m.status=="installed"){n.onSetup("ddnsto-login");return}m.status=="uninstalled"&&(u.value=a("\u9700\u8981\u5B89\u88C5DDNSTO\u63D2\u4EF6\uFF0C\u70B9\u51FB\u201C\u786E\u5B9A\u201D\u5F00\u59CB\u5B89\u88C5"))}}}catch(f){u.value=f}_.value=!0}))(),(f,m)=>(r(),d("div",c2,[t("div",u2,[t("span",null,i(e(a)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",p2,[t("span",null,i(u.value),1)]),t("div",f2,[_.value?(r(),d(U,{key:0},[t("div",{class:"close",onClick:c},i(e(a)("\u53D6\u6D88")),1),t("div",{class:"next",onClick:s},i(e(a)("\u786E\u5B9A")),1)],64)):D("",!0)])]))}});var g2=O(m2,[["__scopeId","data-v-169b4450"]]);const v2={class:"actioner-container"},b2={class:"actioner-container_header"},h2={class:"actioner-container_body"},_2=T({props:{onSetup:{type:Function,required:!0},token:{type:String,required:!0},onDdnstoLocalConfig:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(a("\u6B63\u5728\u68C0\u6D4B\u63D2\u4EF6\u662F\u5426\u5DF2\u542F\u52A8..."));(f=>N(this,null,function*(){var m;try{const w=yield j.Guide.Ddnsto.POST({token:n.token});w!=null&&w.data&&(w.data.error&&(c.value=w.data.error),(((m=w==null?void 0:w.data)==null?void 0:m.success)||0)==0&&_())}catch(w){c.value=w}}))(n.token);const u=E(),_=()=>{const f=()=>N(this,null,function*(){if((yield g())===!0){p();return}u.value=window.setTimeout(f,2e3)});f()},g=()=>N(this,null,function*(){try{const f=yield j.App.Check.POST({name:"ddnsto",checkRunning:!0});if(f!=null&&f.data){f.data.error&&(c.value=f.data.error);const m=f.data.result;if((m==null?void 0:m.status)=="running")return!0}}catch(f){c.value=f}return!1});Mt(()=>{u.value&&clearInterval(u.value)});const p=()=>N(this,null,function*(){var f;try{const m=yield j.Guide.DdntoConfig.GET();if(m!=null&&m.data&&(m.data.error&&(c.value=m.data.error),(((f=m==null?void 0:m.data)==null?void 0:f.success)||0)==0&&m.data.result)){const w=m.data.result;n.onDdnstoLocalConfig(w.netAddr,w.deviceId),n.onSetup("ddnsto-bind")}}catch(m){c.value=m}});return(f,m)=>(r(),d("div",v2,[t("div",b2,[t("span",null,i(e(a)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",h2,i(c.value),1)]))}});var x2=O(_2,[["__scopeId","data-v-6590a3fa"]]);const w2={class:"action-main"},k2=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(o){const n=o,a=E("ddnsto-install"),l=g=>{g!=null?a.value=g:c()},c=()=>{n.Close&&n.Close()},s=mt({sign:"",token:"",domain:n.url,netaddr:"",routerId:""}),u=(g,p)=>{s.sign=g,s.token=p},_=(g,p)=>{s.netaddr=g,s.routerId=p};return(g,p)=>(r(),J(_t,{type:1},{default:G(()=>[t("div",w2,[a.value=="ddnsto-install"?(r(),J(g2,{key:0,onSetup:l})):a.value=="ddnsto-login"?(r(),J(qu,{key:1,onSetup:l,onDdnstoConfig:u})):a.value=="ddnsto-run"?(r(),J(x2,{key:2,onSetup:l,token:e(s).token,onDdnstoLocalConfig:_},null,8,["token"])):a.value=="ddnsto-bind"?(r(),J(Ku,{key:3,onSetup:l,config:{token:e(s).token,sign:e(s).sign,domain:e(s).domain,netaddr:e(s).netaddr,routerId:e(s).routerId},domain:e(s).domain,"onUpdate:domain":p[0]||(p[0]=f=>e(s).domain=f)},null,8,["config","domain"])):a.value=="ddnsto-save"?(r(),J(l2,{key:4,onSetup:l,target:e(s).domain},null,8,["target"])):D("",!0)])]),_:1}))}});var y2=O(k2,[["__scopeId","data-v-3b80943c"]]);const F2=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(y2,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},E2={class:"action"},$2={class:"action-header"},C2=["innerHTML"],D2={class:"action-footer"},B2=T({props:{Close:Function,next:{type:Function},clear:{type:Function},continuer:{type:Function},nextTitle:{type:String},clearTitle:{type:String},continuerTitle:{type:String},title:{type:String},content:{type:String}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.next&&n.next(),n.Close&&n.Close()},s=()=>{n.clear&&n.clear(),n.Close&&n.Close()},u=()=>{n.continuer&&n.continuer(),n.Close&&n.Close()};return(_,g)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[t("div",E2,[t("div",$2,i(o.title||e(a)("\u63D0\u793A")),1),t("div",{class:"action-body",innerHTML:o.content},null,8,C2),t("div",D2,[o.clear?(r(),d("div",{key:0,class:"clear",onClick:s},i(o.clearTitle||e(a)("\u8FD4\u56DE")),1)):D("",!0),t("div",{class:"next",onClick:c},i(o.nextTitle||e(a)("\u786E\u5B9A")),1),o.continuer?(r(),d("div",{key:1,class:"next",onClick:u},i(o.continuerTitle||e(a)("\u7EE7\u7EED\u4FDD\u5B58")),1)):D("",!0)])])]),_:1},8,["Close"]))}});var Y2=O(B2,[["__scopeId","data-v-145a3c50"]]);const Se=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Y2,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},A2=o=>(it("data-v-2c659599"),o=o(),rt(),o),S2={class:"actioner-container"},z2=["onSubmit"],P2={class:"actioner-container_header"},T2={key:0,class:"title_info"},I2={href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E9%98%BF%E9%87%8C%E4%BA%91",target:"_blank"},M2={key:1,class:"title_info"},L2={href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#dnspod",target:"_blank"},O2={key:2,class:"title_info"},N2={href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E8%8A%B1%E7%94%9F%E5%A3%B3",target:"_blank"},V2={class:"label-item"},G2={class:"label-item_key"},j2={class:"label-item_value"},U2={value:"ipv4"},q2={value:"ipv6"},R2={class:"label_tips"},W2=A2(()=>t("svg",{width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])],-1)),H2={class:"info"},J2={class:"label-item"},Z2={class:"label-item_key"},K2={class:"label-item_value"},Q2={class:"label-item"},X2={class:"label-item_key"},t6={class:"label-item_value"},e6=["placeholder"],a6={class:"label-item"},o6={class:"label-item_key"},n6={class:"label-item_value"},i6=["placeholder"],r6={class:"actioner-container_footer"},s6=["disabled"],d6=T({props:{name:{type:String,default:"ali"},onSetup:{type:Function,required:!0},target:{type:String,required:!0}},emits:["update:target"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:c}=H(),s=E("ipv4"),u=E(a.name),_=E(""),g=E(""),p=E(""),f=E(!1),m=()=>{a.onSetup("index")},w=()=>{f.value=!0;const b=$.Loading(l("\u68C0\u6D4B\u4E2D..."));j.Network.CheckPublickNet.POST({ipVersion:s.value}).then(h=>{var v,k;if(h!=null&&h.data){if((v=h==null?void 0:h.data)!=null&&v.error){$.Warning(h==null?void 0:h.data.error);return}if((((k=h==null?void 0:h.data)==null?void 0:k.success)||0)==0){const C=h.data.result;C&&C.address?F():y();return}}throw l("\u672A\u77E5\u9519\u8BEF")}).catch(h=>{$.Error(h)}).finally(()=>{b.Close(),f.value=!1})},y=()=>{Se({title:l("\u6E29\u99A8\u63D0\u793A"),nextTitle:l("\u4F7F\u7528DDNSTO"),continuerTitle:l("\u7EE7\u7EED\u4FDD\u5B58"),content:l("\u68C0\u6D4B\u5230\u60A8\u7684wan\u53E3\u6CA1\u6709\u516C\u7F51IP\u6216\u8005IPv6\u5730\u5740\uFF0C\u53EF\u4EE5\u4F7F\u7528DDNSTO\u914D\u7F6E\u8FDC\u7A0B\u57DF\u540D\u8BBF\u95EE"),next(){x()},continuer(){F()},clear(){}})},x=()=>{a.onSetup("ddnsto")},F=()=>{f.value=!0;const b=$.Loading(l("\u914D\u7F6E\u4E2D..."));j.Guide.PostDdns.POST({ipVersion:s.value,serviceName:u.value,domain:_.value,userName:g.value,password:p.value}).then(h=>{if(h!=null&&h.data){const{error:v,scope:k,success:C}=h.data;if(v=="-100"&&k=="guide.ddns"){Se({title:l("\u6E29\u99A8\u63D0\u793A"),content:l("\u68C0\u6D4B\u5230\u4F60\u6709\u672A\u4FDD\u5B58\u7684\u914D\u7F6E\uFF0C\u53EF\u524D\u5F80\u9875\u9762\u53F3\u4E0A\u89D2\u70B9\u51FB\u67E5\u770B\uFF0C\u4FDD\u5B58\u5E76\u5E94\u7528\u6216\u8005\u6062\u590D\u914D\u7F6E\u540E\u7EE7\u7EED"),next(){}});return}if(v){$.Warning(v);return}if((C||0)==0){n("update:target",_.value),a.onSetup("ddns-success");return}}throw l("\u672A\u77E5\u9519\u8BEF")}).catch(h=>{$.Error(h)}).finally(()=>{b.Close(),f.value=!1})};return(b,h)=>(r(),d("div",S2,[t("form",{class:"actioner-dns",onSubmit:ct(w,["prevent"])},[t("div",P2,[t("span",null,i(e(l)("\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",{class:st(["actioner-container_body",o.name])},[o.name=="ali"?(r(),d("div",T2,[t("p",null,i(e(l)("\u963F\u91CC\u4E91")),1),t("span",null,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1),t("a",I2,i(e(l)("\u67E5\u770B\u6559\u7A0B"))+">>",1)])):o.name=="dnspod"?(r(),d("div",M2,[t("p",null,i(e(l)("dnspod")),1),t("span",null,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1),t("a",L2,i(e(l)("\u67E5\u770B\u6559\u7A0B"))+">>",1)])):o.name=="oray"?(r(),d("div",O2,[t("p",null,i(e(l)("\u82B1\u751F\u58F3")),1),t("span",null,i(e(l)("\u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D")),1),t("a",N2,i(e(l)("\u67E5\u770B\u6559\u7A0B"))+">>",1)])):D("",!0),t("div",V2,[t("div",G2,[t("span",null,i(e(l)("IP\u5730\u5740\u7248\u672C\uFF1A")),1)]),t("div",j2,[L(t("select",{name:"",id:"","onUpdate:modelValue":h[0]||(h[0]=v=>s.value=v)},[t("option",U2,i(e(l)("IPv4\u5730\u5740")),1),t("option",q2,i(e(l)("IPv6\u5730\u5740")),1)],512),[[dt,s.value]])]),t("div",R2,[W2,t("span",H2,i(e(l)("\u8BBE\u5B9A\u54EA\u4E00\u4E2A IP \u5730\u5740\uFF08IPv4 \u6216 IPv6\uFF09\u4F1A\u88AB\u53D1\u9001\u7ED9 DDNS \u63D0\u4F9B\u5546")),1)])]),t("div",J2,[t("div",Z2,[t("span",null,i(e(l)("\u57DF\u540D\uFF1A")),1)]),t("div",K2,[L(t("input",{type:"text",placeholder:"myhost.example.com","onUpdate:modelValue":h[1]||(h[1]=v=>_.value=v),required:""},null,512),[[et,_.value,void 0,{trim:!0}]])])]),t("div",Q2,[t("div",X2,[t("span",null,i(e(l)("\u7528\u6237\u540D\uFF1A")),1)]),t("div",t6,[L(t("input",{type:"text","onUpdate:modelValue":h[2]||(h[2]=v=>g.value=v),placeholder:e(l)("\u8BF7\u8F93\u5165\u7528\u6237\u540D"),required:""},null,8,e6),[[et,g.value,void 0,{trim:!0}]])])]),t("div",a6,[t("div",o6,[t("span",null,i(e(l)("\u5BC6\u7801\uFF1A")),1)]),t("div",n6,[L(t("input",{type:"password","onUpdate:modelValue":h[3]||(h[3]=v=>p.value=v),placeholder:e(l)("\u8BF7\u8F93\u5165\u5BC6\u7801"),required:""},null,8,i6),[[et,p.value,void 0,{trim:!0}]])])])],2),t("div",r6,[t("div",{class:"close",onClick:m,type:"button"},i(e(l)("\u8FD4\u56DE")),1),t("button",{class:"next save",type:"submit",disabled:f.value},i(e(l)("\u4FDD\u5B58")),9,s6)])],40,z2)]))}});var He=O(d6,[["__scopeId","data-v-2c659599"]]);const l6={class:"action-main"},c6=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(o){const n=o,a=E(""),l=E("index"),c=g=>{if(g!=null){if(g=="ddnsto"){s();return}l.value=g}else u()},s=()=>{u(),F2({url:n.url})},u=()=>{n.Close&&n.Close()},_=E("ddnsto");return(g,p)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[t("div",l6,[l.value=="index"?(r(),J($u,{key:0,onSetup:c,active:_.value,"onUpdate:active":p[0]||(p[0]=f=>_.value=f)},null,8,["active"])):l.value=="ddns-ali"?(r(),J(He,{key:1,onSetup:c,target:a.value,"onUpdate:target":p[1]||(p[1]=f=>a.value=f),name:"ali"},null,8,["target"])):l.value=="ddns-dnspod"?(r(),J(He,{key:2,onSetup:c,target:a.value,"onUpdate:target":p[2]||(p[2]=f=>a.value=f),name:"dnspod"},null,8,["target"])):l.value=="ddns-oray"?(r(),J(He,{key:3,onSetup:c,target:a.value,"onUpdate:target":p[3]||(p[3]=f=>a.value=f),name:"oray"},null,8,["target"])):l.value=="ddns-success"?(r(),J(Lu,{key:4,onSetup:c,target:a.value},null,8,["target"])):D("",!0)])]),_:1},8,["Close"]))}});var u6=O(c6,[["__scopeId","data-v-8a1e6470"]]);const p6=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(u6,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},Ne=o=>(it("data-v-d3a8d744"),o=o(),rt(),o),f6={class:"content"},m6={class:"tab"},g6=Ne(()=>t("div",{class:"title"},"DDNSTO",-1)),v6={key:0},b6={key:1},h6=Ne(()=>t("div",{class:"title"},"IPv4",-1)),_6={key:0},x6={key:1},w6=Ne(()=>t("div",{class:"title"},"IPv6",-1)),k6={key:0},y6={key:1},F6={key:0,class:"info"},E6={class:"status"},$6=Ne(()=>t("div",null,"DDNSTO",-1)),C6={key:0},D6={key:1,class:"offline"},B6={class:"title_box"},Y6={class:"title"},A6={class:"path"},S6=["href","title"],z6={key:1},P6={class:"item_btn",href:"https://www.kooldns.cn/app/#/devices",target:"_blank"},T6={key:1,class:"info"},I6={class:"status"},M6={key:0,class:"offline"},L6={key:1},O6={class:"title_box"},N6={class:"title"},V6={class:"path"},G6={key:0},j6=["href"],U6={key:2,href:"/cgi-bin/luci/admin/services/ddns"},q6={key:2,class:"info"},R6={class:"status"},W6={key:0,class:"offline"},H6={key:1},J6={class:"title_box"},Z6={class:"title"},K6={class:"path"},Q6={key:0},X6=["href"],t5={key:2,href:"/cgi-bin/luci/admin/services/ddns"},e5=T({setup(o){const{$gettext:n}=H(),a=E(0),l=m=>{a.value=m};let c=!1,s;const u=E({}),_=function(){!c||(document.hidden?Promise.resolve():j.Guide.GetDdns.GET().then(m=>{var w;m!=null&&m.data&&(((w=m==null?void 0:m.data)==null?void 0:w.success)||0)==0&&m.data.result&&(u.value=m.data.result)})).then(()=>{!c||(s=window.setTimeout(_,3e3))})};At(()=>{c=!0,s=window.setTimeout(_,1100)}),Mt(()=>{s!==void 0&&window.clearTimeout(s),c=!1});const g=()=>{p6({url:u.value.ddnstoDomain})},p=Q(()=>{const m=u.value.ipv4Domain;return!m||m=="Stopped"||m=="Disabled"?m:`http://${m}`}),f=Q(()=>{const m=u.value.ipv6Domain;return!m||m=="Stopped"||m=="Disabled"?m:`http://${m}`});return(m,w)=>(r(),J(Rt,{title:e(n)("\u8FDC\u7A0B\u57DF\u540D"),showSettings:!0,style:{width:"100%",height:"100%",display:"block"}},{icon:G(()=>[B(We,{color:"#00a63e",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:g},[B(We,{color:"#0a0a0a",class:"icon1 earthIcon",style:{"margin-right":"6px"}}),nt(" "+i(e(n)("\u57DF\u540D\u914D\u7F6E")),1)])]),default:G(()=>{var y,x,F,b,h,v;return[t("div",f6,[t("div",m6,[t("div",{class:st(["item cloud",{active:a.value==0}]),style:ft({border:e(p)||e(f)?"":"none"}),onClick:w[0]||(w[0]=k=>l(0))},[B(We,{color:"#155dfc",class:"icon2"}),g6,(y=u.value)!=null&&y.ddnstoDomain?(r(),d("span",v6,i(e(n)("\u6B63\u5E38")),1)):(r(),d("span",b6,i(e(n)("\u672A\u542F\u52A8")),1))],6),e(p)?(r(),d("div",{key:0,class:st(["item memory",{active:a.value==1}]),onClick:w[1]||(w[1]=k=>l(1))},[B(Ga,{color:"#00a63e",class:"icon2"}),h6,e(p)=="Stopped"||e(p)=="Disabled"?(r(),d("span",_6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",x6,i(e(n)("\u6B63\u5E38")),1))],2)):D("",!0),e(f)?(r(),d("div",{key:1,class:st(["item network",{active:a.value==2}]),onClick:w[2]||(w[2]=k=>l(2))},[B(cu,{class:"icon2"}),w6,e(f)=="Stopped"||e(f)=="Disabled"?(r(),d("span",k6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",y6,i(e(n)("\u6B63\u5E38")),1))],2)):D("",!0)]),a.value==0?(r(),d("div",F6,[t("div",E6,[$6,(x=u.value)!=null&&x.ddnstoDomain?(r(),d("span",C6,i(e(n)("\u6B63\u5E38")),1)):(r(),d("span",D6,i(e(n)("\u672A\u542F\u52A8")),1))]),t("div",B6,[t("div",Y6,i(e(n)("\u667A\u80FD\u5185\u7F51\u7A7F\u900F\u670D\u52A1")),1),t("div",A6,[(F=u.value)!=null&&F.ddnstoDomain?(r(),d("a",{key:0,class:"configure",href:(b=u.value)==null?void 0:b.ddnstoDomain,target:"_blank",rel:"noopener noreferrer",title:(h=u.value)==null?void 0:h.ddnstoDomain},i((v=u.value)==null?void 0:v.ddnstoDomain),9,S6)):(r(),d("div",z6,i(e(n)("\u672A\u5B89\u88C5\u6216\u672A\u914D\u7F6E")),1)),t("span",null,[t("a",P6,i(e(n)("\u63A7\u5236\u53F0")),1)])])])])):D("",!0),a.value==1?(r(),d("div",T6,[t("div",I6,[t("div",null,i(e(n)("\u5F53\u524D\u72B6\u6001:")),1),e(p)=="Stopped"||e(p)=="Disabled"?(r(),d("span",M6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",L6,i(e(n)("\u6B63\u5E38")),1))]),t("div",O6,[t("div",N6,"IPv4 "+i(e(n)("\u52A8\u6001\u57DF\u540D\u89E3\u6790")),1),t("div",V6,[e(p)=="Stopped"||e(p)=="Disabled"?(r(),d("div",G6,i(e(p)),1)):(r(),d("a",{key:1,class:"configure",href:e(p),target:"_blank",rel:"noopener noreferrer"},i(e(p)),9,j6)),e(p)?(r(),d("a",U6,[B(wa,{class:"icon3"})])):D("",!0)])])])):D("",!0),a.value==2?(r(),d("div",q6,[t("div",R6,[t("div",null,i(e(n)("\u5F53\u524D\u72B6\u6001:")),1),e(f)=="Stopped"||e(f)=="Disabled"?(r(),d("span",W6,i(e(n)("\u79BB\u7EBF")),1)):(r(),d("span",H6,i(e(n)("\u6B63\u5E38")),1))]),t("div",J6,[t("div",Z6,"IPv6 "+i(e(n)("\u52A8\u6001\u57DF\u540D\u89E3\u6790")),1),t("div",K6,[e(f)=="Stopped"||e(f)=="Disabled"?(r(),d("div",Q6,i(e(f)),1)):(r(),d("a",{key:1,class:"configure",href:e(f),target:"_blank",rel:"noopener noreferrer"},i(e(f)),9,X6)),e(f)?(r(),d("a",t5,[B(wa,{class:"icon3"})])):D("",!0)])])])):D("",!0)])]}),_:1},8,["title"]))}});var a5=O(e5,[["__scopeId","data-v-d3a8d744"]]);const o5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},n5=["fill"],i5=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",o5,[t("path",{d:"M879.674 544.51l-158.254-0.221c-8.534 2.287-17.305-2.776-19.588-11.307l-23.862-75.877-74.742 350.891c0 0-1.523 18.507-11.518 18.507s-26.9 0.281-26.9 0.281c-8.259 2.213-16.748-2.687-18.961-10.949l-92.741-457.648-70.305 330.634c-2.261 8.291-11.94 15.206-20.385 12.986l-24.876 0.339c-8.723 2.293-17.685-2.789-20.023-11.349L270.629 544.51 143.993 544.51c-8.831 0-15.993-7.159-15.993-15.993l0-31.986c0-8.831 7.162-15.993 15.993-15.993l157.429-0.516c9.565-0.304 17.685 0.788 20.023 9.351l24.386 76.092 68.642-358.907c0 0 3.4-10.894 14.397-10.894 10.994 0 34.107-0.448 34.107-0.448 8.262-2.213 16.751 2.687 18.965 10.949l91.912 454.126 67.948-326.182c2.213-8.262 8.707-15.161 16.965-12.948l27.316-0.333c8.531-2.287 17.301 2.776 19.588 11.31l46.665 148.4 127.337 0c8.835 0 15.993 7.162 15.993 15.993l0 31.986C895.667 537.352 888.508 544.51 879.674 544.51z","p-id":"5314",fill:o.color},null,8,n5)]))}}),r5=()=>{var n;const o=document.body.getAttribute("theme");if(o)switch(o){case"dark":case"light":return o}return(n=window.matchMedia("(prefers-color-scheme: dark)"))!=null&&n.matches?"dark":"light"},ja=()=>r5()=="dark",Ua=o=>(it("data-v-243be5d3"),o=o(),rt(),o),s5={class:"title_box"},d5={class:"display_flex"},l5={class:"network_tag"},c5={class:"tag_item"},u5=Ua(()=>t("div",{class:"tag_dn"},null,-1)),p5={class:"tag_item"},f5=Ua(()=>t("div",{class:"tag_up"},null,-1)),m5={class:"speed"},g5={class:"speed_item"},v5={style:{color:"#1596fd"}},b5={class:"speed_item"},h5={style:{color:"#00a63e"}},_5=T({setup(o){const{$gettext:n}=H();Qe([Ya,Aa,Sa,Xe,ta,za]);const a=E(),l=v=>{var C;const k=(C=a.value)==null?void 0:C[v];return!k||k.startTime==0?"":p(k.startTime*1e3)+"-"+p(k.endTime*1e3)},c=Q(()=>{var k;let v=[];return(k=a.value)==null||k.forEach(C=>{v.push({value:C.uploadSpeed})}),v}),s=Q(()=>{var k;let v=[];return(k=a.value)==null||k.forEach(C=>{v.push({value:C.downloadSpeed})}),v}),u=Q(()=>{var k;let v="";if(a.value){let C=((k=a.value)==null?void 0:k.length)||0;if(C>0){let A=a.value[C-1];v=f(A.uploadSpeed)+"/s"}}return v}),_=Q(()=>{var k;let v="";if(a.value){let C=((k=a.value)==null?void 0:k.length)||0;if(C>0){let A=a.value[C-1];v=f(A.downloadSpeed)+"/s"}}return v});Q(()=>{var k;let v=[];return(k=a.value)==null||k.forEach(C=>{v.push({value:C.downloadSpeed+C.uploadSpeed})}),v});const g=()=>N(this,null,function*(){var v;try{const k=yield j.Network.Statistics.GET();if(k.data&&(v=k.data.result)!=null&&v.items){const C=k.data.result.slots||10;if(k.data.result.items.lengthC?a.value=k.data.result.items.slice(C-k.data.result.items.length):a.value=k.data.result.items}}catch(k){console.log(k)}}),p=Pt.dateForm,f=Pt.byteToSize,m=E(),w=E();let y=null,x=null,F=null;const b=v=>{const k=ja();return y=ea(v,k?"dark":"light"),y.setOption({animation:!1,backgroundColor:k?"#2c2c2c":"#fff",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:C=>{if(Array.isArray(C)){let A="";C.length>0&&(A=l(C[0].axisValue));for(let S=0;S${C[S].seriesName}: ${f(C[S].value)}/s`;return A.toString()}else{const A=C;return`${l(A.axisValue)}
${A.seriesName}: ${f(A.value)}/s`}}},xAxis:{type:"category",boundaryGap:!1,splitLine:{lineStyle:{color:["#999"]},show:!1},name:"",show:!1,nameGap:0,nameTextStyle:{height:0,lineHeight:0,padding:0}},title:{text:"",textStyle:{fontSize:12,color:k?"#cccccc":"rgba(0, 0, 0, 0.6)"},top:"10px",left:"10px"},yAxis:{type:"value",name:"",minInterval:1e4,interval:1e3,axisLabel:{formatter:function(C,A){return`${f(C)}/s`},color:"#fff",show:!1},nameTextStyle:{color:"#fff"},splitLine:{lineStyle:{color:["#999"]},show:!1}},series:[{name:n("\u4E0B\u8F7D"),data:s.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(32, 199, 247, 1)"},{offset:1,color:"rgba(32, 199, 247, 0.1)"}],global:!1}}},{name:n("\u4E0A\u4F20"),data:c.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(85, 58, 254, 1)"},{offset:1,color:"rgba(85, 58, 254, 0.1)"}],global:!1}}}],grid:{left:"2%",right:"2%",bottom:"0%",top:"10%",containLabel:!0}}),y},h=()=>{if(!y||!m.value)return;const v=Math.max(m.value.clientWidth,50),k=Math.max(m.value.clientHeight,50);y.resize({width:v,height:k})};return At(()=>{setTimeout(()=>N(this,null,function*(){if(m.value){yield g();const v=b(m.value),k=m.value;h(),F=()=>{h()},window.addEventListener("resize",F),"ResizeObserver"in window&&(x=new ResizeObserver(()=>{h()}),w.value&&x.observe(w.value),x.observe(k));const C=()=>N(this,null,function*(){if(y!=null){if(!document.hidden){if(yield g(),y==null)return;v.setOption({series:[{name:n("\u4E0B\u8F7D"),data:s.value,type:"line",areaStyle:{},smooth:!0},{name:n("\u4E0A\u4F20"),data:c.value,type:"line",areaStyle:{},smooth:!0}]}),h()}setTimeout(C,5e3)}});setTimeout(C,5e3)}}),900)}),Mt(()=>{y!=null&&(y.dispose(),y=null),F&&(window.removeEventListener("resize",F),F=null),x&&(x.disconnect(),x=null)}),(v,k)=>(r(),d("div",{class:"network_container",ref_key:"containerRef",ref:w},[t("div",s5,[t("div",d5,[B(i5,{color:"#20c7f7",class:"icon"}),t("span",null,i(e(n)("\u7F51\u7EDC\u6D41\u91CF")),1)]),t("div",null,[t("div",l5,[t("div",c5,[u5,t("span",null,i(e(n)("\u4E0B\u8F7D")),1)]),t("div",p5,[f5,t("span",null,i(e(n)("\u4E0A\u4F20")),1)])])])]),t("div",m5,[t("div",g5,[t("span",null,i(e(n)("\u4E0B\u8F7D\u901F\u5EA6")),1),t("div",v5,i(e(_)),1)]),t("div",b5,[t("span",null,i(e(n)("\u4E0A\u4F20\u901F\u5EA6")),1),t("div",h5,i(e(u)),1)])]),t("div",{ref_key:"el",ref:m,class:"echart"},null,512)],512))}});var x5=O(_5,[["__scopeId","data-v-243be5d3"]]);const w5={width:"32",height:"32",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},k5=["fill"],y5=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",w5,[t("path",{d:"M512 298.666667c-162.133333 0-285.866667 68.266667-375.466667 213.333333 89.6 145.066667 213.333333 213.333333 375.466667 213.333333s285.866667-68.266667 375.466667-213.333333c-89.6-145.066667-213.333333-213.333333-375.466667-213.333333z m0 469.333333c-183.466667 0-328.533333-85.333333-426.666667-256 98.133333-170.666667 243.2-256 426.666667-256s328.533333 85.333333 426.666667 256c-98.133333 170.666667-243.2 256-426.666667 256z m0-170.666667c46.933333 0 85.333333-38.4 85.333333-85.333333s-38.4-85.333333-85.333333-85.333333-85.333333 38.4-85.333333 85.333333 38.4 85.333333 85.333333 85.333333z m0 42.666667c-72.533333 0-128-55.466667-128-128s55.466667-128 128-128 128 55.466667 128 128-55.466667 128-128 128z",fill:o.color,"p-id":"5225"},null,8,k5)]))}}),F5={width:"32",height:"32",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},E5=["fill"],$5=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",F5,[t("path",{d:"M332.8 729.6l34.133333-34.133333c42.666667 12.8 93.866667 21.333333 145.066667 21.333333 162.133333 0 285.866667-68.266667 375.466667-213.333333-46.933333-72.533333-102.4-128-166.4-162.133334l29.866666-29.866666c72.533333 42.666667 132.266667 106.666667 183.466667 192-98.133333 170.666667-243.2 256-426.666667 256-59.733333 4.266667-119.466667-8.533333-174.933333-29.866667z m-115.2-64c-51.2-38.4-93.866667-93.866667-132.266667-157.866667 98.133333-170.666667 243.2-256 426.666667-256 38.4 0 76.8 4.266667 110.933333 12.8l-34.133333 34.133334c-25.6-4.266667-46.933333-4.266667-76.8-4.266667-162.133333 0-285.866667 68.266667-375.466667 213.333333 34.133333 51.2 72.533333 93.866667 115.2 128l-34.133333 29.866667z m230.4-46.933333l29.866667-29.866667c8.533333 4.266667 21.333333 4.266667 29.866666 4.266667 46.933333 0 85.333333-38.4 85.333334-85.333334 0-12.8 0-21.333333-4.266667-29.866666l29.866667-29.866667c12.8 17.066667 17.066667 38.4 17.066666 64 0 72.533333-55.466667 128-128 128-17.066667-4.266667-38.4-12.8-59.733333-21.333333zM384 499.2c4.266667-68.266667 55.466667-119.466667 123.733333-123.733333 0 4.266667-123.733333 123.733333-123.733333 123.733333zM733.866667 213.333333l29.866666 29.866667-512 512-34.133333-29.866667L733.866667 213.333333z",fill:o.color,"p-id":"5534"},null,8,E5)]))}}),C5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},D5=["fill"],xe=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",C5,[t("path",{d:"M512 96c229.76 0 416 186.24 416 416S741.76 928 512 928 96 741.76 96 512 282.24 96 512 96z m-32 448l-127.317333 0.021333c0.896 20.48 2.624 40.405333 5.12 59.669334l1.984 14.293333 2.474666 15.253333c19.754667 112.896 65.728 197.738667 117.76 222.997334L480 544z m191.317333 0.021333L544 544v312.234667c50.858667-24.725333 95.936-106.368 116.373333-215.509334l1.365334-7.488 2.474666-15.232a701.013333 701.013333 0 0 0 7.104-73.984z m-382.698666 0H161.429333c11.648 129.066667 92.992 238.08 206.101334 289.066667-22.122667-34.282667-40.362667-76.416-53.76-124.032l-3.029334-11.093333-3.52-14.165334-3.242666-14.464a744.490667 744.490667 0 0 1-15.36-125.312z m573.952 0H735.36a752.661333 752.661333 0 0 1-12.672 112.128l-2.688 13.184-3.242667 14.464-3.52 14.186667c-13.653333 52.138667-32.96 98.197333-56.789333 135.104 113.109333-50.986667 194.453333-160 206.08-289.066667zM367.530667 190.890667l-2.858667 1.301333C253.013333 243.733333 172.970667 352 161.429333 480h127.189334c1.536-39.04 5.866667-76.693333 12.672-112.149333l2.688-13.184 3.242666-14.464 3.52-14.186667c13.653333-52.138667 32.96-98.197333 56.789334-135.104zM480 167.765333c-50.709333 24.618667-95.68 105.898667-116.202667 214.592l-1.536 8.405334-2.474666 15.232a701.034667 701.034667 0 0 0-7.104 74.005333H480V167.765333z m176.469333 23.146667l2.56 4.053333c20.906667 33.429333 38.229333 73.984 51.093334 119.552l3.136 11.52 3.52 14.165334 3.242666 14.464c8.362667 39.253333 13.632 81.408 15.36 125.333333h127.189334c-11.626667-129.088-92.970667-238.101333-206.101334-289.066667zM544 167.765333L544 480h127.317333a707.136 707.136 0 0 0-5.333333-61.376l-1.770667-12.629333-2.474666-15.232c-19.754667-112.874667-65.706667-197.717333-117.717334-222.997334z","p-id":"4600",fill:o.color},null,8,D5)]))}}),B5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Y5=["fill"],A5=["fill"],S5=T({props:{color:{type:String,default:"#00a63e"}},setup(o){return(n,a)=>(r(),d("svg",B5,[t("path",{d:"M986.112 179.2c-12.288-12.288-31.744-12.288-44.032 0l-472.064 471.04-180.224-180.224c-12.288-12.288-31.744-12.288-44.032 0-12.288 12.288-12.288 31.744 0 44.032l202.752 201.728c6.144 6.144 12.288 9.216 22.528 9.216 9.216 0 15.36-3.072 22.528-9.216l494.592-492.544c10.24-12.288 10.24-31.744-2.048-44.032z",fill:o.color,"p-id":"11312"},null,8,Y5),t("path",{d:"M1024 548.864c0-17.408-14.336-31.744-31.744-31.744-17.408 0-31.744 14.336-31.744 31.744C941.056 779.264 747.52 959.488 513.024 959.488 265.216 959.488 64.512 759.808 64.512 512c0-247.808 200.704-447.488 448.512-447.488 69.632 0 135.168 15.36 194.56 44.032h1.024c4.096 1.024 7.168 2.048 11.264 2.048 17.408 0 31.744-14.336 31.744-31.744 0-12.288-7.168-23.552-17.408-28.672C665.6 17.408 590.848 0 513.024 0 229.376 0 0 229.376 0 512s229.376 512 513.024 512c270.336 0 491.52-208.896 510.976-475.136z",fill:o.color,"p-id":"11313"},null,8,A5)]))}}),z5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},P5=["fill"],T5=T({props:{color:{type:String,default:"#e7000b"}},setup(o){return(n,a)=>(r(),d("svg",z5,[t("path",{d:"M511.9744 706.6624a57.2672 57.2672 0 0 1 56.96 57.5488c0 20.5568-10.8544 39.552-28.4672 49.8432a56.4736 56.4736 0 0 1-56.9856 0 57.6512 57.6512 0 0 1-28.4928-49.8432c0-31.7696 25.4976-57.5488 56.9856-57.5488zM190.1824 147.3024l2.4832 2.2272 614.4 614.4a30.72 30.72 0 0 1-40.96 45.696l-2.4832-2.2528-229.4528-229.504a189.6704 189.6704 0 0 0-180.864 83.8912 29.3376 29.3376 0 0 1-40.9344 7.3728 30.976 30.976 0 0 1-8.32-41.6768 248.8576 248.8576 0 0 1 170.624-109.056l-78.7968-78.7968a346.8288 346.8288 0 0 0-156.7744 112.128 29.4144 29.4144 0 0 1-50.944-8.4224 31.0784 31.0784 0 0 1 4.736-30.0544 406.9888 406.9888 0 0 1 156.1088-120.4736l-71.9872-72.0128a504.7808 504.7808 0 0 0-150.6816 120.32 29.2864 29.2864 0 0 1-41.9328 2.7904 31.0016 31.0016 0 0 1-2.9184-42.88 564.608 564.608 0 0 1 150.8608-124.928L149.2224 192.9472a30.72 30.72 0 0 1 40.96-45.6704z m321.792 211.6352a404.992 404.992 0 0 1 319.0528 154.368 30.976 30.976 0 0 1-4.3008 42.8288 29.184 29.184 0 0 1-41.9072-4.4032 345.984 345.984 0 0 0-229.7088-129.2032l-63.1552-63.104c6.656-0.3328 13.312-0.4864 20.0192-0.4864z m0-156.6976c166.1184 0 322.9952 72.448 430.4896 198.8608 10.752 12.672 9.472 31.872-2.8416 42.9312a29.184 29.184 0 0 1-42.0352-2.9184 505.344 505.344 0 0 0-385.6128-177.92 509.184 509.184 0 0 0-105.2672 11.008l-50.2272-50.2784A566.656 566.656 0 0 1 512 202.24z","p-id":"5359",fill:o.color},null,8,P5)]))}}),I5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},M5=["fill"],L5=["fill"],O5=["fill"],N5=T({props:{color:{type:String,default:"#f54900"}},setup(o){return(n,a)=>(r(),d("svg",I5,[t("path",{d:"M512 179.2l390.4 627.2H128l384-627.2m0-64c-19.2 0-44.8 12.8-51.2 32l-390.4 627.2c-25.6 44.8 6.4 96 51.2 96H896c51.2 0 83.2-57.6 51.2-96l-384-627.2c-6.4-19.2-32-32-51.2-32z",fill:o.color,"p-id":"4490"},null,8,M5),t("path",{d:"M512 640c-19.2 0-32-12.8-32-32v-192c0-19.2 12.8-32 32-32s32 12.8 32 32v192c0 19.2-12.8 32-32 32z",fill:o.color,"p-id":"4491"},null,8,L5),t("path",{d:"M512 723.2m-32 0a32 32 0 1 0 64 0 32 32 0 1 0-64 0Z",fill:o.color,"p-id":"4492"},null,8,O5)]))}}),V5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},G5=["fill"],qa=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",V5,[t("path",{d:"M511.3 116.7l339.1 193.8v387.6L511.3 891.9 172.2 698.1V310.5l339.1-193.8zM802 345.6L535.5 516.7v305.5L802 670V345.6z m-581.4 0.3V670l266.5 152.3V516.7L220.6 345.9z m434.1-87.3L401.1 405l110.3 71.4 248.9-161.5L658 256.4c-1.1 0.7-2.2 1.5-3.3 2.2z m-143.4-86L262.2 314.9l93.4 60.5c0.5-0.4 1.1-0.7 1.6-1l252.3-145.7-98.2-56.1z m0 0",fill:o.color,"p-id":"14790"},null,8,G5)]))}}),j5={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},U5=["fill"],q5=["fill"],R5=["fill"],ze=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",j5,[t("path",{d:"M723 620.5C666.8 571.6 593.4 542 513 542s-153.8 29.6-210.1 78.6c-3.2 2.8-3.6 7.8-0.8 11.2l36 42.9c2.9 3.4 8 3.8 11.4 0.9C393.1 637.2 450.3 614 513 614s119.9 23.2 163.5 61.5c3.4 2.9 8.5 2.5 11.4-0.9l36-42.9c2.8-3.3 2.4-8.3-0.9-11.2zM840.4 480.4C751.7 406.5 637.6 362 513 362s-238.7 44.5-327.5 118.4c-3.4 2.8-3.8 7.9-1 11.3l36 42.9c2.8 3.4 7.9 3.8 11.2 1C308 472.2 406.1 434 513 434s205 38.2 281.2 101.6c3.4 2.8 8.4 2.4 11.2-1l36-42.9c2.8-3.4 2.4-8.5-1-11.3z","p-id":"5126",fill:o.color},null,8,U5),t("path",{d:"M957.1 341.4C835.7 241.8 680.3 182 511 182c-168.2 0-322.6 59-443.7 157.4-3.5 2.8-4 7.9-1.1 11.4l36 42.9c2.8 3.3 7.8 3.8 11.1 1.1C222 306.7 360.3 254 511 254c151.8 0 291 53.5 400 142.7 3.4 2.8 8.4 2.3 11.2-1.1l36-42.9c2.9-3.4 2.4-8.5-1.1-11.3z","p-id":"5127",fill:o.color},null,8,q5),t("path",{d:"M512 778m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"5128",fill:o.color},null,8,R5)]))}}),W5=["onSubmit"],H5={class:"actioner-dns_header"},J5={class:"actioner-dns_body"},Z5={class:"label-item"},K5={class:"label-item_key"},Q5={class:"label-item_value"},X5=["disabled"],t3={value:"manual"},e3={class:"label-item"},a3={class:"label-item_key"},o3={class:"label-item_value"},n3=["placeholder","onUpdate:modelValue"],i3={class:"label-item_key"},r3={class:"label-item_value"},s3=["placeholder","onUpdate:modelValue"],d3={key:1,class:"label-message"},l3={class:"actioner-dns_footer"},c3=["disabled"],u3={key:1,class:"actioner-dns"},p3={class:"actioner-dns_header"},f3={class:"actioner-dns_body"},m3={class:"config-message"},g3={class:"actioner-dns_footer"},v3=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(0),s=Fe(),u=s.status,_=Q(()=>s.status.proto!="static"),g=()=>{let F=u.dnsList||[];for(F=F.filter(b=>b);F.length<2;)F.push("");return F},p=E({interfaceName:u.defaultInterface||"",dnsProto:u.dnsProto||"manual",manualDnsIp:g()}),f=E(""),m=E(!1),w=()=>N(this,null,function*(){f.value="";let F={};switch(p.value.dnsProto){case"auto":break;case"manual":if(F.manualDnsIp=[],!p.value.manualDnsIp[0]){$.Error(a("\u81F3\u5C11\u9700\u8981\u586B\u5199\u4E00\u4E2ADNS"));return}F.manualDnsIp=p.value.manualDnsIp.filter(h=>h);break}F.dnsProto=p.value.dnsProto,F.interfaceName=p.value.interfaceName;const b=$.Loading(a("\u914D\u7F6E\u4E2D..."));try{const h=yield j.Guide.DnsConfig.POST(F);if(h!=null&&h.data){const{success:v,error:k}=h==null?void 0:h.data;k&&(f.value=k),(v==null||v==0)&&($.Success(a("\u914D\u7F6E\u6210\u529F")),c.value=1)}}catch(h){f.value=h}b.Close()}),y=F=>{F.preventDefault(),n.Close&&n.Close()},x=F=>{location.reload()};return(F,b)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[c.value==0?(r(),d("form",{key:0,class:"actioner-dns",onSubmit:ct(w,["prevent"])},[t("div",H5,[t("span",null,i(e(a)("DNS\u914D\u7F6E")),1)]),t("div",J5,[t("div",Z5,[t("div",K5,[t("span",null,i(e(a)("DNS\u9009\u9879")),1)]),t("div",Q5,[L(t("select",{"onUpdate:modelValue":b[0]||(b[0]=h=>p.value.dnsProto=h)},[t("option",{value:"auto",disabled:!e(_)},i(e(a)("\u81EA\u52A8\u83B7\u53D6DNS")),9,X5),t("option",t3,i(e(a)("\u81EA\u5B9A\u4E49DNS")),1)],512),[[dt,p.value.dnsProto]])])]),p.value.dnsProto=="manual"?(r(!0),d(U,{key:0},tt(p.value.manualDnsIp,(h,v)=>(r(),d("div",e3,[v==0?(r(),d(U,{key:0},[t("div",a3,[t("span",null,i(e(a)("DNS\u670D\u52A1\u5668\u5730\u5740")),1)]),t("div",o3,[L(t("input",{type:"text",placeholder:e(a)("\u8BF7\u8F93\u5165DNS\u5730\u5740"),required:"","onUpdate:modelValue":k=>p.value.manualDnsIp[v]=k},null,8,n3),[[et,p.value.manualDnsIp[v],void 0,{trim:!0}]])])],64)):(r(),d(U,{key:1},[t("div",i3,i(e(a)("\u5907\u7528DNS\u670D\u52A1\u5668\u5730\u5740")),1),t("div",r3,[L(t("input",{type:"text",placeholder:e(a)("\u5907\u7528DNS\u5730\u5740"),"onUpdate:modelValue":k=>p.value.manualDnsIp[v]=k},null,8,s3),[[et,p.value.manualDnsIp[v],void 0,{trim:!0}]])])],64))]))),256)):D("",!0),f.value?(r(),d("div",d3,i(f.value),1)):D("",!0)]),t("div",l3,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:m.value},i(e(a)("\u786E\u8BA4")),9,c3),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:y},i(e(a)("\u53D6\u6D88")),1)])],40,W5)):c.value==1?(r(),d("div",u3,[t("div",p3,[t("span",null,i(e(a)("DNS\u914D\u7F6E")),1)]),t("div",f3,[t("div",m3,i(e(a)("DNS\u914D\u7F6E\u5DF2\u4FDD\u5B58")),1)]),t("div",g3,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:x},i(e(a)("\u5B8C\u6210")),1)])])):D("",!0)]),_:1},8,["Close"]))}});var b3=O(v3,[["__scopeId","data-v-2ac87be2"]]);const Ra=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(b3,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},h3=["onSubmit"],_3={class:"actioner-dns_header"},x3={class:"actioner-dns_body"},w3={class:"label-item"},k3={class:"label-item_key"},y3={class:"label-item_value"},F3={class:"item_info"},E3={class:"label-item"},$3={class:"label-item_key"},C3={class:"label-item_value"},D3={selected:"true",value:""},B3=["value"],Y3={class:"actioner-dns_footer"},A3=["disabled"],S3={key:1,class:"actioner-dns"},z3={class:"actioner-dns_header"},P3={class:"softsource_tit"},T3={class:"actioner-dns_body"},I3={class:"finished"},M3={class:"successed"},L3={class:"btns"},O3=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(0),s=E(""),u=E(),_=E();(()=>{j.Guide.SoftSourceList.GET().then(w=>{var y,x;if((y=w==null?void 0:w.data)!=null&&y.result){const F=(x=w==null?void 0:w.data)==null?void 0:x.result;_.value=F}}).then(()=>j.Guide.GetSoftSource.GET()).then(w=>{var y,x;if((y=w==null?void 0:w.data)!=null&&y.result){const F=w.data.result;u.value=F.softSource,(x=_.value)!=null&&x.softSourceList.find(b=>b.identity==F.softSource.identity)&&(s.value=F.softSource.identity)}})})();const p=w=>{w.preventDefault(),n.Close&&n.Close()},f=w=>{const y=$.Loading(a("\u6B63\u5728\u5207\u6362\u4E2D..."));j.Guide.SoftSource.POST({softSourceIdentity:s.value}).then(x=>{if(x!=null&&x.data){if((x.data.success||0)==0){c.value=1;return}else if(x.data.error)throw x.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(x=>{$.Error(x)}).finally(()=>y.Close())},m=w=>{w.preventDefault(),location.reload()};return(w,y)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>{var x,F;return[c.value==0?(r(),d("form",{key:0,class:"actioner-dns",onSubmit:ct(f,["prevent"])},[t("div",_3,[t("span",null,i(e(a)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)]),t("div",x3,[t("div",w3,[t("div",k3,[t("span",null,i(e(a)("\u5F53\u524D\u8F6F\u4EF6\u6E90")),1)]),t("div",y3,[t("p",F3,i((x=u.value)==null?void 0:x.name),1)])]),t("div",E3,[t("div",$3,[t("span",null,i(e(a)("\u5207\u6362\u8F6F\u4EF6\u6E90")),1)]),t("div",C3,[L(t("select",{name:"",id:"","onUpdate:modelValue":y[0]||(y[0]=b=>s.value=b)},[t("option",D3,i(e(a)("\u8BF7\u9009\u62E9\u8F6F\u4EF6\u6E90")),1),(r(!0),d(U,null,tt((F=_.value)==null?void 0:F.softSourceList,(b,h)=>(r(),d("option",{value:b.identity,key:h},i(b.name),9,B3))),128))],512),[[dt,s.value,void 0,{trim:!0}]])])])]),t("div",Y3,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:s.value==""},i(e(a)("\u786E\u8BA4")),9,A3),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:p},i(e(a)("\u53D6\u6D88")),1)])],40,h3)):D("",!0),c.value==1?(r(),d("form",S3,[t("div",z3,[t("span",P3,i(e(a)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)]),t("div",T3,[t("div",I3,[B(la)]),t("p",M3,i(e(a)("\u914D\u7F6E\u6210\u529F\uFF01")),1),t("div",L3,[t("button",{class:"cbi-button cbi-button-apply softsource_successed",onClick:m},i(e(a)("\u786E\u5B9A")),1)])])])):D("",!0)]}),_:1},8,["Close"]))}});var N3=O(O3,[["__scopeId","data-v-2deed63d"]]);const Wa=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(N3,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},V3=o=>(it("data-v-500d40e5"),o=o(),rt(),o),G3={class:"info_content"},j3={key:0,class:"status_box"},U3={class:"status_name"},q3={class:"status_time"},R3={key:1,class:"status_box"},W3={class:"flex"},H3={class:"status_name"},J3={class:"dns-btn"},Z3={class:"status_time",style:{background:"#ffe2e2",color:"#c10007"}},K3={key:2,class:"status_box"},Q3={class:"flex"},X3={class:"status_name"},t8={class:"dns-btn"},e8={class:"status_time",style:{background:"#ffe2e2",color:"#c10007"}},a8={key:3,class:"status_box"},o8={class:"status_name"},n8={class:"status_time",style:{background:"#ffe2e2",color:"#c10007"}},i8={key:4,class:"status_box"},r8={class:"status_name"},s8={class:"ip_info"},d8={class:"ip_item"},l8={class:"ip_tag"},c8={class:"ip_address"},u8={class:"ip_info"},p8={class:"ip_item"},f8=V3(()=>t("div",null,"IPv6",-1)),m8={key:1,class:"ip_tag"},g8={key:0,class:"ip_address"},v8={key:1,class:"ip_address"},b8={class:"ip_info",style:{"margin-bottom":"0"}},h8={class:"ip_item"},_8={class:"ip_address"},x8=T({setup(o){const{$gettext:n}=H(),a=Fe(),l=Q(()=>a.status),c=()=>{Ra()},s=()=>{Wa()},u=E(!1),_=E(60);let g=null;const p=()=>{g!==null&&(clearInterval(g),g=null)},f=()=>{_.value>0?_.value--:p()},m=()=>{p(),g=setInterval(f,1e3)};Yt(_,v=>{v===0?u.value=!1:u.value=!0});const w=()=>{u.value=!u.value,u.value?(_.value=60,m()):(_.value=60,p())};Mt(p),Q(()=>a.deviceList);const y=mt({portList:[],load:!1}),x=v=>{switch(v){case"pppoe":return n("\u62E8\u53F7\u4E0A\u7F51");case"static":return n("\u9759\u6001\u7F51\u7EDC");case"dhcp":return"DHCP"}return v&&v.toUpperCase()},F=v=>{switch(v){case"manual":return n("\u624B\u52A8\u914D\u7F6E");case"auto":return n("\u81EA\u52A8\u83B7\u53D6");default:return""}},b=()=>{(y.load&&document.hidden?Promise.resolve():j.Network.PortList.GET().then(v=>{if(v!=null&&v.data){const{result:k}=v==null?void 0:v.data;k&&(y.portList=k.ports||[])}})).finally(()=>{y.load=!0,setTimeout(b,1e4)})};b();const h=Pt.stampForm;return(v,k)=>(r(),d("div",null,[B(Rt,{title:e(n)("\u7F51\u7EDC\u8FDE\u63A5\u548CIP\u5730\u5740"),showSettings:!1},{icon:G(()=>[B(xe,{color:"#0a0a0a",class:"icon networkIcon"})]),default:G(()=>[t("div",G3,[e(l)!=null?(r(),d(U,{key:0},[e(l).networkInfo=="netSuccess"?(r(),d("div",j3,[t("div",U3,[B(S5,{color:"#00a63e",class:"icon"}),t("span",null,i(e(n)("\u7F51\u7EDC\u8FDE\u63A5\u6B63\u5E38")),1)]),t("div",q3,i(e(h)(e(l).uptimeStamp)),1)])):e(l).networkInfo=="dnsFailed"?(r(),d("div",R3,[t("div",W3,[t("div",H3,[B(N5,{style:{width:"1.2rem",height:"1.2rem","margin-right":"4px"}}),t("span",null,i(e(n)("DNS\u9519\u8BEF")),1)]),t("div",J3,[t("button",{class:"btn-primary",onClick:c},i(e(n)("DNS\u914D\u7F6E")),1)])]),t("div",Z3,i(e(h)(e(l).uptimeStamp)),1)])):e(l).networkInfo=="softSourceFailed"?(r(),d("div",K3,[t("div",Q3,[t("div",X3,[B(qa,{color:"#9810fa",style:{width:"1.5rem",height:"1.5rem","margin-right":"4px"}}),t("span",null,i(e(n)("\u8F6F\u4EF6\u6E90\u9519\u8BEF")),1)]),t("div",t8,[t("button",{class:"btn-pink",onClick:s},i(e(n)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)])]),t("div",e8,i(e(h)(e(l).uptimeStamp)),1)])):e(l).networkInfo=="netFailed"?(r(),d("div",a8,[t("div",o8,[B(T5,{style:{width:"1.2rem",height:"1.2rem","margin-right":"4px"}}),t("span",null,i(e(n)("\u672A\u8054\u7F51")),1)]),t("div",n8,i(e(h)(e(l).uptimeStamp)),1)])):(r(),d("div",i8,[t("div",r8,[B(ze,{color:"#d08700",class:"icon"}),t("span",null,i(e(n)("\u68C0\u6D4B\u4E2D...")),1)])]))],64)):D("",!0),t("div",s8,[t("div",d8,[t("div",null,"IPv4 \uFF08"+i(e(l).defaultInterface)+"\uFF09",1),t("div",l8,i(x(e(l).proto||"")),1)]),t("div",c8,i(e(l).ipv4addr),1)]),t("div",u8,[t("div",p8,[f8,e(l).ipv6addr?(r(),d("div",{key:0,class:"ip_tag",style:{cursor:"pointer"},onClick:w},[u.value?(r(),J($5,{key:0})):(r(),J(y5,{key:1})),nt(" "+i(e(n)("\u5DF2\u542F\u7528")),1)])):(r(),d("div",m8,i(e(n)("\u672A\u542F\u7528")),1))]),e(l).ipv6addr?(r(),d("div",g8,i(u.value?e(l).ipv6addr:"***************************************"),1)):(r(),d("div",v8,"-"))]),t("div",b8,[t("div",h8,[t("div",null,"DNS\uFF08"+i(F(e(l).dnsProto))+"\uFF09",1)]),(r(!0),d(U,null,tt(e(l).dnsList,C=>(r(),d("div",_8,i(C),1))),256))])])]),_:1},8,["title"])]))}});var w8=O(x8,[["__scopeId","data-v-500d40e5"]]);const k8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},y8=["fill"],ka=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",k8,[t("path",{d:"M170.666667 647.253333a128.042667 128.042667 0 1 0 85.333333 0V256c0-71.850667 49.109333-128 106.666667-128S469.333333 184.149333 469.333333 256v512c0 116.650667 84.608 213.333333 192 213.333333s192-96.682667 192-213.333333V376.746667a128.042667 128.042667 0 1 0-85.333333 0V768c0 71.850667-49.109333 128-106.666667 128S554.666667 839.850667 554.666667 768V256c0-116.650667-84.608-213.333333-192-213.333333S170.666667 139.349333 170.666667 256v391.253333zM768 256a42.666667 42.666667 0 1 1 85.333333 0 42.666667 42.666667 0 0 1-85.333333 0zM213.333333 810.666667a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z",fill:o.color,"p-id":"39967"},null,8,y8)]))}}),F8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},E8=["fill"],ua=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",F8,[t("path",{d:"M680.64 960a61.184 61.184 0 0 1-44.864-19.072c-14.72-16.192-61.568-58.24-99.84-58.24-38.016 0-85.504 42.24-99.2 57.088a61.184 61.184 0 0 1-67.328 14.08l-1.28-0.448-116.352-65.088-1.152-0.832a55.872 55.872 0 0 1-18.752-67.456c0.064-0.192 10.752-24.768 10.752-47.232a123.52 123.52 0 0 0-123.392-123.328h-4.864c-19.52 0-35.392-17.28-40.448-44.096C73.6 603.2 64 552.384 64 512.384c0-40.064 9.536-90.88 9.92-92.992 5.12-27.136 21.376-44.544 41.152-44.096h4.16A123.52 123.52 0 0 0 242.56 251.904c0-22.4-10.688-46.976-10.816-47.232a55.68 55.68 0 0 1 18.944-67.392l1.216-0.832L374.72 68.992l1.28-0.576a62.336 62.336 0 0 1 67.2 13.888c14.528 15.296 60.48 54.848 97.664 54.848 36.8 0 82.496-38.784 96.96-53.76a62.336 62.336 0 0 1 67.264-13.44l1.28 0.64 118.592 65.92 1.152 0.768a55.808 55.808 0 0 1 18.816 67.456c-0.064 0.192-10.752 24.768-10.752 47.168a123.52 123.52 0 0 0 123.392 123.392h4.096c19.84-0.448 36.096 16.96 41.216 44.096 0.384 2.112 9.92 52.928 9.92 92.992 0 40-9.536 90.88-9.92 92.992-5.12 27.136-21.376 44.48-41.216 44.096h-4.096A123.52 123.52 0 0 0 834.176 772.8c0 22.4 10.688 47.04 10.752 47.232a55.808 55.808 0 0 1-18.816 67.456l-1.216 0.832-120.64 66.624-1.28 0.576a56.32 56.32 0 0 1-22.4 4.48z m-3.648-56.832a7.68 7.68 0 0 0 3.84 0.96l112.704-62.336c-2.688-6.272-15.168-36.992-15.168-68.928a179.456 179.456 0 0 1 169.856-179.008c1.344-7.552 8.768-49.792 8.768-81.472 0-31.68-7.424-73.92-8.768-81.472a179.456 179.456 0 0 1-169.856-179.008c0-32 12.48-62.72 15.168-68.992L682.688 121.28h-0.448c-1.92 0-3.648 0.64-4.288 1.088-1.856 1.92-17.92 18.24-40.96 34.432-34.24 24.064-66.56 36.224-96.064 36.224-29.888 0-62.464-12.416-96.832-36.928a313.792 313.792 0 0 1-41.216-35.072 8.832 8.832 0 0 0-4.736-1.152l-114.816 63.104c2.752 6.4 15.168 36.992 15.168 68.928A179.456 179.456 0 0 1 128.64 430.912c-1.344 7.552-8.768 49.792-8.768 81.472 0 31.68 7.424 73.92 8.768 81.408A179.456 179.456 0 0 1 298.496 772.8c0 32.128-12.544 62.912-15.232 69.12L392 902.72a7.68 7.68 0 0 0 3.84-0.896c2.048-2.24 18.304-19.456 41.6-36.608 34.944-25.536 68.032-38.464 98.56-38.464 30.72 0 64.064 13.184 99.2 39.232 23.488 17.472 39.744 34.944 41.792 37.184zM536.32 676.032a164.48 164.48 0 0 1-164.288-164.288A164.48 164.48 0 0 1 536.32 347.52a164.48 164.48 0 0 1 164.352 164.288A164.48 164.48 0 0 1 536.32 676.096z m0-272.64c-59.776 0-108.352 48.64-108.352 108.352 0 59.776 48.64 108.416 108.352 108.416 59.84 0 108.416-48.64 108.416-108.416 0-59.776-48.64-108.416-108.416-108.416z",fill:o.color,"p-id":"4508"},null,8,E8)]))}}),$8=["value","checked","onChange"],C8={class:"content"},D8=["onMouseenter"],B8={class:"name"},Y8={key:0,class:"speed",style:{background:"#f3f4f6",color:"#4a5565"}},A8={style:{display:"flex","align-items":"center"}},S8={key:0,class:"status"},z8={key:1,class:"status"},P8={key:2,class:"speed",style:{"margin-left":"6px"}},T8=T({setup(o){const{$gettext:n}=H(),a=aa(),l=E(!1),c=ia(),s=mt({portList:[],load:!1}),u=()=>{a.push("/interfaceconfig")},_=(h,v)=>{localStorage.setItem(h,JSON.stringify(v))},g=h=>{const v=localStorage.getItem(h);try{return v?JSON.parse(v):[]}catch(k){return[]}},p="checkedPorts",f=E(g(p)),m=E([]),w=()=>{(s.load&&document.hidden?Promise.resolve():j.Network.PortList.GET().then(h=>{if(h!=null&&h.data){const{result:v}=h==null?void 0:h.data;v&&(s.portList=v.ports||[],m.value=v.ports||[])}})).finally(()=>{s.load=!0,setTimeout(w,1e4)})};w(),Yt(f,h=>{m.value=s.portList.filter(v=>h.includes(v.name)),console.log(h,"newVal"),_(p,h)});const y=(h,v)=>{v.target.checked?f.value.includes(h)||(f.value=[...f.value,h]):f.value.length>1?f.value=f.value.filter(k=>k!==h):($.Warning(n("\u81F3\u5C11\u4FDD\u7559\u4E00\u4E2A\u7F51\u7EDC\u63A5\u53E3\uFF01")),v.target.checked=!0)},x=E(null),F=(h,v)=>{c.portitemStyle.show=!0;const k=v==null?void 0:v.target;if(k){const{left:C,top:A}=k.getBoundingClientRect();c.portitemStyle.left=C,c.portitemStyle.top=A}c.portitemStyle.portitem=h},b=()=>{c.portitemStyle.show=!1};return(h,v)=>(r(),J(Rt,{title:e(n)("\u7F51\u7EDC\u63A5\u53E3\u72B6\u6001"),showSettings:!0,"is-settings-menu-open":l.value,"onUpdate:isSettingsMenuOpen":v[0]||(v[0]=k=>l.value=k)},{icon:G(()=>[B(ka,{color:"#0a0a0a",class:"icon interfaceIcon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:u},[B(ua,{color:"#0a0a0a",class:"icon1 interfaceIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u914D\u7F6E\u7F51\u7EDC\u63A5\u53E3")),1)])]),"settings-menu":G(()=>[t("div",null,[(r(!0),d(U,null,tt(e(s).portList,k=>(r(),d("div",{key:k.name,class:"row"},[t("input",{type:"checkbox",value:k.name,checked:f.value.includes(k.name),onChange:C=>y(k.name,C)},null,40,$8),t("span",null,i(k.name),1)]))),128))])]),default:G(()=>[t("div",C8,[e(s).load?(r(!0),d(U,{key:0},tt(e(s).portList,k=>(r(),d("div",{class:"item",ref_for:!0,ref_key:"el",ref:x,onMouseenter:C=>F(k,C),onMouseleave:b},[t("div",{class:"icon_box",style:ft({backgroundColor:k.linkState=="DOWN"?"#f3f4f6":"#dbfce7"})},[B(ka,{color:k.linkState=="DOWN"?"#99a1af":"#00a63e",class:"icon2"},null,8,["color"])],4),t("div",null,[t("div",B8,[nt(i(k.name)+" "+i(k.interfaceNames?`(${k.interfaceNames.join(",").toLocaleUpperCase()})`:""),1),k.linkState=="DOWN"?(r(),d("div",Y8,i(e(n)("\u5DF2\u65AD\u5F00")),1)):D("",!0)]),t("div",A8,[k.linkState=="DOWN"?(r(),d("div",S8,i(e(n)("\u672A\u8FDE\u63A5")),1)):(r(),d("div",z8,i(e(n)("\u5DF2\u8FDE\u63A5")),1)),k.linkSpeed?(r(),d("div",P8,i(k.linkSpeed),1)):D("",!0)])])],40,D8))),256)):D("",!0)])]),_:1},8,["title","is-settings-menu-open"]))}});var I8=O(T8,[["__scopeId","data-v-2988896b"]]);const M8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},L8=["fill"],O8=["fill"],N8=["fill"],V8=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",M8,[t("path",{d:"M123.92 555.9a32 32 0 0 1-14.82-60.38l719.19-374.9a32 32 0 0 1 29.59 56.76l-719.2 374.89a31.87 31.87 0 0 1-14.76 3.63z",fill:o.color,"p-id":"5084"},null,8,L8),t("path",{d:"M608.6 957.7a32 32 0 0 1-30.6-41.27l234.64-776.34a32 32 0 0 1 61.26 18.52L639.22 935a32 32 0 0 1-30.62 22.7zM505.92 580.44c-0.68 0-1.36 0-2.05-0.07l-381.46-24.12a32 32 0 1 1 4-63.88l381.5 24.13a32 32 0 0 1-2 63.94z",fill:o.color,"p-id":"5085"},null,8,O8),t("path",{d:"M608.14 957.32a32 32 0 0 1-30.87-23.63L475 556.82a32 32 0 1 1 61.77-16.76L639 916.93a32 32 0 0 1-22.51 39.26 31.61 31.61 0 0 1-8.35 1.13z",fill:o.color,"p-id":"5086"},null,8,N8)]))}}),G8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},j8=["fill"],U8=["fill"],q8=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",G8,[t("path",{d:"M748 469.97l-283.81 248.1c-3.96 1.98-5.94 5.94-9.9 9.9-17.82 29.71-9.9 67.34 19.8 85.16 29.71 15.84 65.35 5.94 83.18-21.79L757.9 477.89c1.98-5.95-3.96-11.88-9.9-7.92z","p-id":"9627",fill:o.color},null,8,j8),t("path",{d:"M512 181.96c-247.23 0-448.35 201.13-448.35 448.34 0 63.85 13.31 125.74 39.59 183.94 10.72 23.74 38.61 34.37 62.41 23.59 23.74-10.72 34.31-38.67 23.59-62.41C168.5 729.5 158 680.67 158 630.3c0-195.18 158.8-353.99 354-353.99 195.18 0 354 158.8 354 353.99 0 50.37-10.5 99.2-31.24 145.12-10.72 23.74-0.15 51.69 23.59 62.41 6.3 2.86 12.9 4.18 19.38 4.18 17.97 0 35.17-10.32 43.03-27.76 26.26-58.2 39.59-120.09 39.59-183.94 0-247.23-201.14-448.35-448.35-448.35z","p-id":"9628",fill:o.color},null,8,U8)]))}}),R8={width:"32",height:"32",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},W8=["fill"],H8=["fill"],J8=["fill"],Z8=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",R8,[t("path",{d:"M880.213333 395.093333a31.786667 31.786667 0 0 1-26.88-15.573333 385.706667 385.706667 0 0 0-91.52-104.32 32.426667 32.426667 0 0 1-5.12-45.013333 32 32 0 0 1 45.013334-5.12 449.92 449.92 0 0 1 106.666666 121.6A31.786667 31.786667 0 0 1 896 390.4a30.293333 30.293333 0 0 1-15.786667 4.693333zM165.12 395.093333A30.293333 30.293333 0 0 1 149.333333 390.4a31.786667 31.786667 0 0 1-11.093333-43.733333A450.56 450.56 0 0 1 522.666667 128a32 32 0 0 1 0 64A386.56 386.56 0 0 0 192 379.52a31.786667 31.786667 0 0 1-26.88 15.573333z","p-id":"17913",fill:o.color},null,8,W8),t("path",{d:"M565.333333 341.333333a32 32 0 0 1 0-64A101.76 101.76 0 0 0 661.333333 170.666667a101.76 101.76 0 0 0-96-106.666667 32 32 0 0 1 0-64A165.76 165.76 0 0 1 725.333333 170.666667a165.76 165.76 0 0 1-160 170.666666zM522.666667 1024C362.666667 1024 220.8 936.106667 139.946667 787.84 61.013333 776.746667 0 700.373333 0 608 0 507.946667 71.68 426.666667 160 426.666667a32 32 0 0 1 0 64C106.666667 490.666667 64 543.36 64 608S106.666667 725.333333 160 725.333333a31.786667 31.786667 0 0 1 28.586667 17.706667C256 878.933333 381.653333 960 522.666667 960a384 384 0 0 0 354.56-236.373333 31.146667 31.146667 0 0 1 14.506666-16 106.666667 106.666667 0 0 0 57.6-99.626667c0-64-42.666667-117.333333-96-117.333333a32 32 0 0 1 0-64c88.32 0 160 81.28 160 181.333333a170.666667 170.666667 0 0 1-81.706666 150.613333A448 448 0 0 1 522.666667 1024z","p-id":"17914",fill:o.color},null,8,H8),t("path",{d:"M394.666667 640a32 32 0 0 1-32-32v-42.666667a32 32 0 0 1 64 0v42.666667a32 32 0 0 1-32 32zM629.333333 640a32 32 0 0 1-32-32v-42.666667a32 32 0 0 1 64 0v42.666667a32 32 0 0 1-32 32zM512 822.186667A131.2 131.2 0 0 1 391.466667 746.666667a32 32 0 1 1 58.24-26.453334 70.186667 70.186667 0 0 0 124.586666 0A32 32 0 1 1 632.533333 746.666667 131.2 131.2 0 0 1 512 822.186667z","p-id":"17915",fill:o.color},null,8,J8)]))}}),K8={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Q8=["fill"],X8=["fill"],t4=T({props:{color:{type:String,default:"#2c2c2c"}},setup(o){return(n,a)=>(r(),d("svg",K8,[t("path",{d:"M771.328 320.896H258.986667a64 64 0 0 0-63.701334 57.856l-41.386666 427.178667a64 64 0 0 0 57.472 69.888l5.12 0.256h590.592a64 64 0 0 0 64-64l-0.170667-4.394667-35.797333-428.117333a64 64 0 0 0-63.786667-58.666667z m-512.341333 42.666667h512.341333a21.333333 21.333333 0 0 1 21.290667 19.584l35.712 427.178666 0.085333 2.688c0 10.88-9.557333 20.437333-21.333333 20.437334H217.557333l-3.072-0.170667a21.162667 21.162667 0 0 1-18.176-23.210667l41.472-427.221333a21.333333 21.333333 0 0 1 21.205334-19.285333z",fill:o.color,"p-id":"8134"},null,8,Q8),t("path",{d:"M685.013333 429.312a21.333333 21.333333 0 0 1 21.333334 21.333333 194.346667 194.346667 0 1 1-388.693334 0 21.333333 21.333333 0 1 1 42.666667 0 151.68 151.68 0 0 0 303.36 0 21.333333 21.333333 0 0 1 21.333333-21.333333zM512 147.882667a194.346667 194.346667 0 0 1 194.346667 194.346666 21.333333 21.333333 0 1 1-42.666667 0 151.68 151.68 0 1 0-303.36 0 21.333333 21.333333 0 1 1-42.666667 0A194.346667 194.346667 0 0 1 512 147.882667z",fill:o.color,"p-id":"8135"},null,8,X8)]))}}),e4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},a4=["fill"],o4=T({props:{color:{type:String,default:"#333333"}},setup(o){return(n,a)=>(r(),d("svg",e4,[t("path",{d:"M353.323071 246.407016L620.37222 510.637979l-265.320785 268.146133c-11.776208 11.775184-11.73425201 30.908964 0.091074 42.73429l0.001023 0c11.825326 11.82635 30.958082 11.867282 42.72815-2.930749L680.899758 535.559579c3.817955-4.273327 8.205892-9.321296 8.933463-12.045337 4.470825-11.112082 2.232854-24.76503301-6.710842-35.987632l-286.98213-286.98213c-11.875468-8.847505-31.096229-8.893554-42.922578 2.932796C341.393367 215.303624 341.439416 234.523361 353.323071 246.407016z","p-id":"5051",fill:o.color},null,8,a4)]))}}),n4={class:"header"},i4={class:"icon-wrapper"},r4={class:"content"},s4={class:"title"},d4={class:"subtitle"},l4={class:"footer"},c4={key:1,class:"extra"},u4={key:2,class:"extra badge"},p4={class:"extra_num"},f4={key:3,class:"badge"},m4=T({props:{card:{type:Object,required:!0}},setup(o){const{$gettext:n}=H(),a={navigation:{component:V8,props:{color:"#ffffff"}},wifi:{component:ze,props:{color:"#ffffff"}},topology:{component:Ga,props:{color:"#ffffff"}},speed:{component:q8,props:{color:"#ffffff"}},baby:{component:Z8,props:{color:"#ffffff"}},appStore:{component:t4,props:{color:"#ffffff"}}};return(l,c)=>(r(),d("div",{class:st(["feature-card",o.card.color]),onClick:c[0]||(c[0]=s=>l.$emit("click",o.card))},[t("div",null,[t("div",n4,[t("div",i4,[Et(l.$slots,"icon",{},()=>{var s;return[o.card.icon&&a[o.card.icon]?(r(),J(Pa((s=a[o.card.icon])==null?void 0:s.component),_o({key:0},a[o.card.icon].props,{class:"icon-svg"}),null,16)):D("",!0)]},!0)])]),t("div",r4,[t("div",s4,i(o.card.title),1),t("div",d4,i(o.card.subtitle),1)]),t("div",l4,[o.card.status?(r(),d("span",{key:0,class:st(["status",{active:o.card.isActive}])},i(o.card.status),3)):D("",!0),o.card.extra?(r(),d("div",c4,i(o.card.extra),1)):D("",!0),o.card.num?(r(),d("div",u4,[t("span",p4,i(o.card.num),1),nt(" "+i(e(n)("\u53F0\u8BBE\u5907\u5728\u7EBF")),1)])):D("",!0),o.card.tag?(r(),d("span",f4,i(o.card.tag),1)):D("",!0)])]),B(o4,{class:"right-arrow",color:"#99a1af"})],2))}});var g4=O(m4,[["__scopeId","data-v-adc89aea"]]);const v4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},b4=["fill"],h4=["fill"],_4=["fill"],x4=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",v4,[t("path",{d:"M298.894222 482.417778c-35.271111 0-65.649778 12.231111-90.624 36.636444-25.031111 24.462222-37.603556 54.158222-37.603555 88.746667v87.153778h60.359111V607.857778c0-18.318222 6.599111-33.848889 19.854222-46.762667a65.991111 65.991111 0 0 1 48.014222-19.456h426.382222c18.887111 0 34.759111 6.428444 48.014223 19.399111 13.312 13.027556 19.854222 28.444444 19.854222 46.819556v87.04h60.359111v-87.04c0-34.702222-12.572444-64.341333-37.546667-88.746667a125.098667 125.098667 0 0 0-90.680889-36.750222H298.894222z",fill:o.color,"p-id":"8894"},null,8,b4),t("path",{d:"M488.049778 334.734222h47.900444V512h-47.900444V334.734222z",fill:o.color,"p-id":"8895"},null,8,h4),t("path",{d:"M597.333333 142.222222v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666zM284.444444 711.111111H113.777778v170.666667h170.666666v-170.666667z m-170.666666-56.888889h170.666666a56.888889 56.888889 0 0 1 56.888889 56.888889v170.666667a56.888889 56.888889 0 0 1-56.888889 56.888889H113.777778a56.888889 56.888889 0 0 1-56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 1 56.888889-56.888889zM910.222222 711.111111v170.666667h-170.666666v-170.666667h170.666666z m-170.666666-56.888889a56.888889 56.888889 0 0 0-56.888889 56.888889v170.666667a56.888889 56.888889 0 0 0 56.888889 56.888889h170.666666a56.888889 56.888889 0 0 0 56.888889-56.888889v-170.666667a56.888889 56.888889 0 0 0-56.888889-56.888889h-170.666666z",fill:o.color,"p-id":"8896"},null,8,_4)]))}}),w4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},k4=["fill"],y4=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",w4,[t("path",{d:"M853.333333 768a42.666667 42.666667 0 0 1 0 85.333333h-341.333333a42.666667 42.666667 0 0 1 0-85.333333h341.333333zM200.832 183.168L426.666667 409.002667l30.165333 30.165333a42.666667 42.666667 0 0 1 0 60.330667l-14.634667 14.634666-241.365333 241.365334a42.666667 42.666667 0 1 1-60.330667-60.330667l225.792-225.877333-225.792-225.792a42.666667 42.666667 0 0 1 60.330667-60.330667z",fill:o.color,"p-id":"5439"},null,8,k4)]))}}),F4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},E4=["fill"],$4=["fill"],Je=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",F4,[t("path",{d:"M531.216667 77.336366c0 0-8.147564-10.313903-16.938788-10.709923-8.791224-0.396019-18.070564 9.133008-18.070564 9.133008-96.577592 77.010955-246.112304 97.021707-345.075223 110.281709 0 0-14.838963 2.062985-22.257933 3.094478-11.189853 1.555425-21.184485 3.125177-27.569916 8.241708-6.385431 5.117554-5.999644 18.659989-5.999644 18.659989 0 476.176097 84.005252 627.530246 410.888138 736.639247 0 0 4.438079 1.619894 8.085142 1.373277 3.647063-0.042979 7.195889-1.980097 7.195889-1.980097 324.821947-108.462271 408.826176-259.857353 408.826176-736.033449 0 0-1.264806-13.920034-6.709819-18.659989-5.445012-4.739954-13.812587-6.433526-24.073278-7.864108-8.308223-1.157359-24.923646-3.473101-24.923646-3.473101C775.550465 172.782182 626.055662 152.771429 531.216667 77.336366zM486.388692 884.038318c-260.550131-96.030124-328.494593-228.237191-332.62875-628.806309-0.045025-4.400217 0.357134-6.599302 1.663896-8.667404 1.306762-2.068102 3.713578-2.836605 3.713578-2.836605 91.436502-12.233626 223.901443-29.972639 328.759629-91.828428 8.445346-4.982478 17.749246-11.634991 25.087375-11.634991 7.338129 0 15.890922 6.689353 24.289196 11.686157 103.57496 61.632709 234.845703 79.437214 327.058894 91.777263 0 0 4.41659 0.768503 5.910617 2.836605 1.494027 2.068102 2.324952 4.094248 2.309602 6.16542-2.819209 380.861264-55.186903 527.575744-329.520969 630.016881-9.733689 3.634784-19.105127 8.231475-27.533077 8.231475C507.070734 890.978381 495.039723 887.22694 486.388692 884.038318z",fill:o.color,"p-id":"5082"},null,8,E4),t("path",{d:"M763.882728 456.981942c-32.383548 146.597823-101.757568 233.810117-243.305375 299.834856-14.22191 1.440815-25.321712 13.450337-25.321712 28.051893 0 15.572674 12.624529 28.197202 28.197202 28.197202 4.321422 0 8.41567-0.972141 12.076036-2.709715l0.143263 0.393973c158.820192-71.15048 242.084571-167.561273 280.661168-345.308537 0.969071-2.781346 1.496074-5.7694 1.496074-8.881274 0-14.898315-12.07706-26.975375-26.975375-26.975375-14.898315 0-26.975375 12.07706-26.975375 26.975375C763.878634 456.701556 763.879658 456.841749 763.882728 456.981942z",fill:o.color,"p-id":"5083"},null,8,$4)]))}}),C4={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},D4=["fill"],B4=["fill"],Ha=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",C4,[t("path",{d:"M762 942H262c-71.68 0-130-58.32-130-130V212c0-71.68 58.32-130 130-130h350c16.56 0 30 13.43 30 30v151.56c0 38.59 31.41 70 70 70h150c16.56 0 30 13.43 30 30V812c0 71.68-58.32 130-130 130zM262 142c-38.59 0-70 31.41-70 70v600c0 38.59 31.41 70 70 70h500c38.59 0 70-31.41 70-70V393.57H712c-71.68 0-130-58.32-130-130V142H262z","p-id":"13142",fill:o.color},null,8,D4),t("path",{d:"M862 393.57H712c-71.68 0-130-58.32-130-130V112c0-12.15 7.32-23.11 18.55-27.73a29.938 29.938 0 0 1 32.71 6.59l250 251.56c8.55 8.59 11.07 21.47 6.43 32.67s-15.58 18.48-27.69 18.48zM642 184.75v78.82c0 38.59 31.41 70 70 70h77.89L642 184.75zM487 379.5H312c-16.57 0-30-13.43-30-30s13.43-30 30-30h175c16.57 0 30 13.43 30 30s-13.43 30-30 30zM712 542H312c-16.57 0-30-13.43-30-30s13.43-30 30-30h400c16.56 0 30 13.43 30 30s-13.44 30-30 30zM712 704.5H312c-16.57 0-30-13.44-30-30s13.43-30 30-30h400c16.56 0 30 13.44 30 30s-13.44 30-30 30z","p-id":"13143",fill:o.color},null,8,B4)]))}}),Ja=/\d+\.\d+\.\d+\.\d+/,Y4=o=>Ja.test(o)&&ye.IPv4.isValid(o),Ut=o=>{const n=ye.IPv4.parse(o).toByteArray();return n[0]<<24|n[1]<<16|n[2]<<8|n[3]},ya=o=>ye.fromByteArray([o>>24&255,o>>16&255,o>>8&255,o&255]).toString(),A4=o=>{if(!Ja.test(o)||!ye.IPv4.isIPv4(o))return!1;let n=0,a=Ut(o);for(let l=31;l>=0&&(a&1<{let c=Ut(o)&Ut(n),s=Ut(a),u=Ut(l),g=~Ut(n);return sc+1&&u{let a=Ut(n),l=Ut(o)&a,c=~a,s;return c>=105?(s=l|c-5,l=l|100):c>=3?(s=l|c-1,l=l|2):(l=l|1,s=l),[ya(l),ya(s)]},P4=o=>ye.IPv4.subnetMaskFromPrefixLength(o).toString();var It={isValidMask:A4,isValidIPv4:Y4,isValidMaskRange:S4,calcMaskRange:z4,prefixToMask:P4};const pa=o=>(it("data-v-0d919a1e"),o=o(),rt(),o),T4=["onSubmit"],I4={class:"actioner-dns_header"},M4={class:"actioner-dns_body"},L4={class:"label-item"},O4={class:"label-item_key"},N4={class:"label-item_value"},V4={class:"label-item"},G4={class:"label-item_key"},j4={class:"label-item_value"},U4={key:0,class:"chose_dhcp"},q4={key:0,class:"dhcp_info"},R4={key:1,class:"dhcp_info"},W4={class:"label-item"},H4={class:"label-item_key"},J4={class:"label-item_value"},Z4={class:"label-item"},K4={class:"label-item_key"},Q4={class:"label-item_value"},X4={class:"actioner-dns_footer"},tp=["disabled"],ep={key:1,class:"actioner-dns"},ap={class:"actioner-dns_header"},op={class:"actioner-dns_body"},np={key:0,class:"setting_status"},ip=pa(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128"},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063"})])],-1)),rp={class:"config-message"},sp=["href"],dp={key:1,class:"setting_status"},lp=pa(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063200324",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5898",width:"128",height:"128"},[t("path",{d:"M549.044706 512l166.189176-166.249412a26.383059 26.383059 0 0 0 0-36.98447 26.383059 26.383059 0 0 0-37.044706 0L512 475.015529l-166.249412-166.249411a26.383059 26.383059 0 0 0-36.98447 0 26.383059 26.383059 0 0 0 0 37.044706L475.015529 512l-166.249411 166.249412a26.383059 26.383059 0 0 0 0 36.98447 26.383059 26.383059 0 0 0 37.044706 0L512 548.984471l166.249412 166.249411a26.383059 26.383059 0 0 0 36.98447 0 26.383059 26.383059 0 0 0 0-37.044706L548.984471 512zM512 1024a512 512 0 1 1 0-1024 512 512 0 0 1 0 1024z",fill:"#E84335","p-id":"5899"})])],-1)),cp={class:"config-message"},up={key:2,class:"setting_status"},pp=pa(()=>t("div",{class:"success_icon"},[t("svg",{width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])])],-1)),fp={class:"config-message"},mp=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(0),s=E({lanIp:"",netMask:"255.255.255.0",enableDhcp:!1,dhcpStart:"",dhcpEnd:""});E("");const u=E(!1);E(!0),E(!1);const _=E(""),g=E(2),p=E(!1),f=E("timeout");let m=!0;(()=>{j.Guide.GetLan.GET().then(h=>{h.data.result&&(p.value=h.data.result.enableDhcp||!1,h.data.result.enableDhcp=!1,s.value=h.data.result,h.data.result.lanIp!==location.hostname&&(m=!1))})})();const y=()=>{const h=s.value;if(!It.isValidIPv4(h.lanIp)){$.Warning(a("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF"));return}if(!It.isValidMask(h.netMask)){$.Warning(a("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF"));return}const v=It.calcMaskRange(h.lanIp,h.netMask);h.dhcpStart=v[0],h.dhcpEnd=v[1],s.value=h},x=()=>{const h=s.value;if(!It.isValidIPv4(h.lanIp)){$.Warning(a("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF"));return}if(!It.isValidMask(h.netMask)){$.Warning(a("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF"));return}if(h.enableDhcp&&!(It.isValidIPv4(h.dhcpStart)&&It.isValidIPv4(h.dhcpEnd)&&It.isValidMaskRange(h.lanIp,h.netMask,h.dhcpStart,h.dhcpEnd))){$.Warning(a("DHCP\u7684IP\u6C60\u683C\u5F0F\u9519\u8BEF\u6216\u8D85\u51FA\u5B50\u7F51\u8303\u56F4"));return}const v=$.Loading(a("\u6B63\u5728\u914D\u7F6E\u2026\u8BF7\u7A0D\u7B49"),30);let k=0;const C=S=>{f.value=S,c.value=1,k=1,v.Close()},A=()=>{const S=new Date().getTime()+3e4,Y=m?location.protocol+"//"+h.lanIp+(location.port?":"+location.port:""):location.origin,z=Y+"/luci-static/resources/icons/loading.gif",R=()=>{k==0&&(new Date().getTime()>S?C("timeout"):window.setTimeout(I,2e3))},V=()=>{k==0&&(_.value=Y+location.pathname,C("success"),window.setTimeout(()=>{g.value=1},1e3),window.setTimeout(()=>{location.href=_.value},2e3))},I=()=>{if(k!=0)return;console.log("check online ",z);const M=new Image;M.onload=V,M.onerror=R,M.src=z};window.setTimeout(I,5e3)};j.Guide.LanIp.POST(h).then(S=>{var Y;if(S!=null&&S.data){if((S.data.success||0)==0)return;if((Y=S.data)!=null&&Y.error)throw S.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(S=>{k==0&&(C("fail"),$.Error(S))}),A(),window.setTimeout(()=>{k==0&&C("timeout")},3e4)},F=h=>{h.preventDefault(),n.Close&&n.Close()},b=h=>{location.reload()};return(h,v)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[c.value==0?(r(),d("form",{key:0,class:"actioner-dns",onSubmit:ct(x,["prevent"])},[t("div",I4,[t("span",null,i(e(a)("\u5185\u7F51\u914D\u7F6E")),1)]),t("div",M4,[t("div",L4,[t("div",O4,[t("span",null,i(e(a)("IPv4\u5730\u5740")),1)]),t("div",N4,[L(t("input",{type:"text",placeholder:"192.168.100.1",required:"","onUpdate:modelValue":v[0]||(v[0]=k=>s.value.lanIp=k),onChange:y},null,544),[[et,s.value.lanIp,void 0,{trim:!0}]])])]),t("div",V4,[t("div",G4,[t("span",null,i(e(a)("IPv4\u5B50\u7F51\u63A9\u7801")),1)]),t("div",j4,[L(t("input",{type:"text",placeholder:"255.255.255.0",required:"","onUpdate:modelValue":v[1]||(v[1]=k=>s.value.netMask=k),onChange:y},null,544),[[et,s.value.netMask,void 0,{trim:!0}]])])]),p.value?(r(),d("div",U4,[B(Oa,{modelValue:s.value.enableDhcp,"onUpdate:modelValue":v[2]||(v[2]=k=>s.value.enableDhcp=k)},{default:G(()=>[s.value.enableDhcp?(r(),d("span",q4,i(e(a)("\u4FEE\u6539DHCP\u670D\u52A1")),1)):(r(),d("span",R4,i(e(a)("\u4FDD\u6301DHCP\u670D\u52A1\u8BBE\u7F6E")),1))]),_:1},8,["modelValue"])])):D("",!0),s.value.enableDhcp?(r(),d(U,{key:1},[t("div",W4,[t("div",H4,[t("span",null,i(e(a)("IP\u6C60\u8D77\u59CB\u5730\u5740")),1)]),t("div",J4,[L(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":v[3]||(v[3]=k=>s.value.dhcpStart=k)},null,512),[[et,s.value.dhcpStart,void 0,{trim:!0}]])])]),t("div",Z4,[t("div",K4,[t("span",null,i(e(a)("IP\u6C60\u7ED3\u675F\u5730\u5740")),1)]),t("div",Q4,[L(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":v[4]||(v[4]=k=>s.value.dhcpEnd=k)},null,512),[[et,s.value.dhcpEnd,void 0,{trim:!0}]])])])],64)):D("",!0)]),t("div",X4,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:u.value},i(e(a)("\u786E\u8BA4")),9,tp),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:F},i(e(a)("\u53D6\u6D88")),1)])],40,T4)):c.value==1?(r(),d("div",ep,[t("div",ap,[t("span",null,i(e(a)("\u66F4\u6362\u914D\u7F6E")),1)]),t("div",op,[f.value=="success"?(r(),d("div",np,[ip,t("div",rp,i(e(a)("\u914D\u7F6E\u6210\u529F")),1),t("a",{href:_.value,class:"NewAdress"},i(e(a)("%{ countdown }s\u540E \u8DF3\u8F6C\u65B0\u5730\u5740",{countdown:""+g.value})),9,sp)])):f.value=="fail"?(r(),d("div",dp,[lp,t("div",cp,i(e(a)("\u914D\u7F6E\u5931\u8D25")),1),t("p",null,i(e(a)("\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E")),1),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:b},i(e(a)("\u6211\u77E5\u9053\u4E86")),1)])):f.value=="timeout"?(r(),d("div",up,[pp,t("div",fp,i(e(a)("\u914D\u7F6E\u8D85\u65F6")),1),t("p",null,i(e(a)("\u8DEF\u7531\u5668 IP \u53EF\u80FD\u5DF2\u7ECF\u4FEE\u6539\u6210\u529F\u3002\u82E5\u5237\u65B0\u9875\u9762\u5931\u8D25\uFF0C\u8BF7\u91CD\u65B0\u8FDE\u63A5\u8DEF\u7531\u5668\uFF0C\u5426\u5219\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E\u3002")),1),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:b},i(e(a)("\u5237\u65B0\u9875\u9762")),1)])):D("",!0)])])):D("",!0)]),_:1},8,["Close"]))}});var gp=O(mp,[["__scopeId","data-v-0d919a1e"]]);const vp=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(gp,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},bp={key:0,class:"actioner-dns"},hp={class:"actioner-dns_header"},_p={class:"actioner-dns_body"},xp={class:"sandbox_info"},wp={key:0,class:"disk_loading_icon"},kp={class:"disk_loading_info"},yp={key:1,class:"disk_tips"},Fp={class:"label-item"},Ep={class:"label-item_key"},$p={class:"label-item_value"},Cp={value:""},Dp=["value"],Bp={class:"label-item"},Yp={class:"label-item_key"},Ap={class:"label-item_value"},Sp={selected:"true",value:""},zp=["value","disabled"],Pp={class:"sandbox_tips"},Tp={class:"sandbox_info timeout"},Ip={class:"sandbox_roboot_tips"},Mp={class:"sandbox_roboot_refresh"},Lp={key:0,class:"actioner-dns_footer"},Op=["disabled"],Np={key:1,class:"actioner-tips"},Vp={class:"actioner-tips_header"},Gp={class:"actioner-tips_body"},jp={class:"sandbox_info"},Up={class:"actioner-tips_footer"},qp={key:2,class:"actioner-tips"},Rp={class:"actioner-tips_header"},Wp={class:"actioner-tips_body"},Hp={class:"sandbox_info"},Jp={class:"actioner-tips_footer"},Zp=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(0);E("disk");const s=E(""),u=E(3),_=E(""),g=E([]),p=E(""),f=E(null);(()=>{j.Nas.SandboxDisks.GET().then(k=>{var C;if(k!=null&&k.data&&(C=k.data)!=null&&C.result){f.value=k.data.result;return}throw a("\u52A0\u8F7D\u78C1\u76D8\u4FE1\u606F\u5931\u8D25")}).catch(k=>{s.value=k,c.value=3})})();const w=()=>j.System.Reboot.POST({name:_.value,path:p.value}).then(k=>{var C;if(!(k!=null&&k.data&&(((C=k==null?void 0:k.data)==null?void 0:C.success)||0)==0))throw a("\u672A\u77E5\u9519\u8BEF")}),y=k=>{var C,A;p.value="",g.value=_.value&&((A=(C=f.value)==null?void 0:C.disks.find(S=>S.path==_.value))==null?void 0:A.childrens)||[]},x=()=>{u.value>0&&(u.value-=1,window.setTimeout(x,1e3))},F=k=>{k.preventDefault(),n.Close&&n.Close()},b=()=>{new Promise((k,C)=>{const A="/luci-static/resources/icons/loading.gif",S=()=>{window.setTimeout(Y,2e3)},Y=()=>{const z=new Image;z.onload=k,z.onerror=S,z.src=A};window.setTimeout(Y,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},h=k=>{const C=$.Loading(a("\u914D\u7F6E\u6C99\u7BB1\u91CD\u542F\u4E2D..."));j.Nas.Sandbox.POST({path:p.value}).then(A=>{var S;if(A!=null&&A.data){if((A.data.success||0)==0)return c.value=2,window.setTimeout(x,1e3),w();if((S=A.data)!=null&&S.error)throw A.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).then(b).catch(A=>$.Warning(A)).finally(()=>C.Close())},v=()=>{c.value=0};return(k,C)=>{const A=ht("icon-loading");return r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[c.value==0||c.value==2?(r(),d("div",bp,[t("div",hp,[t("span",null,i(e(a)("\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",_p,[t("p",xp,i(e(a)("\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4 Docker \u548C\u786C\u76D8\u7684\u6570\u636E")),1),c.value==0?(r(),d(U,{key:0},[f.value?D("",!0):(r(),d("div",wp,[B(A,{size:38,color:"currentColor"}),t("span",kp,i(e(a)("\u6B63\u5728\u52A0\u8F7D\u4E2D...")),1)])),f.value&&f.value.disks.length==0?(r(),d("div",yp,[B(zt),t("span",null,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u6302\u8F7D\u7684\u78C1\u76D8\u4FE1\u606F\uFF0C\u8BF7\u5148\u63D2\u4E0A\u78C1\u76D8\uFF0C\u5EFA\u8BAE\u4F7F\u7528U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378")),1)])):D("",!0),f.value&&f.value.disks.length>0?(r(),d(U,{key:2},[t("div",Fp,[t("div",Ep,[t("span",null,i(e(a)("\u76EE\u6807\u78C1\u76D8\uFF08\u5EFA\u8BAE\u9009\u62E9U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378\uFF09")),1)]),t("div",$p,[L(t("select",{name:"",id:"",onChange:y,"onUpdate:modelValue":C[0]||(C[0]=S=>_.value=S)},[t("option",Cp,i(e(a)("\u8BF7\u9009\u62E9\u76EE\u6807\u78C1\u76D8")),1),(r(!0),d(U,null,tt(f.value.disks,(S,Y)=>(r(),d("option",{value:S.path,key:Y},i(S.venderModel)+"\uFF08"+i(S.size)+"\uFF09 ",9,Dp))),128))],544),[[dt,_.value]])])]),t("div",Bp,[t("div",Yp,[t("span",null,i(e(a)("\u76EE\u6807\u5206\u533A\uFF08\u5206\u533A\u5927\u5C0F\u987B\u5927\u4E8E2G\uFF0C\u5C06\u6B64\u5206\u533A\u4F5C\u4E3A\u5916\u90E8 overlay \u4F7F\u7528\uFF09")),1)]),t("div",Ap,[L(t("select",{name:"",id:"","onUpdate:modelValue":C[1]||(C[1]=S=>p.value=S)},[t("option",Sp,i(e(a)("\u8BF7\u9009\u62E9\u76EE\u6807\u5206\u533A")),1),(r(!0),d(U,null,tt(g.value,(S,Y)=>(r(),d("option",{value:S.path,key:Y,disabled:S.sizeInt<(1<<30)*1||S.isSystemRoot},i(S.name)+"\uFF08"+i(S.filesystem||e(a)("\u672A\u683C\u5F0F\u5316"))+"\uFF09"+i(S.total),9,zp))),128))],512),[[dt,p.value]])])]),t("div",Pp,[B(zt),t("span",null,i(e(a)("\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E")),1)])],64)):D("",!0)],64)):D("",!0),c.value==2?(r(),d(U,{key:1},[t("p",Tp,[nt(i(e(a)("\u5373\u5C06\u91CD\u542F\u8BBE\u5907"))+" ",1),t("span",null,"\uFF08"+i(u.value)+"s\uFF09",1)]),t("p",Ip,[nt(i(e(a)("\u7B49\u5F85\u8BBE\u5907\u91CD\u542F\uFF0C\u91CD\u542F\u5B8C\u6210\u540E")),1),t("span",Mp,i(e(a)("\u8BF7\u5237\u65B0\u754C\u9762")),1)])],64)):D("",!0)]),c.value==0?(r(),d("div",Lp,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:!p.value,onClick:C[2]||(C[2]=S=>c.value=1)},i(e(a)("\u5F00\u542F\u6C99\u7BB1")),9,Op),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:F},i(e(a)("\u53D6\u6D88")),1)])):D("",!0)])):D("",!0),c.value==1?(r(),d("div",Np,[t("div",Vp,[t("span",null,i(e(a)("\u6E29\u99A8\u63D0\u793A")),1)]),t("div",Gp,[t("p",jp,i(e(a)("\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E\uFF0C\u5E76\u683C\u5F0F\u5316\u6210EXT4\uFF0C\u968F\u540E\u81EA\u52A8\u91CD\u542F\u8FDB\u5165\u6C99\u7BB1\u6A21\u5F0F\uFF0C\u662F\u5426\u7EE7\u7EED\uFF1F")),1)]),t("div",Up,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},i(e(a)("\u7EE7\u7EED")),1),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v},i(e(a)("\u53D6\u6D88")),1)])])):D("",!0),c.value==3?(r(),d("div",qp,[t("div",Rp,[t("span",null,i(e(a)("\u9519\u8BEF")),1)]),t("div",Wp,[t("p",Hp,i(s.value),1)]),t("div",Jp,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v},i(e(a)("\u53D6\u6D88")),1)])])):D("",!0)]),_:1},8,["Close"])}}});var Kp=O(Zp,[["__scopeId","data-v-59ad49e6"]]);const Qp=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(Kp,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},Xp={key:0,class:"actioner-dns"},t7={class:"actioner-dns_header"},e7={class:"actioner-dns_body"},a7={class:"sandbox_info"},o7={class:"sandbox_environment"},n7={class:"sandbox_environment_info"},i7={class:"sandbox_environment_reboot"},r7=["innerHTML"],s7={class:"actioner-dns_footer"},d7=["disabled"],l7=["disabled"],c7=["disabled"],u7=T({props:{Close:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(0),s=E(!1),u=()=>{new Promise((m,w)=>{const y="/luci-static/resources/icons/loading.gif",x=()=>{window.setTimeout(F,2e3)},F=()=>{const b=new Image;b.onload=m,b.onerror=x,b.src=y};window.setTimeout(F,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},_=()=>{s.value=!0;const m=$.Loading(a("\u63D0\u4EA4\u4E2D..."));j.Nas.SandboxCommit.POST().then(w=>{var y,x;if(w!=null&&w.data)if((((y=w==null?void 0:w.data)==null?void 0:y.success)||0)==0){$.Loading(a("\u8BBE\u5907\u91CD\u542F\u4E2D..."));return}else(x=w==null?void 0:w.data)!=null&&x.error&&alert(w.data.error);throw a("\u672A\u77E5\u9519\u8BEF")}).then(u).catch(w=>{$.Error(w),s.value=!1}).finally(()=>m.Close())},g=()=>{s.value=!0;const m=$.Loading(a("\u91CD\u7F6E\u4E2D..."));j.Nas.SandboxReset.POST().then(w=>{var y,x;if(w!=null&&w.data)if((((y=w==null?void 0:w.data)==null?void 0:y.success)||0)==0){$.Loading(a("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740"));return}else(x=w==null?void 0:w.data)!=null&&x.error&&alert(w.data.error);throw a("\u672A\u77E5\u9519\u8BEF")}).then(u).catch(w=>{$.Error(w),s.value=!1}).finally(()=>m.Close())},p=()=>{if(!confirm(a("\u786E\u5B9A\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E\uFF1F\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u9700\u8981\u91CD\u65B0\u683C\u5F0F\u5316\u76F8\u5E94\u78C1\u76D8\u5206\u533A")))return;s.value=!0;const m=$.Loading(a("\u6267\u884C\u4E2D..."));j.Nas.SandboxExit.POST().then(w=>{var y,x;if(w!=null&&w.data)if((((y=w==null?void 0:w.data)==null?void 0:y.success)||0)==0){$.Loading(a("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740"));return}else(x=w==null?void 0:w.data)!=null&&x.error&&alert(w.data.error);throw a("\u672A\u77E5\u9519\u8BEF")}).then(u).catch(w=>{$.Error(w),s.value=!1}).finally(()=>m.Close())},f=m=>{m.preventDefault(),n.Close&&n.Close()};return(m,w)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[c.value==0?(r(),d("div",Xp,[t("div",t7,[t("span",null,i(e(a)("\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")),1)]),t("div",e7,[t("p",a7,i(e(a)("\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4 Docker \u548C\u786C\u76D8\u7684\u6570\u636E")),1),t("div",o7,[t("p",null,i(e(a)("\u5F53\u524D\u5904\u4E8E\u6C99\u7BB1\u73AF\u5883\uFF1A")),1),t("p",null,i(e(a)("1\u3001\u70B9\u51FB\u201C\u63D0\u4EA4\u201D\u53EF\u5C06\u53D8\u66F4\u5408\u5E76\u5230\u975E\u6C99\u7BB1\u73AF\u5883")),1),t("p",null,i(e(a)("2\u3001\u70B9\u51FB\u201C\u91CD\u7F6E\u201D\u53EF\u5C06\u6C99\u7BB1\u6062\u590D\u5230\u521D\u59CB\u72B6\u6001")),1),t("p",null,i(e(a)("3\u3001\u70B9\u51FB\u201C\u9000\u51FA\u201D\u53EF\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u5E76\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E")),1)]),t("div",n7,[nt(i(e(a)("\u4EE5\u4E0A\u64CD\u4F5C\u90FD\u5C06\u91CD\u542F\u8BBE\u5907\uFF0C\u8BBE\u5907\u91CD\u542F\u5B8C\u6210\u540E\u4F1A\u81EA\u52A8\u5237\u65B0\u9875\u9762\u3002\u5982\u679C IP \u53D8\u5316\u53EF\u80FD\u9700\u8981")),1),t("span",i7,i(e(a)("\u624B\u52A8\u5728\u5730\u5740\u680F\u8F93\u5165\u5730\u5740")),1),t("p",{class:"sandbox_environment_tex",innerHTML:e(a)("\u5982\u9700\u4E34\u65F6\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u8BF7\u5C06\u8BBE\u5907\u5173\u673A\u540E\u62D4\u51FA\u76F8\u5173\u78C1\u76D8\uFF0C\u542F\u52A8\u524D\u63D2\u5165\u76F8\u5173\u78C1\u76D8\u53EF\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u3002
\u6CE8\u610F\u4E34\u65F6\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\u4EE5\u540E\u5347\u7EA7\u56FA\u4EF6\u4F1A\u5BFC\u81F4\u4E4B\u524D\u7684\u6C99\u7BB1\u6570\u636E\u65E0\u6548",{},!0)},null,8,r7)])]),t("div",s7,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:_,disabled:s.value},i(e(a)("\u63D0\u4EA4")),9,d7),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:g,disabled:s.value},i(e(a)("\u91CD\u7F6E")),9,l7),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:p,disabled:s.value},i(e(a)("\u9000\u51FA")),9,c7),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},i(e(a)("\u53D6\u6D88")),1)])])):D("",!0)]),_:1},8,["Close"]))}});var p7=O(u7,[["__scopeId","data-v-3e084f0f"]]);const f7=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(p7,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},m7={class:"item_container"},g7=["onClick","title"],v7={class:"renew"},b7={key:0},h7={key:1,style:{display:"inline-block","margin-left":"4px"}},_7={class:"app-update-button-menu"},x7=["onClick"],w7={class:"app-update-menu-item"},k7={key:0,class:"app-update-menu-item-loading"},y7={class:"dns_txt"},F7={key:0,style:{display:"inline-block","margin-left":"4px"}},E7=T({setup(o){var A,S;const{$gettext:n}=H(),a=E(!0);(S=(A=window.quickstart_configs)==null?void 0:A.update)!=null&&S.disable&&(a.value=!1);const l=E(!1),c=E(a.value),s=E(!1),u=Me(),_=Fe(),g=Q(()=>_.status),p=E(),f=()=>{Ra()};Yt(c,Y=>{s.value=!0,j.System.AutoCheckUpdate.POST({enable:Y}).catch(z=>{$.Warning(z)}).finally(()=>{s.value=!1})});const m=()=>{window.location.href="/cgi-bin/luci/admin/system/ota"},w=()=>{window.location.href="/cgi-bin/luci/admin/status/logs"},y=()=>{window.location.href="/cgi-bin/luci/admin/store/pages/maintance"},x=()=>{Qp()},F=()=>{f7()},b=()=>{alert(n("\u8BE5\u56FA\u4EF6\u4E0D\u652F\u6301\u6C99\u7BB1\u6A21\u5F0F"))},h=()=>{vp()},v=()=>{Wa()},k=()=>{var Y,z,R,V;window.open(`${(z=(Y=window.quickstart_configs)==null?void 0:Y.ttyd)!=null&&z.ssl?"https":"http"}://${window.location.hostname}:${((V=(R=window.quickstart_configs)==null?void 0:R.ttyd)==null?void 0:V.port)||7681}/`,"_blank")},C=()=>{l.value=!l.value};return a.value&&setTimeout(()=>{u.requestCheckUpdate()},1100),Kt("sandbox")&&j.Nas.GetSandbox.GET().then(z=>{var R,V,I;z!=null&&z.data&&((((R=z==null?void 0:z.data)==null?void 0:R.success)||0)==0?(V=z==null?void 0:z.data)!=null&&V.result&&(p.value=z.data.result):(I=z==null?void 0:z.data)!=null&&I.error&&alert(z.data.error))}).catch(z=>$.Warning(z)),(Y,z)=>{var I,M,W,bt,Bt,gt;const R=ht("icon-loading"),V=ht("switch-box");return r(),d("div",m7,[t("div",{class:"item",style:{backgroundColor:"#f3f7fd"},onClick:h},[B(x4,{color:"#2b7fff",class:"icon"}),t("span",null,i(e(n)("\u5185\u7F51\u914D\u7F6E")),1)]),e(Kt)("ttyd")?(r(),d("div",{key:0,class:"item",style:{backgroundColor:"#f4fbf7"},onClick:k},[B(y4,{color:"#00c850",class:"icon"}),t("span",null,i(e(n)("\u7EC8\u7AEF")),1)])):D("",!0),e(Kt)("ota")?(r(),d("div",{key:1,class:"item",style:{backgroundColor:"#f9f7fd"},onClick:m},[t("span",{class:"app-update-button-more",onClick:ct(C,["stop","prevent"]),title:e(n)("\u56FA\u4EF6\u66F4\u65B0\u9009\u9879")},[B(Ee)],8,g7),B(Zt,{color:"#ad46ff",class:"icon"}),t("span",v7,[(I=e(u).checkUpdate)!=null&&I.needUpdate?(r(),d("i",b7)):D("",!0),nt(" "+i(e(n)("\u56FA\u4EF6\u66F4\u65B0"))+" ",1),a.value&&e(u).checkUpdate==null?(r(),d("span",h7,[B(R,{size:"1em",color:"currentColor"})])):D("",!0)]),L(t("div",_7,[t("div",{class:"menu_background",onClick:ct(C,["stop","prevent"])},null,8,x7),t("ul",{onClick:z[1]||(z[1]=ct(()=>{},["stop"]))},[t("li",null,[B(V,{modelValue:c.value,"onUpdate:modelValue":z[0]||(z[0]=jt=>c.value=jt)},{default:G(()=>[t("span",w7,i(e(n)("\u81EA\u52A8\u68C0\u67E5\u66F4\u65B0")),1)]),_:1},8,["modelValue"]),s.value?(r(),d("span",k7,[B(R,{size:"1em",color:"currentColor"})])):D("",!0)])])],512),[[te,l.value]])])):D("",!0),t("div",{class:st(["item",{"disabled-style":!((M=e(g))!=null&&M.proto)}]),style:{backgroundColor:"#f1fbfd"},onClick:f},[B(xe,{color:"#00b8db",class:"icon"}),t("span",y7,[nt(i(e(n)("DNS\u914D\u7F6E"))+" ",1),(W=e(g))!=null&&W.proto?D("",!0):(r(),d("span",F7,[B(R,{size:"1em",color:"currentColor"})]))])],2),t("div",{class:"item",style:{backgroundColor:"#fbf5fa"},onClick:v},[B(qa,{color:"#f6339a",class:"icon"}),t("span",null,i(e(n)("\u8F6F\u4EF6\u6E90\u914D\u7F6E")),1)]),e(Kt)("sandbox")?(r(),d(U,{key:2},[((bt=p.value)==null?void 0:bt.status)=="unsupport"?(r(),d("div",{key:0,class:"item",style:{backgroundColor:"#f9fafb"},onClick:b},[B(Je,{color:"#cac9cd",class:"icon"}),t("span",null,i(e(n)("\u5F00\u542F\u6C99\u7BB1")),1)])):((Bt=p.value)==null?void 0:Bt.status)=="stopped"?(r(),d("div",{key:1,class:"item",style:{backgroundColor:"#fbf4f5"},onClick:x},[B(Je,{color:"#fb2c36",class:"icon"}),t("span",null,i(e(n)("\u5F00\u542F\u6C99\u7BB1")),1)])):((gt=p.value)==null?void 0:gt.status)=="running"?(r(),d("div",{key:2,class:"item",style:{backgroundColor:"#dae8fd"},onClick:F},[B(Je,{color:"#2b7fff",class:"icon"}),t("span",null,i(e(n)("\u6C99\u7BB1\u5DF2\u5F00\u542F")),1)])):D("",!0)],64)):D("",!0),t("div",{class:"item",style:{backgroundColor:"#fcf7f2"},onClick:w},[B(Ha,{color:"#ff6900",class:"icon"}),t("span",null,i(e(n)("\u65E5\u5FD7\u67E5\u770B")),1)]),t("div",{class:"item",style:{backgroundColor:"#eff5ff"},onClick:y},[B(ua,{color:"#553afe",class:"icon"}),t("span",null,i(e(n)("\u7CFB\u7EDF\u7EF4\u62A4")),1)])])}}});var $7=O(E7,[["__scopeId","data-v-00934cf4"]]);const C7={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},D7=["fill"],B7=["fill"],Y7=T({props:{color:{type:String,default:"#222222"}},setup(o){return(n,a)=>(r(),d("svg",C7,[t("path",{d:"M746 112c82.84 0 150 67.16 150 150S828.84 412 746 412 596 344.84 596 262 663.16 112 746 112z m0 48C689.668 160 644 205.668 644 262S689.668 364 746 364 848 318.332 848 262 802.332 160 746 160zM746 612c82.84 0 150 67.16 150 150S828.84 912 746 912 596 844.84 596 762s67.16-150 150-150z m0 48c-56.332 0-102 45.668-102 102s45.668 102 102 102 102-45.668 102-102-45.668-102-102-102zM262 364c82.84 0 150 67.16 150 150S344.84 664 262 664 112 596.84 112 514 179.16 364 262 364z m0 48C205.668 412 160 457.668 160 514S205.668 616 262 616 364 570.332 364 514 318.332 412 262 412z",fill:o.color,"p-id":"5059"},null,8,D7),t("path",{d:"M337.7 442.744l293.488-169.62 40.464 70.16-293.484 169.62zM387.708 526.728l277.02 160.12-40.468 70.156-277.02-160.12z",fill:o.color,"p-id":"5060"},null,8,B7)]))}}),A7={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},S7=["fill"],Za=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",A7,[t("path",{d:"M827.84 886.4H187.9184375c-32.2659375 0-53.76-21.51375-53.76-53.784375V714.28625a53.889375 53.889375 0 0 1 53.76-53.784375h639.9215625a53.8940625 53.8940625 0 0 1 53.76 53.784375v118.35375a53.8940625 53.8940625 0 0 1-53.76 53.76z m-5.375625-172.11375H187.9184375v118.35375h634.5309375V714.28625z m-570 32.664375a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.865-26.88z m78.3403125 0a26.88 26.88 0 1 1-26.60625 27.1678125 26.88 26.88 0 0 1 26.5875-27.16875z m78.6 0a26.88 26.88 0 1 1-26.60625 27.1678125 26.88 26.88 0 0 1 26.5875-27.16875zM827.215625 624.9490625H187.2846875c-32.2603125 0-53.76-21.51375-53.76-53.784375V452.8353125a53.8940625 53.8940625 0 0 1 53.76-53.784375H827.196875a53.8940625 53.8940625 0 0 1 53.76 53.784375v118.329375a53.8940625 53.8940625 0 0 1-53.76 53.784375z m-5.38125-172.11375H187.285625v118.329375H821.815625V452.8353125z m-569.994375 31.9921875a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.88-26.88z m77.889375 0a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.8565625-26.88z m76.963125-0.403125a26.88 26.88 0 1 1-26.60625 27.1678125 26.88 26.88 0 0 1 26.5875-27.163125z m419.7890625-120.744375H186.56c-32.2509375 0-53.76-21.5278125-53.76-53.7984375V191.5521875a53.8940625 53.8940625 0 0 1 53.76-53.784375h639.9215625a53.8940625 53.8940625 0 0 1 53.76 53.784375v118.329375a53.8940625 53.8940625 0 0 1-53.76 53.7984375z m-5.3615625-172.1278125H186.56v118.329375h634.56V191.5521875z m-570.0140625 32.2753125a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.88-26.88z m78.6046875 0a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.8753125-26.88z m78.6046875 0a26.88 26.88 0 1 1-26.88 26.88 26.88 26.88 0 0 1 26.8846875-26.88z",fill:o.color,"p-id":"19012"},null,8,S7)]))}}),z7={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},P7=["fill"],T7=T({props:{color:{type:String,default:"#155dfc"}},setup(o){return(n,a)=>(r(),d("svg",z7,[t("path",{d:"M716.8 750.933333c47.786667 0 95.573333-27.306667 119.466667-68.266666 23.893333-40.96 23.893333-95.573333 0-136.533334-23.893333-40.96-68.266667-68.266667-119.466667-68.266666-10.24 0-17.066667-3.413333-23.893333-10.24-6.826667-6.826667-10.24-13.653333-10.24-23.893334 0-95.573333-75.093333-170.666667-170.666667-170.666666s-170.666667 75.093333-170.666667 170.666666v6.826667c81.92 23.893333 136.533333 95.573333 136.533334 180.906667 0 13.653333-6.826667 23.893333-17.066667 30.72-10.24 6.826667-23.893333 6.826667-34.133333 0-10.24-6.826667-17.066667-17.066667-17.066667-30.72 0-64.853333-54.613333-119.466667-119.466667-119.466667S170.666667 566.613333 170.666667 631.466667 225.28 750.933333 290.133333 750.933333H716.8zM296.96 819.2c-102.4 3.413333-187.733333-75.093333-194.56-177.493333-3.413333-102.4 75.093333-191.146667 177.493333-194.56 0-126.293333 95.573333-228.693333 221.866667-238.933334 122.88-6.826667 232.106667 81.92 249.173333 208.213334 105.813333 17.066667 180.906667 112.64 170.666667 218.453333-10.24 102.4-98.986667 184.32-204.8 184.32H296.96z",fill:o.color,"p-id":"8044"},null,8,P7)]))}}),I7={class:"app-container_samba"},M7={key:0,class:"sambas-item"},L7={class:"sambas-item_name"},O7={class:"sambas-item_value"},N7={class:"sambas-item"},V7={class:"sambas-item_name tit"},G7={class:"sambas-item_value tit"},j7={class:"samba-item"},U7={class:"samba-item_name"},q7=["title"],R7=["href"],W7=T({props:{sambas:{type:Array}},setup(o){const{$gettext:n,$ngettext:a}=H(),l=window.location.hostname;return(c,s)=>{var u;return r(),d("ul",I7,[o.sambas?(r(),d("li",M7,[t("div",L7,[t("span",null,i(e(n)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",O7,[t("span",null,i((u=o.sambas)!=null&&u.length?e(n)("\u5DF2\u542F\u7528"):e(n)("\u672A\u542F\u7528")),1)])])):D("",!0),t("li",N7,[t("div",V7,[t("span",null,i(e(n)("\u5730\u5740")),1)]),t("div",G7,[t("span",null,i(e(n)("\u76EE\u5F55")),1)])]),(r(!0),d(U,null,tt(o.sambas,_=>(r(),d("li",j7,[t("div",U7,[t("span",null,"smb://"+i(e(l))+"/"+i(_.shareName),1)]),t("div",{class:"samba-item_value",title:_.path},[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+_.path},i(_.path),9,R7)],8,q7)]))),256))])}}});var H7=O(W7,[["__scopeId","data-v-6c80f0b7"]]);const J7={class:"webdav-item"},Z7={class:"webdav-item_name"},K7={class:"webdav-item_value"},Q7={key:0,class:"webdav-item"},X7={class:"webdav-item_name"},tf={class:"webdav-item_value"},ef=["href"],af={key:1,class:"webdav-item"},of={class:"webdav-item_name"},nf={class:"webdav-item_value"},rf=["href"],sf={key:2,class:"webdav-item"},df={class:"webdav-item_name"},lf={class:"webdav-item_value"},cf=T({props:{webdav:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{var s;return`http://${location.hostname}:${(s=n.webdav)==null?void 0:s.port}`});return(s,u)=>{var _,g,p,f,m,w,y;return r(),d(U,null,[t("li",J7,[t("div",Z7,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",K7,[t("span",null,i((_=o.webdav)!=null&&_.path?e(a)("\u5DF2\u542F\u7528"):e(a)("\u672A\u542F\u7528")),1)])]),(g=o.webdav)!=null&&g.path?(r(),d("li",Q7,[t("div",X7,[t("span",null,i(e(a)("\u6302\u8F7D\u8DEF\u5F84:")),1)]),t("div",tf,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=o.webdav)==null?void 0:p.path)},i((f=o.webdav)==null?void 0:f.path),9,ef)])])):D("",!0),(m=o.webdav)!=null&&m.port?(r(),d("li",af,[t("div",of,[t("span",null,i(e(a)("\u670D\u52A1\u8DEF\u5F84:")),1)]),t("div",nf,[t("a",{href:e(c),target:"_blank",rel:"noopener noreferrer"},i(e(c)),9,rf)])])):D("",!0),(w=o.webdav)!=null&&w.username?(r(),d("li",sf,[t("div",df,[t("span",null,i(e(a)("\u8D26\u53F7:")),1)]),t("div",lf,[t("span",null,i((y=o.webdav)==null?void 0:y.username),1)])])):D("",!0)],64)}}});var uf=O(cf,[["__scopeId","data-v-9e39e9b2"]]);const pf={class:"app-container_linkease"},ff={class:"linkease-item"},mf={class:"linkease-item_name"},gf={class:"linkease-item_value"},vf={key:0,class:"configure"},bf={key:0,class:"linkease-item"},hf={class:"linkease-item_name"},_f={class:"linkease-item_value"},xf=["href"],wf={href:" https://app.linkease.com/",target:"_blank"},kf=T({props:{linkease:{type:Object}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{var u;return`http://${location.hostname}:${(u=n.linkease)==null?void 0:u.port}`}),s=()=>{Va({setup:0})};return(u,_)=>{var g,p,f;return r(),d("ul",pf,[t("li",ff,[t("div",mf,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),t("div",gf,[(g=o.linkease)!=null&&g.enabel?(r(),d("span",vf,i(e(a)("\u5DF2\u914D\u7F6E")),1)):(r(),d("span",{key:1,class:"configure enabel",onClick:_[0]||(_[0]=m=>s())},i(e(a)("\u672A\u914D\u7F6E")),1))])]),(p=o.linkease)!=null&&p.enabel?(r(),d(U,{key:0},[(f=o.linkease)!=null&&f.port?(r(),d("li",bf,[t("div",hf,[t("span",null,i(e(a)("\u670D\u52A1\u5730\u5740:")),1)]),t("div",_f,[t("a",{href:e(c),target:"_blank",rel:"noopener noreferrer"},i(e(c)),9,xf)])])):D("",!0)],64)):D("",!0),t("div",null,[t("a",wf,i(e(a)("\u4E0B\u8F7D\u6613\u6709\u4E91\u5BA2\u6237\u7AEF\uFF0C\u968F\u65F6\u968F\u5730\u76F8\u518C\u5907\u4EFD\u3001\u8FDC\u7A0B\u8BBF\u95EE")),1)])])}}});var yf=O(kf,[["__scopeId","data-v-485e1494"]]);const Ka=o=>(it("data-v-7ee59a9a"),o=o(),rt(),o),Ff={href:"/cgi-bin/luci/admin/services/samba4"},Ef={class:"content"},$f={class:"tab"},Cf={class:"title"},Df={key:0},Bf={key:1},Yf=Ka(()=>t("div",{class:"title"},"SAMBA",-1)),Af=Ka(()=>t("div",{class:"title"},"WEBDAV",-1)),Sf=T({setup(o){const{$gettext:n}=H(),a=E(!1);E("linkease");const l=E(),c=Jo(),s=E(!1);(()=>{j.Nas.Service.Status.GET().then(w=>{var y;if((y=w==null?void 0:w.data)!=null&&y.result){const x=w.data.result;l.value=x,x.webdav&&(c.webdav=x.webdav)}})})();const _=()=>{Va({setup:0})},g=()=>{a.value=!a.value},p=()=>{g(),Dt.installAndGo("app-meta-gowebdav","GoWebDAV","/cgi-bin/luci/admin/nas/gowebdav")},f=E(0),m=w=>{f.value=w};return(w,y)=>(r(),J(Rt,{title:e(n)("\u5B58\u50A8\u670D\u52A1"),style:{width:"100%",height:"100%",display:"block"},"is-settings-menu-open":s.value,"onUpdate:isSettingsMenuOpen":y[4]||(y[4]=x=>s.value=x)},{icon:G(()=>[B(Y7,{color:"#4f39f6",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:_},[B(ua,{color:"#0a0a0a",class:"icon1 settings-icon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u914D\u7F6E\u5B58\u50A8\u670D\u52A1")),1),t("div",{class:"rotation",onClick:y[0]||(y[0]=ct(x=>s.value=!s.value,["stop"]))},[B(Ee,{class:"moreIcon"})])])]),"settings-menu":G(()=>[t("div",null,[t("a",Ff,i(e(n)("SAMBA\u9AD8\u7EA7\u914D\u7F6E")),1)]),t("div",null,[t("a",{onClick:p},i(e(n)("WebDAV\u9AD8\u7EA7\u914D\u7F6E")),1)])]),default:G(()=>{var x,F,b,h,v,k,C,A,S;return[t("div",Ef,[t("div",$f,[t("div",{class:st(["item cloud",{active:f.value==0}]),onClick:y[1]||(y[1]=Y=>m(0))},[B(T7,{color:"#155dfc",class:"icon2"}),t("div",Cf,i(e(n)("\u6613\u6709\u4E91")),1),(F=(x=l.value)==null?void 0:x.linkease)!=null&&F.enabel?(r(),d("span",Df,i(e(n)("\u5DF2\u914D\u7F6E")),1)):(r(),d("span",Bf,i(e(n)("\u672A\u914D\u7F6E")),1))],2),t("div",{class:st(["item memory",{active:f.value==1}]),onClick:y[2]||(y[2]=Y=>m(1))},[B(Za,{color:"#0bab47",class:"icon2"}),Yf,t("span",null,i((h=(b=l.value)==null?void 0:b.sambas)!=null&&h.length?e(n)("\u5DF2\u542F\u7528"):e(n)("\u672A\u542F\u7528")),1)],2),t("div",{class:st(["item network",{active:f.value==2}]),onClick:y[3]||(y[3]=Y=>m(2))},[B(xe,{color:"#9810fa",class:"icon2"}),Af,t("span",null,i((k=(v=l.value)==null?void 0:v.webdav)!=null&&k.path?e(n)("\u5DF2\u542F\u7528"):e(n)("\u672A\u542F\u7528")),1)],2)]),f.value==0?(r(),J(yf,{key:0,linkease:(C=l.value)==null?void 0:C.linkease},null,8,["linkease"])):f.value==1?(r(),J(H7,{key:1,sambas:(A=l.value)==null?void 0:A.sambas},null,8,["sambas"])):f.value==2?(r(),J(uf,{key:2,webdav:(S=l.value)==null?void 0:S.webdav},null,8,["webdav"])):D("",!0)])]}),_:1},8,["title","is-settings-menu-open"]))}});var zf=O(Sf,[["__scopeId","data-v-7ee59a9a"]]);const Pf={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Tf=["fill"],If=["fill"],Fa=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",Pf,[t("path",{d:"M554.688 682.624a42.688 42.688 0 0 0 0 85.376h0.448a42.688 42.688 0 1 0 0-85.376h-0.448zM767.488 682.624a42.688 42.688 0 0 0 0 85.376H768a42.688 42.688 0 1 0 0-85.376h-0.512z",fill:o.color,"p-id":"5230"},null,8,Tf),t("path",{d:"M465.28 96h93.44c59.456 0 106.88 0 144.96 4.48 39.36 4.48 72.128 14.08 100.992 35.584 28.8 21.44 47.424 50.112 63.104 86.464 15.232 35.2 28.8 80.64 45.952 137.6l52.48 174.848c1.28 4.48 2.752 9.28 3.584 14.336v0.32l0.192 1.216c0.64 5.12 0.64 10.048 0.64 14.72v3.392c0 72.704 0 130.304-5.632 175.68-5.824 46.592-18.112 84.736-45.952 115.84-4.992 5.568-10.304 10.88-15.936 15.872-31.104 27.84-69.184 40.128-115.84 45.952-45.312 5.696-102.912 5.696-175.616 5.696H412.352c-72.704 0-130.304 0-175.68-5.696-46.592-5.824-84.672-18.112-115.84-45.888a202.944 202.944 0 0 1-15.872-16c-27.84-31.04-40.128-69.12-45.952-115.84-5.696-45.312-5.696-102.912-5.696-175.616v-3.328c0-4.672 0-9.664 0.704-14.784v-0.32l0.192-1.216c0.832-5.056 2.24-9.856 3.584-14.272l52.48-174.912c17.088-56.96 30.72-102.4 45.952-137.6 15.68-36.352 34.304-65.024 63.104-86.4 28.8-21.504 61.632-31.104 100.992-35.712C358.4 96 405.76 96 465.28 96zM327.68 164.032c-33.152 3.84-53.632 11.072-70.144 23.36-16.512 12.288-29.376 29.824-42.56 60.48-13.568 31.424-26.176 73.28-43.968 132.544l-42.688 142.272h767.36l-42.688-142.272c-17.792-59.264-30.4-101.12-43.968-132.48-13.184-30.72-26.048-48.256-42.56-60.544-16.512-12.288-36.992-19.52-70.144-23.36C662.336 160 618.624 160 556.736 160H467.328c-61.952 0-105.6 0-139.648 4.032zM122.496 736.64c5.056 40.128 14.528 63.616 30.144 81.088 3.456 3.84 7.04 7.488 10.88 10.88 17.536 15.68 40.96 25.088 81.152 30.144 40.96 5.12 94.464 5.184 169.92 5.184h194.816c75.456 0 129.024 0 169.92-5.184 40.128-5.056 63.616-14.464 81.152-30.08 3.84-3.456 7.424-7.104 10.88-10.944 15.616-17.536 25.088-40.96 30.08-81.088 4.672-37.248 5.12-84.928 5.248-150.016H117.312c0.064 65.088 0.512 112.768 5.184 150.016z",fill:o.color,"p-id":"5231"},null,8,If)]))}}),Mf={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Lf=["fill"],Of=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",Mf,[t("path",{d:"M912 208H427.872l-50.368-94.176A63.936 63.936 0 0 0 321.056 80H112c-35.296 0-64 28.704-64 64v736c0 35.296 28.704 64 64 64h800c35.296 0 64-28.704 64-64v-608c0-35.296-28.704-64-64-64z m-800-64h209.056l68.448 128H912v97.984c-0.416 0-0.8-0.128-1.216-0.128H113.248c-0.416 0-0.8 0.128-1.248 0.128V144z m0 736v-96l1.248-350.144 798.752 1.216V784h0.064v96H112z",fill:o.color,"p-id":"5094"},null,8,Lf)]))}}),Nf={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Vf=["fill"],Gf=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",Nf,[t("path",{d:"M136.12 251.958a83.054 83.054 0 0 1-0.12-4.458c0-32.903 19.447-58.344 41.115-75.981 21.984-17.893 51.365-32.231 84.13-43.511C327.163 105.315 415.641 92 511.5 92c95.859 0 184.337 13.315 250.255 36.008 32.765 11.28 62.146 25.618 84.13 43.511 20.221 16.458 38.506 39.713 40.86 69.485l0.255 0.002v532.88c0 32.888-19.031 58.62-40.776 76.719-21.978 18.294-51.385 32.976-84.207 44.53C696.011 918.373 607.438 932 511.5 932c-95.938 0-184.511-13.627-250.517-36.865-32.822-11.554-62.229-26.236-84.207-44.53C155.031 832.506 136 806.774 136 773.886V251.96l0.12-0.002z m79.88-4.459v0.002c0 0.016-0.003 0.151 0.098 0.491 0.112 0.379 0.397 1.16 1.103 2.347 1.479 2.49 4.55 6.323 10.415 11.096 11.97 9.743 31.722 20.293 59.67 29.914C342.796 310.459 422.067 323 511.5 323c89.433 0 168.704-12.541 224.214-31.651 27.948-9.621 47.7-20.171 59.67-29.914 5.865-4.773 8.936-8.606 10.415-11.096 0.706-1.187 0.991-1.968 1.103-2.347 0.088-0.297 0.097-0.437 0.098-0.479v-0.014-0.012c-0.001-0.042-0.01-0.182-0.098-0.479-0.112-0.379-0.397-1.16-1.103-2.347-1.479-2.49-4.55-6.323-10.415-11.096-11.97-9.743-31.722-20.293-59.67-29.914C680.204 184.541 600.933 172 511.5 172c-89.433 0-168.704 12.541-224.214 31.651-27.948 9.621-47.7 20.171-59.67 29.914-5.865 4.773-8.936 8.606-10.415 11.096-0.706 1.187-0.991 1.968-1.103 2.347-0.101 0.34-0.098 0.475-0.098 0.491z m591 100.656c-13.955 7.052-29.194 13.311-45.245 18.837C695.837 389.685 607.359 403 511.5 403c-95.859 0-184.337-13.315-250.255-36.008-16.051-5.526-31.29-11.785-45.245-18.837v85.359c0.001 0.042 0.01 0.182 0.098 0.478 0.112 0.379 0.397 1.16 1.103 2.347 1.479 2.489 4.55 6.323 10.415 11.096 11.97 9.743 31.722 20.293 59.67 29.914C342.796 496.459 422.067 509 511.5 509c89.433 0 168.704-12.541 224.214-31.651 27.948-9.621 47.7-20.171 59.67-29.914 5.865-4.773 8.936-8.607 10.415-11.096 0.706-1.187 0.991-1.968 1.103-2.347 0.088-0.297 0.097-0.437 0.098-0.479v-85.358z m-45.245 204.837C695.837 575.685 607.359 589 511.5 589c-95.859 0-184.337-13.315-250.255-36.008-16.051-5.526-31.29-11.785-45.245-18.837v70.359c0.001 0.041 0.01 0.182 0.098 0.478 0.112 0.379 0.397 1.16 1.103 2.347 1.479 2.489 4.55 6.323 10.415 11.096 11.97 9.743 31.722 20.293 59.67 29.914C342.796 667.459 422.067 680 511.5 680c89.433 0 168.704-12.541 224.214-31.651 27.948-9.621 47.7-20.171 59.67-29.914 5.865-4.773 8.936-8.607 10.415-11.096 0.706-1.187 0.991-1.968 1.103-2.347 0.088-0.297 0.097-0.437 0.098-0.479v-70.358c-13.955 7.052-29.194 13.311-45.245 18.837zM807 705.155c-13.955 7.052-29.194 13.311-45.245 18.837C695.837 746.685 607.359 760 511.5 760c-95.859 0-184.337-13.315-250.255-36.008-16.051-5.526-31.29-11.785-45.245-18.837V773.894c0 0.181-0.003 1.283 1.399 3.695 1.555 2.675 4.69 6.646 10.556 11.529 11.976 9.968 31.701 20.738 59.594 30.557C342.97 839.186 422.146 852 511.5 852c89.354 0 168.53-12.814 223.951-32.325 27.893-9.819 47.618-20.589 59.594-30.557 5.866-4.883 9.001-8.854 10.556-11.529 1.402-2.412 1.399-3.514 1.399-3.695v-68.739z",fill:o.color,"p-id":"9960"},null,8,Vf)]))}}),jf={},Uf={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},qf=Vt('',1),Rf=[qf];function Wf(o,n){return r(),d("svg",Uf,Rf)}var Ea=O(jf,[["render",Wf]]);const Hf={},Jf={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Zf=Vt('',1),Kf=[Zf];function Qf(o,n){return r(),d("svg",Jf,Kf)}var Xf=O(Hf,[["render",Qf]]);const Ve=o=>(it("data-v-5f5fb500"),o=o(),rt(),o),t9=["onSubmit"],e9=Ve(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"})],-1)),a9={class:"action-body"},o9={class:"disk-info"},n9=Ve(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),i9={key:0,class:"disk-info_mount-name"},r9={key:1,class:"disk-info_mount-name"},s9={key:0,class:"label-item"},d9={class:"label-item_key"},l9={class:"label-item_path"},c9={class:"label-item"},u9={class:"label-item_key"},p9={class:"label-item_value"},f9={class:"action-footer"},m9=Ve(()=>t("div",{class:"auto"},null,-1)),g9=["disabled"],v9=["disabled"],b9={key:1,class:"action result"},h9={class:"action-body"},_9=Ve(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),x9={class:"action-body_msg"},w9=["innerHTML"],k9={class:"btns"},y9=T({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(o){var F;const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close&&n.Close()},s=b=>{b.preventDefault(),n.Cancel&&n.Cancel(),c()},u=b=>{n.Next&&n.Next(b),c()},_=E(!1),g=E(0),p=E("/mnt/data_"+((F=n==null?void 0:n.mount)==null?void 0:F.name)),f=b=>{g.value=b};E(n.mount?"":"format"),E();const m=E(),w=()=>N(this,null,function*(){const b=n.mount;if(b==null){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533A"));return}if(b.path==null||b.path==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84"));return}if(b.uuid==null||b.uuid==""){$.Warning(a("\u83B7\u53D6\u4E0D\u5230\u5206\u533AID"));return}_.value=!0;const h=$.Loading(a("\u6302\u8F7D\u4E2D..."));try{const v=yield j.Nas.Disk.Partition.Mount.POST({path:b.path,uuid:b.uuid,mountPoint:p.value});if(v!=null&&v.data){const{result:k,error:C}=v==null?void 0:v.data;C&&$.Warning(C),k&&($.Success(a("\u6302\u8F7D\u6210\u529F")),m.value=k,f(1))}}catch(v){$.Error(v)}h.Close(),_.value=!1}),y=()=>{if(m.value&&m.value.mountPoint){u(m.value.mountPoint);return}$.Warning(a("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25"))},x=()=>{};return(b,h)=>(r(),J(_t,{type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>{var v,k;return[g.value==0?(r(),d("form",{key:0,class:"action format",onSubmit:ct(x,["prevent"])},[e9,t("div",a9,[t("div",o9,[n9,o.mount?(r(),d("div",i9,[t("span",null,"\u3010"+i(o.mount.total)+"\u3011",1),t("span",null,i(o.mount.mountPoint),1)])):o.disk?(r(),d("div",r9,[t("span",null,"\u3010"+i(o.disk.size)+"\u3011",1),t("span",null,i(o.disk.venderModel),1)])):D("",!0)]),o.mount?(r(),d("div",s9,[t("div",d9,[t("span",null,i(e(a)("\u76EE\u6807\u5206\u533A")),1)]),t("div",l9,i(o.mount.path)+"\uFF08"+i(o.mount.total)+"\uFF0C"+i((k=(v=o.mount)==null?void 0:v.filesystem)==null?void 0:k.toUpperCase())+"\uFF09",1)])):D("",!0),t("div",c9,[t("div",u9,[t("span",null,i(e(a)("\u6302\u8F7D\u70B9")),1)]),t("div",p9,[L(t("input",{type:"text","onUpdate:modelValue":h[0]||(h[0]=C=>p.value=C)},null,512),[[et,p.value,void 0,{trim:!0}]])])])]),t("div",f9,[m9,t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:_.value,onClick:w},i(e(a)("\u786E\u5B9A")),9,g9),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button",disabled:_.value},i(e(a)("\u8FD4\u56DE")),9,v9)])],40,t9)):g.value==1?(r(),d("div",b9,[t("div",h9,[_9,t("div",x9,i(e(a)("\u6302\u8F7D\u6210\u529F")),1),m.value?(r(),d("div",{key:0,class:"action-body_info",innerHTML:e(a)("\u5DF2\u6210\u529F\u5C06\u5206\u533A %{dev} \u6302\u8F7D\u5230 %{mount}",{dev:m.value.path||"",mount:m.value.mountPoint||""},!0)},null,8,w9)):D("",!0),t("div",k9,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:y},i(o.action=="nas"?e(a)("\u5B8C\u6210"):e(a)("\u4E0B\u4E00\u6B65")),1)])])])):D("",!0)]}),_:1})]),_:1}))}});var F9=O(y9,[["__scopeId","data-v-5f5fb500"]]),Qa=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(F9,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const E9={class:"disk-content"},$9={class:"disk-item"},C9={class:"disk-item_name"},D9={key:0},B9={key:1},Y9={key:2},A9={class:"disk_value"},S9={class:"disk-item_value"},z9={class:"value-data"},P9={key:0,class:"disk-item"},T9={class:"disk-item_name"},I9={key:0},M9=["href"],L9={key:0},O9={class:"disk_status"},N9={key:0,class:"disk_status_item"},V9={key:0,class:"tooltip-trigger disk_tip"},G9={class:"tooltip-text tooltip-top"},j9={class:"disk_dir_tip"},U9={class:"disk_status_item"},q9={key:0,class:"tooltip-trigger disk_tip"},R9={class:"tooltip-text tooltip-top"},W9={class:"disk_dir_tip"},H9=T({props:{part:{type:Object,required:!0},disk:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>n.part.filesystem=="No FileSystem"),s=Q(()=>n.part.filesystem&&["ntfs","vfat","exfat"].indexOf(n.part.filesystem)>=0),u=Q(()=>n.part.mountPoint&&n.part.isReadOnly&&n.part.filesystem!="swap"),_=Q(()=>c.value||!n.part.isSystemRoot&&(u.value||s.value||!n.part.mountPoint&&n.part.filesystem=="swap")),g=function(){da({action:"disk",disk:n.disk,mount:n.part,Cancel:()=>{},Next:y=>{location.reload()}})},p=()=>{Qa({action:"nas",disk:n.disk,mount:n.part,Cancel:()=>{},Next:()=>{location.reload()}})},f=()=>N(this,null,function*(){const y=$.Loading(a("\u5904\u7406\u4E2D..."));try{const x=yield j.Nas.Disk.InitRest.POST({name:n.disk.name,path:n.disk.path});if(x!=null&&x.data){const{result:F,error:b}=x==null?void 0:x.data;b&&$.Warning(b),F&&($.Success(a("\u6302\u8F7D\u6210\u529F")),location.reload())}}catch(x){$.Error(x)}y.Close()}),m=Q(()=>n.part.filesystem=="Free Space"),w=Q(()=>{const y=n.part.mountPoint?n.part.mountPoint:"";return y.indexOf("/mnt/")==0?"/cgi-bin/luci/admin/services/linkease/file/?path=/"+y.substring(5):"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+y});return(y,x)=>{var b;const F=ht("progress-item");return r(),d("div",E9,[t("li",$9,[t("div",C9,[e(m)?(r(),d("span",D9,i(e(a)("\u672A\u5206\u533A")),1)):(r(),d("span",B9,i(o.part.name)+i(o.part.mountPoint?"":e(c)?e(a)("\uFF08\u672A\u683C\u5F0F\u5316\uFF09"):e(a)("\uFF08\u672A\u6302\u8F7D\uFF09")),1)),o.part.isSystemRoot?(r(),d("span",Y9,i(e(a)("\uFF08\u7CFB\u7EDF\u5206\u533A\uFF09")),1)):D("",!0)]),t("div",A9,[t("div",S9,[t("div",z9,[B(F,{value:e(m)||!o.part.usage?0:o.part.usage,text:e(m)?e(a)("\u672A\u5206\u533A\uFF08%{total}\uFF09",{total:o.part.total||""}):(o.part.mountPoint&&o.part.filesystem!="swap"?o.part.used:e(a)("\u672A\u77E5"))+"/"+(o.part.total||""),style:{backgroundColor:"#767676"}},null,8,["value","text"])])]),e(m)?(r(),d("button",{key:0,class:"cbi-button cbi-button-apply",onClick:f},i(e(a)("\u5206\u533A\u5E76\u683C\u5F0F\u5316")),1)):e(_)?(r(),d("button",{key:1,class:"cbi-button cbi-button-apply",onClick:g},i(e(a)("\u683C\u5F0F\u5316\u5206\u533A")),1)):D("",!0)])]),!e(m)&&!e(c)?(r(),d("li",P9,[t("span",T9,[o.part.mountPoint?(r(),d(U,{key:0},[o.part.filesystem=="swap"?(r(),d("span",I9,i(e(a)("\u5DF2\u6302\u8F7D\u4E3A\u4EA4\u6362\u533A")),1)):(r(),d("a",{key:1,href:e(w),target:"_blank"},i(o.part.mountPoint),9,M9))],64)):(r(),d(U,{key:1},[o.part.filesystem=="swap"?(r(),d("span",L9,i(e(a)("\u4E0D\u652F\u6301\u6302\u8F7D")),1)):(r(),d("span",{key:1,class:"value-data buttondiv",onClick:p},i(e(a)("\u624B\u52A8\u6302\u8F7D")),1))],64))]),t("div",O9,[o.part.mountPoint&&o.part.filesystem!="swap"?(r(),d("div",N9,[t("div",null,i(e(a)("\u53EF\u8BFB\u5199\u72B6\u6001\uFF1A"))+i(o.part.isReadOnly?e(a)("\u53EA\u8BFB"):e(a)("\u8BFB\u5199")),1),e(u)?(r(),d("div",V9,[B(zt),t("div",G9,[t("div",j9,i(e(a)("\u6B64\u5206\u533A\u4E3A\u53EA\u8BFB\u72B6\u6001\uFF0C\u53EF\u80FD\u65E0\u6CD5\u5199\u5165\u6570\u636E")),1)])])):D("",!0)])):D("",!0),t("div",U9,[t("div",null,i(e(a)("\u6587\u4EF6\u7CFB\u7EDF\uFF1A"))+i((b=o.part.filesystem)==null?void 0:b.toUpperCase()),1),!o.part.isSystemRoot&&e(s)?(r(),d("div",q9,[B(zt),t("div",R9,[t("span",W9,i(e(a)("\u6B64\u6587\u4EF6\u7CFB\u7EDF\u4E0D\u652F\u6301Docker\u7B49\u5E94\u7528\u6570\u636E\uFF0C\u5EFA\u8BAE\u683C\u5F0F\u5316\u6210EXT4\u6587\u4EF6\u7CFB\u7EDF")),1)])])):D("",!0)])])])):D("",!0)])}}});var J9=O(H9,[["__scopeId","data-v-4e7285ca"]]);const Z9=o=>(it("data-v-56d0d562"),o=o(),rt(),o),K9={key:0,class:"action"},Q9={class:"title"},X9={class:"app-container_info"},tm={class:"app-container_body"},em={class:"action-footer"},am=Z9(()=>t("div",{class:"auto"},null,-1)),om=T({props:{disk:{type:Object,required:!0},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(0),s=()=>{n.Close&&n.Close()},u=_=>{_.preventDefault(),n.Cancel&&n.Cancel(),s()};return(_,g)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[c.value==0?(r(),d("div",K9,[t("h2",Q9,i(e(a)("\u5206\u533A\u4FE1\u606F"))+" - "+i((o.disk.name||"?")+(o.disk.isSystemRoot?e(a)("\uFF08\u7CFB\u7EDF\u76D8\uFF09"):"")),1),t("ul",null,[t("li",null,[t("div",X9,[t("span",null,i(e(a)("\u5206\u533A / \u6302\u8F7D\u70B9")),1),t("span",null,i(e(a)("\u5BB9\u91CF")),1)]),t("div",tm,[(r(!0),d(U,null,tt(o.disk.childrens,(p,f)=>(r(),J(J9,{key:f,part:p,disk:o.disk},null,8,["part","disk"]))),128))])])]),t("div",em,[am,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:u,type:"button"},i(e(a)("\u8FD4\u56DE")),1)])])):D("",!0)]),_:1})]),_:1},8,["Close"]))}});var nm=O(om,[["__scopeId","data-v-56d0d562"]]),im=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(nm,pt(lt({},o),{Close:()=>{l()}}));a.component("progress-item",La),a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const rm={class:"progress-bar-wrapper"},sm={key:0,class:"percentage-text"},dm={props:{percentage:{type:Number,default:0,validator:o=>o>=0&&o<=100},color:{type:String,default:"#4CAF50"},backgroundColor:{type:String,default:"#e0e0e0"},height:{type:[String,Number],default:"20px"},borderRadius:{type:[String,Number],default:"4px"},showPercentage:{type:Boolean,default:!0},gradient:{type:Boolean,default:!1},gradientColors:{type:String,default:"linear-gradient(90deg, #4CAF50, #45a049)"},duration:{type:Number,default:1e3}},setup(o){const n=o,a=Q(()=>({height:typeof n.height=="number"?`${n.height}px`:n.height,borderRadius:typeof n.borderRadius=="number"?`${n.borderRadius}px`:n.borderRadius,backgroundColor:n.backgroundColor,overflow:"hidden"})),l=Q(()=>{const c={height:"100%",width:`${n.percentage}%`,borderRadius:typeof n.borderRadius=="number"?`${n.borderRadius}px`:n.borderRadius,transition:`width ${n.duration}ms cubic-bezier(0.4, 0, 0.2, 1)`,position:"relative",overflow:"hidden"};return n.gradient?pt(lt({},c),{background:n.gradientColors}):pt(lt({},c),{background:n.color})});return(c,s)=>(r(),d("div",rm,[t("div",{class:"progress-bar",style:ft(e(a))},[t("div",{class:"progress-fill",style:ft(e(l))},[o.showPercentage?(r(),d("span",sm,i(Math.round(o.percentage))+"% ",1)):D("",!0)],4)],4)]))}};var Xa=O(dm,[["__scopeId","data-v-2691c876"]]);const lm={key:0,class:"disk-item error"},cm=["title"],um={class:"disk-item_value"},pm={class:"value-data"},fm={class:"error"},mm={key:1,class:"disk-item"},gm=["title"],vm={key:0,class:"disk_value"},bm={class:"value-data"},hm={href:"/cgi-bin/luci/admin/nas/smart"},_m={class:"error"},xm={key:1,class:"disk_value"},wm={class:"disk-item_value"},km={class:"value-data"},ym={class:"disk-item-tooltip"},Fm={class:"disk_icon"},Em={key:0,class:"tooltip-trigger"},$m={class:"disk_tip"},Cm={class:"tooltip-text tooltip-top"},Dm={class:"disk_dir_tip"},Bm={key:1,class:"tooltip-trigger"},Ym={class:"disk_tip"},Am={class:"tooltip-text tooltip-top"},Sm={class:"disk_dir_tip"},zm={key:2,class:"disk-item load"},Pm=["title"],Tm={class:"disk_value"},Im={class:"disk-item_value"},Mm={class:"value-data"},Lm={key:3,class:"disk-item load"},Om=["title"],Nm={class:"disk_value"},Vm={key:0,class:"disk-item_value"},Gm={class:"value-data"},jm={class:"disk_icon"},Um=T({props:{disk:{type:Object,required:!0},smartWarning:{type:Boolean}},setup(o){const n=o,{$gettext:a}=H(),l=Q(()=>n.disk.errorInfo?"error":n.disk.childrens==null||n.disk.childrens.length==0||n.disk.childrens.length==1&&n.disk.childrens[0].filesystem=="No FileSystem"?"load":n.disk.childrens.filter(f=>f.mountPoint).length==0?"unmounted":"success"),c=Q(()=>{const f=n.disk;let m=f.name;return f.size&&(m+=`\u3010${f.size}\u3011`),f.venderModel&&(m+=`(${f.venderModel})`),m}),s=Q(()=>{var m;const f=n.disk;return!f.isSystemRoot&&(((m=f.childrens)==null?void 0:m.filter(w=>w.isReadOnly&&w.filesystem!="swap").length)||0)>0}),u=()=>{da({action:"disk",disk:n.disk,Cancel:()=>{},Next:()=>{location.reload()}})},_=()=>{im({action:"disk",disk:n.disk,Cancel:()=>{},Next:()=>{location.reload()}})},g=()=>{const f=n.disk,m=f.childrens||[];Qa({action:"nas",disk:f,mount:m[0],Cancel:()=>{},Next:()=>{location.reload()}})},p=f=>f<50?"#2fc867":f>50&&f<=75?"#f97316":"#dc2626";return(f,m)=>{var w,y,x;return e(l)=="error"?(r(),d("li",lm,[t("div",{class:"disk-item_name",title:e(c)},[t("span",null,i(e(c)),1)],8,cm),t("div",um,[t("div",pm,[t("span",fm,i(o.disk.errorInfo),1)])])])):e(l)=="success"?(r(),d("li",mm,[t("div",{class:"disk-item_name",title:e(c)},[t("span",null,i(e(c)),1)],8,gm),o.disk.smartWarning&&o.smartWarning?(r(),d("div",vm,[t("div",bm,[t("a",hm,[t("span",_m,i(e(a)("S.M.A.R.T\u5F02\u5E38")),1)])])])):(r(),d("div",xm,[t("div",wm,[t("div",km,[B(Xa,{percentage:o.disk.usage||0,showPercentage:!1,height:"10px",borderRadius:"10px",color:p(o.disk.usage||0),backgroundColor:"#f4f5f7"},null,8,["percentage","color"]),t("div",null,[t("span",null,i(e(a)("\u4F7F\u7528\u7387"))+"\uFF1A"+i(o.disk.usage||0)+"%",1),t("span",null,i(e(a)("\u5DF2\u4F7F\u7528"))+"\uFF1A"+i(o.disk.used),1)])]),t("div",ym,[t("span",null,i(e(a)("\u4EC5\u7EDF\u8BA1\u5DF2\u6302\u8F7D\u5206\u533A")),1)])]),t("div",Fm,[o.disk.isDockerRoot&&o.disk.isSystemRoot&&o.disk.usage&&o.disk.usage>=90?(r(),d("span",Em,[t("span",$m,[B(zt)]),t("div",null,[t("div",Cm,[t("span",Dm,i(e(a)("\u60A8\u7684\u7CFB\u7EDF\u7A7A\u95F4\u5DF2\u4E0D\u8DB3\uFF0C\u68C0\u6D4B\u5230\u60A8\u7684Docker\u6839\u76EE\u5F55\u4F4D\u4E8E\u7CFB\u7EDF\u6839\u76EE\u5F55\u4E0A\uFF0C\u53EF\u80FD\u4F1A\u5F71\u54CD\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u5EFA\u8BAE\u4F7F\u7528Docker\u8FC1\u79FB\u5411\u5BFC\u5C06Docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\u4E0A\u3002")),1)])])])):D("",!0),e(s)?(r(),d("span",Bm,[t("span",Ym,[B(zt)]),t("div",null,[t("div",Am,[t("span",Sm,i(e(a)("\u5206\u533A\u5B58\u5728\u5F02\u5E38\uFF0C\u70B9\u51FB\u5206\u533A\u5217\u8868\u67E5\u770B\u9519\u8BEF")),1)])])])):D("",!0),e(s)&&((w=o.disk.childrens)==null?void 0:w.length)==1?(r(),d("span",{key:2,class:"disk_infoicon",onClick:m[0]||(m[0]=F=>u())},[B(Xf)])):D("",!0),t("span",{class:"disk_infoicon",onClick:m[1]||(m[1]=F=>_())},[B(Ea,{style:{color:"var(--app-container_title-color)"}})])])]))])):e(l)=="load"?(r(),d("li",zm,[t("div",{class:"disk-item_name",title:e(c)},[t("span",null,i(e(c)),1)],8,Pm),t("div",Tm,[t("div",Im,[t("div",Mm,[t("button",{onClick:m[2]||(m[2]=F=>u())},i(e(a)("\u683C\u5F0F\u5316\u5E76\u6302\u8F7D")),1)])])])])):e(l)=="unmounted"?(r(),d("li",Lm,[t("div",{class:"disk-item_name",title:e(c)},[t("span",null,i(e(c)),1)],8,Om),t("div",Nm,[((y=o.disk.childrens)==null?void 0:y.length)==1?(r(),d("div",Vm,[t("div",Gm,[o.disk.childrens[0].filesystem=="swap"?(r(),d("button",{key:0,onClick:m[3]||(m[3]=F=>_())},i(e(a)("\u67E5\u770B\u8BE6\u60C5")),1)):(r(),d("button",{key:1,onClick:m[4]||(m[4]=F=>g())},i(e(a)("\u624B\u52A8\u6302\u8F7D")),1))])])):D("",!0),t("div",jm,[(((x=o.disk.childrens)==null?void 0:x.length)||0)>1?(r(),d("span",{key:0,class:"disk_infoicon",onClick:m[5]||(m[5]=F=>_())},[B(Ea,{style:{color:"var(--app-container_title-color)"}})])):D("",!0)])])])):D("",!0)}}});var Ze=O(Um,[["__scopeId","data-v-34a1dfa9"]]);const qm=o=>(it("data-v-1e31ad3a"),o=o(),rt(),o),Rm={href:"/cgi-bin/luci/admin/nas/raid"},Wm=qm(()=>t("div",null,[t("a",{href:"/cgi-bin/luci/admin/nas/smart"},"S.M.A.R.T.")],-1)),Hm={href:"/cgi-bin/luci/admin/system/diskman"},Jm={href:"/cgi-bin/luci/admin/system/mounts"},Zm={class:"content"},Km={key:0,class:"disk_loading_icon"},Qm={class:"disk_loading_info"},Xm={class:"item",style:{"margin-top":"4px","padding-bottom":"0"}},tg={class:"icon_box"},eg={class:"info"},ag={class:"name"},og={class:"schedule"},ng={key:0,class:"line"},ig={key:1,class:"item"},rg={class:"icon_box",style:{background:"#f3e8ff"}},sg={class:"info"},dg={class:"name"},lg={class:"schedule"},cg={key:2,class:"item"},ug={class:"icon_box",style:{background:"#dbfce7"}},pg={class:"info"},fg={class:"name"},mg={class:"schedule"},gg=T({setup(o){const{$gettext:n}=H(),a=E(!1),l=mt({disks:null,raidList:null}),c=()=>{j.Nas.Disk.Status.GET().then(_=>{var g;if((g=_==null?void 0:_.data)!=null&&g.result){const p=_.data.result;l.disks=p.disks||[]}})};(()=>N(this,null,function*(){try{const _=yield j.Raid.List.GET();if(_!=null&&_.data){const{success:g,error:p,result:f}=_.data;if(f&&(l.raidList=f.disks||[]),p)throw p}}catch(_){console.log(_)}}))(),c();const u=()=>{Dt.installAndGo("luci-app-linkease",n("\u6613\u6709\u4E91"),"/cgi-bin/luci/admin/services/linkease/file/","app-meta-linkease")};return(_,g)=>{const p=ht("icon-loading");return r(),J(Rt,{title:e(n)("\u78C1\u76D8\u4FE1\u606F"),style:{width:"100%",display:"block"},"is-settings-menu-open":a.value,"onUpdate:isSettingsMenuOpen":g[1]||(g[1]=f=>a.value=f)},{icon:G(()=>[B(Fa,{color:"#45556c",class:"icon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:u},[B(Of,{color:"#0a0a0a",class:"icon1 interfaceIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u6587\u4EF6\u7BA1\u7406")),1),t("div",{class:"rotation",onClick:g[0]||(g[0]=ct(f=>a.value=!a.value,["stop"]))},[B(Ee,{class:"moreIcon"})])])]),"settings-menu":G(()=>[t("div",null,[t("a",Rm,i(e(n)("RAID\u7BA1\u7406")),1)]),Wm,t("div",null,[t("a",Hm,i(e(n)("\u78C1\u76D8\u7BA1\u7406")),1)]),t("div",null,[t("a",Jm,i(e(n)("\u6302\u8F7D\u70B9")),1)])]),default:G(()=>{var f,m,w,y;return[t("div",Zm,[!e(l).disks&&!e(l).raidList?(r(),d("div",Km,[B(p,{size:38,color:"#888888"}),t("span",Qm,i(e(n)("\u6B63\u5728\u83B7\u53D6\u78C1\u76D8\u4FE1\u606F...")),1)])):D("",!0),e(l).disks?(r(),d(U,{key:1},[t("div",Xm,[t("div",tg,[B(Fa,{color:"#2b6cfc",class:"icon"})]),t("div",eg,[t("div",ag,[t("div",null,i(e(n)("\u7CFB\u7EDF\u6839\u76EE\u5F55")),1)]),t("div",og,[(r(!0),d(U,null,tt((f=e(l).disks)==null?void 0:f.filter(x=>x.isSystemRoot),(x,F)=>(r(),J(Ze,{key:F,disk:x},null,8,["disk"]))),128))])])]),((m=e(l).disks)==null?void 0:m.filter(x=>!x.isSystemRoot).length)>0?(r(),d("div",ng)):D("",!0),((w=e(l).disks)==null?void 0:w.filter(x=>!x.isSystemRoot).length)>0?(r(),d("div",ig,[t("div",rg,[B(Gf,{class:"icon"})]),t("div",sg,[t("div",dg,[t("div",null,i(e(n)("\u5DF2\u6302\u8F7D\u78C1\u76D8")),1)]),t("div",lg,[(r(!0),d(U,null,tt((y=e(l).disks)==null?void 0:y.filter(x=>!x.isSystemRoot),(x,F)=>(r(),J(Ze,{key:F,disk:x,smartWarning:!0},null,8,["disk"]))),128))])])])):D("",!0)],64)):D("",!0),e(l).raidList&&e(l).raidList.length>0?(r(),d("div",cg,[t("div",ug,[B(Za,{color:"#0bab47",class:"icon"})]),t("div",pg,[t("div",fg,[t("div",null,i(e(n)("RAID\u8BBE\u5907")),1)]),t("div",mg,[(r(!0),d(U,null,tt(e(l).raidList,(x,F)=>(r(),J(Ze,{key:F,disk:x},null,8,["disk"]))),128))])])])):D("",!0)])]}),_:1},8,["title","is-settings-menu-open"])}}});var vg=O(gg,[["__scopeId","data-v-1e31ad3a"]]);const bg={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},hg=["fill"],$a=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",bg,[t("path",{d:"M473.950316 63.164632l488.070737 234.226526v414.234947l-337.92 200.111158-502.837895-295.019789V223.447579l352.687158-160.282947zM200.434526 306.661053V571.284211l383.892211 225.28V510.113684L200.434526 306.661053z m682.253474 82.728421l-219.082105 120.400842v286.396631l219.082105-129.670736V389.335579z m-409.761684-238.753685L258.910316 247.915789l364.759579 193.374316 212.075789-116.520421-362.819368-174.08z",fill:o.color,"p-id":"6174"},null,8,hg)]))}}),_g=o=>(it("data-v-5d803f28"),o=o(),rt(),o),xg={class:"app-container_docker"},wg={class:"docker-item"},kg={class:"docker-item_name"},yg={key:0,class:"docker-item_value"},Fg={class:"configure"},Eg={key:1,class:"docker-item_value"},$g={class:"input-switch"},Cg=["value","disabled"],Dg=_g(()=>t("em",null,null,-1)),Bg=[Dg],Yg={key:0,class:"status-icon"},Ag={key:1,class:"status-icon",style:{background:"#e9ebef",color:"#4a5565"}},Sg={key:0,class:"content"},zg={class:"docker-item_name"},Pg={class:"docker_box"},Tg={class:"path"},Ig={key:0},Mg={class:"tooltip-trigger"},Lg={class:"docker_tip"},Og={class:"tooltip-text tooltip-top"},Ng={class:"docker_dir_tip"},Vg=T({props:{docker:{type:Object}},setup(o){var _;const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>{var g;return((g=n.docker)==null?void 0:g.status)!="not installed"}),s=mt({enable:((_=n.docker)==null?void 0:_.status)=="running",disabled:!1}),u=()=>N(this,null,function*(){s.disabled=!0;try{const g=yield j.Guide.DockerSwitch.POST({enable:s.enable});if(g!=null&&g.data){const{success:p,error:f}=g.data;if(f)throw s.enable=!s.enable,f;(p||0)==0}}catch(g){$.Warning(`${g}`)}finally{s.disabled=!1}});return(g,p)=>{var f,m,w,y;return r(),d("ul",xg,[t("li",wg,[t("div",kg,[t("span",null,i(e(a)("\u5F53\u524D\u72B6\u6001:")),1)]),(f=n.docker)!=null&&f.status?(r(),d(U,{key:0},[e(c)?(r(),d("div",Eg,[t("label",$g,[L(t("input",{type:"checkbox",hidden:"",value:!e(s).enable,"onUpdate:modelValue":p[0]||(p[0]=x=>e(s).enable=x),disabled:e(s).disabled,onChange:u},null,40,Cg),[[qt,e(s).enable]]),t("span",{class:st(e(s).enable?"enable":"close")},Bg,2)]),e(s).enable?(r(),d("span",Yg,i(e(a)("\u8FD0\u884C\u4E2D")),1)):D("",!0),e(s).enable?D("",!0):(r(),d("span",Ag,i(e(a)("\u672A\u542F\u7528")),1))])):(r(),d("div",yg,[t("span",Fg,i(e(a)("\u672A\u5B89\u88C5")),1)]))],64)):D("",!0)]),((m=o.docker)==null?void 0:m.status)=="running"?(r(),d("li",Sg,[t("div",zg,[t("span",{style:ft({color:"var(--app-container_title-color)"})},i(e(a)("Docker\u6839\u76EE\u5F55\uFF1A")),5)]),t("div",Pg,[t("div",Tg,i((w=o.docker)==null?void 0:w.path),1),(y=o.docker)!=null&&y.errorInfo?(r(),d("span",Ig,[t("span",Mg,[t("span",Lg,[B(zt)]),t("div",null,[t("div",Og,[t("span",Ng,i(o.docker.errorInfo),1)])])])])):D("",!0)])])):D("",!0)])}}});var Gg=O(Vg,[["__scopeId","data-v-5d803f28"]]);const jg={},Ug={width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},qg=t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),Rg=[qg];function Wg(o,n){return r(),d("svg",Ug,Rg)}var Hg=O(jg,[["render",Wg]]);const Jg={key:0,class:"action"},Zg={class:"title"},Kg={class:"desc"},Qg={class:"roots"},Xg={class:"roots_tit"},tv={class:"root"},ev={class:"move"},av={class:"roots_tit"},ov={key:0},nv=["onSubmit"],iv={class:"select-editable"},rv={selected:"",value:null},sv=["value"],dv={value:"useInput"},lv=["placeholder"],cv={key:1,class:"tips"},uv={class:"tips_content"},pv={class:"tip"},fv={key:0,class:"btns"},mv={key:1,class:"btns"},gv={key:1,class:"action docker_success"},vv={class:"title"},bv={class:"finished"},hv={class:"successed"},_v={class:"btns"},xv={key:2,class:"action docker_download"},wv={class:"title"},kv={class:"finished"},yv={class:"successed"},Fv={class:"docker_moves"},Ev={class:"moves change"},$v={for:"move"},Cv={class:"moves"},Dv={for:"cover"},Bv={class:"btns"},Yv=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(),s=E(),u=E(0),_=E("null"),g=E(""),p=E(),f=E(!1),m=E("");(()=>{j.Nas.Disk.Status.GET().then(k=>{k!=null&&k.data.result&&(p.value=k==null?void 0:k.data.result)}),j.Guide.DockerStatus.GET().then(k=>{var C;if((C=k==null?void 0:k.data)!=null&&C.result){const A=k.data.result;c.value=A}}),j.Guide.DockerPartitionList.GET().then(k=>{var C;if((C=k==null?void 0:k.data)!=null&&C.result){const A=k.data.result;s.value=A}})})();const y=k=>{let C=_.value;if(C=="useInput"&&(C=g.value),C==null||C=="null"||C=="")return;const A=$.Loading(a("\u6B63\u5728\u8FC1\u79FB\u4E2D..."));j.Guide.DockerTransfer.POST({path:C,force:k,overwriteDir:!!m.value}).then(S=>{var Y;if(S!=null&&S.data){if((S.data.success||0)==0){if((Y=S.data.result)!=null&&Y.emptyPathWarning){f.value=!0,u.value=2;return}u.value=1;return}else if(S.data.error)throw S.data.error}throw a("\u672A\u77E5\u9519\u8BEF")}).catch(S=>{$.Error(S)}).finally(()=>A.Close())},x=()=>{f.value=!1,y(!1)},F=k=>{k.preventDefault(),n.Close&&n.Close()},b=k=>{k.preventDefault(),location.reload()},h=k=>{k.preventDefault(),u.value=0},v=k=>{k.preventDefault(),y(!0)};return(k,C)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>{var A,S,Y,z,R,V;return[u.value==0?(r(),d("div",Jg,[t("h2",Zg,i(e(a)("Docker\u8FC1\u79FB\u5411\u5BFC")),1),t("p",Kg,i(e(a)("\u5F53\u7CFB\u7EDF\u6839\u76EE\u5F55\u7A7A\u95F4\u4E0D\u8DB3\u65F6\uFF0C\u53EF\u5C06Docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\uFF0C\u4EE5\u4FDD\u8BC1\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C\uFF08\u76EE\u6807\u5206\u533A\u4E0D\u652F\u6301NTFS\uFF0CFAT\u7B49\u6587\u4EF6\u7CFB\u7EDF\uFF09")),1),t("div",Qg,[t("span",Xg,i(e(a)("Docker\u6839\u76EE\u5F55\uFF1A")),1),t("span",tv,i((A=c.value)==null?void 0:A.path),1)]),t("div",ev,[t("span",av,i(e(a)("\u8FC1\u79FB\u5230\uFF1A")),1),(Y=(S=s.value)==null?void 0:S.partitionList)!=null&&Y.length?(r(),d("div",ov,[t("form",{onSubmit:ct(x,["prevent"])},[t("label",null,[t("div",iv,[L(t("select",{"onUpdate:modelValue":C[0]||(C[0]=I=>_.value=I)},[t("option",rv,i(e(a)("\u8BF7\u9009\u62E9\u8FC1\u79FB\u8DEF\u5F84")),1),(r(!0),d(U,null,tt((z=s.value)==null?void 0:z.partitionList,(I,M)=>(r(),d("option",{value:I,key:M},i(I),9,sv))),128)),t("option",dv,i(e(a)("- -\u81EA\u5B9A\u4E49- -")),1)],512),[[dt,_.value,void 0,{trim:!0}]]),_.value=="useInput"?L((r(),d("input",{key:0,type:"text","onUpdate:modelValue":C[1]||(C[1]=I=>g.value=I),required:"",placeholder:e(a)("\u8BF7\u8F93\u5165\u8FC1\u79FB\u8DEF\u5F84")},null,8,lv)),[[et,g.value,void 0,{trim:!0}]]):D("",!0)])])],40,nv)])):s.value?(r(),d("div",cv,[t("div",uv,[B(zt),t("span",pv,i(e(a)("\u68C0\u6D4B\u5230\u60A8\u8FD8\u6CA1\u6709\u6302\u8F7D\u5916\u7F6E\u786C\u76D8\u6216\u5206\u533A\u5C0F\u4E8E8GB\uFF0C\u9700\u8981\u60A8\u63A5\u4E0A\u786C\u76D8\u5E76\u683C\u5F0F\u5316\u6216\u624B\u52A8\u6302\u8F7D\u786C\u76D8\u540E\uFF0C\u518D\u6267\u884CDocker\u8FC1\u79FB\u5411\u5BFC\uFF0C\u5C06Docker\u8FC1\u79FB\u5230\u76EE\u6807\u786C\u76D8\u3002")),1)])])):D("",!0)]),(V=(R=s.value)==null?void 0:R.partitionList)!=null&&V.length?(r(),d("div",fv,[t("button",{class:"cbi-button cbi-button-apply",onClick:x},i(e(a)("\u786E\u5B9A")),1),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:F},i(e(a)("\u53D6\u6D88")),1)])):(r(),d("div",mv,[t("button",{class:"cbi-button cbi-button-apply",onClick:F},i(e(a)("\u786E\u5B9A")),1)]))])):u.value==1?(r(),d("div",gv,[t("h2",vv,i(e(a)("Docker\u8FC1\u79FB\u5411\u5BFC")),1),t("div",bv,[B(la)]),t("p",hv,i(e(a)("\u8FC1\u79FB\u6210\u529F\uFF01")),1),t("div",_v,[t("button",{class:"cbi-button cbi-button-apply",onClick:b},i(e(a)("\u786E\u5B9A")),1)])])):u.value==2?(r(),d("div",xv,[t("h2",wv,i(e(a)("Docker\u8FC1\u79FB\u5411\u5BFC")),1),t("div",kv,[B(Hg)]),t("p",yv,i(e(a)("\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0D\u4E3A\u7A7A")),1),t("div",Fv,[t("div",Ev,[L(t("input",{type:"radio",id:"move",name:"moves","onUpdate:modelValue":C[2]||(C[2]=I=>m.value=I),value:""},null,512),[[Ft,m.value]]),t("label",$v,i(e(a)("\u66F4\u6362\u76EE\u5F55\uFF08\u4E0D\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u4EC5\u5C06Docker\u76EE\u5F55\u4FEE\u6539\u4E3A\u76EE\u6807\u8DEF\u5F84\uFF09")),1)]),t("div",Cv,[L(t("input",{type:"radio",id:"cover",name:"moves","onUpdate:modelValue":C[3]||(C[3]=I=>m.value=I),value:"true"},null,512),[[Ft,m.value]]),t("label",Dv,i(e(a)("\u8986\u76D6\u8FC1\u79FB\uFF08\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u7EE7\u7EED\u8FC1\u79FB\u4F1A\u6E05\u7A7A\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0B\u7684\u6587\u4EF6\uFF09")),1)])]),t("div",Bv,[f.value?(r(),d("button",{key:0,class:"cbi-button cbi-button-apply",onClick:v},i(e(a)("\u786E\u5B9A")),1)):D("",!0),t("button",{class:"cbi-button cbi-button-apply",onClick:h},i(e(a)("\u8FD4\u56DE")),1),f.value?D("",!0):(r(),d("button",{key:1,class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:b},i(e(a)("\u53D6\u6D88")),1))])])):D("",!0)]}),_:1},8,["Close"]))}});var Av=O(Yv,[["__scopeId","data-v-81932f72"]]);const Sv=()=>{const o=document.createElement("div");document.body.appendChild(o);const n=vt(Av,{Close:()=>{a()}});n.mount(o);const a=()=>{n.unmount(),o.remove()};return{Close:a}},zv={href:"/cgi-bin/luci/admin/docker/overview"},Pv={key:0,class:"content"},Tv={key:1,class:"content",style:{display:"flex","justify-content":"center"}},Iv=T({setup(o){const{$gettext:n}=H(),a=E(!1),l=E(),c=E(!1),s=()=>{Sv()};return setTimeout(()=>{j.Guide.DockerStatus.GET().then(_=>{var g;if((g=_==null?void 0:_.data)!=null&&g.result){const p=_.data.result;l.value=p}}).finally(()=>{a.value=!0})},1100),(_,g)=>{var f;const p=ht("icon-loading");return r(),J(Rt,{title:"Docker",showSettings:!0,onFooterClick:s,style:{width:"100%",height:"100%",display:"block"},"is-settings-menu-open":c.value,"onUpdate:isSettingsMenuOpen":g[1]||(g[1]=m=>c.value=m)},xo({icon:G(()=>[B($a,{color:"#155dfc",class:"icon"})]),settings:G(()=>{var m;return[t("div",{class:"btn_settings",onClick:s},[B($a,{color:"#0a0a0a",class:"icon1 dockerIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u7BA1\u7406\u5BB9\u5668")),1),((m=l.value)==null?void 0:m.status)==="running"?(r(),d("div",{key:0,class:"rotation",onClick:g[0]||(g[0]=ct(w=>c.value=!c.value,["stop"]))},[B(Ee,{class:"moreIcon"})])):D("",!0)])]}),default:G(()=>[a.value?(r(),d("div",Pv,[B(Gg,{docker:l.value},null,8,["docker"])])):(r(),d("div",Tv,[B(p,{size:40,color:"currentColor"})]))]),_:2},[((f=l.value)==null?void 0:f.status)==="running"?{name:"settings-menu",fn:G(()=>[t("div",null,[t("a",zv,i(e(n)("Docker\u9AD8\u7EA7\u914D\u7F6E")),1)])])}:void 0]),1032,["is-settings-menu-open"])}}});var Mv=O(Iv,[["__scopeId","data-v-faa89494"]]);const Lv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Ov=["fill"],Nv=["fill"],to=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",Lv,[t("path",{d:"M577.78 355.55H449.62c-52.93 0-96 43.07-96 96V579.7c0 52.93 43.07 96 96 96h128.15c52.93 0 96-43.07 96-96V451.55c0.01-52.93-43.06-96-95.99-96z m32 224.15c0 17.64-14.36 32-32 32H449.62c-17.65 0-32-14.36-32-32V451.55c0-17.65 14.35-32 32-32h128.15c17.64 0 32 14.35 32 32V579.7z",fill:o.color,"p-id":"5378"},null,8,Ov),t("path",{d:"M927.33 547.13c17.67 0 32-14.33 32-32s-14.33-32-32-32h-62.44V355.2h62.44c17.67 0 32-14.33 32-32s-14.33-32-32-32h-64.37c-10.34-64.43-61.3-115.45-125.69-125.87v-64.19c0-17.67-14.33-32-32-32s-32 14.33-32 32v62.22H545.34v-62.22c0-17.67-14.33-32-32-32s-32 14.33-32 32v62.22H353.2v-62.22c0-17.67-14.33-32-32-32s-32 14.33-32 32v64.16c-64.46 10.37-115.49 61.42-125.83 125.9H99.14c-17.67 0-32 14.33-32 32s14.33 32 32 32h62.3v127.93h-62.3c-17.67 0-32 14.33-32 32s14.33 32 32 32h62.3v128.14h-62.3c-17.67 0-32 14.33-32 32s14.33 32 32 32h64.28c10.45 64.34 61.42 115.25 125.79 125.61v64.46c0 17.67 14.33 32 32 32s32-14.33 32-32v-62.51h128.14v62.51c0 17.67 14.33 32 32 32s32-14.33 32-32v-62.51h127.93v62.51c0 17.67 14.33 32 32 32s32-14.33 32-32v-64.48c64.3-10.41 115.2-61.29 125.64-125.58h64.42c17.67 0 32-14.33 32-32s-14.33-32-32-32H864.9V547.13h62.43zM800.89 714.82c0 48.52-39.48 88-88 88H313.44c-48.52 0-88-39.48-88-88V315.36c0-48.52 39.48-88 88-88H712.9c48.52 0 88 39.48 88 88v399.46z",fill:o.color,"p-id":"5379"},null,8,Nv)]))}}),Vv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Gv=["fill"],jv=T({props:{color:{type:String,default:"#ef4444"}},setup(o){return(n,a)=>(r(),d("svg",Vv,[t("path",{d:"M520 75c72.899 0 132.133 58.543 133.31 131.209l0.018 2.206v399.237C700.759 646.978 729 705.514 729 768.714c0 84.846-50.493 157.892-123.051 190.69C579.509 971.959 549.966 979 518.85 979c-57.133 0-108.962-23.737-146.008-61.784C334.65 879.324 311 826.783 311 768.714c0-63.27 28.313-121.806 75.67-161.065l0.002-399.234C386.672 134.732 446.365 75 520 75z m0 59.807c-40.22 0-72.9 32.3-73.55 72.39l-0.01 1.218v403.457c4.008 12.048-0.02 25.747-10.721 33.573l-0.619 0.441c-40.008 27.753-64.332 73.214-64.332 122.828 0 82.472 66.813 149.33 149.232 149.33s149.232-66.858 149.232-149.33c0-47.591-22.367-91.397-59.645-119.44l-1.134-0.846a29.773 29.773 0 0 1-10.972-15.751 29.763 29.763 0 0 1-3.913-14.111l-0.008-0.706V208.415c0-40.653-32.934-73.608-73.56-73.608z m-2.299 236.926c4.41 0 8.66 0.69 12.647 1.968 16.826 4.965 29.19 20.52 29.19 38.81l0.002 240.184c47.972 17.182 82.294 63.07 82.294 116.982 0 6.94-0.568 13.747-1.662 20.376-6.746 60.536-58.728 108.02-121.321 108.02-47.223 0-88.407-27.027-108.683-66.296-10.557-18.27-16.6-39.479-16.6-62.1 0-54.083 34.542-100.093 82.754-117.145l0.002-239.422c0-22.852 18.525-41.377 41.377-41.377z",fill:o.color,"p-id":"4599"},null,8,Gv)]))}}),Uv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},qv=["fill"],eo=T({props:{color:{type:String,default:"#222222"}},setup(o){return(n,a)=>(r(),d("svg",Uv,[t("path",{d:"M760.1 64l-150 262.7-41 71.8c-6.1 10.7 1.6 23.9 13.9 23.9h104.7c13.9 0 21.2 16.6 11.8 26.9L410.8 761.9l59.5-178.5 21.1-63.2c3.5-10.4-4.3-21.1-15.2-21.1H277.8c-11.6 0-19.4-12-14.6-22.6l179-393.8c5.2-11.4 16.6-18.8 29.1-18.8h288.8M450.8 0c-25.1 0-47.9 14.7-58.3 37.5L194.7 472.7c-19.3 42.4 11.7 90.5 58.3 90.5h145.5c5.5 0 9.3 5.3 7.6 10.5L256 1024l515.3-558.2c37.8-41 8.8-107.4-47-107.4h-44.8c-6.1 0-10-6.6-6.9-12L870.4 0H450.8z","p-id":"4712",fill:o.color},null,8,qv)]))}}),Rv={key:0,class:"center-content"},Wv=T({props:{value:null,color:null,icon:null,label:null,width:null,height:null},setup(o){const n=o;Qe([wo,Xe,ta]);const a=E(null);let l=null;function c(_,g){return{tooltip:{show:!1},series:[{type:"pie",radius:["75%","90%"],avoidLabelOverlap:!1,label:{show:!1},labelLine:{show:!1},z:1,zlevel:0,data:[{value:_,itemStyle:{color:g||"#409EFF"}},{value:Math.max(0,100-_),itemStyle:{color:"#f0f0f0"}}]}]}}const s=()=>{!a.value||(l=l!=null?l:ea(a.value),l.setOption(c(n.value,n.color)))};At(()=>N(this,null,function*(){yield oa(),s(),window.addEventListener("resize",u)}));function u(){l==null||l.resize()}return Yt(()=>[n.value,n.color],()=>{l?l.setOption({series:[{z:1,zlevel:0,data:[{value:n.value,itemStyle:{color:n.color||"#409EFF"}},{value:Math.max(0,100-n.value),itemStyle:{color:"#f0f0f0"}}]}]}):s()},{immediate:!0}),ke(()=>{window.removeEventListener("resize",u),l==null||l.dispose(),l=null}),(_,g)=>(r(),d("div",{class:"pie-chart-wrapper",style:ft({width:o.width||"120px",height:o.height||"120px"})},[t("div",{ref_key:"chartDom",ref:a,class:"chart-dom"},null,512),o.icon||o.label?(r(),d("div",Rv,[o.icon==="chip"?(r(),J(to,{key:0,color:o.color,class:"center-icon"},null,8,["color"])):o.icon==="temperature"?(r(),J(jv,{key:1,color:o.color,class:"center-icon"},null,8,["color"])):o.icon==="lightning"?(r(),J(eo,{key:2,color:o.color,class:"center-icon"},null,8,["color"])):D("",!0),o.label?(r(),d("div",{key:3,class:"center-label",style:ft({color:o.color})},i(o.label),5)):D("",!0)])):D("",!0)],4))}});var Ke=O(Wv,[["__scopeId","data-v-a9cd39ac"]]);const Hv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Jv=["fill"],Ca=T({props:{color:{type:String,default:"#0a0a0a"}},setup(o){return(n,a)=>(r(),d("svg",Hv,[t("path",{d:"M868.95177918 215.34678468H274.11312994c-10.26749627 0-19.00277466 3.6151618-26.30943653 10.88910739-7.22487113 7.23032433-10.89456058 15.97650768-10.89456059 26.20583515v370.75858453c0 10.24023245 3.66968946 18.95370022 10.89456059 26.22764579 7.30666259 7.22487113 16.04194099 10.86184429 26.30943653 10.86184429h594.83864924c10.28385442 0 19.04094415-3.63697315 26.28217344-10.86184429 7.30120941-7.27394558 10.9218244-15.98741334 10.92182439-26.22764579V252.44172722c0-10.2293275-3.62061501-18.97551083-10.92727686-26.20583516-7.23577681-7.27394558-15.99286582-10.8891081-26.27672097-10.88910738M274.09131931 141.21142578h594.83864924c30.77522572 0 57.07375657 10.86729676 78.86287773 32.59643853 21.78912116 21.74004671 32.66187112 47.91861806 32.66187114 78.62841045v370.76403699c0 30.68798176-10.87274996 56.91562756-32.66187114 78.63386293-21.78912116 21.72914105-48.08765274 32.59643853-78.86287773 32.59643851H608.68737796v74.15716953h111.5465602c10.26204379 0 19.03003849 3.6151618 26.28217344 10.8891081 7.29030445 7.22487113 10.91091874 15.97650768 10.91091872 26.20583518 0 10.24023245-3.62061501 18.98641651-10.91637192 26.20038195-7.25213496 7.28485125-16.01467717 10.90001305-26.27672024 10.90001379H422.80370787c-10.27840195 0-19.0191328-3.6151618-26.30943728-10.90001379-7.25213496-7.21396618-10.89456058-15.96014952-10.89456056-26.20038195 0-10.23477998 3.6478781-18.97551083 10.89456056-26.20583518 7.29030445-7.27394558 16.03103531-10.8891081 26.30943728-10.8891081h111.53565452v-74.15716953H274.09131931c-30.79703633 0-57.09011544-10.86729676-78.86287845-32.59643851C173.43931968 680.11593931 162.54475911 653.88829351 162.54475911 623.20031175V252.44172722C162.54475911 221.72648236 173.43931968 195.54791102 195.22844086 173.80786431 217.00665706 152.07872254 243.29428298 141.21142578 274.09131931 141.21142578","p-id":"6454",fill:o.color},null,8,Jv)]))}}),Zv={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},Kv=["fill"],Qv=["fill"],Xv=T({props:{color:{type:String,default:"#333333"}},setup(o){return(n,a)=>(r(),d("svg",Zv,[t("path",{d:"M512 458.67c-8.66 0-15.69 7.02-15.69 15.69v125.49c0 8.66 7.02 15.69 15.69 15.69s15.69-7.02 15.69-15.69v-125.5c0-8.66-7.03-15.68-15.69-15.68z m-31.37-26.98h62.75c8.66 0 15.69-7.02 15.69-15.69 0-8.66-7.02-15.69-15.69-15.69h-15.69V296.78c0-8.66-7.02-15.69-15.69-15.69s-15.69 7.02-15.69 15.69v103.53h-15.69c-8.66 0-15.69 7.02-15.69 15.69 0.01 8.66 7.03 15.69 15.7 15.69z m219.61 53.33c-8.66 0-15.69 7.02-15.69 15.69V601.1c0 8.66 7.02 15.69 15.69 15.69s15.69-7.02 15.69-15.69v-99.76c0.35-8.66-6.39-15.95-15.05-16.3-0.22-0.02-0.43-0.02-0.64-0.02z m-31.38-27.61h62.75c8.66 0 15.69-7.02 15.69-15.69 0-8.66-7.02-15.69-15.69-15.69h-14.43V296.78c0-8.66-7.02-15.69-15.69-15.69s-15.69 7.02-15.69 15.69v125.49h-16.94c-8.66 0-15.69 7.02-15.69 15.69 0 8.66 7.02 15.69 15.69 15.69v3.76z m-376.47 32.63h62.75c8.66 0 15.69-7.02 15.69-15.69s-7.02-15.69-15.69-15.69h-15.69V296.78c0-8.66-7.02-15.69-15.69-15.69-8.66 0-15.69 7.02-15.69 15.69v161.88h-15.69c-8.66 0-15.69 7.02-15.69 15.69s7.04 15.69 15.7 15.69z m31.37 32c-8.66 0-15.69 7.02-15.69 15.69v62.75c0 8.66 7.02 15.69 15.69 15.69 8.66 0 15.69-7.02 15.69-15.69v-62.75c0-8.67-7.02-15.69-15.69-15.69z",fill:o.color,"p-id":"15217"},null,8,Kv),t("path",{d:"M870 116.39H154c-49.71 0-90 40.29-90 90v485.1c0 49.71 40.29 90 90 90h716c49.71 0 90-40.29 90-90v-485.1c0-49.7-40.29-90-90-90z m50 565.1c0 33.14-26.86 60-60 60H164c-33.14 0-60-26.86-60-60v-465.1c0-33.14 26.86-60 60-60h696c33.14 0 60 26.86 60 60v465.1zM680.24 907.61H343.76c-11.05 0-20-8.95-20-20s8.95-20 20-20h336.48c11.05 0 20 8.95 20 20 0 11.04-8.96 20-20 20z",fill:o.color,"p-id":"15218"},null,8,Qv)]))}}),tb={href:"/cgi-bin/luci/admin/system/flash"},eb={href:"/cgi-bin/luci/admin/store/pages/maintance"},ab={class:"content"},ob={class:"chart_box"},nb={class:"chart"},ib={class:"chart"},rb={class:"chart"},sb={class:"info"},db={class:"item1 bgcolor1"},lb={style:{"font-weight":"bold","margin-top":"2px"}},cb={class:"item1 bgcolor2"},ub={style:{"font-weight":"bold","margin-top":"2px"}},pb={class:"item"},fb={class:"item"},mb=T({setup(o){const{$gettext:n}=H(),a=Me(),l=Q(()=>a.version),c=Q(()=>a.systemStatus),s=E(!1),u=Q(()=>{var b;return((b=c.value)==null?void 0:b.cpuUsage)||0}),_=Q(()=>{var b;return((b=c.value)==null?void 0:b.cpuTemperature)||0}),g=Q(()=>{var h;const b=((h=c.value)==null?void 0:h.memAvailablePercentage)||100;return 100-b}),p=Q(()=>{const b=u.value;return b<76?"#3b82f6":b>=76&&b<96?"#f59e0b":"#ef4444"}),f=Q(()=>_.value<=115?"#22c55e":"#f97316"),m=Q(()=>{const b=g.value;return b<76?"#8b5cf6":b>=76&&b<96?"#fb923c":"#b91c1c"}),w=()=>{location.href="/cgi-bin/luci/admin/status/overview"},y=Pt.stampForm;At(()=>{});const x=()=>{s.value=!s.value},F=()=>{x(),Dt.installAndGo("app-meta-netdata","NetData","/cgi-bin/luci/admin/status/netdata")};return(b,h)=>(r(),J(Rt,{title:e(n)("\u7CFB\u7EDF\u4FE1\u606F"),showFooter:!1,style:{width:"100%",height:"100%",display:"block"}},{icon:G(()=>[B(Ca,{class:"icon computerIcon"})]),settings:G(()=>[t("div",{class:"btn_settings",onClick:w},[B(Ca,{color:"#0a0a0a",class:"icon2 computerIcon",style:{"margin-right":"6px"}}),t("span",null,i(e(n)("\u4FE1\u606F\u6982\u89C8")),1)])]),"settings-menu":G(()=>[t("div",null,[t("a",{onClick:F},i(e(n)("\u7CFB\u7EDF\u76D1\u63A7")),1)]),t("div",null,[t("a",tb,i(e(n)("\u5907\u4EFD\u5347\u7EA7")),1)]),t("div",null,[t("a",eb,i(e(n)("\u63D2\u4EF6\u5907\u4EFD")),1)])]),default:G(()=>{var v,k,C,A,S;return[t("div",ab,[t("div",ob,[t("div",nb,[B(Ke,{value:e(u),color:e(p),icon:"chip",label:`${e(u)}%`,width:"150px",height:"150px"},null,8,["value","color","label"]),t("div",null,i(e(n)("CPU\u4F7F\u7528\u7387")),1)]),t("div",ib,[B(Ke,{value:e(_)/1.5,color:e(f),icon:"temperature",label:`${e(_)}\u2103`,width:"150px",height:"150px"},null,8,["value","color","label"]),t("div",null,i(e(n)("CPU\u6E29\u5EA6")),1)]),t("div",rb,[B(Ke,{value:e(g),color:e(m),icon:"lightning",label:`${e(g)}%`,width:"150px",height:"150px"},null,8,["value","color","label"]),t("div",null,i(e(n)("\u5185\u5B58\u4F7F\u7528\u7387")),1)])]),t("div",sb,[t("div",db,[t("div",null,[B(to,{color:"#155dfc",class:"icon1",style:{"margin-bottom":"0"}}),t("span",null,i(e(n)("\u8BBE\u5907\u578B\u53F7")),1)]),t("span",lb,i((v=e(l))==null?void 0:v.model),1)]),t("div",cb,[t("div",null,[B(Xv,{color:"#00a63e",class:"icon1",style:{"margin-bottom":"0"}}),t("span",null,i(e(n)("\u56FA\u4EF6\u7248\u672C")),1)]),t("span",ub,i((k=e(l))==null?void 0:k.firmwareVersion)+"\uFF08"+i(e(n)("\u5185\u6838"))+"\uFF1A"+i((C=e(l))==null?void 0:C.kernelVersion)+"\uFF09",1)]),t("div",pb,[t("div",null,i(e(n)("\u7CFB\u7EDF\u65F6\u95F4"))+"\uFF1A",1),t("span",null,i((A=e(c))==null?void 0:A.localtime),1)]),t("div",fb,[t("div",null,i(e(n)("\u5DF2\u542F\u52A8"))+"\uFF1A",1),t("span",null,i(e(y)((S=e(c))==null?void 0:S.uptime)),1)])])])]}),_:1},8,["title"]))}});var gb=O(mb,[["__scopeId","data-v-17decdbc"]]);const vb=o=>(it("data-v-4ca82311"),o=o(),rt(),o),bb={class:"action"},hb={class:"action-body"},_b=vb(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),xb={class:"title"},wb={class:"info"},kb=["href"],yb={class:"btns"},Fb=T({props:{port:Number,Close:Function},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=Q(()=>`http://${location.hostname}:${n.port}`),s=()=>{n.Close&&(n.Close(),location.reload())};return(u,_)=>(r(),J(_t,{type:1},{default:G(()=>[B($t,{name:"rotate",mode:"out-in"},{default:G(()=>[t("div",bb,[t("div",hb,[_b,t("h2",xb,i(e(a)("\u670D\u52A1\u5DF2\u542F\u52A8")),1),t("div",wb,[t("span",null,i(e(a)("\u524D\u5F80")),1),t("a",{href:e(c),target:"_blank",rel:"noopener noreferrer"},i(e(c)),9,kb),t("span",null,i(e(a)("\u8FDB\u884C\u6D4B\u901F")),1)]),t("div",yb,[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:s},i(e(a)("\u5173\u95ED")),1)])])])]),_:1})]),_:1}))}});var Eb=O(Fb,[["__scopeId","data-v-4ca82311"]]),$b=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Eb,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}};const Cb={class:"page-container"},Db={style:{height:"48px","text-align":"right"}},Bb={onclick:"void(0)",href:"https://www.istoreos.com/",target:"_blank",style:{"text-decoration":"none",color:"white","line-height":"1.5em"}},Yb={class:"card-container"},Ab={class:"network-container",style:{"margin-top":"10px"}},Sb={class:"left-box"},zb={class:"right-box",style:{overflow:"visible"}},Pb={class:"network-container align-c"},Tb={class:"left-box"},Ib={class:"other-container"},Mb={class:"grid-container"},Lb={class:"system"},Ob=T({setup(o){var x,F;const{$gettext:n}=H(),a=aa();Zo();const l=Me(),c=E(!0);(F=(x=window.quickstart_configs)==null?void 0:x.update)!=null&&F.disable&&(c.value=!1),c.value&&setTimeout(()=>{l.requestCheckUpdate()},1100);const s=Fe(),u=Q(()=>s.deviceList),_=Q(()=>{var b,h;return[{icon:"navigation",title:n("\u7F51\u7EDC\u5411\u5BFC"),subtitle:n("\u7F51\u7EDC\u914D\u7F6E\u5F15\u5BFC"),tag:n("\u667A\u80FD\u914D\u7F6E"),status:"",extra:"",color:"purple",link:"/network"},{icon:"topology",title:n("\u5C40\u57DF\u7F51\u8BBE\u5907\u7BA1\u7406"),subtitle:n("\u7BA1\u7406\u7F51\u7EDC\u4E2D\u7684\u6240\u6709\u8BBE\u5907"),badge:n("\u63A8\u8350"),status:"",num:((h=(b=u.value)==null?void 0:b.devices)==null?void 0:h.length)||0,color:"blue",link:"/devicemanagement"},{icon:"speed",title:n("\u7F51\u7EDC\u6D4B\u901F"),subtitle:n("\u68C0\u6D4B\u7F51\u7EDC\u901F\u5EA6"),status:"",tag:n("\u70B9\u51FB\u6D4B\u8BD5"),color:"skyblue",link:"/networkSpeedTest"},{icon:"baby",title:n("\u5BB6\u957F\u63A7\u5236"),subtitle:n("\u513F\u7AE5\u4E0A\u7F51\u4FDD\u62A4"),badge:n("\u4FDD\u62A4"),status:"",extra:"",color:"pink",isActive:!0,alink:"/cgi-bin/luci/admin/services/appfilter"},{icon:"appStore",title:n("\u5E94\u7528\u5546\u5E97"),subtitle:n("\u767E\u6B3E\u5E94\u7528\uFF0C\u81EA\u7531\u9009\u62E9"),status:"",color:"orange",alink:"/cgi-bin/luci/admin/store/pages/store"}]}),g=b=>{if(!!b.title){if(b.icon=="speed")return f();if(b.icon=="baby")return p();b.link?a.push(b.link):b.alink&&(window.location.href=b.alink)}},p=()=>N(this,null,function*(){(yield Dt.checkAndInstallApp("luci-app-oaf","\u5E94\u7528\u8FC7\u6EE4"))&&(window.location.href="/cgi-bin/luci/admin/services/appfilter")}),f=()=>N(this,null,function*(){var b,h,v;if(yield Dt.checkAndInstallApp("app-meta-homebox","Homebox"))try{const k=yield j.Network.Homebox.Enable.POST();(h=(b=k==null?void 0:k.data)==null?void 0:b.result)!=null&&h.port?$b({port:k.data.result.port,setup:0}):((v=k==null?void 0:k.data)==null?void 0:v.success)==0?location.href="/cgi-bin/luci/admin/services/homebox":$.Warning(n("\u542F\u52A8\u5931\u8D25"))}catch(k){$.Warning(n("\u542F\u52A8\u5931\u8D25"))}}),m=E(!1);(()=>N(this,null,function*(){try{const b=yield j.App.Check.POST({name:"luci-app-oaf"});if(b!=null&&b.data){const{result:h,error:v}=b.data;v?m.value=!1:h&&h.status=="installed"?m.value=!0:m.value=!1}}catch(b){m.value=!1}}))();const y=b=>{const h=Kt("dockerd")?5:4;if(h<=2)return`calc((100% - ${(h-1)*24}px) / ${h})`;if(b<2){const v=Math.min(2,h);return`calc((100% - ${(v-1)*24}px) / ${v})`}else{const v=h-2;return`calc((100% - ${(v-1)*24}px) / ${v})`}};return(b,h)=>(r(),d("div",Cb,[t("div",Db,[t("a",Bb,i(e(n)("iStoreOS\u5B98\u7F51")),1)]),t("div",Yb,[(r(!0),d(U,null,tt(e(_),(v,k)=>(r(),d(U,{key:k},[v.icon!=="baby"||m.value?(r(),J(g4,{key:0,card:v,onClick:g},null,8,["card"])):D("",!0)],64))),128))]),t("div",Ab,[t("div",Sb,[B(x5)]),t("div",zb,[B(w8),B(I8,{style:{"margin-top":"10px"}})])]),t("div",Pb,[t("div",Tb,[B($7)])]),t("div",Ib,[t("div",Mb,[t("div",{class:"grid-item",style:ft({flexBasis:y(0)})},[B(vg)],4),t("div",{class:"grid-item",style:ft({flexBasis:y(1)})},[B(zf)],4),e(Kt)("dockerd")?(r(),d("div",{key:0,class:"grid-item",style:ft({flexBasis:y(2)})},[B(Mv)],4)):D("",!0),t("div",{class:"grid-item",style:ft({flexBasis:y(3)})},[B(Xc)],4),t("div",{class:"grid-item",style:ft({flexBasis:y(4)})},[B(a5)],4)])]),t("div",Lb,[B(gb)])]))}});var Nb=O(Ob,[["__scopeId","data-v-4f195c52"]]);const Vb={};function Gb(o,n){const a=ht("router-view");return r(),J(a)}var jb=O(Vb,[["render",Gb]]);const Ub={},qb={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Rb=Vt('',2),Wb=[Rb];function Hb(o,n){return r(),d("svg",qb,Wb)}var Jb=O(Ub,[["render",Hb]]);const Zb={},Kb={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},Qb=Vt('',2),Xb=[Qb];function th(o,n){return r(),d("svg",Kb,Xb)}var eh=O(Zb,[["render",th]]);const ah={},oh={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},nh=Vt('',2),ih=[nh];function rh(o,n){return r(),d("svg",oh,ih)}var sh=O(ah,[["render",rh]]);const dh={id:"page"},lh={class:"title"},ch={class:"desc"},uh={class:"network-containers"},ph={class:"network-container_item"},fh={class:"cover"},mh={class:"thumbnail"},gh={class:"network-container_item"},vh={class:"cover"},bh={class:"thumbnail"},hh={class:"network-container_item"},_h={class:"cover"},xh={class:"thumbnail"},wh=["innerHTML"],kh=T({setup(o){const{$gettext:n,$ngettext:a}=H(),l=n("\u6CA1\u627E\u5230\u60F3\u8981\u7684\u914D\u7F6E\uFF1F\u8BF7\u4F7F\u7528%{link}",{link:''+n("\u9AD8\u7EA7\u6A21\u5F0F")+""},!0);return(c,s)=>{const u=ht("router-link");return r(),d("div",dh,[t("div",lh,i(e(n)("\u6B22\u8FCE\u4F7F\u7528\u7F51\u7EDC\u914D\u7F6E\u5411\u5BFC")),1),t("div",ch,i(e(n)("\u9009\u62E9\u4E00\u79CD\u8FDE\u63A5\u65B9\u5F0F\u4EE5\u5F00\u59CB")),1),t("div",uh,[t("div",ph,[B(u,{to:"/network/pppoe"},{default:G(()=>[t("div",fh,[t("div",mh,[B(eh),t("span",null,i(e(n)("\u5BBD\u5E26\u62E8\u53F7\u8FDE\u63A5")),1)])])]),_:1})]),t("div",gh,[B(u,{to:"/network/dhcp"},{default:G(()=>[t("div",vh,[t("div",bh,[B(Jb),t("span",null,i(e(n)("\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668")),1)])])]),_:1})]),t("div",hh,[B(u,{to:"/network/gateway"},{default:G(()=>[t("div",_h,[t("div",xh,[B(sh),t("span",null,i(e(n)("\u914D\u7F6E\u4E3A\u65C1\u8DEF\u7531")),1)])])]),_:1})])]),t("div",{class:"info",innerHTML:e(l)},null,8,wh)])}}});var yh=O(kh,[["__scopeId","data-v-0b149a51"]]);const Fh={key:0,id:"page"},Eh={class:"title"},$h={class:"desc"},Ch={class:"network-message"},Dh=["innerHTML"],Bh=["onSubmit"],Yh={class:"label-key"},Ah=["placeholder","disabled"],Sh={class:"label-key"},zh=["placeholder","disabled"],Ph={key:0,class:"chose_dhcp"},Th={class:"dhcp_info"},Ih={key:1,class:"msg"},Mh={class:"btns"},Lh=["disabled"],Oh=["onClick"],Nh={key:1,id:"page"},Vh={class:"title"},Gh={class:"btns"},jh=["onClick"],Uh=["onClick"],qh=T({setup(o){const{$gettext:n,$ngettext:a}=H(),c=Pe().query.type,s=n("\u7531\u4E8E\u60A8\u7684\u8BBE\u5907\u6CA1\u6709 WAN \u53E3\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B%{link}",{link:''+n("\u94FE\u63A5")+""},!0),u=E(0),_=E({}),g=E(""),p=E(!1),f=E(0),m=E(!1);(()=>N(this,null,function*(){var x,F;p.value=!0;try{const b=yield Promise.all([j.Guide.Pppoe.GET(),j.Guide.GetLan.GET()]);if(b[0].data){const{success:h,error:v,result:k}=b[0].data;k&&(k.enableLanDhcp=!1,_.value=k),h==-1011&&(p.value=!0,f.value=h)}(x=b[1].data)!=null&&x.result&&(((F=b[1].data)==null?void 0:F.result).enableDhcp||(m.value=!0,_.value.enableLanDhcp=!0))}catch(b){g.value=b}f.value==0&&(p.value=!1)}))();const y=()=>N(this,null,function*(){const x=_.value.account||"",F=_.value.password||"";if(x==""){g.value=n("\u8D26\u53F7\u4E0D\u80FD\u4E3A\u7A7A");return}if(F==""){g.value=n("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}p.value=!0;const b=$.Loading(n("\u914D\u7F6E\u4E2D..."));try{const h=yield j.Guide.Pppoe.POST({account:x,password:F});if(h!=null&&h.data){const{error:v,success:k}=h.data;v&&(g.value=v),(k==null||k==0)&&($.Success(n("\u914D\u7F6E\u6210\u529F")),u.value=1)}}catch(h){g.value=h}p.value=!1,b.Close()});return(x,F)=>{const b=ht("switch-box"),h=ht("router-link");return u.value==0?(r(),d("div",Fh,[t("h2",Eh,i(e(n)("\u914D\u7F6E\u5BBD\u5E26\u8D26\u53F7")),1),t("h3",$h,i(e(n)("\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u5149\u732B")),1),t("div",Ch,[f.value==-1011?(r(),d("li",{key:0,innerHTML:e(s)},null,8,Dh)):D("",!0)]),t("form",{onSubmit:ct(y,["prevent"])},[t("label",null,[t("div",Yh,[t("span",null,i(e(n)("\u5BBD\u5E26\u8D26\u53F7")),1)]),L(t("input",{type:"text","onUpdate:modelValue":F[0]||(F[0]=v=>_.value.account=v),placeholder:e(n)("\u5BBD\u5E26\u8D26\u53F7"),required:"",disabled:p.value},null,8,Ah),[[et,_.value.account,void 0,{trim:!0}]])]),t("label",null,[t("div",Sh,[t("span",null,i(e(n)("\u5BC6\u7801")),1)]),L(t("input",{type:"password","onUpdate:modelValue":F[1]||(F[1]=v=>_.value.password=v),placeholder:e(n)("\u5BBD\u5E26\u5BC6\u7801"),required:"",disabled:p.value},null,8,zh),[[et,_.value.password,void 0,{trim:!0}]])]),m.value?(r(),d("div",Ph,[B(b,{modelValue:_.value.enableLanDhcp,"onUpdate:modelValue":F[2]||(F[2]=v=>_.value.enableLanDhcp=v)},{default:G(()=>[t("span",Th,i(e(n)("\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09")),1)]),_:1},8,["modelValue"])])):D("",!0),g.value?(r(),d("div",Ih,i(g.value),1)):D("",!0),t("div",Mh,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:p.value},i(e(n)("\u4FDD\u5B58\u914D\u7F6E")),9,Lh),B(h,{to:e(c)=="index"?"/":"/network",custom:""},{default:G(({navigate:v})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v},i(e(n)("\u8FD4\u56DE")),9,Oh)]),_:1},8,["to"])])],40,Bh)])):u.value==1?(r(),d("div",Nh,[t("h2",Vh,i(e(n)("\u914D\u7F6E\u6210\u529F")),1),t("div",Gh,[B(h,{to:"/",custom:""},{default:G(({navigate:v})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:v},i(e(n)("\u8FDB\u5165\u63A7\u5236\u53F0")),9,jh)]),_:1}),B(h,{to:e(c)=="index"?"/":"/network",custom:""},{default:G(({navigate:v})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v},i(e(n)("\u8FD4\u56DE")),9,Uh)]),_:1},8,["to"])])])):D("",!0)}}});var Rh=O(qh,[["__scopeId","data-v-f442676c"]]);const Wh={key:0,id:"page"},Hh={class:"title"},Jh={class:"desc"},Zh={class:"network-message"},Kh=["innerHTML"],Qh=["onSubmit"],Xh={class:"label-key"},t_={value:"dhcp"},e_={value:"static"},a_={class:"label-key"},o_=["placeholder","disabled"],n_={key:0,class:"msg"},i_={class:"label-key"},r_=["placeholder","disabled"],s_={key:1,class:"msg"},d_={class:"label-key"},l_=["placeholder","disabled"],c_={class:"label-key"},u_=["disabled"],p_={value:"manual"},f_={class:"label-key"},m_=["onUpdate:modelValue","placeholder","disabled"],g_={class:"label-key"},v_=["placeholder","disabled"],b_={class:"label-key"},h_=["placeholder","disabled"],__={key:2,class:"chose_dhcp"},x_={class:"dhcp_info"},w_={key:3,class:"msgs"},k_={class:"btns"},y_=["disabled"],F_=["onClick"],E_={key:1,id:"page"},$_={class:"title"},C_={class:"btns"},D_=["onClick"],B_=["onClick"],Y_=T({setup(o){const{$gettext:n,$ngettext:a}=H(),l=n("\u7531\u4E8E\u60A8\u7684\u8BBE\u5907\u6CA1\u6709 WAN \u53E3\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B%{link}",{link:''+n("\u94FE\u63A5")+""},!0),c=E(0),s=E({}),u=E(""),_=E(""),g=E(""),p=E(!1),f=E(""),m=E(""),w=E(0),y=Pt.checkIsIP,x=E(!1),b=Pe().query.type;(()=>N(this,null,function*(){var S,Y;p.value=!0;try{const z=yield Promise.all([j.Guide.ClientModel.GET(),j.Guide.GetLan.GET()]);if(z[0]){const R=z[0];if(R.data){const{success:V,error:I,result:M}=R.data;M&&(M.wanProto!="dhcp"&&M.wanProto!="static"&&(M.wanProto="dhcp",M.dnsProto="auto"),M.enableLanDhcp=!1,s.value=M),V==-1011&&(w.value=V,p.value=!0)}}(S=z[1].data)!=null&&S.result&&(((Y=z[1].data)==null?void 0:Y.result).enableDhcp||(x.value=!0,s.value.enableLanDhcp=!0))}catch(z){u.value=z}w.value==0&&(p.value=!1)}))();const v=S=>{S.target.value=="static"?((s.value.staticIp==null||s.value.staticIp=="")&&(s.value.staticIp="192.168.1.100"),(s.value.subnetMask==null||s.value.subnetMask=="")&&(s.value.subnetMask="255.255.255.0"),s.value.dnsProto=="auto"&&setTimeout(()=>s.value.dnsProto="manual",0)):s.value.dnsProto=="manual"&&setTimeout(()=>s.value.dnsProto="auto",0)},k=S=>{const Y=S.target;if(Y.value==""){f.value="";return}y(Y.value)?f.value="":f.value=n("\u8BF7\u8F93\u5165\u5408\u6CD5\u7684IP\u5730\u5740")},C=S=>{const Y=S.target;if(Y.value==""){m.value="";return}y(Y.value)?m.value="":m.value=n("\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u5730\u5740")},A=()=>N(this,null,function*(){const S={};switch(s.value.wanProto){case"dhcp":break;case"static":S.staticIp=s.value.staticIp,S.subnetMask=s.value.subnetMask,S.gateway=s.value.gateway||"";break}switch(s.value.dnsProto){case"auto":break;case"manual":S.manualDnsIp=[],s.value.manualDnsIp!=null&&s.value.manualDnsIp.length>0?S.manualDnsIp=s.value.manualDnsIp:(S.manualDnsIp.push(_.value),g.value&&S.manualDnsIp.push(g.value));break}S.dnsProto=s.value.dnsProto,S.wanProto=s.value.wanProto,S.enableLanDhcp=s.value.enableLanDhcp;const Y=$.Loading(n("\u914D\u7F6E\u4E2D...."));p.value=!0;try{const z=yield j.Guide.ClientModel.POST(S);if(z!=null&&z.data){const{success:R,error:V}=z==null?void 0:z.data;V&&(u.value=V),(R==null||R==0)&&($.Success(n("\u914D\u7F6E\u6210\u529F")),c.value=1)}}catch(z){u.value=z}p.value=!1,Y.Close()});return(S,Y)=>{const z=ht("switch-box"),R=ht("router-link");return c.value==0?(r(),d("div",Wh,[t("h2",Hh,i(e(n)("\u914D\u7F6E\u4E92\u8054\u7F51")),1),t("h3",Jh,i(e(n)("\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u672C\u8BBE\u5907 WAN \u53E3\u8FDE\u63A5\u5230\u4E0A\u7EA7\u8DEF\u7531\u5668\u5C40\u57DF\u7F51\uFF08 LAN \uFF09\u63A5\u53E3")),1),t("div",Zh,[w.value==-1011?(r(),d("li",{key:0,innerHTML:e(l)},null,8,Kh)):D("",!0)]),t("form",{onSubmit:ct(A,["prevent"])},[t("label",null,[t("div",Xh,[t("span",null,i(e(n)("WAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")),1)]),L(t("select",{"onUpdate:modelValue":Y[0]||(Y[0]=V=>s.value.wanProto=V),onInput:v},[t("option",t_,i(e(n)("\u81EA\u52A8\u83B7\u53D6IP\u5730\u5740\uFF08DHCP\uFF09")),1),t("option",e_,i(e(n)("\u9759\u6001IP\u5730\u5740")),1)],544),[[dt,s.value.wanProto]])]),s.value.wanProto=="static"?(r(),d(U,{key:0},[t("label",null,[t("div",a_,[t("span",null,i(e(n)("IP\u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":Y[1]||(Y[1]=V=>s.value.staticIp=V),placeholder:e(n)("\u9759\u6001IP\u5730\u5740"),required:"",disabled:p.value,onInput:k},null,40,o_),[[et,s.value.staticIp,void 0,{trim:!0}]])]),f.value?(r(),d("p",n_,i(f.value),1)):D("",!0),t("label",null,[t("div",i_,[t("span",null,i(e(n)("\u5B50\u7F51\u63A9\u7801")),1)]),L(t("input",{type:"text","onUpdate:modelValue":Y[2]||(Y[2]=V=>s.value.subnetMask=V),placeholder:e(n)("\u5B50\u7F51\u63A9\u7801"),required:"",disabled:p.value,onInput:C},null,40,r_),[[et,s.value.subnetMask,void 0,{trim:!0}]])]),m.value?(r(),d("p",s_,i(m.value),1)):D("",!0),t("label",null,[t("div",d_,[t("span",null,i(e(n)("\u7F51\u5173\u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":Y[3]||(Y[3]=V=>s.value.gateway=V),placeholder:e(n)("\u7F51\u5173\u5730\u5740"),required:"",disabled:p.value},null,8,l_),[[et,s.value.gateway,void 0,{trim:!0}]])])],64)):D("",!0),t("label",null,[t("div",c_,[t("span",null,i(e(n)("DNS \u914D\u7F6E\u65B9\u5F0F")),1)]),L(t("select",{"onUpdate:modelValue":Y[4]||(Y[4]=V=>s.value.dnsProto=V)},[t("option",{value:"auto",disabled:s.value.wanProto=="static"},i(e(n)("\u81EA\u52A8\u83B7\u53D6\uFF08DHCP\uFF09")),9,u_),t("option",p_,i(e(n)("\u624B\u5DE5\u914D\u7F6E")),1)],512),[[dt,s.value.dnsProto]])]),s.value.dnsProto=="manual"?(r(),d(U,{key:1},[s.value.manualDnsIp!=null&&s.value.manualDnsIp.length>0?(r(!0),d(U,{key:0},tt(s.value.manualDnsIp,(V,I)=>(r(),d("label",null,[t("div",f_,[t("span",null,i(e(n)("DNS\u670D\u52A1\u5668")),1)]),L(t("input",{type:"text","onUpdate:modelValue":M=>s.value.manualDnsIp[I]=M,placeholder:e(n)("DNS\u670D\u52A1\u5668"),required:"",disabled:p.value},null,8,m_),[[et,s.value.manualDnsIp[I],void 0,{trim:!0}]])]))),256)):(r(),d(U,{key:1},[t("label",null,[t("div",g_,[t("span",null,i(e(n)("DNS\u670D\u52A1\u5668")),1)]),L(t("input",{type:"text","onUpdate:modelValue":Y[5]||(Y[5]=V=>_.value=V),placeholder:e(n)("DNS\u670D\u52A1\u5668"),required:"",disabled:p.value},null,8,v_),[[et,_.value,void 0,{trim:!0}]])]),t("label",null,[t("div",b_,i(e(n)("\u5907\u7528DNS\u670D\u52A1\u5668")),1),L(t("input",{type:"text","onUpdate:modelValue":Y[6]||(Y[6]=V=>g.value=V),placeholder:e(n)("\u5907\u7528DNS\u670D\u52A1\u5668"),disabled:p.value},null,8,h_),[[et,g.value,void 0,{trim:!0}]])])],64))],64)):D("",!0),x.value?(r(),d("div",__,[B(z,{modelValue:s.value.enableLanDhcp,"onUpdate:modelValue":Y[7]||(Y[7]=V=>s.value.enableLanDhcp=V)},{default:G(()=>[t("span",x_,i(e(n)("\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09")),1)]),_:1},8,["modelValue"])])):D("",!0),u.value?(r(),d("div",w_,i(u.value),1)):D("",!0),t("div",k_,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:p.value},i(e(n)("\u4FDD\u5B58\u914D\u7F6E")),9,y_),B(R,{to:e(b)=="index"?"/":"/network",custom:""},{default:G(({navigate:V})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:V},i(e(n)("\u8FD4\u56DE")),9,F_)]),_:1},8,["to"])])],40,Qh)])):c.value==1?(r(),d("div",E_,[t("h2",$_,i(e(n)("\u914D\u7F6E\u6210\u529F")),1),t("div",C_,[B(R,{to:"/",custom:""},{default:G(({navigate:V})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:V},i(e(n)("\u8FDB\u5165\u63A7\u5236\u53F0")),9,D_)]),_:1}),B(R,{to:e(b)=="index"?"/":"/network",custom:""},{default:G(({navigate:V})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:V},i(e(n)("\u8FD4\u56DE")),9,B_)]),_:1},8,["to"])])])):D("",!0)}}});var A_=O(Y_,[["__scopeId","data-v-162eca5f"]]);const S_=o=>(it("data-v-2dee59a8"),o=o(),rt(),o),z_={key:0,id:"page"},P_={class:"title"},T_=S_(()=>t("br",null,null,-1)),I_={class:"btns"},M_=["onClick"],L_={key:1,id:"page"},O_={class:"title"},N_={class:"desc"},V_=["onSubmit"],G_={class:"label-key"},j_={class:"label-value"},U_={class:"label-key"},q_=["placeholder"],R_={class:"label-key"},W_=["placeholder"],H_={class:"label-key"},J_=["placeholder"],Z_={class:"label-key"},K_=["placeholder"],Q_={key:0,class:"msgs"},X_={class:"switch_inline"},tx={key:0,class:"switch_info"},ex={key:1,class:"switch_info"},ax={class:"switch_inline"},ox={class:"switch_info"},nx={class:"switch_inline"},ix={class:"switch_info"},rx={class:"btns"},sx={class:"cbi-button cbi-button-apply app-btn app-next"},dx=["onClick"],lx={key:2,id:"page"},cx={class:"title"},ux={class:"desc"},px={class:"btns"},fx={key:3,id:"page"},mx={class:"title"},gx=["disabled"],vx={style:{"text-align":"left"}},bx={class:"btns"},hx=["disabled"],_x=["onClick"],xx=T({setup(o){const{$gettext:n,$ngettext:a}=H(),c=Pe().query.type,s=E(0),u=E(""),_=E(!1),g=Q(()=>{var F,b,h;return!(((F=f.value)==null?void 0:F.ipv4addr)&&((b=f.value)==null?void 0:b.ipv4mask)&&((h=f.value)==null?void 0:h.gateway))}),p=E({subnetMask:"255.255.255.0",staticDnsIp:"223.5.5.5",staticLanIp:"",gateway:"",enableDhcp:!0,dhcp6c:!1,enableNat:!1}),f=E(),m=()=>{_.value=!0,j.Network.Status.GET().then(F=>{if(F!=null&&F.data){const{result:b}=F==null?void 0:F.data;b&&(f.value=b)}}).finally(()=>{_.value=!1})},w=F=>{var b,h,v,k,C;F&&(p.value.staticLanIp=((b=f.value)==null?void 0:b.ipv4addr)||"",p.value.subnetMask=((h=f.value)==null?void 0:h.ipv4mask)&&It.prefixToMask(f.value.ipv4mask)||"",p.value.gateway=((v=f.value)==null?void 0:v.gateway)||"",p.value.staticDnsIp=((k=f.value)==null?void 0:k.dnsList)&&((C=f.value)==null?void 0:C.dnsList[0])||"223.5.5.5"),s.value=1},y=F=>{window.location.href=location.protocol+"//"+p.value.staticLanIp+(location.port?":"+location.port:"")},x=()=>N(this,null,function*(){const F=p.value,b=$.Loading(n("\u914D\u7F6E\u4E2D..."));try{const h=yield j.Guide.GatewayRouter.POST(F);if(h!=null&&h.data){const{success:v,error:k}=h==null?void 0:h.data;if(k&&(u.value=k),v==null||v==0){setTimeout(()=>{s.value=2,b.Close()},5e3);return}}}catch(h){u.value=h}b.Close()});return(F,b)=>{var k,C,A,S;const h=ht("router-link"),v=ht("switch-box");return s.value==0?(r(),d("div",z_,[t("h2",P_,i(e(n)("\u65C1\u8DEF\u7531\u914D\u7F6E\u524D\u7684\u51C6\u5907\u5DE5\u4F5C")),1),t("code",null,[nt(i(e(n)("\u65C1\u8DEF\u7531\u6A21\u5F0F\uFF0C\u4E5F\u53EB\u5355\u81C2\u8DEF\u7531\u6A21\u5F0F\u3002"))+" ",1),t("p",null,i(e(n)("\u60A8\u53EF\u4EE5\u7528\u4E0A\u4E00\u7EA7\u8DEF\u7531\uFF08\u4E3B\u8DEF\u7531\uFF09\u62E8\u53F7\uFF0C\u7136\u540E\u7528\u672C\u8DEF\u7531\u6765\u5B9E\u73B0\u4E00\u4E9B\u9AD8\u7EA7\u529F\u80FD\u3002")),1),T_,t("p",null,i(e(n)("\u672C\u5411\u5BFC\u652F\u6301\u81EA\u52A8\u6216\u624B\u52A8\u914D\u7F6E\uFF1A")),1),t("p",null,i(e(n)("\u70B9\u51FB\u201C\u81EA\u52A8\u914D\u7F6E\u201D\u6309\u94AE\u5F00\u59CB\u81EA\u52A8\u914D\u7F6E\u5411\u5BFC\uFF1B")),1),t("p",null,i(e(n)("\u624B\u52A8\u914D\u7F6E\u5219\u9700\u81EA\u884C\u83B7\u53D6\u4E3B\u8DEF\u7531\u5668\u7684IP\u5730\u5740\uFF08\u4F8B\u5982 192.168.2.1 \uFF09\u548C\u5B50\u7F51\u63A9\u7801\uFF0C\u8BB0\u5F55\u4EE5\u5907\u540E\u7EED\u586B\u5199\uFF0C\u70B9\u51FB\u201C\u624B\u52A8\u914D\u7F6E\u201D\u6309\u94AE\uFF0C\u5207\u6362\u5230\u53C2\u6570\u914D\u7F6E\u9875\uFF0C\u6309\u5B9E\u9645\u60C5\u51B5\u81EA\u884C\u586B\u5199\u3002")),1)]),t("div",I_,[t("button",{class:"cbi-button cbi-button-success app-btn app-next",onClick:b[0]||(b[0]=Y=>s.value=3)},i(e(n)("\u81EA\u52A8\u914D\u7F6E...")),1),t("button",{class:"cbi-button cbi-button-neutral app-btn app-next",onClick:b[1]||(b[1]=Y=>w(!1))},i(e(n)("\u624B\u52A8\u914D\u7F6E...")),1),B(h,{to:e(c)=="index"?"/":"/network",custom:""},{default:G(({navigate:Y})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:Y},i(e(n)("\u8FD4\u56DE")),9,M_)]),_:1},8,["to"])])])):s.value==1?(r(),d("div",L_,[t("h2",O_,i(e(n)("\u914D\u7F6E\u65C1\u8DEF\u7531\u7F51\u7EDC")),1),t("h3",N_,i(e(n)("\u73B0\u5728\uFF0C\u8BF7\u4F60\u914D\u7F6E\u65C1\u8DEF\u7531\u4FE1\u606F")),1),t("form",{onSubmit:ct(x,["prevent"])},[t("label",null,[t("div",G_,[t("span",null,i(e(n)("LAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")),1)]),t("div",j_,[t("select",{disabled:"",style:ft({backgroundColor:"rgba(215, 215, 215, 1)",color:"#333"})},[t("option",null,i(e(n)("\u65C1\u8DEF\u7531\u6A21\u5F0F\u4EC5\u652F\u6301\u9759\u6001IP\u5730\u5740")),1)],4)])]),t("label",null,[t("div",U_,[t("span",null,i(e(n)("IP \u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":b[2]||(b[2]=Y=>p.value.staticLanIp=Y),placeholder:e(n)("IP\u5730\u5740"),required:""},null,8,q_),[[et,p.value.staticLanIp,void 0,{trim:!0}]])]),t("label",null,[t("div",R_,[t("span",null,i(e(n)("\u5B50\u7F51\u63A9\u7801")),1)]),L(t("input",{type:"text","onUpdate:modelValue":b[3]||(b[3]=Y=>p.value.subnetMask=Y),placeholder:e(n)("\u5B50\u7F51\u63A9\u7801"),required:""},null,8,W_),[[et,p.value.subnetMask,void 0,{trim:!0}]])]),t("label",null,[t("div",H_,[t("span",null,i(e(n)("\u7F51\u5173\u5730\u5740")),1)]),L(t("input",{type:"text","onUpdate:modelValue":b[4]||(b[4]=Y=>p.value.gateway=Y),placeholder:e(n)("\u7F51\u5173\u5730\u5740"),required:""},null,8,J_),[[et,p.value.gateway,void 0,{trim:!0}]])]),t("label",null,[t("div",Z_,[t("span",null,i(e(n)("DNS\u670D\u52A1\u5668")),1)]),L(t("input",{type:"text","onUpdate:modelValue":b[5]||(b[5]=Y=>p.value.staticDnsIp=Y),placeholder:e(n)("223.5.5.5"),required:""},null,8,K_),[[et,p.value.staticDnsIp,void 0,{trim:!0}]])]),u.value?(r(),d("div",Q_,i(u.value),1)):D("",!0),t("div",X_,[B(v,{modelValue:p.value.enableDhcp,"onUpdate:modelValue":b[6]||(b[6]=Y=>p.value.enableDhcp=Y)},{default:G(()=>[p.value.enableDhcp?(r(),d("span",tx,i(e(n)("\u63D0\u4F9B DHCPv4 \u670D\u52A1\uFF08\u9700\u8981\u5173\u95ED\u4E3B\u8DEF\u7531 DHCP \u670D\u52A1\uFF09")),1)):(r(),d("span",ex,i(e(n)("\u63D0\u4F9B DHCPv4 \u670D\u52A1")),1))]),_:1},8,["modelValue"])]),t("div",ax,[B(v,{modelValue:p.value.dhcp6c,"onUpdate:modelValue":b[7]||(b[7]=Y=>p.value.dhcp6c=Y)},{default:G(()=>[t("span",ox,i(e(n)("\u81EA\u52A8\u83B7\u53D6 IPV6\uFF08\u5373\u5F00\u542F DHCPv6 \u5BA2\u6237\u7AEF\uFF09")),1)]),_:1},8,["modelValue"])]),t("div",nx,[B(v,{modelValue:p.value.enableNat,"onUpdate:modelValue":b[8]||(b[8]=Y=>p.value.enableNat=Y)},{default:G(()=>[t("span",ix,i(e(n)("\u5F00\u542F NAT\uFF08\u53EF\u4FEE\u590D\u67D0\u4E9B\u65E0\u7EBF\u70ED\u70B9\u4E0D\u80FD\u8BBF\u95EE\u5916\u7F51\u95EE\u9898\uFF09")),1)]),_:1},8,["modelValue"])]),t("div",rx,[t("button",sx,i(e(n)("\u4FDD\u5B58\u914D\u7F6E")),1),B(h,{to:e(c)=="index"?"/":"/network",custom:""},{default:G(({navigate:Y})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:Y},i(e(n)("\u8FD4\u56DE")),9,dx)]),_:1},8,["to"])])],40,V_)])):s.value==2?(r(),d("div",lx,[t("h2",cx,i(e(n)("\u914D\u7F6E\u6210\u529F")),1),t("h3",ux,i(e(n)("\u73B0\u5728\uFF0C\u5C06\u672C\u8DEF\u7531WAN\u53E3\u65AD\u5F00\uFF0C\u5C06\u5176\u4E2D\u4E00\u4E2ALAN\u53E3\u4E0E\u4E3B\u8DEF\u7531\u8FDE\u63A5\uFF0C\u5E76\u5C06\u5F53\u524D\u6D4F\u89C8\u5668\u8BBE\u5907\u8FDE\u63A5\u5230\u4E3B\u8DEF\u7531\u3002\u70B9\u51FB\u201C\u8FDB\u5165\u63A7\u5236\u53F0\u201D\u6D4F\u89C8\u5668\u5C06\u8DF3\u8F6C\u5230\u65B0\u7684\u8DEF\u7531IP")),1),t("div",px,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:y},i(e(n)("\u8FDB\u5165\u63A7\u5236\u53F0")),1)])])):s.value==3?(r(),d("div",fx,[t("h2",mx,i(e(n)("\u65C1\u8DEF\u7531\u81EA\u52A8\u914D\u7F6E")),1),t("code",null,i(e(n)("\u9996\u5148\u786E\u8BA4\u4E3B\u8DEF\u7531\u5F00\u542F\u4E86 DHCP \u670D\u52A1\uFF0C\u786E\u8BA4\u672C\u8DEF\u7531 WAN \u53E3\u662F DHCP \u5BA2\u6237\u7AEF\u6A21\u5F0F\uFF08\u9ED8\u8BA4\u5373\u662F\uFF0C\u5982\u679C\u4E0D\u662F\u53EF\u4F7F\u7528\u201C\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668\u201D\u5411\u5BFC\u6539\u6210 DHCP \u5BA2\u6237\u7AEF\uFF09\uFF0C\u7136\u540E\u5C06\u672C\u8DEF\u7531 WAN \u53E3\u4E0E\u4E3B\u8DEF\u7531\u7684 LAN \u8FDE\u63A5\uFF0C\u4EE5\u81EA\u52A8\u83B7\u53D6\u914D\u7F6E\u3002")),1),nt(" "+i(e(n)("1. \u6EE1\u8DB3\u4E0A\u8FF0\u6761\u4EF6\u4EE5\u540E\uFF0C\u70B9\u51FB\u201C\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\u201D\u4EE5\u5237\u65B0\u5F53\u524D\u8FDE\u63A5\u4FE1\u606F\uFF0C\u6210\u529F\u4EE5\u540E\uFF0C\u201C\u81EA\u52A8\u586B\u5199\u201D\u6309\u94AE\u5C06\u88AB\u6FC0\u6D3B\u3002(\u5931\u8D25\u53EF\u518D\u6B21\u70B9\u51FB)"))+" ",1),t("button",{class:st(["cbi-button cbi-button-neutral",e(g)?"cbi-button-neutral":"cbi-button-success"]),disabled:_.value,onClick:m},[nt(i(e(n)("\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\uFF08\u70B9\u6B64\u5237\u65B0\uFF09"))+" ",1),t("p",vx,[t("ul",null,[t("li",null,i(e(n)("IP \u5730\u5740: "))+i((k=f.value)==null?void 0:k.ipv4addr),1),t("li",null,i(e(n)("\u5B50\u7F51\u63A9\u7801: "))+i(((C=f.value)==null?void 0:C.ipv4mask)&&e(It).prefixToMask(f.value.ipv4mask)),1),t("li",null,i(e(n)("\u7F51\u5173\u5730\u5740: "))+i((A=f.value)==null?void 0:A.gateway),1),t("li",null,i(e(n)("DNS\u670D\u52A1\u5668: "))+i(((S=f.value)==null?void 0:S.dnsList)&&f.value.dnsList[0]||(e(g)?"":e(n)("\uFF08\u65E0DNS\u670D\u52A1\u5668\uFF0C\u8BF7\u4E4B\u540E\u81EA\u884C\u586B\u5199\u516C\u5171DNS\u670D\u52A1\u5668\uFF0C\u4F8B\u5982 223.5.5.5\uFF09"))),1)])])],10,gx),nt(" "+i(e(n)("2. \u70B9\u51FB\u201C\u81EA\u52A8\u586B\u5199\u201D\uFF0C\u5C06\u5207\u6362\u5230\u53C2\u6570\u9875\u5E76\u81EA\u52A8\u586B\u5199\u3002\u6B64\u65F6\u4F9D\u7136\u53EF\u4EE5\u81EA\u884C\u8C03\u6574\u53C2\u6570\u3002"))+" ",1),t("div",bx,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:e(g),onClick:b[9]||(b[9]=Y=>w(!0))},i(e(n)("\u81EA\u52A8\u586B\u5199..."))+i(e(g)?e(n)("\uFF08\u8BF7\u5148\u83B7\u53D6IPv4\u4E0A\u6E38\u4FE1\u606F\uFF09"):""),9,hx),B(h,{to:e(c)=="index"?"/":"/network",custom:""},{default:G(({navigate:Y})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:Y},i(e(n)("\u8FD4\u56DE")),9,_x)]),_:1},8,["to"])])])):D("",!0)}}});var wx=O(xx,[["__scopeId","data-v-2dee59a8"]]);const kx={class:"actioner-container"},yx={class:"actioner-container_header"},Fx={class:"actioner-container_body"},Ex={class:"label-item"},$x={class:"label-item_key"},Cx={class:"label-item_value"},Dx=["value"],Bx={class:"label-item_tips"},Yx={class:"label-item"},Ax={class:"label-item_key"},Sx={key:0,class:"label-item_value"},zx={class:"msg-warning"},Px={key:1,class:"label-item_value"},Tx=["value"],Ix={key:1,class:"msg-warning"},Mx={class:"label-item_tips"},Lx={class:"actioner-container_footer"},Ox=["disabled"],Nx=["disabled"],Vx={key:1,class:"actioner-container_body setup-loading"},Gx={class:"actioner-container_body setup-error"},jx={class:"actioner-container_footer"},Ux=["disabled"],qx={class:"actioner-container_body setup-success"},Rx={class:"body-title"},Wx={class:"actioner-container_footer"},Hx=T({props:{Close:{type:Function,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close()},s=()=>{n.success&&n.success()},u=E("init"),_=E(""),g=[{name:"jbod",title:a("JBOD (\u7EBF\u6027)"),info:a("\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u5C06\u591A\u4E2A\u786C\u76D8\u5408\u5E76\u4E3A\u5355\u4E2A\u5B58\u50A8\u7A7A\u95F4\uFF0C\u5176\u5BB9\u91CF\u7B49\u4E8E\u6240\u6709\u786C\u76D8\u5BB9\u91CF\u7684\u603B\u548C\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002"),select:2},{name:"raid0",title:a("RAID 0 (\u6761\u5E26)"),info:a("\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u201C\u533A\u5757\u5EF6\u5C55\u201D\u529F\u80FD\u662F\u5C06\u6570\u636E\u5206\u6210\u591A\u4E2A\u5757\uFF0C\u5E76\u5C06\u6570\u636E\u5757\u5206\u6563\u5230\u7EC4\u6210\u7684\u591A\u4E2A\u786C\u76D8\u4E0A\u4EE5\u63D0\u9AD8\u6027\u80FD\u7684\u8FC7\u7A0B\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002"),select:2},{name:"raid1",title:a("RAID 1 (\u955C\u50CF)"),info:a("\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u540C\u65F6\u5411\u6240\u6709\u786C\u76D8\u5199\u5165\u76F8\u540C\u7684\u6570\u636E\u3002\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002"),select:2},{name:"raid5",title:"RAID 5 ",info:a("\u81F3\u5C11\u9700\u89813\u5757\u786C\u76D8\uFF0C\u6267\u884C\u6BB5\u843D\u5206\u5757\u5EF6\u5C55\uFF0C\u5E76\u5BF9\u5206\u5E03\u5230\u6240\u6709\u7EC4\u6210\u786C\u76D8\u4E0A\u7684\u6570\u636E\u6267\u884C\u5947\u5076\u6821\u9A8C\uFF0C\u4ECE\u800C\u63D0\u4F9B\u6BD4 RAID 1 \u66F4\u6709\u6548\u7684\u6570\u636E\u5197\u4F59\u3002"),select:3},{name:"raid6",title:"RAID 6 ",info:a("\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u6267\u884C\u4E24\u4E2A\u5C42\u7EA7\u7684\u6570\u636E\u5947\u5076\u6821\u9A8C\u4EE5\u5B58\u50A8\u7B49\u4E8E 2 \u4E2A\u786C\u76D8\u5BB9\u91CF\u7684\u5197\u4F59\u6570\u636E\uFF0C\u63D0\u4F9B\u6BD4 RAID 5 \u66F4\u5927\u7A0B\u5EA6\u7684\u6570\u636E\u5197\u4F59\u3002"),select:4},{name:"raid10",title:"RAID 10",info:a("\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u63D0\u4F9B RAID 0 \u7684\u6027\u80FD\u548C RAID 1 \u7684\u6570\u636E\u4FDD\u62A4\u7EA7\u522B\uFF0C\u5C06\u786C\u76D8\u7EC4\u5408\u8FDB\u955C\u50CF\u6570\u636E\u7684\u7531\u4E24\u4E2A\u786C\u76D8\u7EC4\u6210\u7684\u7EC4\u3002"),select:4}],p=E("raid5"),f=E([]),m=h=>{let v="";return g.forEach(k=>{k.name===h&&(v=k.info)}),v},w=E(!1),y=mt({loading:!1,members:[]}),x=h=>{};(()=>N(this,null,function*(){y.loading=!0;try{const h=yield j.Raid.CreateList.GET();if(h!=null&&h.data){const{success:v,error:k,result:C}=h.data;if(C&&(y.members=C.members||[]),k)throw k}}catch(h){console.log(h)}finally{y.loading=!1}}))();const b=()=>N(this,null,function*(){const h=g.filter(k=>k.name===p.value)[0],v=f.value;if(!h){$.Warning(a("\u8BF7\u9009\u62E9raid\u7C7B\u578B"));return}if(v.length==0){$.Warning(a("\u8BF7\u9009\u62E9\u78C1\u76D8"));return}if(h.select>v.length){$.Warning(a("\u8BF7\u9009\u62E9\u81F3\u5C11%{min}\u5757\u78C1\u76D8",{min:""+h.select}));return}if(!!confirm(a("\u662F\u5426\u7ACB\u5373\u521B\u5EFA %{name}\uFF1F\u9009\u62E9\u7684\u786C\u76D8\u6240\u6709\u5206\u533A\u5C06\u4F1A\u88AB\u6E05\u9664\uFF0C\u6B64\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u786C\u76D8\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002",{name:h.name}))&&!!confirm(a("\u786E\u5B9A\u521B\u5EFA %{name}\uFF1F\u8BE5\u64CD\u4F5C\u4E0D\u53EF\u9006,\u8BF7\u8C28\u614E\u64CD\u4F5C",{name:h.name}))){w.value=!0,u.value="loading";try{const k=yield j.Raid.Create.POST({level:h.name,devicePaths:v});if(k.data){const{success:C,error:A,result:S}=k.data;if(A)throw A;(C||0)==0&&(u.value="success",s())}}catch(k){_.value=k,u.value="error"}finally{w.value=!1}}});return(h,v)=>{const k=ht("icon-loading"),C=ht("icon-error"),A=ht("icon-success");return r(),d("div",kx,[t("div",yx,[t("span",null,i(e(a)("RAID\u521B\u5EFA\u5411\u5BFC")),1)]),u.value=="init"?(r(),d(U,{key:0},[t("div",Fx,[t("p",null,i(e(a)("RAID\u78C1\u76D8\u9635\u5217\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C\u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002")),1),t("div",Ex,[t("div",$x,[t("span",null,i(e(a)("RAID\u7EA7\u522B\uFF1A")),1)]),t("div",Cx,[L(t("select",{"onUpdate:modelValue":v[0]||(v[0]=S=>p.value=S),onChange:x},[(r(),d(U,null,tt(g,S=>t("option",{value:S.name},i(S.title),9,Dx)),64))],544),[[dt,p.value]])]),t("div",Bx,[B(zt),nt(" "+i(m(p.value)),1)])]),t("div",Yx,[t("div",Ax,[t("span",null,i(e(a)("\u78C1\u76D8\u9635\u5217\u6210\u5458\uFF1A")),1)]),e(y).loading?(r(),d("div",Sx,[t("span",zx,i(e(a)("\u68C0\u6D4B\u4E2D...")),1)])):(r(),d("div",Px,[e(y).members.length>0?(r(!0),d(U,{key:0},tt(e(y).members,S=>(r(),d("label",null,[L(t("input",{type:"checkbox","onUpdate:modelValue":v[1]||(v[1]=Y=>f.value=Y),value:S.path},null,8,Tx),[[qt,f.value]]),nt(" \u3010"+i(S.model)+"\u3011"+i(S.name)+" "+i(S.path)+" ["+i(S.sizeStr)+"] ",1)]))),256)):(r(),d("span",Ix,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458")),1))])),t("div",Mx,[B(zt),nt(" "+i(e(a)("\u9009\u62E9\u5C06\u8981\u7528\u4E8E\u521B\u5EFA RAID \u7684\u786C\u76D8\uFF0C\u901A\u8FC7 USB \u63A5\u5165\u7684\u8BBE\u5907\u4E0D\u4F1A\u5728\u5217\u8868\u4E2D\u663E\u793A\uFF08USB\u63A5\u5165\u4E0D\u7A33\u5B9A\uFF09\u3002")),1)])])]),t("div",Lx,[t("div",{class:"close",onClick:c,disabled:w.value},i(e(a)("\u53D6\u6D88")),9,Ox),t("div",{class:"next",onClick:b,disabled:w.value},i(e(a)("\u521B\u5EFA")),9,Nx)])],64)):u.value=="loading"?(r(),d("div",Vx,[B(k,{size:60,color:"#666"}),t("span",null,i(e(a)("\u6B63\u5728\u521B\u5EFA\u4E2D...")),1)])):u.value=="error"?(r(),d(U,{key:2},[t("div",Gx,[B(C),t("span",null,i(_.value),1)]),t("div",jx,[t("div",{class:"close",onClick:c},i(e(a)("\u5173\u95ED")),1),t("div",{class:"next",onClick:b,disabled:w.value},i(e(a)("\u91CD\u65B0\u521B\u5EFA")),9,Ux)])],64)):u.value=="success"?(r(),d(U,{key:3},[t("div",qx,[B(A),t("div",Rx,i(e(a)("\u521B\u5EFA\u6210\u529F")),1)]),t("div",Wx,[t("div",{class:"close",onClick:c},i(e(a)("\u5173\u95ED")),1)])],64)):D("",!0)])}}});var Jx=O(Hx,[["__scopeId","data-v-77451104"]]);const Zx={class:"actioner-container"},Kx={class:"actioner-container_body"},Qx=["value"],Xx={class:"actioner-container_footer"},tw=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close()},s=E("");return(()=>{j.Raid.Detail.POST({path:n.raid.path}).then(_=>{if(_.data){const{result:g,error:p}=_.data;p?s.value=p:s.value=(g==null?void 0:g.detail)||""}}).catch(_=>{s.value=_.message})})(),(_,g)=>(r(),d("div",Zx,[t("div",Kx,[t("textarea",{value:s.value},null,8,Qx)]),t("div",Xx,[t("div",{class:"close",onClick:c},i(e(a)("\u5173\u95ED")),1)])]))}});var ew=O(tw,[["__scopeId","data-v-5ec616d8"]]);const aw={class:"actioner-container"},ow={class:"actioner-container_header"},nw={class:"actioner-container_body"},iw={class:"label-item"},rw={class:"label-item_key"},sw={class:"label-item_value"},dw={disabled:""},lw={class:"label-item"},cw={class:"label-item_key"},uw={key:0,class:"label-item_value"},pw={class:"msg-warning"},fw={key:1,class:"label-item_value"},mw=["value"],gw={key:1,class:"msg-warning"},vw={class:"actioner-container_footer"},bw=["disabled"],hw=["disabled"],_w=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close()},s=()=>{n.success&&n.success()},u=()=>N(this,null,function*(){const m=p.value;if(m==""){$.Warning(a("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8"));return}g.value=!0;const w=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const y=yield j.Raid.Add.POST({path:n.raid.path,memberPath:m});if(y.data){const{error:x,success:F}=y.data;if(x)throw x;(F||0)==0&&($.Success(a("\u4FDD\u5B58\u6210\u529F")),s(),c())}}catch(y){$.Error(`${y}`)}finally{g.value=!1,w.Close()}}),_=mt({loading:!1,members:[]}),g=E(!1),p=E("");return(()=>N(this,null,function*(){_.loading=!0,g.value=!0;try{const m=yield j.Raid.CreateList.GET();if(m!=null&&m.data){const{success:w,error:y,result:x}=m.data;if(x&&(_.members=x.members||[]),y)throw y}}catch(m){console.log(m)}finally{g.value=!1,_.loading=!1}}))(),(m,w)=>(r(),d("div",aw,[t("div",ow,[t("span",null,"RAID - "+i(o.raid.name)+" "+i(e(a)("\u4FEE\u6539")),1)]),t("div",nw,[t("div",iw,[t("div",rw,i(e(a)("\u8BBE\u5907")),1),t("div",sw,[t("select",dw,[t("option",null,i(o.raid.name)+"_"+i(o.raid.venderModel)+" ("+i(o.raid.path)+"\uFF0C"+i(o.raid.level)+"\uFF0C"+i(o.raid.size)+") ",1)])])]),t("div",lw,[t("div",cw,i(e(a)("\u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u88AB\u6DFB\u52A0\u5230RAID\u7684\u786C\u76D8\uFF09\uFF1A")),1),e(_).loading?(r(),d("div",uw,[t("span",pw,i(e(a)("\u68C0\u6D4B\u4E2D...")),1)])):(r(),d("div",fw,[e(_).members.length>0?(r(!0),d(U,{key:0},tt(e(_).members,y=>(r(),d("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":w[0]||(w[0]=x=>p.value=x),value:y.path},null,8,mw),[[Ft,p.value]]),nt(" \u3010"+i(y.model)+"\u3011"+i(y.name)+" "+i(y.path)+" ["+i(y.sizeStr)+"] ",1)]))),256)):(r(),d("span",gw,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458")),1))]))])]),t("div",vw,[t("div",{class:"close",onClick:c,disabled:g.value},i(e(a)("\u53D6\u6D88")),9,bw),t("div",{class:"next",onClick:u,disabled:g.value},i(e(a)("\u4FDD\u5B58")),9,hw)])]))}});var xw=O(_w,[["__scopeId","data-v-70cb932e"]]);const ww={class:"actioner-container"},kw={class:"actioner-container_header"},yw={class:"actioner-container_body"},Fw={class:"label-item"},Ew={class:"label-item_key"},$w={class:"label-item_value"},Cw={disabled:""},Dw={class:"label-item"},Bw={class:"label-item_key"},Yw={class:"label-item_value"},Aw=["value"],Sw={class:"actioner-container_footer"},zw=["disabled"],Pw=["disabled"],Tw=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close()},s=()=>{n.success&&n.success()},u=()=>N(this,null,function*(){const p=g.value;if(p==""){$.Warning(a("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u786C\u76D8"));return}_.value=!0;const f=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const m=yield j.Raid.Remove.POST({path:n.raid.path,memberPath:p});if(m.data){const{error:w,success:y}=m.data;if(w)throw w;(y||0)==0&&($.Success(a("\u4FDD\u5B58\u6210\u529F")),s(),c())}}catch(m){$.Error(`${m}`)}finally{_.value=!1,f.Close()}}),_=E(!1),g=E("");return(p,f)=>(r(),d("div",ww,[t("div",kw,[t("span",null,"RAID - "+i(o.raid.name)+" "+i(e(a)("\u79FB\u9664")),1)]),t("div",yw,[t("div",Fw,[t("div",Ew,i(e(a)("\u8BBE\u5907")),1),t("div",$w,[t("select",Cw,[t("option",null,i(o.raid.name)+"_"+i(o.raid.venderModel)+" ("+i(o.raid.path)+"\uFF0C"+i(o.raid.level)+"\uFF0C"+i(o.raid.size)+") ",1)])])]),t("div",Dw,[t("div",Bw,i(e(a)("\u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u8981\u4ECERAID\u9635\u5217\u4E2D\u5220\u9664\u7684\u786C\u76D8\uFF09\uFF1A")),1),t("div",Yw,[(r(!0),d(U,null,tt(o.raid.members,m=>(r(),d("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":f[0]||(f[0]=w=>g.value=w),value:m},null,8,Aw),[[Ft,g.value]]),nt(" "+i(m),1)]))),256))])])]),t("div",Sw,[t("div",{class:"close",onClick:c,disabled:_.value},i(e(a)("\u53D6\u6D88")),9,zw),t("div",{class:"next",onClick:u,disabled:_.value},i(e(a)("\u4FDD\u5B58")),9,Pw)])]))}});var Iw=O(Tw,[["__scopeId","data-v-56c0f6fb"]]);const Mw={class:"actioner-container"},Lw={class:"actioner-container_header"},Ow={class:"actioner-container_body"},Nw={class:"label-item"},Vw={class:"label-item_key"},Gw={class:"label-item_value"},jw={disabled:""},Uw={class:"label-item"},qw={class:"label-item_key"},Rw={key:0,class:"label-item_value"},Ww={class:"msg-warning"},Hw={key:1,class:"label-item_value"},Jw=["value"],Zw={key:1,class:"msg-warning"},Kw={class:"actioner-container_footer"},Qw=["disabled"],Xw=["disabled"],tk=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=()=>{n.Close()},s=()=>{n.success&&n.success()},u=()=>N(this,null,function*(){const m=p.value;if(m==""){$.Warning(a("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8"));return}g.value=!0;const w=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const y=yield j.Raid.Recover.POST({path:n.raid.path,memberPath:m});if(y.data){const{error:x,success:F}=y.data;if(x)throw x;(F||0)==0&&($.Success(a("\u4FDD\u5B58\u6210\u529F")),s(),c())}}catch(y){$.Error(`${y}`)}finally{g.value=!1,w.Close()}}),_=mt({loading:!1,members:[]}),g=E(!1),p=E("");return(()=>N(this,null,function*(){_.loading=!0,g.value=!0;try{const m=yield j.Raid.CreateList.GET();if(m!=null&&m.data){const{success:w,error:y,result:x}=m.data;if(x&&(_.members=x.members||[]),y)throw y}}catch(m){console.log(m)}finally{g.value=!1,_.loading=!1}}))(),(m,w)=>(r(),d("div",Mw,[t("div",Lw,[t("span",null,"RAID - "+i(o.raid.name)+" "+i(e(a)("\u6062\u590D")),1)]),t("div",Ow,[t("div",Nw,[t("div",Vw,i(e(a)("\u8BBE\u5907")),1),t("div",Gw,[t("select",jw,[t("option",null,i(o.raid.name)+"_"+i(o.raid.venderModel)+" ("+i(o.raid.path)+"\uFF0C"+i(o.raid.level)+"\uFF0C"+i(o.raid.size)+") ",1)])])]),t("div",Uw,[t("div",qw,i(e(a)("\u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u7A7A\u95F2\u7684\u786C\u76D8\u6062\u590DRAID\u8BBE\u5907\uFF09\uFF1A")),1),e(_).loading?(r(),d("div",Rw,[t("span",Ww,i(e(a)("\u68C0\u6D4B\u4E2D...")),1)])):(r(),d("div",Hw,[e(_).members.length>0?(r(!0),d(U,{key:0},tt(e(_).members,y=>(r(),d("label",null,[L(t("input",{type:"radio","onUpdate:modelValue":w[0]||(w[0]=x=>p.value=x),value:y.path},null,8,Jw),[[Ft,p.value]]),nt(" \u3010"+i(y.model)+"\u3011"+i(y.name)+" "+i(y.path)+" ["+i(y.sizeStr)+"] ",1)]))),256)):(r(),d("span",Zw,i(e(a)("\u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458")),1))]))])]),t("div",Kw,[t("div",{class:"close",onClick:c,disabled:g.value},i(e(a)("\u53D6\u6D88")),9,Qw),t("div",{class:"next",onClick:u,disabled:g.value},i(e(a)("\u4FDD\u5B58")),9,Xw)])]))}});var ek=O(tk,[["__scopeId","data-v-0586260e"]]);const ak={class:"action-main"},ok=T({props:{Close:{type:Function,required:!0},setup:{type:String,default:"create"},raid:{type:Object},success:{type:Function}},setup(o){return(n,a)=>(r(),J(_t,{type:2},{default:G(()=>[t("div",ak,[o.setup=="create"?(r(),J(Jx,{key:0,Close:o.Close},null,8,["Close"])):o.setup=="info"&&o.raid!=null?(r(),J(ew,{key:1,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):o.setup=="edit"&&o.raid!=null?(r(),J(xw,{key:2,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):o.setup=="remove"&&o.raid!=null?(r(),J(Iw,{key:3,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):o.setup=="recover"&&o.raid!=null?(r(),J(ek,{key:4,Close:o.Close,raid:o.raid,success:o.success},null,8,["Close","raid","success"])):D("",!0)])]),_:1}))}});var nk=O(ok,[["__scopeId","data-v-e20ba082"]]);const he=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(nk,pt(lt({},o),{Close:()=>{l()}}));a.use(Na),a.mount(n);const l=()=>{a.unmount(),n.remove()};return{Close:l}},ao=o=>(it("data-v-f1411b40"),o=o(),rt(),o),ik={id:"page"},rk={name:"content"},sk={class:"cbi-map-descr"},dk={style:{color:"#f5365b","margin-top":"10px"}},lk={style:{color:"#f5365b","margin-top":"10px"}},ck={class:"btns"},uk=["disabled"],pk={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},fk={class:"table cbi-section-table"},mk={style:{}},gk={class:"tr cbi-section-table-titles anonymous"},vk={class:"th cbi-section-table-cell","data-widget":"value"},bk={class:"th cbi-section-table-cell","data-widget":"value"},hk={class:"th cbi-section-table-cell","data-widget":"value"},_k={class:"th cbi-section-table-cell","data-widget":"value"},xk={class:"th cbi-section-table-cell","data-widget":"value"},wk={class:"th cbi-section-table-cell","data-widget":"value"},kk={class:"th cbi-section-table-cell","data-widget":"value"},yk={class:"th cbi-section-table-cell","data-widget":"value"},Fk={class:"tr cbi-section-table-row"},Ek={class:"td cbi-value-field"},$k={class:"td cbi-value-field"},Ck=["title"],Dk={class:"item-status"},Bk={key:0,class:"item-status item-status-detail"},Yk={class:"td cbi-value-field"},Ak={class:"td cbi-value-field"},Sk={class:"td cbi-value-field"},zk=ao(()=>t("br",null,null,-1)),Pk={class:"td cbi-value-field"},Tk=ao(()=>t("br",null,null,-1)),Ik={key:1,href:"/cgi-bin/luci/admin/quickstart/"},Mk={class:"td cbi-section-table-cell nowrap cbi-section-actions"},Lk=["title","disabled","onClick"],Ok=["title","disabled","onClick"],Nk=["title","onClick"],Vk=["title","onClick"],Gk=["title","onClick"],jk=T({setup(o){const{$gettext:n,$ngettext:a}=H(),l=mt({disksList:[]}),c=()=>N(this,null,function*(){try{const b=yield j.Raid.List.GET();if(b!=null&&b.data){const{success:h,error:v,result:k}=b.data;if(k&&(l.disksList=k.disks||[]),v)throw v}}catch(b){console.log(b)}}),s=Pt.easyInterval(c,5e3);ke(()=>{s()});const u=b=>{switch(b.level){case"raid0":case"jbod":return!0}return b.status.indexOf("degraded")!=-1||b.status.indexOf("resyncing(")!=-1},_=b=>{let h=[];return b.childrens&&b.childrens.forEach(v=>{v.mountPoint&&h.push(`${v.name}(${v.mountPoint})`)}),h},g=()=>N(this,null,function*(){he({setup:"create",success:()=>{c()}})}),p=b=>{he({setup:"info",raid:b})},f=b=>N(this,null,function*(){if(b.childrens&&b.childrens.length>0&&b.childrens.filter(k=>k.mountPoint).length>0){Se({content:n("\u5220\u9664 RAID \u8BBE\u5907\u4E4B\u524D\u8BF7\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF"),nextTitle:n("\u53BB\u5378\u8F7D"),next:()=>{location.href="/cgi-bin/luci/admin/system/mounts"},clearTitle:n("\u53D6\u6D88"),clear:()=>{}});return}if(!confirm(n("\u786E\u5B9A\u8981\u5220\u9664 %{name} \u8BE5\u78C1\u76D8\u9635\u5217\u5417\uFF1F\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002\u5220\u9664\u6210\u529F\u540E\uFF0C\u5982\u9700\u53E6\u5916\u7EC4RAID\uFF0C\u5EFA\u8BAE\u7A0D\u7B49\u51E0\u5206\u949F\u540E\u518D\u8BD5\u3002",{name:b.name}))||!confirm(n("\u786E\u5B9A\u8981\u5220\u9664 %{name} \u5417?",{name:b.name})))return;const h=$.Loading(n("\u5220\u9664\u4E2D..."));try{const v=yield j.Raid.Delete.POST({path:b.path,members:b.members});if(v.data){const{success:k,error:C}=v.data;if(C)throw C;(k||0)==0&&($.Success(n("\u5220\u9664\u6210\u529F")),c())}}catch(v){$.Error(`${v}`)}finally{h.Close()}}),m=b=>{he({setup:"edit",raid:b,success:()=>{c()}})},w=b=>{he({setup:"remove",raid:b,success:()=>{c()}})},y=b=>{he({setup:"recover",raid:b,success:()=>{c()}})},x=E(!1),F=()=>{Se({content:n("\u5C06\u626B\u63CF\u78C1\u76D8\u91CC RAID \u7684\u78C1\u76D8\u9635\u5217\u914D\u7F6E\u5E76\u6062\u590D\uFF0C\u786E\u5B9A\u8981\u6062\u590D RAID \u78C1\u76D8\u9635\u5217\u5417\uFF1F"),nextTitle:n("\u786E\u5B9A"),next:()=>N(this,null,function*(){x.value=!0;const b=$.Loading(n("\u626B\u63CF\u4E2D..."));try{const h=yield j.Raid.Autofix.GET();if(h.data){const{error:v,success:k}=h.data;if(v)throw v;(k||0)==0&&($.Success(n("\u6062\u590D\u5B8C\u6210")),c())}}catch(h){$.Error(`${h}`)}finally{b.Close(),x.value=!1}}),clearTitle:n("\u53D6\u6D88"),clear:()=>{}})};return(b,h)=>(r(),d("div",ik,[t("h2",rk,i(e(n)("RAID\u7BA1\u7406")),1),t("div",sk,[t("p",null,i(e(n)("RAID \uFF08 Redundant Array of Independent Disks \uFF09\u5373\u72EC\u7ACB\u78C1\u76D8\u5197\u4F59\u9635\u5217\uFF0C\u7B80\u79F0\u4E3A\u300C\u78C1\u76D8\u9635\u5217\u300D\uFF0C\u5C31\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C\u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002")),1),t("p",dk," * "+i(e(n)("RAID\u529F\u80FD\u6B63\u5728\u516C\u6D4B\u4E2D\uFF0C\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u5982\u9020\u6210\u6570\u636E\u4E22\u5931\u7B49\u95EE\u9898\uFF0C\u6982\u4E0D\u8D1F\u8D23\uFF0C\u8BF7\u8C28\u614E\u4F7F\u7528\u3002")),1),t("p",lk," * "+i(e(n)("\u5982\u679C\u7531\u4E8E\u7CFB\u7EDF\u91CD\u7F6E\u6216\u91CD\u542F\u5BFC\u81F4\u7684RAID\u8BBE\u5907\u4E22\u5931\u53EF\u4EE5\u5C1D\u8BD5\u901A\u8FC7\u4E0B\u65B9'\u626B\u63CF\u6062\u590DRAID'\u6309\u94AE\u6062\u590D")),1)]),t("div",ck,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[0]||(h[0]=v=>g())},i(e(n)("\u521B\u5EFARAID")),1),t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[1]||(h[1]=v=>F()),disabled:x.value},i(e(n)("\u626B\u63CF\u6062\u590DRAID")),9,uk)]),t("div",null,[t("div",pk,[t("table",fk,[t("tbody",mk,[t("tr",gk,[t("th",vk,i(e(n)("\u540D\u79F0")),1),t("th",bk,i(e(n)("\u8BBE\u5907")),1),t("th",hk,i(e(n)("\u72B6\u6001")),1),t("th",_k,i(e(n)("\u7EA7\u522B")),1),t("th",xk,i(e(n)("\u5BB9\u91CF")),1),t("th",wk,i(e(n)("\u6210\u5458")),1),t("th",kk,i(e(n)("\u6302\u8F7D\u4FE1\u606F")),1),t("th",yk,i(e(n)("\u64CD\u4F5C")),1)]),(r(!0),d(U,null,tt(e(l).disksList,v=>(r(),d("tr",Fk,[t("td",Ek,[t("b",null,i(v.name),1)]),t("td",$k,[t("b",null,i(v.path),1)]),t("td",{class:"td cbi-value-field",title:v.status+(v.rebuildStatus||"")},[t("b",Dk,i(v.status),1),v.rebuildStatus?(r(),d("b",Bk," \u2026 ")):D("",!0)],8,Ck),t("td",Yk,[t("b",null,i(v.level),1)]),t("td",Ak,[t("b",null,i(v.size),1)]),t("td",Sk,[(r(!0),d(U,null,tt(v.members,k=>(r(),d("b",null,[nt(i(k)+" ",1),zk]))),256))]),t("td",Pk,[_(v).length>0?(r(!0),d(U,{key:0},tt(_(v),k=>(r(),d("b",null,[nt(i(k)+" ",1),Tk]))),256)):(r(),d("a",Ik,i(e(n)("\u53BB\u6302\u8F7D")),1))]),t("td",Mk,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u6269\u5145"),disabled:u(v),onClick:k=>m(v)},i(e(n)("\u6269\u5145")),9,Lk),t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u79FB\u9664"),disabled:u(v),onClick:k=>w(v)},i(e(n)("\u79FB\u9664")),9,Ok),t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u6062\u590D"),onClick:k=>y(v)},i(e(n)("\u6062\u590D")),9,Nk),t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u8BE6\u60C5"),onClick:k=>p(v)},i(e(n)("\u8BE6\u60C5")),9,Vk),t("button",{class:"cbi-button cbi-button-remove",title:e(n)("\u5982\u679C\u60A8\u5728RAID\u78C1\u76D8\u9635\u5217\u4E2D\u521B\u5EFA\u4E86\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u540E\u5220\u9664\u6587\u4EF6\u7CFB\u7EDF\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002"),onClick:k=>f(v)},i(e(n)("\u5220\u9664")),9,Gk)])]))),256))])])])])]))}});var Uk=O(jk,[["__scopeId","data-v-f1411b40"]]);const qk=o=>(it("data-v-2b6b4ef9"),o=o(),rt(),o),Rk={id:"page"},Wk=qk(()=>t("h2",{name:"content"},"S.M.A.R.T.",-1)),Hk={class:"cbi-map-descr"},Jk={class:"tabs"},Zk=["href","onClick"],Kk=T({setup(o){const{$gettext:n,$ngettext:a}=H(),l=[{to:"/smart",name:n("\u5E38\u89C4\u8BBE\u7F6E")},{to:"/smart/task",name:n("\u8BA1\u5212\u4EFB\u52A1")},{to:"/smart/log",name:n("\u67E5\u770B\u65E5\u5FD7")}],c=E(!1),s=mt({global:{enable:!1,powermode:"never",tmpDiff:0,tmpMax:0},devices:[],tasks:[]}),u=p=>{const{global:f,devices:m,tasks:w}=p;f&&(s.global.enable=f.enable||!1,s.global.powermode=f.powermode||"never"),s.devices=m||[],s.tasks=w||[]};(()=>N(this,null,function*(){try{const p=yield j.Smart.Config.GET();if(p.data){const{result:f}=p.data;f&&u(f)}}catch(p){}finally{c.value=!0}}))();const g=p=>N(this,null,function*(){const f=$.Loading(n("\u4FDD\u5B58\u4E2D..."));try{const m=yield j.Smart.Config.POST(p);if(m.data){console.log(m.data);const{success:w,error:y,result:x}=m.data;if(y)throw y;(w||0)==0&&($.Success(n("\u4FDD\u5B58\u6210\u529F")),x&&u(x))}}catch(m){$.Error(`${m}`)}finally{f.Close()}});return(p,f)=>{const m=ht("router-link"),w=ht("router-view");return r(),d("div",Rk,[Wk,t("div",Hk,[t("p",null,i(e(n)("S.M.A.R.T.\uFF0C\u5168\u79F0\u4E3A\u201CSelf-Monitoring Analysis and Reporting Technology\u201D\uFF0C\u5373\u201C\u81EA\u6211\u76D1\u6D4B\u3001\u5206\u6790\u53CA\u62A5\u544A\u6280\u672F\u201D\uFF0C")),1),t("p",null,i(e(n)("\u662F\u4E00\u79CD\u81EA\u52A8\u7684\u786C\u76D8\u72B6\u6001\u68C0\u6D4B\u4E0E\u9884\u8B66\u7CFB\u7EDF\u548C\u89C4\u8303\u3002\u901A\u8FC7\u5728\u786C\u76D8\u786C\u4EF6\u5185\u7684\u68C0\u6D4B\u6307\u4EE4\u5BF9\u786C\u76D8\u7684\u786C\u4EF6\u5982\u78C1\u5934\u3001\u76D8\u7247\u3001\u9A6C\u8FBE\u3001")),1),t("p",null,i(e(n)("\u7535\u8DEF\u7684\u8FD0\u884C\u60C5\u51B5\u8FDB\u884C\u76D1\u63A7\u3001\u8BB0\u5F55\u5E76\u4E0E\u5382\u5546\u6240\u8BBE\u5B9A\u7684\u9884\u8BBE\u5B89\u5168\u503C\u8FDB\u884C\u6BD4\u8F83\uFF0C\u82E5\u76D1\u63A7\u60C5\u51B5\u5C06\u8981\u6216\u5DF2\u8D85\u51FA\u9884\u8BBE\u5B89\u5168\u503C\u7684\u5B89\u5168\u8303\u56F4\uFF0C")),1),t("p",null,i(e(n)("\u5C31\u53EF\u4EE5\u901A\u8FC7\u4E3B\u673A\u7684\u76D1\u63A7\u786C\u4EF6\u6216\u8F6F\u4EF6\u81EA\u52A8\u5411\u7528\u6237\u4F5C\u51FA\u8B66\u544A\u5E76\u8FDB\u884C\u8F7B\u5FAE\u7684\u81EA\u52A8\u4FEE\u590D\uFF0C\u4EE5\u63D0\u524D\u4FDD\u969C\u786C\u76D8\u6570\u636E\u7684\u5B89\u5168\u3002")),1)]),t("ul",Jk,[(r(),d(U,null,tt(l,y=>B(m,{to:y.to,custom:"",key:y.to},{default:G(({route:x,href:F,navigate:b,isActive:h,isExactActive:v})=>[t("li",{class:st({"active cbi-tab":h&&v})},[t("a",{href:F,onClick:b},i(y.name),9,Zk)],2)]),_:2},1032,["to"])),64))]),c.value?(r(),J(w,{key:0,name:"default"},{default:G(({Component:y,route:x})=>[(r(),J(ko,null,{default:G(()=>[(r(),J(Pa(y),{key:x.path,config:e(s),saveData:g},null,8,["config"]))]),_:2},1024))]),_:1})):D("",!0)])}}});var Qk=O(Kk,[["__scopeId","data-v-2b6b4ef9"]]);const Xk={class:"action-main"},ty=T({setup(o){return(n,a)=>(r(),J(_t,{type:2},{default:G(()=>[t("div",Xk,[Et(n.$slots,"default",{},void 0,!0)])]),_:3}))}});var Ge=O(ty,[["__scopeId","data-v-f3b0d6f0"]]);const ey={class:"actioner-container"},ay={class:"actioner-container_header"},oy={class:"actioner-container_body"},ny={class:"cbi-value"},iy={class:"cbi-value-title"},ry={class:"cbi-value-field"},sy={class:"cbi-value-description"},dy={class:"cbi-value"},ly={class:"cbi-value-title"},cy={class:"cbi-value-field"},uy={class:"cbi-checkbox"},py={value:-1},fy={value:0},my=["value"],gy={class:"cbi-value-description"},vy={class:"cbi-value"},by={class:"cbi-value-title"},hy={class:"cbi-value-field"},_y={class:"cbi-checkbox"},xy={value:-1},wy={value:0},ky=["value"],yy={class:"cbi-value-description"},Fy={class:"actioner-container_footer"},Ey=["disabled"],$y=["disabled"],Cy=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0},device:{type:Object},next:{type:Function,required:!0}},setup(o){var g,p,f;const n=o,{$gettext:a,$ngettext:l}=H();console.log(n.device);const c=E(!1),s=mt({tmpDiff:((g=n.device)==null?void 0:g.tmpDiff)||0,tmpMax:((p=n.device)==null?void 0:p.tmpMax)||0,devicePath:((f=n.device)==null?void 0:f.devicePath)||""}),u=()=>{c.value=!0,n.close()},_=()=>N(this,null,function*(){c.value=!0;try{yield n.next({tmpDiff:s.tmpDiff,tmpMax:s.tmpMax,devicePath:s.devicePath}),c.value=!1,u()}catch(m){}});return(m,w)=>(r(),J(Ge,null,{default:G(()=>[t("div",ey,[t("div",ay,[t("span",null," S.M.A.R.T. \xBB "+i(e(a)("\u8BBE\u5907"))+" \xBB "+i(o.disk.path),1)]),t("div",oy,[t("div",ny,[t("label",iy,i(e(a)("\u78C1\u76D8")),1),t("div",ry,[t("div",sy,i(o.disk.model)+" [ "+i(o.disk.path)+"\uFF0C"+i(o.disk.sizeStr)+" ] ",1)])]),t("div",dy,[t("label",ly,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09")),1),t("div",cy,[t("div",uy,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":w[0]||(w[0]=y=>e(s).tmpDiff=y)},[t("option",py,i(e(a)("\u4F7F\u7528\u5168\u5C40\u914D\u7F6E")),1),t("option",fy,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(20,y=>t("option",{value:y},i(y)+"\xB0C",9,my)),64))],512),[[dt,e(s).tmpDiff,void 0,{number:!0}]])]),t("div",gy,i(e(a)("\u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A.")),1)])]),t("div",vy,[t("label",by,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09")),1),t("div",hy,[t("div",_y,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":w[1]||(w[1]=y=>e(s).tmpMax=y)},[t("option",xy,i(e(a)("\u4F7F\u7528\u5168\u5C40\u914D\u7F6E")),1),t("option",wy,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(20,y=>t("option",{value:y*5},i(y*5)+"\xB0C",9,ky)),64))],512),[[dt,e(s).tmpMax,void 0,{number:!0}]])]),t("div",yy,i(e(a)("\u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A.")),1)])])]),t("div",Fy,[t("button",{class:"close",onClick:u,disabled:c.value},i(e(a)("\u53D6\u6D88")),9,Ey),t("button",{class:"next",onClick:_,disabled:c.value},i(e(a)("\u4FDD\u5B58")),9,$y)])])]),_:1}))}}),Dy={class:"actioner-container"},By={class:"actioner-container_header"},Yy={class:"actioner-container_body"},Ay={class:"cbi-value"},Sy={class:"cbi-value-title"},zy={class:"cbi-value-field"},Py={class:"cbi-checkbox"},Ty={value:""},Iy=["value"],My={class:"cbi-value"},Ly={class:"cbi-value-title"},Oy={class:"cbi-value-field"},Ny={class:"cbi-checkbox"},Vy={value:"short"},Gy={value:"long"},jy={value:"conveyance"},Uy={value:"offline"},qy={class:"cbi-value"},Ry={class:"cbi-value-title"},Wy={class:"cbi-value-field"},Hy={class:"cbi-checkbox"},Jy=t("option",{value:"*"},"*",-1),Zy=["value"],Ky={class:"cbi-value-description"},Qy={class:"cbi-value"},Xy={class:"cbi-value-title"},tF={class:"cbi-value-field"},eF={class:"cbi-checkbox"},aF=t("option",{value:"*"},"*",-1),oF=["value"],nF={class:"cbi-value-description"},iF={class:"cbi-value"},rF={class:"cbi-value-title"},sF={class:"cbi-value-field"},dF={class:"cbi-checkbox"},lF=t("option",{value:"*"},"*",-1),cF=["value"],uF={class:"cbi-value-description"},pF={class:"actioner-container_footer"},fF=["disabled"],mF=["disabled"],gF=T({props:{close:{type:Function,required:!0},config:{type:Object,required:!0},next:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!1),s=mt({type:"short",devicePath:"",month:"*",dayPerMonth:"*",hour:"*"}),u=E([]);(()=>N(this,null,function*(){try{const f=yield j.Smart.List.GET();if(f.data){const{result:m,error:w}=f.data;m&&m.disks&&(u.value=m.disks)}}catch(f){}}))();const g=()=>{c.value=!0,n.close()},p=()=>N(this,null,function*(){if(s.devicePath==""){$.Warning(a("\u8BF7\u9009\u62E9\u78C1\u76D8"));return}c.value=!0;try{yield n.next(s),g()}catch(f){}finally{c.value=!1}});return(f,m)=>(r(),J(Ge,null,{default:G(()=>[t("div",Dy,[t("div",By,[t("span",null,i(e(a)("\u521B\u5EFA\u8BA1\u5212\u4EFB\u52A1")),1)]),t("div",Yy,[t("div",Ay,[t("label",Sy,i(e(a)("\u78C1\u76D8")),1),t("div",zy,[t("div",Py,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[0]||(m[0]=w=>e(s).devicePath=w)},[t("option",Ty,i(e(a)("\u9009\u62E9\u78C1\u76D8")),1),(r(!0),d(U,null,tt(u.value,w=>(r(),d("option",{value:w.path},i(w.model)+" [ "+i(w.path)+"\uFF0C"+i(w.sizeStr)+" ] ",9,Iy))),256))],512),[[dt,e(s).devicePath,void 0,{trim:!0}]])])])]),t("div",My,[t("label",Ly,i(e(a)("\u7C7B\u578B")),1),t("div",Oy,[t("div",Ny,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[1]||(m[1]=w=>e(s).type=w)},[t("option",Vy,i(e(a)("\u77ED\u6682\u81EA\u68C0")),1),t("option",Gy,i(e(a)("\u957F\u65F6\u81EA\u68C0")),1),t("option",jy,i(e(a)("\u4F20\u8F93\u65F6\u81EA\u68C0")),1),t("option",Uy,i(e(a)("\u79BB\u7EBF\u65F6\u81EA\u68C0")),1)],512),[[dt,e(s).type,void 0,{trim:!0}]])])])]),t("div",qy,[t("label",Ry,i(e(a)("\u5C0F\u65F6")),1),t("div",Wy,[t("div",Hy,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[2]||(m[2]=w=>e(s).hour=w)},[Jy,(r(),d(U,null,tt(24,(w,y)=>t("option",{value:`${y}`},i(y),9,Zy)),64))],512),[[dt,e(s).hour,void 0,{trim:!0}]])]),t("div",Ky,i(e(a)("* \u8868\u793A\u6BCF\u5C0F\u65F6")),1)])]),t("div",Qy,[t("label",Xy,i(e(a)("\u5929")),1),t("div",tF,[t("div",eF,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[3]||(m[3]=w=>e(s).dayPerMonth=w)},[aF,(r(),d(U,null,tt(31,w=>t("option",{value:`${w}`},i(w),9,oF)),64))],512),[[dt,e(s).dayPerMonth,void 0,{trim:!0}]])]),t("div",nF,i(e(a)("* \u8868\u793A\u6BCF\u5929")),1)])]),t("div",iF,[t("label",rF,i(e(a)("\u6708")),1),t("div",sF,[t("div",dF,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[4]||(m[4]=w=>e(s).month=w)},[lF,(r(),d(U,null,tt(12,(w,y)=>t("option",{value:`${w}`},i(w),9,cF)),64))],512),[[dt,e(s).month,void 0,{trim:!0}]])]),t("div",uF,i(e(a)("* \u8868\u793A\u6BCF\u6708")),1)])])]),t("div",pF,[t("button",{class:"close",onClick:g,disabled:c.value},i(e(a)("\u53D6\u6D88")),9,fF),t("button",{class:"next",onClick:p,disabled:c.value},i(e(a)("\u4FDD\u5B58")),9,mF)])])]),_:1}))}}),vF={class:"actioner-container"},bF={class:"actioner-container_header"},hF={class:"actioner-container_body"},_F=["value"],xF={class:"actioner-container_footer"},wF=["disabled"],kF=["disabled"],yF=T({props:{close:{type:Function,required:!0},task:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!1),s=E(""),u=E(""),_=E(""),g=()=>N(this,null,function*(){s.value+=".";try{const w=yield j.Smart.Test.Result.POST({type:"selftest",devicePath:n.task.devicePath||""});if(w.data){const{result:y,error:x}=w.data;y&&y.result&&(_.value=y.result),x&&(_.value=x)}}catch(w){w&&(_.value=w)}}),p=Pt.easyInterval(g,5e3);ke(()=>{p()});const f=()=>{c.value=!0,p(),n.close()},m=()=>N(this,null,function*(){c.value=!0;try{const w=yield j.Smart.Test.POST({type:n.task.type||"short",devicePath:n.task.devicePath||""});if(w.data){const{success:y,error:x,result:F}=w.data;x&&(u.value=x),F&&F.result&&(u.value=F.result)}}catch(w){u.value=w}finally{}});return(w,y)=>(r(),J(Ge,null,{default:G(()=>[t("div",vF,[t("div",bF,[t("span",null,i(e(a)("\u8FD0\u884C\u8C03\u8BD5")),1)]),t("div",hF,[t("textarea",{value:u.value+`
+`+_.value+`
+`+s.value,disabled:""},null,8,_F)]),t("div",xF,[t("div",{class:"close",onClick:f,disabled:c.value},i(e(a)("\u5173\u95ED")),9,wF),c.value?D("",!0):(r(),d("div",{key:0,class:"next",onClick:m,disabled:c.value},i(e(a)("\u8FD0\u884C")),9,kF))])])]),_:1}))}});var FF=O(yF,[["__scopeId","data-v-abf07ee0"]]);const EF={class:"actioner-container"},$F={class:"actioner-container_header"},CF={class:"tabs"},DF={class:"actioner-container_body"},BF={key:0,class:"table"},YF={class:"tr"},AF={class:"td left"},SF={class:"td left"},zF={class:"tr"},PF={class:"td left"},TF={class:"td left"},IF={class:"tr"},MF={class:"td left"},LF={class:"td left"},OF=["value"],NF=["value"],VF=["value"],GF={class:"actioner-container_footer"},jF=["disabled"],UF=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!1),s=E("info"),u=w=>{switch(s.value=w,w){case"info":break;case"attribute":f();break;case"log":p();break;case"extend":m();break}},_=()=>{c.value=!0,n.close()},g=mt({log:"",attribute:"",extend:""}),p=()=>N(this,null,function*(){try{const w=yield j.Smart.Test.Result.POST({type:"selftest",devicePath:n.disk.path||""});if(w.data){const{result:y,error:x}=w.data;y&&y.result&&(g.log=y.result),x&&(g.log=x)}}catch(w){g.log=w}}),f=()=>N(this,null,function*(){try{const w=yield j.Smart.Attribute.Result.POST({devicePath:n.disk.path||""});if(w.data){const{result:y,error:x}=w.data;y&&y.result&&(g.attribute=y.result),x&&(g.attribute=x)}}catch(w){g.attribute=w}}),m=()=>N(this,null,function*(){try{const w=yield j.Smart.Extend.Result.POST({devicePath:n.disk.path||""});if(w.data){const{result:y,error:x}=w.data;y&&y.result&&(g.extend=y.result),x&&(g.extend=x)}}catch(w){g.extend=w}});return(w,y)=>(r(),J(Ge,null,{default:G(()=>[t("div",EF,[t("div",$F,[t("ul",CF,[t("li",{class:st({"active cbi-tab":s.value=="info"}),onClick:y[0]||(y[0]=x=>u("info"))},[t("a",null,i(e(a)("\u8BBE\u5907\u4FE1\u606F")),1)],2),t("li",{class:st({"active cbi-tab":s.value=="attribute"}),onClick:y[1]||(y[1]=x=>u("attribute"))},[t("a",null,i(e(a)("\u5C5E\u6027")),1)],2),t("li",{class:st({"active cbi-tab":s.value=="log"}),onClick:y[2]||(y[2]=x=>u("log"))},[t("a",null,i(e(a)("\u81EA\u68C0\u65E5\u5FD7")),1)],2),t("li",{class:st({"active cbi-tab":s.value=="extend"}),onClick:y[3]||(y[3]=x=>u("extend"))},[t("a",null,i(e(a)("\u6269\u5C55\u4FE1\u606F")),1)],2)])]),t("div",DF,[s.value=="info"?(r(),d("table",BF,[t("tr",YF,[t("td",AF,i(e(a)("\u8BBE\u5907")),1),t("td",SF,i(o.disk.path),1)]),t("tr",zF,[t("td",PF,i(e(a)("\u578B\u53F7")),1),t("td",TF,i(o.disk.model),1)]),t("tr",IF,[t("td",MF,i(e(a)("\u5E8F\u53F7")),1),t("td",LF,i(o.disk.serial),1)])])):s.value=="attribute"?(r(),d("textarea",{key:1,disabled:"",value:e(g).attribute},null,8,OF)):s.value=="log"?(r(),d("textarea",{key:2,disabled:"",value:e(g).log},null,8,NF)):s.value=="extend"?(r(),d("textarea",{key:3,disabled:"",value:e(g).extend},null,8,VF)):D("",!0)]),t("div",GF,[t("div",{class:"close",onClick:_,disabled:c.value},i(e(a)("\u5173\u95ED")),9,jF)])])]),_:1}))}});var qF=O(UF,[["__scopeId","data-v-4a646cde"]]);const RF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=B(Cy,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},WF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=B(gF,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},HF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=B(FF,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},JF=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=B(qF,pt(lt({},o),{close:()=>{l()}})),l=()=>{n.remove()};Te(a,n)},ZF={class:"cbi-section"},KF={class:"cbi-value"},QF={class:"cbi-value-title"},XF={class:"cbi-value-field"},tE={class:"cbi-checkbox"},eE=["value"],aE={class:"cbi-value"},oE={class:"cbi-value-title"},nE={class:"cbi-value-field"},iE={class:"cbi-checkbox"},rE={value:"never"},sE={value:"sleep"},dE={value:"standby"},lE={value:"idle"},cE={class:"cbi-value-description"},uE=t("br",null,null,-1),pE=t("br",null,null,-1),fE=t("br",null,null,-1),mE=t("br",null,null,-1),gE={class:"cbi-value"},vE={class:"cbi-value-title"},bE={class:"cbi-value-field"},hE={class:"cbi-checkbox"},_E={value:0},xE=["value"],wE={class:"cbi-value-description"},kE={class:"cbi-value"},yE={class:"cbi-value-title"},FE={class:"cbi-value-field"},EE={class:"cbi-checkbox"},$E={value:0},CE=["value"],DE={class:"cbi-value-description"},BE={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},YE={class:"table cbi-section-table"},AE={class:"tr cbi-section-table-titles anonymous"},SE={class:"th cbi-section-table-cell","data-widget":"value"},zE={class:"th cbi-section-table-cell","data-widget":"value"},PE={class:"th cbi-section-table-cell","data-widget":"value"},TE={class:"th cbi-section-table-cell","data-widget":"value"},IE={class:"th cbi-section-table-cell","data-widget":"value"},ME={class:"th cbi-section-table-cell","data-widget":"value"},LE={class:"th cbi-section-table-cell","data-widget":"value"},OE={class:"th cbi-section-table-cell","data-widget":"value"},NE={class:"tr cbi-section-table-row"},VE={class:"td cbi-value-field"},GE={class:"td cbi-value-field"},jE={class:"td cbi-value-field"},UE={class:"td cbi-value-field"},qE={class:"td cbi-value-field"},RE={class:"td cbi-value-field"},WE={class:"td cbi-value-field"},HE={class:"td cbi-value-field"},JE=["title","onClick"],ZE=["title","onClick"],KE={class:"cbi-page-actions control-group"},QE=["value"],XE=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=mt(n.config),s=()=>{c.global.tmpDiff=n.config.global.tmpDiff||0,c.global.tmpMax=n.config.global.tmpMax||0,c.global.enable=n.config.global.enable||!1,c.global.powermode=n.config.global.powermode||"never",c.devices=n.config.devices||[],c.tasks=n.config.tasks||[]},u=E([]),_=()=>N(this,null,function*(){try{const w=yield j.Smart.List.GET();if(w.data){const{result:y,error:x}=w.data;y&&y.disks&&(u.value=y.disks||[])}}catch(w){}}),g=Pt.easyInterval(_,5e3);ke(()=>{g()});const p=()=>N(this,null,function*(){yield n.saveData({global:c.global,devices:n.config.devices,tasks:n.config.tasks}),s()}),f=w=>{JF({disk:w})},m=(w,y)=>N(this,null,function*(){let x=null,F=-1;if(c.devices){for(let b=0;bN(this,null,function*(){b.tmpDiff==-1&&(b.tmpDiff=c.global.tmpDiff),b.tmpMax==-1&&(b.tmpMax=c.global.tmpMax),b.devicePath==""&&(b.devicePath=w.path);let h=[...c.devices];F>=0&&(h[F]=b);const v=new Map;h.forEach(k=>{k.devicePath!=null&&v.set(k.devicePath,null)});for(let k=0;k(r(),d(U,null,[t("fieldset",ZF,[t("div",KF,[t("label",QF,i(e(a)("\u542F\u7528")),1),t("div",XF,[t("div",tE,[L(t("input",{type:"checkbox","onUpdate:modelValue":y[0]||(y[0]=x=>e(c).global.enable=x),value:!e(c).global.enable},null,8,eE),[[qt,e(c).global.enable]])])])]),t("div",aE,[t("label",oE,i(e(a)("\u7535\u6E90\u6A21\u5F0F")),1),t("div",nE,[t("div",iE,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":y[1]||(y[1]=x=>e(c).global.powermode=x)},[t("option",rE,i(e(a)("\u603B\u662F")),1),t("option",sE,i(e(a)("\u7761\u7720")),1),t("option",dE,i(e(a)("\u5F85\u673A")),1),t("option",lE,i(e(a)("\u95F2\u7F6E")),1)],512),[[dt,e(c).global.powermode,void 0,{trim:!0}]])]),t("div",cE,[t("span",null,i(e(a)("\u6D4B\u8BD5\u65F6\u78C1\u76D8\u4F1A\u8F6C\u52A8\uFF0C\u8BF7\u9009\u62E9\u5408\u9002\u7684\u6A21\u5F0F\u6765\u63A7\u5236\u78C1\u76D8\u8F6C\u52A8\u3002")),1),uE,t("span",null,"* "+i(e(a)("\u603B\u662F-\u65E0\u8BBA\u662F\u4EC0\u4E48\u529F\u8017\u6A21\u5F0F\u4E0B\u90FD\u6D4B\u8BD5(\u68C0\u67E5)\u78C1\u76D8\uFF0C\u5F53\u68C0\u67E5\u65F6\uFF0C\u8FD9\u53EF\u80FD\u4F1A\u4F7F\u505C\u8F6C\u7684\u78C1\u76D8\u5F00\u59CB\u8F6C\u52A8\u3002")),1),pE,t("span",null,"* "+i(e(a)("\u7761\u7720-\u5904\u4E8E\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002")),1),fE,t("span",null,"* "+i(e(a)("\u5F85\u673A-\u5904\u4E8E\u5F85\u673A\u548C\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002\u6B64\u6A21\u5F0F\u4E0B\u78C1\u76D8\u4E00\u822C\u4E0D\u65CB\u8F6C\uFF0C\u5982\u679C\u4F60\u4E0D\u60F3\u6BCF\u6B21\u68C0\u67E5\u90FD\u8F6C\u52A8\u78C1\u76D8\uFF0C\u90A3\u4E48\u8FD9\u4E2A\u6A21\u5F0F\u6BD4\u8F83\u9002\u5408\u3002")),1),mE,t("span",null,"* "+i(e(a)("\u95F2\u7F6E-\u5904\u4E8E\u5F85\u673A\u3001\u7761\u7720\u3001\u95F2\u7F6E\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\uFF0C\u5728\u95F2\u7F6E\u72B6\u6001\u4E0B\uFF0C\u5927\u591A\u6570\u78C1\u76D8\u8FD8\u5728\u8F6C\u52A8\uFF0C\u6240\u4EE5\u8FD9\u53EF\u80FD\u4E0D\u9002\u5408\u4F60\u3002")),1)])])]),t("div",gE,[t("label",vE,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09")),1),t("div",bE,[t("div",hE,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":y[2]||(y[2]=x=>e(c).global.tmpDiff=x)},[t("option",_E,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(15,x=>t("option",{value:x},i(x)+"\xB0C",9,xE)),64))],512),[[dt,e(c).global.tmpDiff,void 0,{number:!0}]])]),t("div",wE,i(e(a)("\u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A.")),1)])]),t("div",kE,[t("label",yE,i(e(a)("\u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09")),1),t("div",FE,[t("div",EE,[L(t("select",{class:"cbi-input-select","onUpdate:modelValue":y[3]||(y[3]=x=>e(c).global.tmpMax=x)},[t("option",$E,i(e(a)("\u7981\u7528")),1),(r(),d(U,null,tt(20,x=>t("option",{value:x*5},i(x*5)+"\xB0C",9,CE)),64))],512),[[dt,e(c).global.tmpMax,void 0,{number:!0}]])]),t("div",DE,i(e(a)("\u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A.")),1)])])]),t("div",BE,[t("table",YE,[t("thead",null,[t("tr",AE,[t("th",SE,i(e(a)("\u8BBE\u5907")),1),t("th",zE,i(e(a)("\u578B\u53F7")),1),t("th",PE,i(e(a)("\u5E8F\u53F7")),1),t("th",TE,i(e(a)("\u5BB9\u91CF")),1),t("th",IE,i(e(a)("\u6E29\u5EA6")),1),t("th",ME,i(e(a)("\u72B6\u6001")),1),t("th",LE,i(e(a)("\u5065\u5EB7")),1),t("th",OE,i(e(a)("\u64CD\u4F5C")),1)])]),t("tbody",null,[(r(!0),d(U,null,tt(u.value,(x,F)=>(r(),d("tr",NE,[t("td",VE,[t("b",null,i(x.path),1)]),t("td",GE,[t("b",null,i(x.model),1)]),t("td",jE,[t("b",null,i(x.serial),1)]),t("td",UE,[t("b",null,i(x.sizeStr),1)]),t("td",qE,[t("b",null,i(x.temp),1)]),t("td",RE,[t("b",null,i(x.status),1)]),t("td",WE,[t("b",null,i(x.health),1)]),t("td",HE,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(a)("\u7F16\u8F91"),onClick:b=>m(x)},i(e(a)("\u7F16\u8F91")),9,JE),t("button",{class:"btn cbi-button cbi-button-apply",title:e(a)("\u8BE6\u60C5"),onClick:b=>f(x)},i(e(a)("\u8BE6\u60C5")),9,ZE)])]))),256))])])]),t("span",KE,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:e(a)("\u4FDD\u5B58\u5E76\u5E94\u7528"),onClick:p},null,8,QE)])],64))}}),t$={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},e$={class:"table cbi-section-table"},a$={class:"tr cbi-section-table-titles anonymous"},o$={class:"th cbi-section-table-cell","data-widget":"value"},n$={class:"th cbi-section-table-cell","data-widget":"value"},i$={class:"th cbi-section-table-cell","data-widget":"value"},r$={class:"th cbi-section-table-cell","data-widget":"value"},s$={class:"tr cbi-section-table-row"},d$={class:"td cbi-value-field"},l$={class:"td cbi-value-field"},c$={class:"td cbi-value-field"},u$={class:"td cbi-value-field"},p$=["title","onClick"],f$=["title","onClick"],m$=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=mt(n.config),s=p=>{switch(p){case"short":return a("\u77ED\u6682\u81EA\u68C0");case"long":return a("\u957F\u65F6\u81EA\u68C0");case"conveyance":return a("\u4F20\u8F93\u65F6\u81EA\u68C0");case"offline":return a("\u79BB\u7EBF\u65F6\u81EA\u68C0");default:return a("\u672A\u77E5")}},u=()=>{WF({config:n.config,disks:[],next:p=>N(this,null,function*(){yield n.saveData({tasks:[...c.tasks,p],global:n.config.global,devices:n.config.devices}),c.tasks=n.config.tasks||[]})})},_=p=>N(this,null,function*(){const f=[...c.tasks];f.splice(p,1),yield n.saveData({tasks:f,global:n.config.global,devices:n.config.devices}),c.tasks=n.config.tasks||[]}),g=p=>{HF({task:p})};return(p,f)=>(r(),d(U,null,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:f[0]||(f[0]=m=>u())},i(e(a)("\u65B0\u5EFA")),1),t("div",t$,[t("table",e$,[t("thead",null,[t("tr",a$,[t("th",o$,i(e(a)("\u8BBE\u5907")),1),t("th",n$,i(e(a)("\u7C7B\u578B")),1),t("th",i$,i(e(a)("\u8C03\u5EA6")),1),t("th",r$,i(e(a)("\u529F\u80FD")),1)])]),t("tbody",null,[(r(!0),d(U,null,tt(e(c).tasks,(m,w)=>(r(),d("tr",s$,[t("td",d$,[t("b",null,i(m.devicePath),1)]),t("td",l$,[t("b",null,i(s(m.type)),1)]),t("td",c$,[t("b",null,i(m.month)+"/"+i(m.dayPerMonth)+"/"+i(m.hour),1)]),t("td",u$,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(a)("\u8C03\u8BD5"),onClick:y=>g(m)},i(e(a)("\u9884\u89C8")),9,p$),t("button",{class:"cbi-button cbi-button-remove",title:e(a)("\u5220\u9664"),onClick:y=>_(w)},i(e(a)("\u5220\u9664")),9,f$)])]))),256))])])])],64))}}),g$={class:"cbi-section"},v$=["value"],b$=T({setup(o){return N(this,null,function*(){let n,a;const l=E(""),c=()=>N(this,null,function*(){try{const s=yield j.Smart.Log.GET();if(s.data){const{result:u,error:_}=s.data;u&&u.result&&(l.value=u.result),_&&(l.value=_)}}catch(s){l.value=s}});return[n,a]=yo(()=>c()),yield n,a(),(s,u)=>(r(),d("fieldset",g$,[t("textarea",{value:l.value,disabled:""},null,8,v$)]))})}});var h$=O(b$,[["__scopeId","data-v-997c3dee"]]);const oo=o=>(it("data-v-17b89cb7"),o=o(),rt(),o),_$=oo(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","xmlns:v":"https://vecta.io/nano",width:"48",height:"38",viewBox:"0 0 12.7 10.05"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(0 -286.95)"},[t("rect",{x:".21",y:"287.25",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0834 280.6)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#999",filter:"url(#A)",stroke:"#999","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0999 280.7)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.24",y:"294.55",width:"1.6",height:"1.38",ry:".11",fill:"#ccc",stroke:"#ccc","stroke-width":".22","paint-order":"normal"})])])],-1)),x$={class:"app-container_status-label_text"},w$={class:"text_status"},k$={class:"text_info"},y$=oo(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"48",height:"38",viewBox:"0 0 12.7 10.05","xmlns:v":"https://vecta.io/nano"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(-.03 -287.07)"},[t("rect",{x:".24",y:"287.36",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0532 280.72)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#4d4d4d",filter:"url(#A)",stroke:"#4d4d4d","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0697 280.81)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.27",y:"294.67",width:"1.6",height:"1.38",ry:".11",fill:"#55d400",stroke:"#55d400","stroke-width":".22","paint-order":"normal"})])])],-1)),F$={class:"app-container_status-label_text"},E$={class:"text_info"},$$=T({props:{item:{type:Object,required:!0},transform:{type:Number,default:0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=ia(),s=E(null),u=g=>{const p=g.target,{left:f,top:m}=p.getBoundingClientRect();c.portitemStyle.show=!0,c.portitemStyle.left=f,c.portitemStyle.top=m,c.portitemStyle.portitem=n.item},_=g=>{c.portitemStyle.show=!1};return(g,p)=>(r(),d("div",{class:"app-container_status-label_bg",style:ft(`transform: translateX(${o.transform}px);`),ref_key:"el",ref:s,onMouseenter:u,onMouseleave:_},[o.item.linkState=="DOWN"?(r(),d(U,{key:0},[_$,t("div",x$,[t("div",w$,i(e(a)("\u5DF2\u65AD\u5F00")),1),t("div",k$,i(o.item.name)+" "+i(o.item.interfaceNames?`(${o.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64)):(r(),d(U,{key:1},[y$,t("div",F$,[t("div",null,i(o.item.linkSpeed),1),t("div",E$,i(o.item.name)+" "+i(o.item.interfaceNames?`(${o.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64))],36))}});var C$=O($$,[["__scopeId","data-v-17b89cb7"]]);const D$={},B$={t:"1659511092204",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2332","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"200",height:"200"},Y$=t("path",{d:"M514.048 62.464q93.184 0 175.616 35.328t143.872 96.768 96.768 143.872 35.328 175.616q0 94.208-35.328 176.128t-96.768 143.36-143.872 96.768-175.616 35.328q-94.208 0-176.64-35.328t-143.872-96.768-96.768-143.36-35.328-176.128q0-93.184 35.328-175.616t96.768-143.872 143.872-96.768 176.64-35.328zM772.096 576.512q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-192.512 0 0-192.512q0-26.624-18.944-45.568t-45.568-18.944-45.056 18.944-18.432 45.568l0 192.512-192.512 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l192.512 0 0 191.488q0 26.624 18.432 45.568t45.056 18.944 45.568-18.944 18.944-45.568l0-191.488 192.512 0z","p-id":"2333"},null,-1),A$=[Y$];function S$(o,n){return r(),d("svg",B$,A$)}var Da=O(D$,[["render",S$]]);const z$=["onSubmit"],P$={class:"actioner-dns_header"},T$={key:0},I$={key:1},M$={class:"actioner-dns_body"},L$={class:"label-item"},O$={class:"label-item_key"},N$={class:"label-item_value"},V$={class:"label-item"},G$={class:"label-item_key"},j$={class:"label-item_value"},U$={value:"dhcp"},q$={key:0,value:"pppoe"},R$={value:"static"},W$={class:"actioner-dns_footer"},H$=["disabled"],J$=T({props:{Close:{type:Function,required:!0},e:{type:String,required:!0},name:{type:String,required:!0},inface:{type:Object,required:!0},next:{type:Function,required:!0}},setup(o){const n=o,{$gettext:a,$ngettext:l}=H(),c=E(!1),s=E(n.inface),u=()=>N(this,null,function*(){$.Loading(a("\u914D\u7F6E\u4E2D...")).Close(),n.next(s.value),_()}),_=()=>{n.Close&&n.Close()};return(g,p)=>(r(),J(_t,{Close:o.Close,type:1},{default:G(()=>[t("form",{class:"actioner-dns",onSubmit:ct(u,["prevent"])},[t("div",P$,[o.name=="wan"?(r(),d("span",T$,i(o.e=="edit"?e(a)("\u7F16\u8F91WAN"):e(a)("\u6DFB\u52A0WAN")),1)):(r(),d("span",I$,i(o.e=="edit"?e(a)("\u7F16\u8F91LAN"):e(a)("\u6DFB\u52A0LAN")),1))]),t("div",M$,[t("div",L$,[t("div",O$,[t("span",null,i(e(a)("\u540D\u79F0")),1)]),t("div",N$,[t("span",null,i(s.value.name.toLocaleUpperCase()),1)])]),t("div",V$,[t("div",G$,[t("span",null,i(e(a)("\u534F\u8BAE\uFF08\u7F51\u7EDC\u83B7\u53D6\u65B9\u5F0F\uFF09")),1)]),t("div",j$,[L(t("select",{"onUpdate:modelValue":p[0]||(p[0]=f=>s.value.proto=f)},[t("option",U$,i(e(a)("DHCP\u5BA2\u6237\u7AEF")),1),o.name=="wan"?(r(),d("option",q$,"PPPoE")):D("",!0),t("option",R$,i(e(a)("\u9759\u6001\u5730\u5740")),1)],512),[[dt,s.value.proto]])])])]),t("div",W$,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:c.value},i(e(a)("\u4FDD\u5B58")),9,H$),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:_},i(e(a)("\u53D6\u6D88")),1)])],40,z$)]),_:1},8,["Close"]))}});var Z$=O(J$,[["__scopeId","data-v-6f6071af"]]);const Ba=o=>{const n=document.createElement("div");document.body.appendChild(n);const a=vt(Z$,pt(lt({},o),{Close:()=>{l()}}));a.mount(n);const l=()=>{a.unmount(),n.remove()}},Gt=o=>(it("data-v-4ec945e0"),o=o(),rt(),o),K$={id:"page"},Q$={name:"content"},X$={class:"container"},tC={class:"table-wrapper"},eC={class:"table-header"},aC={class:"interface-device-flex"},oC=Gt(()=>t("div",{class:"header-cell spacer-col"},null,-1)),nC=Gt(()=>t("div",{class:"header-cell"},null,-1)),iC=Gt(()=>t("div",{class:"header-cell action-col"},null,-1)),rC={class:"table-body"},sC=["name","value","onUpdate:modelValue","onInput"],dC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),lC={class:"table-cell name-col"},cC={class:"table-cell action-col"},uC=["title","onClick"],pC=["onClick"],fC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),mC=Gt(()=>t("div",{class:"table-cell name-col"},null,-1)),gC={class:"table-cell action-col"},vC=["name","value","onUpdate:modelValue","onInput"],bC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),hC={class:"table-cell name-col"},_C={class:"table-cell action-col"},xC=["title","onClick"],wC=["onClick"],kC=Gt(()=>t("div",{class:"table-cell spacer-col"},null,-1)),yC=Gt(()=>t("div",{class:"table-cell name-col"},null,-1)),FC={class:"table-cell action-col"},EC={class:"cbi-page-actions control-group"},$C=["value","disabled"],CC=T({setup(o){const{$gettext:n,$ngettext:a}=H(),l=mt({devices:[],interfaces:[]}),c=E(!1),s=mt({lan:[],wan:[]});(()=>{j.Network.GetInterfaceConfig.GET().then(y=>{if(y.data){const{result:x}=y.data;if(x){l.devices=x.devices||[],l.interfaces=x.interfaces||[];for(let F=0;F{y=="wan"?s.wan.splice(x,1):y=="lan"&&s.lan.splice(x,1)},g=(y,x)=>{if(x==null){let F=y=="wan"?s.wan.length:s.lan.length;F==6&&y=="wan"&&F++,Ba({e:"add",name:y,inface:{name:y+`${F}`,proto:"dhcp",ipv4Addr:"",ipv6Addr:"",portName:"",deviceNames:[],ports:[],firewallType:y},next:b=>{y=="wan"?s.wan.push(b):s.lan.push(b),$.Message(n("\u8BF7\u5728\u4FDD\u5B58\u4EE5\u540E\u524D\u5F80'\u7F51\u7EDC-\u63A5\u53E3'\u9875\u9762\u914D\u7F6E\u63A5\u53E3\u8BE6\u7EC6\u53C2\u6570"))}})}else Ba({e:"edit",name:y,inface:y=="wan"?s.wan[x]:s.lan[x],next:F=>{y=="wan"?s.wan[x]=F:s.lan[x]=F}})},p=(y,x)=>y?y.indexOf(x):-1,f=(y,x)=>{const b=y.target.value;for(let v=0;v{const b=y.target.value;for(let h=0;hN(this,null,function*(){c.value=!0;const y=[];for(let F=0;F(r(),d("div",K$,[t("h2",Q$,i(e(n)("\u7F51\u53E3\u914D\u7F6E")),1),t("div",X$,[t("div",tC,[t("div",eC,[(r(!0),d(U,null,tt(e(l).devices,F=>(r(),d("div",{class:"header-cell device-col",key:F.name},[t("div",aC,[B(C$,{item:F},null,8,["item"])])]))),128)),oC,nC,iC]),t("div",rC,[(r(!0),d(U,null,tt(e(s).lan,(F,b)=>(r(),d("div",{key:b,class:"table-row"},[(r(!0),d(U,null,tt(e(l).devices,h=>(r(),d("div",{class:"table-cell device-col",key:h.name},[L(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":v=>F.deviceNames=v,onInput:v=>f(v,b)},null,40,sC),[[qt,F.deviceNames]])]))),128)),dC,t("div",lC,[t("b",null,i(F.name),1)]),t("div",cC,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u7F16\u8F91"),onClick:h=>g("lan",b)},i(e(n)("\u7F16\u8F91")),9,uC),b!==0?(r(),d("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>_("lan",b)},i(e(n)("\u5220\u9664")),9,pC)):D("",!0)])]))),128)),t("div",{class:"table-row add-row",onClick:x[0]||(x[0]=F=>g("lan"))},[(r(!0),d(U,null,tt(e(l).devices,F=>(r(),d("div",{class:"table-cell device-col",key:F.name}))),128)),fC,mC,t("div",gC,[B(Da,{class:"icon"})])]),(r(!0),d(U,null,tt(e(s).wan,(F,b)=>(r(),d("div",{key:b,class:"table-row"},[(r(!0),d(U,null,tt(e(l).devices,h=>(r(),d("div",{class:"table-cell device-col",key:h.name},[L(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":v=>F.deviceNames=v,onInput:v=>m(v,b)},null,40,vC),[[qt,F.deviceNames]])]))),128)),bC,t("div",hC,[t("b",null,i(F.name),1)]),t("div",_C,[t("button",{class:"btn cbi-button cbi-button-apply",title:e(n)("\u7F16\u8F91"),onClick:h=>g("wan",b)},i(e(n)("\u7F16\u8F91")),9,xC),b!==0?(r(),d("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>_("wan",b)},i(e(n)("\u5220\u9664")),9,wC)):D("",!0)])]))),128)),t("div",{class:"table-row add-row",onClick:x[1]||(x[1]=F=>g("wan"))},[(r(!0),d(U,null,tt(e(l).devices,F=>(r(),d("div",{class:"table-cell device-col",key:F.name}))),128)),kC,yC,t("div",FC,[B(Da,{class:"icon"})])])])])]),t("div",EC,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:e(n)("\u4FDD\u5B58\u5E76\u5E94\u7528"),onClick:w,disabled:c.value},null,8,$C)])]))}});var DC=O(CC,[["__scopeId","data-v-4ec945e0"]]);const BC={name:"CustomTable",props:{data:{type:Array,default:()=>[]},columns:{type:Array,required:!0,validator:o=>o.every(n=>n.label&&n.prop)},showSelection:{type:Boolean,default:!1},rowKey:{type:String,default:"id"},showPagination:{type:Boolean,default:!0},pageSize:{type:Number,default:10},currentPage:{type:Number,default:1},emptyText:{type:String,default:"\u6682\u65E0\u6570\u636E"},maxPagerCount:{type:Number,default:5},theadBgColor:{type:String,default:"#F8F8F8"}},emits:["selection-change","update:currentPage","page-change"],setup(o,{emit:n}){const{$gettext:a}=H(),l=E([]),c=E(!1),s=E(!1);E(null);const u=Q(()=>o.data.length),_=Q(()=>Math.ceil(u.value/o.pageSize)),g=Q(()=>{if(!o.showPagination)return o.data;const C=(o.currentPage-1)*o.pageSize,A=C+o.pageSize;return o.data.slice(C,A)}),p=Q(()=>(o.currentPage-1)*o.pageSize+1),f=Q(()=>{const C=o.currentPage*o.pageSize;return C>u.value?u.value:C}),m=Q(()=>({minWidth:`${o.columns.reduce((A,S)=>A+(parseInt(S.width)||50),o.showSelection?50:0)}px`})),w=Q(()=>{const C=[],A=Math.floor(o.maxPagerCount/2);let S=o.currentPage-A,Y=o.currentPage+A;S<1&&(S=1,Y=Math.min(o.maxPagerCount,_.value)),Y>_.value&&(Y=_.value,S=Math.max(1,Y-o.maxPagerCount+1));for(let z=S;z<=Y;z++)C.push(z);return C}),y=C=>({width:C.width?`${Math.max(50,parseInt(C.width))}px`:"auto",minWidth:"50px",textAlign:C.align||"center"}),x=()=>{c.value?l.value=[...g.value.map(C=>C[o.rowKey])]:l.value=[],h()},F=()=>{c.value=l.value.length===g.value.length&&g.value.length>0,h()},b=(C,A)=>{A?l.value.includes(C)||l.value.push(C):l.value=l.value.filter(S=>S!==C),F()},h=()=>{const C=o.data.filter(A=>l.value.includes(A[o.rowKey]));n("selection-change",C)},v=C=>{C<1||C>_.value||(n("update:currentPage",C),n("page-change",C))},k=()=>{s.value=window.innerWidth<=768};return Yt(()=>o.data,()=>{l.value=[],c.value=!1},{deep:!0}),At(()=>{k(),window.addEventListener("resize",k)}),Mt(()=>{window.removeEventListener("resize",k)}),{selectedRows:l,allSelected:c,isMobile:s,total:u,totalPages:_,paginatedData:g,startItem:p,endItem:f,visiblePages:w,tableStyle:m,gettext:a,getColumnStyle:y,toggleAllSelection:x,handleSelectionChange:F,changePage:v,updateSelection:b}}},YC={class:"custom-table-container"},AC={key:0,class:"selection-header"},SC={key:0,class:"selection-cell"},zC=["checked","onChange"],PC={key:0,class:"empty-row"},TC=["colspan"],IC={key:0,class:"pagination-wrapper"},MC={class:"pagination-info"},LC={class:"pagination-controls"},OC=["disabled"],NC=["onClick"],VC=["disabled"];function GC(o,n,a,l,c,s){return r(),d("div",YC,[t("div",{class:"custom-table-wrapper",style:ft({overflowX:l.isMobile?"auto":"hidden"})},[t("table",{class:st(["custom-table",{"has-selection":a.showSelection}]),style:ft(l.tableStyle)},[t("thead",{style:ft({background:a.theadBgColor})},[t("tr",null,[a.showSelection?(r(),d("th",AC,[L(t("input",{type:"checkbox","onUpdate:modelValue":n[0]||(n[0]=u=>l.allSelected=u),onChange:n[1]||(n[1]=(...u)=>l.toggleAllSelection&&l.toggleAllSelection(...u))},null,544),[[qt,l.allSelected]])])):D("",!0),(r(!0),d(U,null,tt(a.columns,(u,_)=>(r(),d("th",{key:_,style:ft(l.getColumnStyle(u))},i(l.gettext(u.label)),5))),128))])],4),t("tbody",null,[(r(!0),d(U,null,tt(l.paginatedData,(u,_)=>(r(),d("tr",{key:_,class:st({"last-row":_===l.paginatedData.length-1})},[a.showSelection?(r(),d("td",SC,[t("input",{type:"checkbox",checked:l.selectedRows.includes(u[a.rowKey]),onChange:g=>l.updateSelection(u[a.rowKey],g.target.checked)},null,40,zC)])):D("",!0),(r(!0),d(U,null,tt(a.columns,(g,p)=>(r(),d("td",{key:p,style:ft({textAlign:g.align||"center"})},[g.slot?Et(o.$slots,g.slot,{key:0,row:u,index:_},void 0,!0):(r(),d(U,{key:1},[nt(i(u[g.prop]),1)],64))],4))),128))],2))),128)),l.paginatedData.length===0?(r(),d("tr",PC,[t("td",{colspan:a.showSelection?a.columns.length+1:a.columns.length},i(a.emptyText),9,TC)])):D("",!0)])],6)],4),a.showPagination?(r(),d("div",IC,[t("div",MC,i(l.gettext("\u663E\u793A"))+" "+i(l.startItem)+" "+i(l.gettext("\u5230"))+" "+i(l.endItem)+" "+i(l.gettext("\u6761"))+"\uFF0C"+i(l.gettext("\u5171"))+" "+i(l.total)+" "+i(l.gettext("\u6761")),1),t("div",LC,[t("button",{disabled:a.currentPage===1,onClick:n[2]||(n[2]=u=>l.changePage(a.currentPage-1))},i(l.gettext("\u4E0A\u4E00\u9875")),9,OC),(r(!0),d(U,null,tt(l.visiblePages,u=>(r(),d("button",{key:u,class:st({active:u===a.currentPage}),onClick:_=>l.changePage(u)},i(u),11,NC))),128)),t("button",{disabled:a.currentPage===l.totalPages,onClick:n[3]||(n[3]=u=>l.changePage(a.currentPage+1))},i(l.gettext("\u4E0B\u4E00\u9875")),9,VC)])])):D("",!0)])}var je=O(BC,[["render",GC],["__scopeId","data-v-2c8ecf89"]]);const no=o=>(it("data-v-d28f7d82"),o=o(),rt(),o),jC={style:{display:"flex","align-items":"center"}},UC={class:"search_box"},qC={class:"search_container"},RC={class:"search_input_wrapper"},WC=["onKeyup","placeholder"],HC=no(()=>t("path",{d:"M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"},null,-1)),JC=[HC],ZC=no(()=>t("svg",{class:"refresh_icon",viewBox:"0 0 24 24",width:"26",height:"26"},[t("path",{d:"M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"})],-1)),KC=[ZC],QC=T({props:{showBatchDelete:{type:Boolean,default:!0},showAdd:{type:Boolean,default:!0}},emits:["refresh","batch-delete","search","handleAdd"],setup(o,{emit:n}){const a=o,{$gettext:l}=H(),c=E(""),s=E(!1),u=E(a.showBatchDelete),_=E(a.showAdd),g=()=>{n("refresh",{data:"\u8FD9\u662F\u5B50\u7EC4\u4EF6\u7684\u6570\u636E"})},p=()=>{n("search",String(c.value))},f=()=>{n("batch-delete",{data:"\u8FD9\u662F\u5B50\u7EC4\u4EF6\u7684\u6570\u636E"})},m=()=>{n("handleAdd")};return(w,y)=>(r(),d("div",jC,[_.value?(r(),d("button",{key:0,class:"del-button add-button--danger",style:{},onClick:m},[t("span",null,i(e(l)("\u6DFB\u52A0")),1)])):D("",!0),u.value?(r(),d("button",{key:1,class:"del-button del-button--danger",onClick:f},[t("span",null,i(e(l)("\u6279\u91CF\u5220\u9664")),1)])):D("",!0),t("div",UC,[t("div",qC,[t("div",RC,[L(t("input",{type:"text",onKeyup:Fo(p,["enter"]),"onUpdate:modelValue":y[0]||(y[0]=x=>c.value=x),class:"search_input",placeholder:e(l)("\u8BF7\u8F93\u5165\u540D\u79F0/IP/MAC\u2026")},null,40,WC),[[et,c.value,void 0,{trim:!0}]]),t("svg",{class:"search_icon",viewBox:"0 0 24 24",width:"24",height:"24",onClick:p},JC)]),t("button",{class:st(["refresh_button",{rotate:s.value}]),onClick:g},KC,2)])])]))}});var fa=O(QC,[["__scopeId","data-v-d28f7d82"]]);const XC=o=>(it("data-v-9ce78472"),o=o(),rt(),o),tD=XC(()=>t("span",{class:"switch__button"},null,-1)),eD=[tD],aD=["checked","disabled"],oD=T({props:{modelValue:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},activeColor:{default:"#409EFF"},inactiveColor:{default:"#DCDFE6"}},emits:["update:modelValue","change","beforeChange"],setup(o,{emit:n}){const a=o,l=()=>{if(n("beforeChange",!a.modelValue),a.disabled)return;const c=!a.modelValue;n("update:modelValue",c),n("change",c)};return Q(()=>a.modelValue),(c,s)=>(r(),d("div",{class:st(["switch",{"is-checked":o.modelValue,"is-disabled":o.disabled}]),onClick:l},[t("span",{class:"switch__core",style:ft({backgroundColor:o.modelValue?o.activeColor:o.inactiveColor,borderColor:o.modelValue?o.activeColor:o.inactiveColor})},eD,4),t("input",{type:"checkbox",class:"switch__input",checked:o.modelValue,disabled:o.disabled},null,8,aD)],2))}});var Nt=O(oD,[["__scopeId","data-v-9ce78472"]]);const nD={class:"flow"},iD={class:"flow-data"},rD={key:0},sD={key:1},dD=T({props:{ipParam:{type:String}},setup(o){const n=o,{$gettext:a}=H();Qe([Ya,Aa,Sa,Xe,ta,za]);const l=E(n.ipParam),c=E(),s=b=>{var v;const h=(v=c.value)==null?void 0:v[b];return!h||h.startTime==0?"":m(h.startTime*1e3)+"-"+m(h.endTime*1e3)},u=Q(()=>{var h;let b=[];return(h=c.value)==null||h.forEach(v=>{b.push({value:v.uploadSpeed})}),b}),_=Q(()=>{var h;let b=[];return(h=c.value)==null||h.forEach(v=>{b.push({value:v.downloadSpeed})}),b}),g=Q(()=>{var h;let b="";if(c.value){let v=((h=c.value)==null?void 0:h.length)||0;if(v>0){let k=c.value[v-1];b=w(k.uploadSpeed)+"/s"}}return b}),p=Q(()=>{var h;let b="";if(c.value){let v=((h=c.value)==null?void 0:h.length)||0;if(v>0){let k=c.value[v-1];b=w(k.downloadSpeed)+"/s"}}return b}),f=()=>N(this,null,function*(){var b;try{const h=yield j.DeviceMangement.speedsForOneDevice.POST({ip:l.value});if(h.data&&(b=h.data.result)!=null&&b.items){const v=h.data.result.slots||10;if(h.data.result.items.lengthv?c.value=h.data.result.items.slice(v-h.data.result.items.length):c.value=h.data.result.items}}catch(h){console.log(h)}}),m=Pt.dateForm,w=Pt.byteToSize,y=E();let x=null;const F=b=>{const h=ja();return x=ea(b,h?"dark":"light"),x.setOption({animation:!1,backgroundColor:h?"#88888822":"#fff",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:v=>{if(Array.isArray(v)){let k="";v.length>0&&(k=s(v[0].axisValue));for(let C=0;C${v[C].seriesName}: ${w(v[C].value)}/s`;return k.toString()}else{const k=v;return`${s(k.axisValue)}
${k.seriesName}: ${w(k.value)}/s`}}},xAxis:{type:"category",boundaryGap:!1,splitLine:{lineStyle:{color:["#999"]},show:!1},name:"",show:!1,nameGap:0,nameTextStyle:{height:0,lineHeight:0,padding:0}},title:{text:a("\u6D41\u91CF\u7EDF\u8BA1"),textStyle:{fontSize:12,color:h?"#cccccc":"rgba(0, 0, 0, 0.6)"},top:"10px",left:"10px"},yAxis:{type:"value",name:"",minInterval:1e4,interval:1e3,axisLabel:{formatter:function(v,k){return`${w(v)}/s`},color:"#fff",show:!1},nameTextStyle:{color:"#fff"},splitLine:{lineStyle:{color:["#999"]},show:!1}},series:[{name:a("\u4E0B\u8F7D"),data:_.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(32, 199, 247, 1)"},{offset:1,color:"rgba(32, 199, 247, 0.1)"}],global:!1}}},{name:a("\u4E0A\u4F20"),data:u.value,type:"line",symbol:"none",showSymbol:!1,symbolSize:0,smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(85, 58, 254, 1)"},{offset:1,color:"rgba(85, 58, 254, 0.1)"}],global:!1}}}],legend:{padding:0,align:"right",top:"10px",data:[{name:a("\u4E0A\u4F20"),itemStyle:{color:"rgb(85, 58, 254)"}},{name:a("\u4E0B\u8F7D"),itemStyle:{color:"rgb(32, 199, 247)"}}],textStyle:{color:h?"#cccccc":"rgba(0, 0, 0, 0.6)"},lineStyle:{color:"#333"}},grid:{left:"2%",right:"2%",bottom:"0%",top:"10%",containLabel:!0}}),x};return At(()=>{setTimeout(()=>N(this,null,function*(){if(y.value){yield f();const b=F(y.value),h=y.value;b.resize({width:h.clientWidth,height:h.clientHeight}),window.addEventListener("resize",()=>{b.resize({width:h.clientWidth,height:h.clientHeight})});const v=()=>N(this,null,function*(){if(x!=null){if(!document.hidden){if(yield f(),x==null)return;b.setOption({series:[{name:a("\u4E0B\u8F7D"),data:_.value,type:"line",areaStyle:{},smooth:!0},{name:a("\u4E0A\u4F20"),data:u.value,type:"line",areaStyle:{},smooth:!0}]})}setTimeout(v,5e3)}});setTimeout(v,5e3)}}),900)}),Mt(()=>{x!=null&&(x.dispose(),x=null)}),(b,h)=>(r(),d("div",nD,[t("div",{ref_key:"el",ref:y,class:"echart"},null,512),t("div",iD,[e(g)?(r(),d("span",rD,i(e(a)("\u4E0A\u4F20:"))+" "+i(e(g)),1)):D("",!0),e(p)?(r(),d("span",sD,i(e(a)("\u4E0B\u8F7D:"))+" "+i(e(p)),1)):D("",!0)])]))}});var lD=O(dD,[["__scopeId","data-v-529a02b0"]]);const cD=["onClick"],uD={class:"modal-header"},pD={class:"modal-title"},fD={class:"modal-content"},mD={key:0,class:"modal-footer"},ee=T({props:{modelValue:{type:Boolean},title:{default:"\u63D0\u793A"},showClose:{type:Boolean,default:!0},closeOnClickOverlay:{type:Boolean,default:!1},footerShow:{type:Boolean,default:!0},width:{default:"500px"}},emits:["update:modelValue","confirm","cancel","close"],setup(o,{expose:n,emit:a}){const l=o;Eo(m=>({"1df87c10":e(s)}));const{$gettext:c}=H(),s=Q(()=>typeof l.width=="number"?`${l.width}px`:l.width),u=E(l.modelValue);Yt(()=>l.modelValue,m=>{u.value=m}),Yt(u,m=>{a("update:modelValue",m),m||a("close")}),Q(()=>typeof l.width=="number"?`${l.width}px`:l.width);const _=()=>{u.value=!1},g=()=>{l.closeOnClickOverlay&&f()},p=()=>{a("confirm")},f=()=>{a("cancel"),_()};return n({show:()=>u.value=!0,hide:()=>u.value=!1}),(m,w)=>(r(),J($t,{name:"fade"},{default:G(()=>[u.value?(r(),d("div",{key:0,class:"modal-overlay",onClick:ct(g,["self"])},[B($t,{name:"slide"},{default:G(()=>[t("div",{class:"modal-container",style:ft({maxWidth:e(s)})},[t("div",uD,[t("h3",pD,i(e(c)(o.title)),1),o.showClose?(r(),d("button",{key:0,class:"modal-close",onClick:f,"aria-label":"Close"}," \xD7 ")):D("",!0)]),t("div",fD,[Et(m.$slots,"default")]),o.footerShow?(r(),d("div",mD,[Et(m.$slots,"footer",{},()=>[t("button",{class:"modal-button cancel",onClick:f},i(e(c)("\u53D6\u6D88")),1),t("button",{class:"modal-button confirm",onClick:p},i(e(c)("\u4FDD\u5B58")),1)])])):D("",!0)],4)]),_:3})],8,cD)):D("",!0)]),_:3}))}}),$e=o=>(it("data-v-2f8a90b2"),o=o(),rt(),o),gD={class:"container"},vD={style:{display:"flex","justify-content":"end"}},bD=["onClick"],hD=["onClick"],_D=["onClick"],xD={class:"custom-content"},wD={class:"IP_address"},kD={class:"item_box"},yD={class:"item_left"},FD={key:0,class:"tip"},ED=["onClick"],$D={key:1},CD={class:"item_box"},DD={class:"item_left"},BD={class:"item_box"},YD={class:"item_left"},AD=["placeholder"],SD={class:"item_box"},zD={class:"item_left"},PD=["placeholder"],TD={class:"item_box"},ID={class:"item_left"},MD=["placeholder"],LD={class:"custom-content"},OD=$e(()=>t("div",{class:"img_box"},[t("img",{src:"https://fwindex.koolcenter.com/cover/x86_64/cover.png",alt:""})],-1)),ND={class:"item_box"},VD={class:"item_left"},GD=["placeholder"],jD={class:"item_box"},UD=$e(()=>t("div",{class:"item_left"},"MAC\uFF1A",-1)),qD=["placeholder"],RD={class:"item_box"},WD={class:"item_left"},HD={key:0,value:null,disabled:""},JD=["value"],ZD={class:"item_box"},KD={class:"item_left"},QD={key:0,class:"item_box"},XD=$e(()=>t("div",{class:"item_left"},"IP\uFF1A",-1)),tB=["placeholder"],eB={class:"custom-content"},aB={class:"info-content"},oB=$e(()=>t("div",{class:"img_box"},[t("img",{src:"https://fwindex.koolcenter.com/cover/x86_64/cover.png",alt:""})],-1)),nB={style:{"margin-bottom":"16px",flex:"1"}},iB={class:"item_box"},rB={class:"item_left"},sB={class:"item_box"},dB={class:"item_left"},lB={class:"item_box"},cB=$e(()=>t("div",{class:"item_left"}," MAC\uFF1A",-1)),uB={class:"item_box"},pB={class:"item_left"},fB={class:"item_box"},mB={class:"item_left"},gB={class:"item_box"},vB={class:"item_left"},bB=T({emits:["openGloba"],setup(o,{emit:n}){const{$gettext:a}=H(),l=P=>{R.hostname=P.target.value.replace(/[\u4e00-\u9fa5]/g,"")},c=E(null),s=()=>{u(),S(),c.value=setInterval(S,3e3)},u=()=>{c.value&&(clearInterval(c.value),c.value=null)};At(()=>N(this,null,function*(){yield C(),p.value.length!==0&&s()})),Mt(()=>{u()});const _=E({});(()=>N(this,null,function*(){try{const{data:P}=yield j.DeviceMangement.globalConfigs.GET();P.result&&(_.value=P.result||{})}catch(P){}}))();const p=E([]),f=E([]),m=E(!1),w=E(!1),y=E(!1),x=Q(()=>!R.dhcpGateway),F=E([{label:"\u4E3B\u673A\u540D\u79F0",prop:"hostname"},{label:"IP\u5730\u5740",prop:"ip"},{label:"MAC\u5730\u5740",prop:"mac"},{label:"\u4E0A\u4F20\u901F\u5EA6",prop:"uploadSpeedStr"},{label:"\u4E0B\u8F7D\u901F\u5EA6",prop:"downloadSpeedStr"},{label:"\u6807\u7B7E",prop:"staticAssigned",slot:"staticAssigned"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),b=P=>({default:a("\u9ED8\u8BA4\u7F51\u5173"),parent:a("\u4E0A\u7EA7\u8DEF\u7531"),myself:a("\u672C\u8BBE\u5907"),bypass:a("\u65C1\u8DEF\u7531"),floatip:a("\u6D6E\u52A8\u7F51\u5173")})[P]||P,h=()=>{m.value=!1,n("openGloba")},v=P=>{var K,X;if(P==!0&&!((X=(K=_.value)==null?void 0:K.speedLimit)!=null&&X.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"))},k=E([]),C=()=>N(this,null,function*(){var K,X,ot;let P=$.Loading(a("\u52A0\u8F7D\u4E2D..."));try{const{data:xt}=yield j.DeviceMangement.listDevices.GET();xt.result&&(p.value=((K=xt.result)==null?void 0:K.devices)||[],f.value=((X=xt.result)==null?void 0:X.devices)||[],k.value=((ot=xt.result)==null?void 0:ot.dhcpTags)||[])}catch(xt){}finally{P.Close()}}),A=(P,K)=>{const X={};return P.forEach(ot=>{ot.ip&&(X[ot.ip]={downloadSpeedStr:ot.downloadSpeedStr||"0 B",uploadSpeedStr:ot.uploadSpeedStr||"0 B"})}),K.map(ot=>ot.ip&&X[ot.ip]?pt(lt({},ot),{downloadSpeedStr:X[ot.ip].downloadSpeedStr,uploadSpeedStr:X[ot.ip].uploadSpeedStr}):pt(lt({},ot),{downloadSpeedStr:ot.downloadSpeedStr||"0 B",uploadSpeedStr:ot.uploadSpeedStr||"0 B"}))},S=()=>N(this,null,function*(){try{const{data:P}=yield j.DeviceMangement.speedsForDevices.GET();P.result&&(f.value=A(P.result,f.value))}catch(P){}}),Y=P=>/^[a-zA-Z\s]+$/.test(P)?P.toUpperCase():P,z=mt({ip:"",mac:"",uploadSpeed:100,downloadSpeed:1e3,networkAccess:!1,enabled:!1,comment:"",action:"add"}),R=mt({hostname:"",assignedIP:"",assignedMac:"",bindIP:!1,tagTitle:"",tagName:"",dhcpGateway:"",action:"add"}),V=E(""),I=E({}),M=(P,K)=>{var X,ot,xt,St,wt,ne,ie,re,se,de,le,ce,ue,pe,fe,me;I.value=P,K===1?(z.ip=P.ip||"",z.mac=P.mac||"",z.uploadSpeed=((X=P==null?void 0:P.speedLimit)==null?void 0:X.uploadSpeed)||100,z.downloadSpeed=((ot=P==null?void 0:P.speedLimit)==null?void 0:ot.downloadSpeed)||1e3,z.networkAccess=!((xt=P==null?void 0:P.speedLimit)!=null&&xt.networkAccess)||!1,z.enabled=((St=P==null?void 0:P.speedLimit)==null?void 0:St.enabled)||!1,z.comment=((wt=P==null?void 0:P.speedLimit)==null?void 0:wt.comment)||"",z.action=((ne=P==null?void 0:P.speedLimit)==null?void 0:ne.action)||"add",m.value=!0):K===2?(R.hostname=((ie=P==null?void 0:P.staticAssigned)==null?void 0:ie.hostname)||"",R.assignedIP=((re=P==null?void 0:P.staticAssigned)==null?void 0:re.assignedIP)||"",R.assignedMac=((se=P==null?void 0:P.staticAssigned)==null?void 0:se.assignedMac)||"",R.bindIP=((de=P==null?void 0:P.staticAssigned)==null?void 0:de.bindIP)||!1,R.tagTitle=((le=P==null?void 0:P.staticAssigned)==null?void 0:le.tagTitle)||"",R.tagName=((ce=P==null?void 0:P.staticAssigned)==null?void 0:ce.tagName)||"",(ue=P==null?void 0:P.staticAssigned)!=null&&ue.dhcpGateway?(k.value.forEach(ge=>{var kt;ge.gateway===((kt=P==null?void 0:P.staticAssigned)==null?void 0:kt.dhcpGateway)&&(W.value=ge)}),R.dhcpGateway=((fe=P==null?void 0:P.staticAssigned)==null?void 0:fe.dhcpGateway)||k.value[0]||""):(W.value=k.value[0]||null,R.dhcpGateway=((pe=W.value)==null?void 0:pe.gateway)||""),R.action=((me=P==null?void 0:P.staticAssigned)==null?void 0:me.action)||"add",w.value=!0):K===3&&(V.value="",V.value=P.ip,y.value=!0)},W=E(k.value[0]||null),bt=()=>{var P,K,X;W.value?(R.dhcpGateway=((P=W.value)==null?void 0:P.gateway)||"",R.tagName=((K=W.value)==null?void 0:K.tagName)||"",R.tagTitle=((X=W.value)==null?void 0:X.tagTitle)||""):(R.dhcpGateway="",R.tagName="",R.tagTitle="")},Bt=(P,K)=>K?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[P].test(K.trim()):!1,gt=P=>/^([1-9]\d*(\.\d+)?|0\.\d*[1-9]\d*)$/.test(P.toString()),jt=()=>N(this,null,function*(){if(!R.hostname)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u540D\u79F0")}`);if(!R.assignedMac)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("MAC")}`);if(!Bt("mac",R.assignedMac))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684MAC\u5730\u5740")}`);if(!R.dhcpGateway)return $.Warning(`${a("\u8BF7\u9009\u62E9")}${a("\u7F51\u5173")}`);if(R.bindIP){if(!R.assignedIP)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("IP")}`);if(!Bt("ip",R.assignedIP))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`)}else R.assignedIP="";let P=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:K}=yield j.DeviceMangement.staticDeviceConfig.POST(R);JSON.stringify(K)==="{}"?(w.value=!1,Tt(),at(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((K==null?void 0:K.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(K){$.Warning(`${K==null?void 0:K.error} || ${K==null?void 0:K.message}`)}finally{P.Close()}}),Qt=()=>N(this,null,function*(){var K,X;if(!((X=(K=_.value)==null?void 0:K.speedLimit)!=null&&X.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"));if(z.networkAccess)z.downloadSpeed=0,z.uploadSpeed=0;else{if(!z.downloadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0B\u8F7D\u901F\u5EA6")}`);if(!gt(z.downloadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0B\u8F7D\u901F\u5EA6")}`);if(!z.uploadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0A\u4F20\u901F\u5EA6")}`);if(!gt(z.uploadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0A\u4F20\u901F\u5EA6")}`);z.downloadSpeed=Number(z.downloadSpeed),z.uploadSpeed=Number(z.uploadSpeed)}let P=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{z.networkAccess=!z.networkAccess;const{data:ot}=yield j.DeviceMangement.speedLimitConfig.POST(z);JSON.stringify(ot)==="{}"?(m.value=!1,Tt(),at(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((ot==null?void 0:ot.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(ot){$.Warning(`${ot==null?void 0:ot.error} || ${ot==null?void 0:ot.message}`)}finally{z.downloadSpeed=1e3,z.uploadSpeed=100,P.Close()}}),Tt=()=>{I.value={},W.value=k.value[0]||null,R.hostname="",R.assignedIP="",R.assignedMac="",R.bindIP=!1,R.dhcpGateway="",R.tagName="",R.tagTitle="",R.action="add",z.ip="",z.mac="",z.uploadSpeed=100,z.downloadSpeed=1e3,z.networkAccess=!1,z.comment="",z.action="add"},Lt=E([]),qe=E(null),at=()=>N(this,null,function*(){p.value=[],yield C()}),Z=P=>p.value.filter(K=>{const X=K.ip.includes(P),ot=K.mac.toLowerCase().includes(P.toLowerCase());return X||ot}),Ct=P=>{P===""&&(f.value=p.value),f.value=Z(P)},ut=()=>{if(Lt.value.length===0)return $.Warning(a("\u8BF7\u52FE\u9009\u8981\u5220\u9664\u7684\u6570\u636E")+" !")};return(P,K)=>(r(),d("div",gD,[t("div",vD,[B(fa,{onRefresh:at,showAdd:!1,showBatchDelete:!1,ref_key:"searchRef",ref:qe,onBatchDelete:ut,onSearch:Ct},null,512)]),t("div",null,[B(je,{data:f.value,columns:F.value,showPagination:!1},{action:G(({row:X})=>[t("span",{style:{color:"#553AFE",cursor:"pointer"},onClick:ot=>M(X,2)},i(e(a)("\u9759\u6001\u5206\u914D")),9,bD),t("span",{style:{color:"#553AFE",cursor:"pointer",margin:"0 8px"},onClick:ot=>M(X,1)},i(e(a)("\u9650\u901F\u914D\u7F6E")),9,hD),t("span",{style:{color:"#553AFE",margin:"0 8px",cursor:"pointer"},onClick:ot=>M(X,3)},i(e(a)("\u8BE6\u60C5")),9,_D)]),staticAssigned:G(({row:X})=>{var ot,xt;return[t("span",null,i(b((ot=X==null?void 0:X.staticAssigned)==null?void 0:ot.tagTitle)||b((xt=X==null?void 0:X.staticAssigned)==null?void 0:xt.tagName)||"-"),1)]}),_:1},8,["data","columns"])]),B(ee,{modelValue:m.value,"onUpdate:modelValue":K[6]||(K[6]=X=>m.value=X),title:"\u9650\u901F\u914D\u7F6E","show-close":!0,onConfirm:Qt,onCancel:Tt},{default:G(()=>{var X,ot,xt,St;return[t("div",xD,[t("div",wD,"IP: "+i(I.value.ip),1),t("div",kD,[t("div",yD,i(e(a)("\u5BF9\u8BBE\u5907\u5F00\u542F\u9650\u901F"))+"\uFF1A",1),B(Nt,{modelValue:e(z).enabled,"onUpdate:modelValue":K[0]||(K[0]=wt=>e(z).enabled=wt),disabled:!((ot=(X=_.value)==null?void 0:X.speedLimit)!=null&&ot.enabled),onBeforeChange:v},null,8,["modelValue","disabled"])]),(St=(xt=_.value)==null?void 0:xt.speedLimit)!=null&&St.enabled?D("",!0):(r(),d("div",FD,[t("a",{href:"",onClick:ct(h,["prevent"])},i(e(a)("\u70B9\u6211\u8DF3\u8F6C\u5168\u5C40\u914D\u7F6E")),9,ED)])),e(z).enabled?(r(),d("div",$D,[t("div",CD,[t("div",DD,i(e(a)("\u7981\u6B62\u8BE5\u8BBE\u5907\u8BBF\u95EE\u7F51\u7EDC"))+"\uFF1A",1),B(Nt,{modelValue:e(z).networkAccess,"onUpdate:modelValue":K[1]||(K[1]=wt=>e(z).networkAccess=wt),onChange:K[2]||(K[2]=()=>{})},null,8,["modelValue"])]),e(z).networkAccess?D("",!0):(r(),d(U,{key:0},[t("div",BD,[t("div",YD,i(e(a)("\u4E0B\u8F7D\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[3]||(K[3]=wt=>e(z).downloadSpeed=wt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,AD),[[et,e(z).downloadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",SD,[t("div",zD,i(e(a)("\u4E0A\u4F20\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[4]||(K[4]=wt=>e(z).uploadSpeed=wt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,PD),[[et,e(z).uploadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",TD,[t("div",ID,i(e(a)("\u6CE8\u89E3"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[5]||(K[5]=wt=>e(z).comment=wt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,MD),[[et,e(z).comment,void 0,{trim:!0}]])])],64))])):D("",!0)])]}),_:1},8,["modelValue"]),B(ee,{modelValue:w.value,"onUpdate:modelValue":K[12]||(K[12]=X=>w.value=X),title:"\u9759\u6001\u5206\u914D",width:"550px","show-close":!0,onConfirm:jt,onCancel:Tt},{default:G(()=>[t("div",LD,[OD,t("div",ND,[t("div",VD,i(e(a)("\u540D\u79F0"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text",onInput:l,"onUpdate:modelValue":K[7]||(K[7]=X=>e(R).hostname=X),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,40,GD),[[et,e(R).hostname,void 0,{trim:!0}]])]),t("div",jD,[UD,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[8]||(K[8]=X=>e(R).assignedMac=X),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,qD),[[et,e(R).assignedMac,void 0,{trim:!0}]])]),t("div",RD,[t("div",WD,i(e(a)("\u7F51\u5173"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":K[9]||(K[9]=X=>W.value=X),onChange:bt},[e(x)?(r(),d("option",HD,i(e(a)("\u8BF7\u9009\u62E9")),1)):D("",!0),(r(!0),d(U,null,tt(k.value,X=>(r(),d("option",{value:X},i(X.gateway)+"("+i(X.tagTitle?b(X.tagTitle):X.tagName?X.tagName:"-")+") ",9,JD))),256))],544),[[dt,W.value]])]),t("div",ZD,[t("div",KD,i(e(a)("MAC\u5730\u5740\u4E0EIP\u7ED1\u5B9A"))+"\uFF1A",1),B(Nt,{modelValue:e(R).bindIP,"onUpdate:modelValue":K[10]||(K[10]=X=>e(R).bindIP=X)},null,8,["modelValue"])]),e(R).bindIP?(r(),d("div",QD,[XD,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":K[11]||(K[11]=X=>e(R).assignedIP=X),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,tB),[[et,e(R).assignedIP,void 0,{trim:!0}]])])):D("",!0)])]),_:1},8,["modelValue"]),B(ee,{modelValue:y.value,"onUpdate:modelValue":K[13]||(K[13]=X=>y.value=X),title:"\u8BE6\u60C5",width:"550px",footerShow:!1,"show-close":!0,onCancel:Tt},{default:G(()=>{var X,ot,xt,St,wt;return[t("div",eB,[t("div",aB,[oB,t("div",nB,[t("div",iB,[t("div",rB,i(e(a)("\u540D\u79F0"))+"\uFF1A",1),nt(" "+i(I.value.hostname||"-"),1)]),t("div",sB,[t("div",dB,i(e(a)("IP\u5730\u5740"))+"\uFF1A",1),nt(" "+i(I.value.ip),1)]),t("div",lB,[cB,nt(" "+i(I.value.mac),1)]),t("div",uB,[t("div",pB,i(e(a)("\u7F51\u5173"))+"\uFF1A",1),nt(" "+i(((X=I.value)==null?void 0:X.staticAssigned.dhcpGateway)||"-"),1)]),t("div",fB,[t("div",mB,i(e(a)("\u63A5\u53E3"))+"\uFF1A",1),nt(" "+i(Y(I.value.intr)||"-"),1)]),t("div",gB,[t("div",vB,i(e(a)("\u6807\u7B7E"))+"\uFF1A",1),nt(" "+i(((xt=(ot=I.value)==null?void 0:ot.staticAssigned)==null?void 0:xt.tagTitle)||((wt=(St=I.value)==null?void 0:St.staticAssigned)==null?void 0:wt.tagName)||"-"),1)])])]),V.value?(r(),J(lD,{key:0,ipParam:V.value},null,8,["ipParam"])):D("",!0)])]}),_:1},8,["modelValue"])]))}});var hB=O(bB,[["__scopeId","data-v-2f8a90b2"]]);const ma=o=>(it("data-v-0ad740fc"),o=o(),rt(),o),_B={class:"container"},xB={style:{display:"flex","justify-content":"end"}},wB=["onClick"],kB={class:"custom-content"},yB=ma(()=>t("div",{class:"img_box"},[t("img",{src:"https://fwindex.koolcenter.com/cover/x86_64/cover.png",alt:""})],-1)),FB={class:"item_box"},EB={class:"item_left"},$B=["placeholder"],CB={class:"item_box"},DB=ma(()=>t("div",{class:"item_left"},"MAC\uFF1A",-1)),BB=["placeholder"],YB={class:"item_box"},AB={class:"item_left"},SB={key:0,value:null,disabled:""},zB=["value"],PB={class:"item_box"},TB={class:"item_left"},IB={key:0,class:"item_box"},MB=ma(()=>t("div",{class:"item_left"},"IP\uFF1A",-1)),LB=["placeholder"],OB=T({setup(o){const{$gettext:n}=H(),a=E([]);(()=>N(this,null,function*(){var I;try{const{data:M}=yield j.DeviceMangement.globalConfigs.GET();M.result&&(a.value=((I=M.result)==null?void 0:I.dhcpTags)||[])}catch(M){}}))();const c=E([]),s=E([]),u=E(!1),_=E([{label:"\u4E3B\u673A\u540D\u79F0",prop:"hostname"},{label:"IP\u5730\u5740",prop:"assignedIP"},{label:"MAC\u5730\u5740",prop:"assignedMac"},{label:"\u9759\u6001IP\u7ED1\u5B9A",prop:"bindIP",slot:"bindIP"},{label:"\u6807\u7B7E",prop:"tagTitle",slot:"tagTitle"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),g=I=>({default:n("\u9ED8\u8BA4\u7F51\u5173"),parent:n("\u4E0A\u7EA7\u8DEF\u7531"),myself:n("\u672C\u8BBE\u5907"),bypass:n("\u65C1\u8DEF\u7531"),floatip:n("\u6D6E\u52A8\u7F51\u5173")})[I]||I,p=I=>{Y.hostname=I.target.value.replace(/[\u4e00-\u9fa5]/g,"")},f=()=>N(this,null,function*(){let I=$.Loading(n("\u52A0\u8F7D\u4E2D..."));try{const{data:M}=yield j.DeviceMangement.listStaticDevices.GET();M.result&&(c.value=M.result||[],s.value=M.result||[])}catch(M){}finally{I.Close()}});f();const m=E(!0),w=E([]),y=I=>{w.value=I},x=()=>N(this,null,function*(){c.value=[];let I=$.Loading(n("\u52A0\u8F7D\u4E2D..."));yield f(),I.Close()}),F=I=>c.value.filter(M=>{const W=M.assignedIP.includes(I),bt=M.assignedMac.toLowerCase().includes(I.toLowerCase());return W||bt}),b=I=>{I===""&&(s.value=c.value),s.value=F(I)},h=I=>N(this,null,function*(){if(confirm(n("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9759\u6001\u5206\u914D\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u8054\u7F51\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))){let M={hostname:I.hostname||"",assignedIP:I.assignedIP||"",assignedMac:I.assignedMac||"",tagTitle:I.tagTitle||"",bindIP:I.bindIP||!1,tagName:I.tagName||"",dhcpGateway:I.dhcpGateway||"",action:"delete"};v(M,1)}}),v=(I,M)=>N(this,null,function*(){let W=$.Loading(n("\u5220\u9664\u4E2D..."));try{const{data:bt}=yield j.DeviceMangement.staticDeviceConfig.POST(I);return M==1&&(JSON.stringify(bt)==="{}"?$.Success("\u5220\u9664\u6210\u529F !"):$.Success((bt==null?void 0:bt.error)||"\u5220\u9664\u5931\u8D25\uFF01"),f()),bt}catch(bt){}finally{W.Close()}}),k=()=>N(this,null,function*(){if(w.value.length===0)return $.Warning(n("\u8BF7\u52FE\u9009\u8981\u5220\u9664\u7684\u6570\u636E")+" !");if(confirm(n("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9759\u6001\u5206\u914D\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u8054\u7F51\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01")))try{const I=w.value.map(M=>{const W={hostname:M.hostname||"",assignedIP:M.assignedIP||"",assignedMac:M.assignedMac||"",tagTitle:M.tagTitle||"",bindIP:M.bindIP||!1,tagName:M.tagName||"",dhcpGateway:M.dhcpGateway||"",action:"delete"};return v(W)});yield Promise.all(I),$.Success(n("\u6240\u6709\u5220\u9664\u64CD\u4F5C\u5DF2\u5B8C\u6210")),f()}catch(I){}}),C=Q(()=>!Y.dhcpGateway),A=E(null),S=()=>{var I,M,W;A.value?(Y.dhcpGateway=((I=A.value)==null?void 0:I.gateway)||"",Y.tagName=((M=A.value)==null?void 0:M.tagName)||"",Y.tagTitle=((W=A.value)==null?void 0:W.tagTitle)||""):(Y.dhcpGateway="",Y.tagName="",Y.tagTitle="")},Y=mt({hostname:"",assignedIP:"",assignedMac:"",bindIP:!1,tagTitle:"",tagName:"",dhcpGateway:"",action:"add"}),z=(I,M)=>M?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[I].test(M.trim()):!1,R=()=>N(this,null,function*(){if(!Y.assignedMac)return $.Warning(`${n("\u8BF7\u8F93\u5165")}${n("MAC")}`);if(!z("mac",Y.assignedMac))return $.Warning(`${n("\u8BF7\u8F93\u5165\u6B63\u786E\u7684MAC\u5730\u5740")}`);if(!Y.dhcpGateway)return $.Warning(`${n("\u8BF7\u9009\u62E9")}${n("\u7F51\u5173")}`);if(Y.bindIP){if(!Y.assignedIP)return $.Warning(`${n("\u8BF7\u8F93\u5165")}${n("IP")}`);if(!z("ip",Y.assignedIP))return $.Warning(`${n("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`)}else Y.assignedIP="";let I=$.Loading(n("\u4FDD\u5B58\u4E2D..."));try{const{data:M}=yield j.DeviceMangement.staticDeviceConfig.POST(Y);JSON.stringify(M)==="{}"?(u.value=!1,V(),x(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((M==null?void 0:M.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(M){$.Warning(`${M==null?void 0:M.error} || ${M==null?void 0:M.message}`)}finally{I.Close()}}),V=()=>{A.value=null,Y.hostname="",Y.assignedIP="",Y.assignedMac="",Y.bindIP=!1,Y.dhcpGateway="",Y.tagName="",Y.tagTitle="",Y.action="add"};return(I,M)=>(r(),d("div",_B,[t("div",xB,[B(fa,{onHandleAdd:M[0]||(M[0]=W=>u.value=!0),onRefresh:x,onBatchDelete:k,onSearch:b})]),t("div",null,[B(je,{data:s.value,columns:_.value,rowKey:"assignedMac",showSelection:m.value,showPagination:!1,onSelectionChange:y},{action:G(({row:W})=>[t("button",{class:"del-button del-button--danger",onClick:bt=>h(W)},[t("span",null,i(e(n)("\u5220\u9664")),1)],8,wB)]),tagTitle:G(({row:W})=>[t("span",null,i(g(W==null?void 0:W.tagTitle)||g(W==null?void 0:W.tagName)||"-"),1)]),bindIP:G(({row:W})=>[t("span",null,i(W!=null&&W.bindIP?e(n)("\u662F"):e(n)("\u5426")),1)]),_:1},8,["data","columns","showSelection"])]),B(ee,{modelValue:u.value,"onUpdate:modelValue":M[6]||(M[6]=W=>u.value=W),title:"\u9759\u6001\u5206\u914D",width:"550px","show-close":!0,onConfirm:R,onCancel:V},{default:G(()=>[t("div",kB,[yB,t("div",FB,[t("div",EB,i(e(n)("\u540D\u79F0"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text",onInput:p,"onUpdate:modelValue":M[1]||(M[1]=W=>e(Y).hostname=W),placeholder:e(n)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,40,$B),[[et,e(Y).hostname,void 0,{trim:!0}]])]),t("div",CB,[DB,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":M[2]||(M[2]=W=>e(Y).assignedMac=W),placeholder:e(n)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,BB),[[et,e(Y).assignedMac,void 0,{trim:!0}]])]),t("div",YB,[t("div",AB,i(e(n)("\u7F51\u5173"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":M[3]||(M[3]=W=>A.value=W),onChange:S},[e(C)?(r(),d("option",SB,i(e(n)("\u8BF7\u9009\u62E9")),1)):D("",!0),(r(!0),d(U,null,tt(a.value,W=>(r(),d("option",{value:W},i(W.gateway)+"("+i(W.tagTitle?g(W.tagTitle):W.tagName?W.tagName:"-")+") ",9,zB))),256))],544),[[dt,A.value]])]),t("div",PB,[t("div",TB,i(e(n)("MAC\u5730\u5740\u4E0EIP\u7ED1\u5B9A"))+"\uFF1A",1),B(Nt,{modelValue:e(Y).bindIP,"onUpdate:modelValue":M[4]||(M[4]=W=>e(Y).bindIP=W)},null,8,["modelValue"])]),e(Y).bindIP?(r(),d("div",IB,[MB,L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":M[5]||(M[5]=W=>e(Y).assignedIP=W),placeholder:e(n)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,LB),[[et,e(Y).assignedIP,void 0,{trim:!0}]])])):D("",!0)])]),_:1},8,["modelValue"])]))}});var NB=O(OB,[["__scopeId","data-v-0ad740fc"]]);const VB={class:"container"},GB={style:{display:"flex","justify-content":"end"}},jB=["onClick"],UB={class:"custom-content"},qB={class:"item_box"},RB={class:"item_left"},WB={class:"item_box"},HB={class:"item_left"},JB=["placeholder"],ZB={class:"item_box"},KB={class:"item_left"},QB=["placeholder"],XB={key:0,class:"tip"},tY=["onClick"],eY={key:1},aY={class:"item_box"},oY={class:"item_left"},nY={class:"item_box"},iY={class:"item_left"},rY=["placeholder"],sY={class:"item_box"},dY={class:"item_left"},lY=["placeholder"],cY={class:"item_box"},uY={class:"item_left"},pY=["placeholder"],fY=T({emits:["openGloba"],setup(o,{emit:n}){const{$gettext:a}=H(),l=E({});(()=>N(this,null,function*(){try{const{data:V}=yield j.DeviceMangement.globalConfigs.GET();V.result&&(l.value=V.result||{})}catch(V){}}))();const s=E([]),u=E([]),_=E(!1),g=E([{label:"\u4E3B\u673A\u540D\u79F0",prop:"hostname"},{label:"IP\u5730\u5740",prop:"ip"},{label:"MAC\u5730\u5740",prop:"mac"},{label:"\u7981\u6B62\u7F51\u7EDC\u8BBF\u95EE",prop:"enabled",slot:"enabled"},{label:"\u4E0A\u4F20\u9650\u901F\uFF08Mbit/s\uFF09",prop:"uploadSpeed",slot:"uploadSpeed"},{label:"\u4E0B\u8F7D\u9650\u901F\uFF08Mbit/s\uFF09",prop:"downloadSpeed",slot:"downloadSpeed"},{label:"\u6CE8\u89E3",prop:"comment"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),p=()=>N(this,null,function*(){let V=$.Loading(a("\u52A0\u8F7D\u4E2D..."));try{const{data:I}=yield j.DeviceMangement.listSpeedLimitedDevices.GET();I.result&&(s.value=I.result||[],u.value=I.result||[])}catch(I){}finally{V.Close()}});p();const f=E(!0),m=E([]),w=V=>{m.value=V},y=()=>N(this,null,function*(){s.value=[];let V=$.Loading(a("\u52A0\u8F7D\u4E2D..."));yield p(),V.Close()}),x=V=>s.value.filter(I=>{const M=I.ip.includes(V),W=I.mac.toLowerCase().includes(V.toLowerCase());return M||W}),F=V=>{V===""&&(u.value=s.value),u.value=x(V)},b=V=>N(this,null,function*(){if(confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9650\u901F\u914D\u7F6E\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u5E26\u5BBD\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))){let I={ip:V.ip||"",mac:V.mac||"",uploadSpeed:V.uploadSpeed||0,downloadSpeed:V.downloadSpeed||0,networkAccess:V.networkAccess||!1,comment:"",action:"delete"};h(I,1)}}),h=(V,I)=>N(this,null,function*(){let M=$.Loading(a("\u5220\u9664\u4E2D..."));try{const{data:W}=yield j.DeviceMangement.speedLimitConfig.POST(V);return I==1&&(JSON.stringify(W)==="{}"?$.Success("\u5220\u9664\u6210\u529F !"):$.Success((W==null?void 0:W.error)||"\u5220\u9664\u5931\u8D25\uFF01"),p()),W}catch(W){}finally{M.Close()}}),v=()=>N(this,null,function*(){if(m.value.length===0)return $.Warning(a("\u8BF7\u52FE\u9009\u8981\u5220\u9664\u7684\u6570\u636E")+" !");if(confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u8BBE\u5907\u7684\u9650\u901F\u914D\u7F6E\u53EF\u80FD\u5F71\u54CD\u6B64\u8BBE\u5907\u7684\u5E26\u5BBD\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01")))try{const V=m.value.map(I=>{const M={ip:I.ip||"",mac:I.mac||"",uploadSpeed:I.uploadSpeed||0,downloadSpeed:I.downloadSpeed||0,networkAccess:I.networkAccess||!1,comment:"",action:"delete"};return h(M)});yield Promise.all(V),$.Success(a("\u6240\u6709\u5220\u9664\u64CD\u4F5C\u5DF2\u5B8C\u6210")),p()}catch(V){}}),k=()=>{_.value=!1,n("openGloba")},C=V=>{var I,M;if(V==!0&&!((M=(I=l.value)==null?void 0:I.speedLimit)!=null&&M.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"))},A=mt({ip:"",mac:"",uploadSpeed:100,downloadSpeed:1e3,networkAccess:!1,enabled:!1,comment:"",action:"add"}),S=V=>/^([1-9]\d*(\.\d+)?|0\.\d*[1-9]\d*)$/.test(V.toString()),Y=(V,I)=>I?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[V].test(I.trim()):!1,z=()=>N(this,null,function*(){var I,M;if(!((M=(I=l.value)==null?void 0:I.speedLimit)!=null&&M.enabled))return $.Warning(a("\u8BF7\u524D\u5F80\u5168\u5C40\u914D\u7F6E\u5F00\u542F\u9650\u901F"));if(!A.ip)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("IP")}`);if(!Y("ip",A.ip))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`);if(!A.mac)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("MAC")}`);if(!Y("mac",A.mac))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684MAC\u5730\u5740")}`);if(A.networkAccess)A.downloadSpeed=0,A.uploadSpeed=0;else{if(!A.downloadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0B\u8F7D\u901F\u5EA6")}`);if(!S(A.downloadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0B\u8F7D\u901F\u5EA6")}`);if(!A.uploadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0A\u4F20\u901F\u5EA6")}`);if(!S(A.uploadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0A\u4F20\u901F\u5EA6")}`);A.downloadSpeed=Number(A.downloadSpeed),A.uploadSpeed=Number(A.uploadSpeed)}let V=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{A.networkAccess=!A.networkAccess;const{data:W}=yield j.DeviceMangement.speedLimitConfig.POST(A);JSON.stringify(W)==="{}"?(y(),$.Success("\u4FDD\u5B58\u6210\u529F !")):$.Success((W==null?void 0:W.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01"),_.value=!1,R()}catch(W){$.Warning(`${W==null?void 0:W.error} || ${W==null?void 0:W.message}`)}finally{A.downloadSpeed=1e3,A.uploadSpeed=100,V.Close()}}),R=()=>{A.ip="",A.mac="",A.uploadSpeed=100,A.downloadSpeed=1e3,A.networkAccess=!1,A.comment="",A.action="add"};return(V,I)=>(r(),d("div",VB,[t("div",GB,[B(fa,{onHandleAdd:I[0]||(I[0]=M=>_.value=!0),onRefresh:y,onBatchDelete:v,onSearch:F})]),t("div",null,[B(je,{data:u.value,columns:g.value,rowKey:"mac",showSelection:f.value,showPagination:!1,onSelectionChange:w},{action:G(({row:M})=>[t("button",{class:"del-button del-button--danger",onClick:W=>b(M)},[t("span",null,i(e(a)("\u5220\u9664")),1)],8,jB)]),enabled:G(({row:M})=>[t("span",null,i(M!=null&&M.enabled?e(a)("\u662F"):e(a)("\u5426")),1)]),uploadSpeed:G(({row:M})=>[t("span",null,i((M==null?void 0:M.uploadSpeed)||"-")+" "+i(M!=null&&M.uploadSpeed?"Mbit/s":""),1)]),downloadSpeed:G(({row:M})=>[t("span",null,i((M==null?void 0:M.downloadSpeed)||"-")+" "+i(M!=null&&M.downloadSpeed?"Mbit/s":""),1)]),_:1},8,["data","columns","showSelection"])]),B(ee,{modelValue:_.value,"onUpdate:modelValue":I[9]||(I[9]=M=>_.value=M),title:"\u9650\u901F\u914D\u7F6E","show-close":!0,onConfirm:z,onCancel:R},{default:G(()=>{var M,W,bt,Bt;return[t("div",UB,[t("div",qB,[t("div",RB,i(e(a)("\u5BF9\u8BBE\u5907\u5F00\u542F\u9650\u901F"))+"\uFF1A",1),B(Nt,{modelValue:e(A).enabled,"onUpdate:modelValue":I[1]||(I[1]=gt=>e(A).enabled=gt),disabled:!((W=(M=l.value)==null?void 0:M.speedLimit)!=null&&W.enabled),onBeforeChange:C},null,8,["modelValue","disabled"])]),t("div",WB,[t("div",HB,i(e(a)("IP\u5730\u5740"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[2]||(I[2]=gt=>e(A).ip=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,JB),[[et,e(A).ip,void 0,{trim:!0}]])]),t("div",ZB,[t("div",KB,i(e(a)("MAC\u5730\u5740"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[3]||(I[3]=gt=>e(A).mac=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,QB),[[et,e(A).mac,void 0,{trim:!0}]])]),(Bt=(bt=l.value)==null?void 0:bt.speedLimit)!=null&&Bt.enabled?D("",!0):(r(),d("div",XB,[t("a",{href:"",onClick:ct(k,["prevent"])},i(e(a)("\u70B9\u6211\u8DF3\u8F6C\u5168\u5C40\u914D\u7F6E")),9,tY)])),e(A).enabled?(r(),d("div",eY,[t("div",aY,[t("div",oY,i(e(a)("\u7981\u6B62\u8BE5\u8BBE\u5907\u8BBF\u95EE\u7F51\u7EDC"))+"\uFF1A",1),B(Nt,{modelValue:e(A).networkAccess,"onUpdate:modelValue":I[4]||(I[4]=gt=>e(A).networkAccess=gt),onChange:I[5]||(I[5]=()=>{})},null,8,["modelValue"])]),e(A).networkAccess?D("",!0):(r(),d(U,{key:0},[t("div",nY,[t("div",iY,i(e(a)("\u4E0B\u8F7D\u9650\u901F\uFF08Mbit/s\uFF09"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[6]||(I[6]=gt=>e(A).downloadSpeed=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,rY),[[et,e(A).downloadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",sY,[t("div",dY,i(e(a)("\u4E0A\u4F20\u9650\u901F\uFF08Mbit/s\uFF09"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[7]||(I[7]=gt=>e(A).uploadSpeed=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,lY),[[et,e(A).uploadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",cY,[t("div",uY,i(e(a)("\u6CE8\u89E3"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":I[8]||(I[8]=gt=>e(A).comment=gt),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,pY),[[et,e(A).comment,void 0,{trim:!0}]])])],64))])):D("",!0)])]}),_:1},8,["modelValue"])]))}});var mY=O(fY,[["__scopeId","data-v-1c110960"]]);const ga=o=>(it("data-v-15068472"),o=o(),rt(),o),gY={key:0,class:"dialog-overlay"},vY={class:"dialog-container"},bY={class:"dialog-title"},hY=ga(()=>t("div",{class:"loading-animation"},[t("div",{class:"spinner"})],-1)),_Y={class:"dialog-message"},xY={key:0,class:"dialog-overlay"},wY={class:"dialog-container"},kY={class:"dialog-title"},yY=ga(()=>t("div",{style:{display:"flex","justify-content":"center"}},[t("svg",{t:"1752661662572",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5921",width:"50",height:"50"},[t("path",{d:"M0 512C0 229.234759 229.234759 0 512 0s512 229.234759 512 512-229.234759 512-512 512S0 794.765241 0 512z m419.310345 194.630621a35.310345 35.310345 0 0 0 49.399172 1.271172l335.518897-311.931586a35.310345 35.310345 0 0 0-48.075035-51.729655l-309.124413 289.544827-145.125518-149.645241a35.310345 35.310345 0 1 0-50.688 49.169655l168.112552 173.320828z",fill:"#553afe","p-id":"5922"})])],-1)),FY={class:"dialog-message"},EY={key:0,class:"dialog-overlay"},$Y={class:"dialog-container tag-dialog"},CY={class:"dialog-title"},DY={class:"warning-message"},BY=ga(()=>t("svg",{class:"warning-icon",viewBox:"0 0 24 24"},[t("path",{fill:"currentColor",d:"M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16"})],-1)),YY={class:"input-group"},AY={for:"tagTitle"},SY=["placeholder"],zY={class:"input-group"},PY={for:"tagName"},TY=["disabled","placeholder"],IY={class:"input-group"},MY={for:"gateway"},LY=["placeholder"],OY={class:"button-group"},NY=T({props:{title:{type:String,required:!0}},emits:["confirm","update:modelValue"],setup(o,{expose:n,emit:a}){const{$gettext:l}=H(),c=E("install"),s=E(!1),u=E(!1),_=E(!1),g=E(""),p=E(""),f=E(""),m=()=>{c.value="install",s.value=!0},w=()=>{s.value=!1},y=()=>{s.value=!1,setTimeout(()=>{u.value=!0},300)},x=()=>{u.value=!1},F=E("1"),b=()=>{c.value="tag",F.value="1",p.value="",g.value="",f.value="",_.value=!0},h=()=>{c.value="tag",F.value="2",_.value=!0},v=()=>{_.value=!1},k=S=>{p.value=S.target.value.replace(/[\u4e00-\u9fa5]/g,"")},C=(S,Y)=>Y?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[S].test(Y.trim()):!1,A=()=>{if(!C("ip",f.value.trim()))return $.Warning(`${l("\u8BF7\u8F93\u5165\u6B63\u786E\u7684IP\u5730\u5740")}`);g.value.trim()&&p.value.trim()&&f.value.trim()&&(a("confirm",{tagTitle:g.value.trim(),tagName:p.value.trim(),gateway:f.value.trim(),type:F.value}),v())};return Yt(g,S=>{a("update:modelValue",S)}),Yt(p,S=>{a("update:modelValue",S)}),Yt(f,S=>{a("update:modelValue",S)}),n({tagTitle:g,tagName:p,gateway:f,openInstallDialog:m,showInstallResult:y,openTagDialog:b,closeTagDialog:v,cancelInstall:w,openEditTagDialog:h}),(S,Y)=>(r(),d(U,null,[B($t,{name:"fade"},{default:G(()=>[s.value&&c.value==="install"?(r(),d("div",gY,[t("div",vY,[t("div",bY,i(o.title),1),hY,t("p",_Y,i(e(l)("\u6B63\u5728\u5B89\u88C5"))+"...",1),t("button",{class:"dialog-button",onClick:w},i(e(l)("\u5173\u95ED")),1)])])):D("",!0)]),_:1}),B($t,{name:"fade"},{default:G(()=>[u.value&&c.value==="install"?(r(),d("div",xY,[t("div",wY,[t("div",kY,i(e(l)("\u7ED3\u679C")),1),yY,t("p",FY,i(e(l)("\u5B89\u88C5\u6210\u529F"))+"\uFF01",1),t("button",{class:"dialog-button",onClick:x},i(e(l)("\u786E\u5B9A")),1)])])):D("",!0)]),_:1}),B($t,{name:"fade"},{default:G(()=>[_.value&&c.value==="tag"?(r(),d("div",EY,[t("div",$Y,[t("div",CY,i(F.value==="1"?e(l)("\u6DFB\u52A0\u6807\u7B7E"):e(l)("\u7F16\u8F91\u6807\u7B7E")),1),t("div",DY,[BY,t("span",null,i(e(l)("\u6CE8\u610F\uFF1A\u6DFB\u52A0ID\u65F6\uFF0C\u8BF7\u52FF\u5C06\u201Codhcpd\u201D\u6216\u7F51\u7EDC\u63A5\u53E3\uFF08\u4F8B\u5982\u201Clan\u201D,\u201Cwan\u201D,\u201Cwan6\u201D\u7B49\uFF09\u4F5C\u4E3AID\uFF0C\u6B64\u4E3E\u5C06\u4EA7\u751F\u51B2\u7A81\u3002\u5EFA\u8BAE\u5728ID\u524D\u9762\u52A0\u4E0A\u524D\u7F00\u201Ct_\u201D\u4EE5\u675C\u7EDD\u6B64\u7C7B\u51B2\u7A81\u3002")),1)]),t("div",YY,[t("label",AY,i(e(l)("\u6807\u9898"))+"\uFF1A",1),L(t("input",{id:"tagTitle","onUpdate:modelValue":Y[0]||(Y[0]=z=>g.value=z),type:"text",placeholder:e(l)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,SY),[[et,g.value]])]),t("div",zY,[t("label",PY,i(e(l)("ID"))+"\uFF1A",1),L(t("input",{id:"tagName","onUpdate:modelValue":Y[1]||(Y[1]=z=>p.value=z),onInput:k,disabled:F.value=="2",type:"text",placeholder:e(l)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,40,TY),[[et,p.value]])]),t("div",IY,[t("label",MY,i(e(l)("\u7F51\u5173"))+"\uFF1A",1),L(t("input",{id:"gateway","onUpdate:modelValue":Y[2]||(Y[2]=z=>f.value=z),type:"text",placeholder:e(l)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,LY),[[et,f.value]])]),t("div",OY,[t("button",{class:"cancel-button",onClick:v},i(e(l)("\u53D6\u6D88")),1),t("button",{class:"confirm-button",onClick:A},i(e(l)("\u786E\u5B9A")),1)])])])):D("",!0)]),_:1})],64))}});var VY=O(NY,[["__scopeId","data-v-15068472"]]);const io=o=>(it("data-v-66e54129"),o=o(),rt(),o),GY={class:"tab-container"},jY={class:"tab-header"},UY=["onClick"],qY={class:"tab-content_g"},RY={key:0,class:"not_installed"},WY=io(()=>t("svg",{t:"1752659436579",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4943",width:"150",height:"150"},[t("path",{d:"M216.896 97.232l-55.792 106.24 704.784 8.928-24.352-75.888-38.496-39.28z",fill:"#FFFFFF","p-id":"4944"}),t("path",{d:"M192.016 255.968h655.968v592H192.016z",fill:"#FFFFFF","p-id":"4945"}),t("path",{d:"M921.904 187.008l-66.72-80.656a69.744 69.744 0 0 0-55.168-26.32h-576a71.296 71.296 0 0 0-55.664 26.416l-66.256 80.56a93.984 93.984 0 0 0-22.08 61.024v600a96.288 96.288 0 0 0 96 96h672a96.288 96.288 0 0 0 96-96v-600a93.984 93.984 0 0 0-22.112-61.024zM512.016 777.856L246.128 512.032h166.144v-132.976h199.392v132.976h166.128zM179.664 179.664l33.152-66.464h598.128l33.2 66.464z",fill:"#909399","p-id":"4946"})],-1)),HY={key:1},JY={class:"item_box"},ZY={class:"item_left"},KY={class:"item_box"},QY={class:"item_left"},XY=["placeholder"],tA={class:"item_box"},eA={class:"item_left"},aA=["placeholder"],oA={class:"item_box"},nA={class:"item_left"},iA={key:0,class:"not_installed"},rA=io(()=>t("svg",{t:"1752659436579",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4943",width:"150",height:"150"},[t("path",{d:"M216.896 97.232l-55.792 106.24 704.784 8.928-24.352-75.888-38.496-39.28z",fill:"#FFFFFF","p-id":"4944"}),t("path",{d:"M192.016 255.968h655.968v592H192.016z",fill:"#FFFFFF","p-id":"4945"}),t("path",{d:"M921.904 187.008l-66.72-80.656a69.744 69.744 0 0 0-55.168-26.32h-576a71.296 71.296 0 0 0-55.664 26.416l-66.256 80.56a93.984 93.984 0 0 0-22.08 61.024v600a96.288 96.288 0 0 0 96 96h672a96.288 96.288 0 0 0 96-96v-600a93.984 93.984 0 0 0-22.112-61.024zM512.016 777.856L246.128 512.032h166.144v-132.976h199.392v132.976h166.128zM179.664 179.664l33.152-66.464h598.128l33.2 66.464z",fill:"#909399","p-id":"4946"})],-1)),sA={key:1},dA={class:"item_box"},lA={class:"item_left"},cA={class:"item_box"},uA={class:"item_left"},pA={key:0,value:"",disabled:""},fA=["value"],mA={class:"item_box"},gA={class:"item_left"},vA=["placeholder"],bA={class:"item_box"},hA={class:"item_left"},_A=["placeholder"],xA={class:"item_box"},wA={class:"item_left"},kA={style:{"margin-bottom":"16px"}},yA={class:"item_box"},FA={class:"item_left"},EA={class:"item_box"},$A={class:"item_left"},CA=["value"],DA={class:"item_box"},BA={class:"item_left"},YA={style:{display:"flex","justify-content":"end","margin-bottom":"8px"}},AA=["onClick"],SA=["onClick"],zA=T({setup(o,{expose:n}){const{$gettext:a}=H(),l=Q(()=>!p.role),c=E([]),s=E([{label:"\u6807\u9898",prop:"tagTitle",slot:"tagTitle"},{label:"ID",prop:"tagName",slot:"tagName"},{label:"\u7F51\u5173",prop:"gateway",slot:"gateway"},{label:"\u64CD\u4F5C",prop:"action",slot:"action"}]),u=E([{name:a("\u4E3B\u8DEF\u7531"),value:"fallback"},{name:a("\u65C1\u8DEF\u7531"),value:"main"}]),_=mt({dhcpEnabled:!1,dhcpGateway:""}),g=mt({enabled:!1,uploadSpeed:"",downloadSpeed:"",installed:!0}),p=mt({enabled:!1,role:"",setIP:"",checkIP:""}),f=E({}),m=()=>N(this,null,function*(){var at,Z,Ct,ut,P,K,X,ot,xt,St,wt,ne,ie,re,se,de,le,ce,ue,pe,fe,me,ge;try{const{data:kt}=yield j.DeviceMangement.globalConfigs.GET();if(kt.result){if(f.value=kt.result||{},_.dhcpEnabled=((Z=(at=kt.result)==null?void 0:at.dhcpGlobal)==null?void 0:Z.dhcpEnabled)||!1,(ut=(Ct=kt.result)==null?void 0:Ct.dhcpGlobal)!=null&&ut.dhcpGateway)_.dhcpGateway=(K=(P=kt.result)==null?void 0:P.dhcpGlobal)==null?void 0:K.dhcpGateway;else{const ba=(ot=(X=kt.result)==null?void 0:X.dhcpGlobal)==null?void 0:ot.gatewaySels.find(lo=>lo.title==="myself");ba?_.dhcpGateway=ba.gateway:_.dhcpGateway=""}c.value=((xt=kt.result)==null?void 0:xt.dhcpTags)||[],g.enabled=((wt=(St=kt.result)==null?void 0:St.speedLimit)==null?void 0:wt.enabled)||!1,g.uploadSpeed=((ie=(ne=kt.result)==null?void 0:ne.speedLimit)==null?void 0:ie.uploadSpeed)||"",g.downloadSpeed=((se=(re=kt.result)==null?void 0:re.speedLimit)==null?void 0:se.downloadSpeed)||"",p.enabled=((le=(de=kt.result)==null?void 0:de.floatGateway)==null?void 0:le.enabled)||!1,p.role=((ue=(ce=kt.result)==null?void 0:ce.floatGateway)==null?void 0:ue.role)||"",p.setIP=((fe=(pe=kt.result)==null?void 0:pe.floatGateway)==null?void 0:fe.setIP)||"",p.checkIP=((ge=(me=kt.result)==null?void 0:me.floatGateway)==null?void 0:ge.checkIP)||""}}catch(kt){}});m();const w=()=>N(this,null,function*(){let at=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:Z}=yield j.DeviceMangement.dhcpGatewayConfig.POST(_);JSON.stringify(Z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((Z==null?void 0:Z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(Z){$.Warning(`${Z==null?void 0:Z.error} || ${Z==null?void 0:Z.message}`)}finally{at.Close()}}),y=(at,Z)=>N(this,null,function*(){let Ct=$.Loading(a("\u68C0\u67E5\u4E2D..."));try{const ut=yield j.App.Check.POST({name:at});if(Ct.Close(),ut!=null&&ut.data){const{result:P,error:K}=ut.data;if(K)$.Warning(K);else{if(P)return P.status=="installed";$.Warning(a("\u68C0\u67E5\u63D2\u4EF6\u72B6\u6001\u5931\u8D25"))}}return!1}catch(ut){return Ct.Close(),$.Warning(ut),!1}}),x=E(!1),F=E(!1),b=()=>N(this,null,function*(){(yield y("app-meta-floatip"))&&(F.value=!0)}),h=()=>N(this,null,function*(){(yield y("app-meta-eqos"))&&(x.value=!0)});b(),h();const v=[{id:"tag",label:a("DHCP")},{id:"gateway",label:a("\u6D6E\u52A8\u7F51\u5173")},{id:"ip",label:a("IP\u9650\u901F")}],k=E("tag");n({activeTab:k});const C=at=>{k.value=at},A=E(),S=at=>({default:a("\u9ED8\u8BA4\u7F51\u5173"),parent:a("\u4E0A\u7EA7\u8DEF\u7531"),myself:a("\u672C\u8BBE\u5907"),bypass:a("\u65C1\u8DEF\u7531"),floatip:a("\u6D6E\u52A8\u7F51\u5173")})[at]||at,Y=E("app-meta-floatip"),z=Q(()=>Y.value==="app-meta-floatip"?a("\u6D6E\u52A8\u7F51\u5173"):a("IP\u9650\u901F")),R=at=>N(this,null,function*(){if(Y.value=at,A.value.openInstallDialog(),yield Dt.installApp(at))return at=="app-meta-floatip"?b():h(),A.value.showInstallResult(),!0;A.value.cancelInstall(),$.Error(a("\u5B89\u88C5\u5931\u8D25\u6216\u8D85\u65F6\uFF0C\u8BF7\u68C0\u67E5\u8F6F\u4EF6\u6E90\u6216\u7A0D\u5019\u91CD\u8BD5"))}),V=at=>/^([1-9]\d*(\.\d+)?|0\.\d*[1-9]\d*)$/.test(at.toString()),I=()=>N(this,null,function*(){if(g.enabled){if(!g.downloadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0B\u8F7D\u901F\u5EA6")}`);if(!V(g.downloadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0B\u8F7D\u901F\u5EA6")}`);if(!g.uploadSpeed)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u4E0A\u4F20\u901F\u5EA6")}`);if(!V(g.uploadSpeed))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u4E0A\u4F20\u901F\u5EA6")}`);g.downloadSpeed=Number(g.downloadSpeed),g.uploadSpeed=Number(g.uploadSpeed)}else g.downloadSpeed=0,g.uploadSpeed=0;let at=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:Z}=yield j.DeviceMangement.enableSpeedLimit.POST(g);JSON.stringify(Z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((Z==null?void 0:Z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(Z){$.Warning(`${Z==null?void 0:Z.error} || ${Z==null?void 0:Z.message}`)}finally{at.Close()}}),M=(at,Z)=>Z?{ip:/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(?:\/([0-9]|[1-2][0-9]|3[0-2]))?$/,mac:/^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$|^([0-9A-Fa-f]{4}\.){2}([0-9A-Fa-f]{4})$/}[at].test(Z.trim()):!1,W=()=>N(this,null,function*(){if(!p.role)return $.Warning(a("\u8BF7\u9009\u62E9\u8282\u70B9\u89D2\u8272"));if(!p.setIP)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u6D6E\u52A8\u7F51\u5173")}IP`);if(!M("ip",p.setIP))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6D6E\u52A8\u7F51\u5173IP\u5730\u5740")}`);if(!p.checkIP)return $.Warning(`${a("\u8BF7\u8F93\u5165")}${a("\u65C1\u8DEF\u7531")}IP`);if(!M("ip",p.checkIP))return $.Warning(`${a("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u65C1\u8DEF\u7531IP\u5730\u5740")}`);let at=$.Loading(a("\u4FDD\u5B58\u4E2D..."));try{const{data:Z}=yield j.DeviceMangement.enableFloatGateway.POST(p);JSON.stringify(Z)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((Z==null?void 0:Z.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(Z){$.Warning(`${Z==null?void 0:Z.error} || ${Z==null?void 0:Z.message}`)}finally{at.Close()}}),bt=at=>{at||confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5173\u95EDDHCP\u53EF\u80FD\u5F71\u54CD\u5C40\u57DF\u7F51\u5185\u8BBE\u5907\u7684IP\u5206\u914D\u548C\u8054\u7F51\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))||(_.dhcpEnabled=!0)},Bt=at=>{at||confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5173\u95ED\u6D6E\u52A8\u7F51\u5173\u53EF\u80FD\u5F71\u54CD\u6B63\u5728\u4F7F\u7528\u6D6E\u52A8\u7F51\u5173\u7684\u8BBE\u5907\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))||(p.enabled=!0)},gt=at=>{at||confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5173\u95ED\u9650\u901F\u4F1A\u8BA9\u5DF2\u914D\u7F6E\u9650\u901F\u7684\u8BBE\u5907\u7684\u5E26\u5BBD\u9650\u5236\u5168\u90E8\u5931\u6548\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))||(g.enabled=!0)},jt=at=>N(this,null,function*(){if(confirm(a("\u6E29\u99A8\u63D0\u793A\uFF1A\u5220\u9664\u7F51\u5173\u6807\u7B7E\u53EF\u80FD\u5F71\u54CD\u6B63\u5728\u4F7F\u7528\u6B64\u6807\u7B7E\u7684\u8BBE\u5907\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01"))){let Z=$.Loading(a("\u5220\u9664\u4E2D...")),Ct={action:"delete",tagTitle:at.tagTitle||"",tagName:at.tagName||"",dhcpOption:(at==null?void 0:at.dhcpOption)||[]};try{const{data:ut}=yield j.DeviceMangement.dhcpTagsConfig.POST(Ct);JSON.stringify(ut)==="{}"?($.Success(a("\u5220\u9664\u6210\u529F")),m()):$.Success((ut==null?void 0:ut.error)||"\u5220\u9664\u5931\u8D25\uFF01")}catch(ut){$.Warning(`${ut==null?void 0:ut.error} || ${ut==null?void 0:ut.message}`)}finally{Z.Close()}}}),Qt=()=>{A.value.openTagDialog()},Tt=E([]),Lt=at=>N(this,null,function*(){Tt.value=at.dhcpOption?at.dhcpOption:[],A.value.tagTitle=at.tagTitle||"",A.value.tagName=at.tagName||"",A.value.gateway=at.gateway||"",yield oa(),A.value.openEditTagDialog()}),qe=at=>N(this,null,function*(){let Z=$.Loading(a("\u4FDD\u5B58\u4E2D..."));const Ct=[`3,${at.gateway}`,`6,${at.gateway}`];let ut={action:at.type==1?"add":"modify",tagTitle:at.tagTitle,tagName:at.tagName,dhcpOption:Ct};try{const{data:P}=yield j.DeviceMangement.dhcpTagsConfig.POST(ut);JSON.stringify(P)==="{}"?($.Success(a("\u4FDD\u5B58\u6210\u529F")),m()):$.Success((P==null?void 0:P.error)||"\u4FDD\u5B58\u5931\u8D25\uFF01")}catch(P){$.Warning(`${P==null?void 0:P.error} || ${P==null?void 0:P.message}`)}finally{Z.Close()}});return(at,Z)=>{var Ct,ut;return r(),d("div",GY,[t("div",jY,[(r(),d(U,null,tt(v,P=>t("button",{key:P.id,class:st(["tab-button",{active:k.value===P.id}]),onClick:K=>C(P.id)},i(P.label),11,UY)),64))]),t("div",qY,[L(t("div",null,[x.value?(r(),d("div",HY,[t("div",JY,[t("div",ZY,i(e(a)("IP\u9650\u901F"))+"\uFF1A",1),B(Nt,{modelValue:e(g).enabled,"onUpdate:modelValue":Z[1]||(Z[1]=P=>e(g).enabled=P),onChange:gt},null,8,["modelValue"])]),e(g).enabled?(r(),d(U,{key:0},[t("div",KY,[t("div",QY,i(e(a)("\u4E0B\u8F7D\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[2]||(Z[2]=P=>e(g).downloadSpeed=P),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,XY),[[et,e(g).downloadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)]),t("div",tA,[t("div",eA,i(e(a)("\u4E0A\u4F20\u901F\u5EA6"))+"\uFF08Mbit/s\uFF09\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[3]||(Z[3]=P=>e(g).uploadSpeed=P),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,aA),[[et,e(g).uploadSpeed,void 0,{trim:!0}]]),nt(" \xA0 "+i(e(a)("\u603B\u5E26\u5BBD")),1)])],64)):D("",!0),t("div",oA,[t("div",nA,[t("button",{class:"add-button add-button--danger",onClick:I},i(e(a)("\u4FDD\u5B58")),1)])])])):(r(),d("div",RY,[WY,t("span",null,i(e(a)("\u8F6F\u4EF6\u6682\u672A\u5B89\u88C5")),1),t("div",{class:"not_installed_btn",onClick:Z[0]||(Z[0]=P=>R("app-meta-eqos"))},i(e(a)("\u7ACB\u5373\u5B89\u88C5")),1)]))],512),[[te,k.value==="ip"]]),L(t("div",null,[F.value?(r(),d("div",sA,[t("div",dA,[t("div",lA,i(e(a)("\u6D6E\u52A8\u7F51\u5173"))+"\uFF1A",1),B(Nt,{modelValue:e(p).enabled,"onUpdate:modelValue":Z[5]||(Z[5]=P=>e(p).enabled=P),onChange:Bt},null,8,["modelValue"])]),t("div",cA,[t("div",uA,i(e(a)("\u8282\u70B9\u89D2\u8272"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":Z[6]||(Z[6]=P=>e(p).role=P),onChange:Z[7]||(Z[7]=()=>{})},[e(l)?(r(),d("option",pA,i(e(a)("\u8BF7\u9009\u62E9")),1)):D("",!0),(r(!0),d(U,null,tt(u.value,P=>(r(),d("option",{value:P.value},i(P.name),9,fA))),256))],544),[[dt,e(p).role]])]),t("div",mA,[t("div",gA,i(e(a)("\u6D6E\u52A8\u7F51\u5173"))+"IP\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[8]||(Z[8]=P=>e(p).setIP=P),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,vA),[[et,e(p).setIP,void 0,{trim:!0}]])]),t("div",bA,[t("div",hA,i(e(a)("\u65C1\u8DEF\u7531IP"))+"\uFF1A",1),L(t("input",{id:"tagName",type:"text","onUpdate:modelValue":Z[9]||(Z[9]=P=>e(p).checkIP=P),placeholder:e(a)("\u8BF7\u8F93\u5165")+"...",class:"tag-input"},null,8,_A),[[et,e(p).checkIP,void 0,{trim:!0}]])]),t("div",xA,[t("div",wA,[t("button",{class:"add-button add-button--danger",onClick:W},i(e(a)("\u4FDD\u5B58")),1)])])])):(r(),d("div",iA,[rA,t("span",null,i(e(a)("\u8F6F\u4EF6\u6682\u672A\u5B89\u88C5")),1),t("div",{class:"not_installed_btn",onClick:Z[4]||(Z[4]=P=>R("app-meta-floatip"))},i(e(a)("\u7ACB\u5373\u5B89\u88C5")),1)]))],512),[[te,k.value==="gateway"]]),L(t("div",null,[t("div",kA,[t("div",yA,[t("div",FA,i(e(a)("\u542F\u7528"))+"DHCP\uFF1A",1),B(Nt,{modelValue:e(_).dhcpEnabled,"onUpdate:modelValue":Z[10]||(Z[10]=P=>e(_).dhcpEnabled=P),onChange:bt},null,8,["modelValue"])]),t("div",EA,[t("div",$A,"DHCP"+i(e(a)("\u7F51\u5173"))+"\uFF1A",1),L(t("select",{"onUpdate:modelValue":Z[11]||(Z[11]=P=>e(_).dhcpGateway=P),onChange:Z[12]||(Z[12]=()=>{})},[(r(!0),d(U,null,tt((ut=(Ct=f.value)==null?void 0:Ct.dhcpGlobal)==null?void 0:ut.gatewaySels,P=>(r(),d("option",{value:P.gateway},i(P.gateway)+" ("+i(P.title?S(P.title):"")+") ",9,CA))),256))],544),[[dt,e(_).dhcpGateway]])]),t("div",DA,[t("div",BA,[t("button",{class:"add-button add-button--danger",onClick:w},i(e(a)("\u4FDD\u5B58")),1)])])]),t("div",YA,[t("button",{class:"add-button add-button--danger",onClick:Qt},[t("span",null,i(e(a)("\u6DFB\u52A0")),1)])]),B(je,{data:c.value,columns:s.value,showSelection:!1,showPagination:!1,theadBgColor:"#e8e6f9"},{action:G(({row:P})=>[P.autoCreated?D("",!0):(r(),d("span",{key:0,style:{color:"#553AFE",cursor:"pointer"},onClick:K=>Lt(P)},i(e(a)("\u7F16\u8F91")),9,AA)),P.autoCreated?D("",!0):(r(),d("span",{key:1,style:{color:"#F04134",cursor:"pointer","margin-left":"18px"},onClick:K=>jt(P)},i(e(a)("\u5220\u9664")),9,SA))]),tagTitle:G(({row:P})=>[t("span",null,i(S(P.tagTitle)),1)]),tagName:G(({row:P})=>[t("span",null,i(P.tagName||"-"),1)]),gateway:G(({row:P})=>[t("span",null,i(P.gateway||"-"),1)]),_:1},8,["data","columns"])],512),[[te,k.value==="tag"]])]),B(VY,{ref_key:"tagDialogRef",ref:A,title:e(z),onConfirm:qe},null,8,["title"])])}}});var PA=O(zA,[["__scopeId","data-v-66e54129"]]);const ro=o=>(it("data-v-a5a78984"),o=o(),rt(),o),TA={id:"page"},IA={style:{"text-align":"left",display:"flex","align-items":"center","margin-bottom":"20px","padding-top":"4px"}},MA=ro(()=>t("svg",{width:"20",height:"20",viewBox:"0 0 100 100",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M20 30 L50 50 L20 70",stroke:"#d6dbf8","stroke-width":"8","stroke-linecap":"round",fill:"none"})],-1)),LA={style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color1)","line-height":"1.5em"}},OA={class:"device_container",style:{color:"black"}},NA={class:"tab-container"},VA={class:"tabs_box_g"},GA=["onClick"],jA={class:"tab-content_g"},UA={key:0,class:"content-item"},qA={key:1,class:"content-item"},RA={key:2,class:"content-item"},WA={key:3,class:"content-item"},HA=ro(()=>t("div",{style:{height:"30px"}},null,-1)),JA=T({setup(o){const{$gettext:n}=H(),a=E(["\u8BBE\u5907\u5217\u8868","\u9759\u6001\u5206\u914D\u5217\u8868","\u9650\u901F\u8BBE\u5907\u5217\u8868","\u5168\u5C40\u8BBE\u7F6E"]),l=E(0),c=E(null),s=()=>N(this,null,function*(){l.value=3,yield oa(),c.value&&(c.value.activeTab="ip")});return(u,_)=>{const g=ht("router-link");return r(),d(U,null,[t("div",TA,[t("div",IA,[B(g,{to:"/",style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color)","line-height":"1.5em","margin-right":"4px"}},{default:G(()=>[nt(i(e(n)("\u9996\u9875")),1)]),_:1}),MA,t("a",LA,i(e(n)("\u8BBE\u5907\u7BA1\u7406")),1)])]),t("div",OA,[t("div",NA,[t("div",VA,[(r(!0),d(U,null,tt(a.value,(p,f)=>(r(),d("button",{key:f,onClick:m=>l.value=f,class:st({active:l.value===f})},i(e(n)(p)),11,GA))),128))]),t("div",jA,[l.value===0?(r(),d("div",UA,[B(hB,{onOpenGloba:s})])):D("",!0),l.value===1?(r(),d("div",qA,[B(NB)])):D("",!0),l.value===2?(r(),d("div",RA,[B(mY,{onOpenGloba:s})])):D("",!0),l.value===3?(r(),d("div",WA,[B(PA,{ref_key:"configureRef",ref:c},null,512)])):D("",!0)]),HA])])],64)}}});var ZA=O(JA,[["__scopeId","data-v-a5a78984"]]);const KA={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},QA=["fill"],XA=["fill"],tS=T({props:{color:{type:String,default:"#ffa847"}},setup(o){return(n,a)=>(r(),d("svg",KA,[t("path",{d:"M640.825806 900.129032c-18.167742 6.606452-37.987097 9.909677-57.806451 13.212903-26.425806 4.954839-44.593548 29.729032-41.290323 56.154839 4.954839 26.425806 29.729032 44.593548 56.154839 41.290323 24.774194-3.303226 47.896774-9.909677 71.019355-16.516129 26.425806-8.258065 41.290323-36.335484 33.032258-62.761291s-34.683871-39.63871-61.109678-31.380645zM974.451613 576.412903c-26.425806-6.606452-52.851613 9.909677-61.109678 36.335484-4.954839 19.819355-11.56129 37.987097-18.167741 56.154839-9.909677 24.774194 1.651613 54.503226 26.425806 64.412903 24.774194 9.909677 54.503226-1.651613 64.412903-26.425806 9.909677-23.122581 16.516129-46.245161 23.122581-69.367742 6.606452-28.077419-8.258065-54.503226-34.683871-61.109678zM814.245161 791.122581c-13.212903 14.864516-28.077419 28.077419-42.941935 39.638709-21.470968 16.516129-24.774194 47.896774-8.258065 69.367742 16.516129 21.470968 47.896774 24.774194 69.367742 8.258065 19.819355-14.864516 37.987097-31.380645 54.503226-49.548387 18.167742-19.819355 18.167742-51.2-1.651613-69.367742s-51.2-18.167742-71.019355 1.651613zM526.864516 341.883871c-28.077419 0-49.548387 21.470968-49.548387 49.548387v122.219355c0 14.864516 6.606452 28.077419 18.167742 37.987097l117.264516 97.445161c21.470968 18.167742 52.851613 14.864516 69.367742-6.606452s14.864516-52.851613-6.606452-69.367742l-99.096774-82.580645v-99.096774c0-26.425806-21.470968-49.548387-49.548387-49.548387z",fill:o.color,"p-id":"4722"},null,8,QA),t("path",{d:"M910.03871 327.019355c28.077419 1.651613 51.2-18.167742 52.851613-46.245161l9.909677-142.03871c1.651613-28.077419-18.167742-51.2-46.245161-52.851613-28.077419-1.651613-51.2 18.167742-52.851613 46.245161v16.516129c-1.651613-1.651613-3.303226-3.303226-4.954839-3.303226-1.651613-3.303226-4.954839-4.954839-6.606452-8.258064-18.167742-16.516129-36.335484-31.380645-57.806451-46.245161-1.651613-1.651613-4.954839-3.303226-6.606452-3.303226-46.245161-31.380645-99.096774-54.503226-155.251613-69.367742-1.651613 0-3.303226-1.651613-4.954838-1.651613-8.258065-1.651613-14.864516-3.303226-23.122581-4.954839h-1.651613c-6.606452-1.651613-13.212903-3.303226-21.470968-3.303225-4.954839-1.651613-11.56129-1.651613-16.516129-1.651613-3.303226 0-6.606452-1.651613-9.909677-1.651613h-1.651613C307.2-19.819355 69.367742 153.6 18.167742 412.903226c-52.851613 275.819355 125.522581 541.729032 401.341935 594.580645 26.425806 4.954839 52.851613-11.56129 57.806452-39.63871 4.954839-26.425806-11.56129-52.851613-39.63871-57.806451h-1.651613c-19.819355-3.303226-37.987097-9.909677-56.154838-16.516129h-3.303226c-44.593548-16.516129-84.232258-39.63871-118.916129-67.716129l-4.954839-4.954839c-14.864516-13.212903-29.729032-26.425806-41.290322-41.290323-1.651613-1.651613-3.303226-3.303226-6.606452-4.954838-28.077419-33.032258-51.2-71.019355-67.716129-112.309678 0-3.303226-1.651613-6.606452-1.651613-8.258064-6.606452-18.167742-13.212903-37.987097-16.516129-56.154839 0-3.303226-1.651613-6.606452-3.303226-9.909677-8.258065-41.290323-9.909677-82.580645-4.954838-125.522581 1.651613-3.303226 1.651613-6.606452 3.303225-9.909678 3.303226-19.819355 6.606452-37.987097 13.212904-57.806451 1.651613-3.303226 1.651613-6.606452 1.651612-9.909678 13.212903-41.290323 33.032258-80.929032 57.806452-115.612903 3.303226-1.651613 4.954839-4.954839 6.606452-6.606451 11.56129-14.864516 24.774194-29.729032 39.638709-44.593549 1.651613-1.651613 3.303226-4.954839 4.954839-6.606451 33.032258-31.380645 71.019355-56.154839 112.309677-74.322581 1.651613 0 3.303226 0 3.303226-1.651613 18.167742-8.258065 37.987097-14.864516 56.154839-19.819355 1.651613 0 1.651613-1.651613 3.303226-1.651613 47.896774-13.212903 100.748387-16.516129 153.6-9.909677 3.303226 0 6.606452 1.651613 9.909677 1.651613 6.606452 1.651613 11.56129 1.651613 18.167742 3.303226 80.929032 16.516129 153.6 54.503226 209.754839 112.309677l-29.729032-1.651613c-28.077419-1.651613-51.2 18.167742-52.851613 46.245161-1.651613 28.077419 18.167742 51.2 46.245161 52.851613l142.03871 8.258065z",fill:o.color,"p-id":"4723"},null,8,XA)]))}}),eS={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},aS=["fill"],oS=T({props:{color:{type:String,default:"#9810f9"}},setup(o){return(n,a)=>(r(),d("svg",eS,[t("path",{d:"M914.285714 548.571429a36.571429 36.571429 0 0 1 36.571429 36.571428v219.428572a146.285714 146.285714 0 0 1-146.285714 146.285714H219.428571a146.285714 146.285714 0 0 1-146.285714-146.285714v-219.428572a36.571429 36.571429 0 1 1 73.142857 0v219.428572a73.142857 73.142857 0 0 0 67.657143 72.96L219.428571 877.714286h585.142858a73.142857 73.142857 0 0 0 72.96-67.657143L877.714286 804.571429v-219.428572a36.571429 36.571429 0 0 1 36.571428-36.571428zM537.307429 83.858286l258.596571 258.596571a36.571429 36.571429 0 1 1-51.712 51.712L548.571429 198.509714 548.571429 634.733714a36.571429 36.571429 0 1 1-73.142858 0V197.485714L278.674286 394.166857a36.571429 36.571429 0 1 1-51.712-51.712l258.596571-258.596571a36.571429 36.571429 0 0 1 51.712 0z",fill:o.color,"p-id":"9077"},null,8,aS)]))}}),Wt=o=>(it("data-v-de94d0fe"),o=o(),rt(),o),nS={class:"item_container"},iS={class:"item"},rS={class:"item_title"},sS={class:"tip"},dS={class:"item"},lS={class:"item_title"},cS={class:"select_box"},uS={value:null,disabled:"",selected:""},pS=["value"],fS={class:"start_btn"},mS={key:0,class:"progress"},gS=Wt(()=>t("span",null,"25%",-1)),vS={class:"item"},bS={class:"item_title"},hS={class:"log_info"},_S={class:"item"},xS={class:"item_title"},wS={class:"result_box"},kS={class:"result"},yS={class:"result_item"},FS=Wt(()=>t("div",{class:"speed_value"},"105.5",-1)),ES=Wt(()=>t("span",{class:"unit"},"Mbps",-1)),$S=Wt(()=>t("span",{class:"status status_bg1"},"\u4F18\u79C0",-1)),CS={class:"speed_title"},DS={class:"result_item"},BS=Wt(()=>t("div",{class:"speed_value"},"105.5",-1)),YS=Wt(()=>t("span",{class:"unit"},"Mbps",-1)),AS=Wt(()=>t("span",{class:"status status_bg2"},"\u826F\u597D",-1)),SS={class:"speed_title"},zS=Vt('18 ms
\u826F\u597D\u5EF6\u8FDF ',2),PS=Wt(()=>t("div",{class:"custom-content"},[t("p",null,"\u4EE5\u4E0B\u662F\u68C0\u6D4B\u5230\u7684\u5185\u7F51\u5730\u5740\uFF0C\u8BF7\u70B9\u51FB\u8BBF\u95EE\u8FDB\u884C\u6D4B\u901F"),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")]),t("div",{class:"address_box"},[t("span",null,"http://192.168.1.1"),t("div",null,"\u8BBF\u95EE")])],-1)),TS=T({setup(o){const{$gettext:n}=H(),a=E(!1),l=E([{title:"SpeedTest.Net",describe:"\u5168\u7403\u6807\u51C6\u7F51\u901F\u6D4B\u8BD5\u670D\u52A1",value:"SpeedTest"},{title:"CDN\u8282\u70B9\u6D4B\u8BD5",describe:"\u6D4B\u8BD5\u5230\u4E3B\u8981CDN\u8282\u70B9\u7684\u8FDE\u63A5\u901F\u5EA6",value:"CDN"},{title:"UST\u9AD8\u6821\u8282\u70B9",describe:"\u4E2D\u79D1\u5927\u6559\u80B2\u7F51\u8282\u70B9\u6D4B\u8BD5",value:"UST"},{title:"NAT\u7C7B\u578B\u6D4B\u901F",describe:"\u68C0\u6D4B\u7F51\u7EDCNAT\u7C7B\u578B\u548C\u8FDE\u901A\u6027",value:"NAT"}]),c=E(null),s=E(!1),u=()=>{!c.value||(s.value=!0)};return(_,g)=>(r(),d(U,null,[t("div",nS,[t("div",iS,[t("div",rS,[B(ze,{color:"#155dfc",class:"icon"}),t("span",null,i(e(n)("\u5185\u7F51\u6D4B\u901F")),1)]),t("p",null,i(e(n)("\u68C0\u6D4B\u672C\u5730\u7F51\u7EDC\u73AF\u5883\uFF0C\u83B7\u53D6\u5185\u7F51\u8BBF\u95EE\u5730\u5740")),1),t("div",{class:"wifi_btn",onClick:g[0]||(g[0]=p=>a.value=!0)},[t("div",null,[B(ze,{color:"#ffffff",class:"icon1"}),t("span",null,i(e(n)("\u5F00\u59CB\u5185\u7F51\u6D4B\u901F")),1)])]),t("p",sS,i(e(n)("\u70B9\u51FB\u6309\u94AE\u83B7\u53D6\u5185\u7F51\u6D4B\u901F\u5730\u5740\uFF0C\u901A\u8FC7\u8BBF\u95EE\u8FD9\u4E9B\u5730\u5740\u6765\u6D4B\u8BD5\u5185\u7F51\u8FDE\u63A5\u901F\u5EA6")),1)]),t("div",dS,[t("div",lS,[B(xe,{color:"#2bb55e",class:"icon"}),t("span",null,i(e(n)("\u5185\u7F51\u6D4B\u901F")),1)]),t("p",null,i(e(n)("\u9009\u62E9\u6D4B\u901F\u8282\u70B9\uFF0C\u8FDB\u884C\u7F51\u7EDC\u901F\u5EA6\u548C\u8FDE\u63A5\u8D28\u91CF\u6D4B\u8BD5")),1),t("div",cS,[t("div",null,i(e(n)("\u9009\u62E9\u6D4B\u901F\u8282\u70B9")),1),L(t("select",{"onUpdate:modelValue":g[1]||(g[1]=p=>c.value=p),id:"node",required:"",class:st({"is-placeholder":!c.value})},[t("option",uS,i(e(n)("\u8BF7\u9009\u62E9\u6D4B\u901F\u8282\u70B9")),1),(r(!0),d(U,null,tt(l.value,p=>(r(),d("option",{value:p},i(p.title)+" - "+i(p.describe),9,pS))),256))],2),[[dt,c.value]])]),t("div",{class:st(["wifi_btn m-20",{"is-bg":!c.value||s.value}]),onClick:u},[t("div",fS,[s.value?(r(),d("span",{key:0,class:st(["icon3-wrap",{"is-rotating":s.value}])},[B(tS,{color:"#ffffff",class:"icon3"})],2)):(r(),J(xe,{key:1,color:"#ffffff",class:"icon2"})),t("span",null,i(e(n)("\u5F00\u59CB\u6D4B\u901F")),1)])],2),s.value?(r(),d("div",mS,[t("p",null,[nt(i(e(n)("\u6D4B\u901F\u8FDB\u5EA6"))+" ",1),gS]),B(Xa,{percentage:25,showPercentage:!1,height:"10px",borderRadius:"10px",color:"#030213",backgroundColor:"#cdccd0"})])):D("",!0)]),t("div",vS,[t("div",bS,[B(Ha,{color:"#ff6900",class:"icon2"}),t("span",null,i(e(n)("\u6D4B\u901F\u65E5\u5FD7")),1)]),t("p",null,i(e(n)("\u5B9E\u65F6\u6D4B\u901F\u8FC7\u7A0B\u8BB0\u5F55")),1),t("div",hS,[(r(),d(U,null,tt(20,p=>t("p",null,"[17:00:20] \u6B63\u5728\u8FDE\u63A5\u5230\u6D4B\u8BD5\u670D\u52A1\u5668...")),64))])]),t("div",_S,[t("div",xS,[B(eo,{color:"#9865ff",class:"icon2"}),t("span",null,i(e(n)("\u6D4B\u901F\u7ED3\u679C")),1)]),t("p",null,i(e(n)("\u6D4B\u901F\u8282\u70B9"))+"\uFF1ACDN\u8282\u70B9 (\u5317\u4EAC)",1),t("div",wS,[t("div",kS,[t("div",yS,[B(Zt,{color:"#155dfc",class:"icon_speed"}),FS,ES,$S,t("div",CS,i(e(n)("\u4E0B\u8F7D\u901F\u5EA6")),1)]),t("div",DS,[B(oS,{color:"#00a63e",class:"icon_speed1"}),BS,YS,AS,t("div",SS,i(e(n)("\u4E0A\u4F20\u901F\u5EA6")),1)])]),zS])])]),B(ee,{modelValue:a.value,"onUpdate:modelValue":g[2]||(g[2]=p=>a.value=p),title:"\u5185\u7F51\u8BBF\u95EE\u5730\u5740",width:"550px",footerShow:!1,"show-close":!0},{default:G(()=>[PS]),_:1},8,["modelValue"])],64))}});var IS=O(TS,[["__scopeId","data-v-de94d0fe"]]);const MS={width:"200",height:"200",viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",fill:"none"},LS=["fill"],OS=T({props:{color:{type:String,default:"#155dfc"}},setup(o){return(n,a)=>(r(),d("svg",MS,[t("path",{d:"M0 855.04a64.896 64.896 0 0 1 129.792 0v55.637333a64.896 64.896 0 0 1-129.792 0V855.04zM213.248 669.610667a64.896 64.896 0 0 1 129.792 0v241.066666a64.896 64.896 0 0 1-129.792 0v-241.066666zM426.496 484.181333a64.896 64.896 0 0 1 129.792 0v426.496a64.896 64.896 0 1 1-129.792 0v-426.496zM639.701333 298.752a64.896 64.896 0 1 1 129.792 0v611.925333a64.896 64.896 0 0 1-129.792 0V298.752zM852.949333 113.322667a64.896 64.896 0 0 1 129.792 0v797.354666a64.896 64.896 0 0 1-129.792 0V113.322667z",fill:o.color,"p-id":"11967"},null,8,LS)]))}}),va=o=>(it("data-v-63694ef8"),o=o(),rt(),o),NS={id:"page"},VS={style:{"text-align":"left",display:"flex","align-items":"center","margin-bottom":"20px","padding-top":"4px"}},GS=va(()=>t("svg",{width:"20",height:"20",viewBox:"0 0 100 100",xmlns:"http://www.w3.org/2000/svg"},[t("path",{d:"M20 30 L50 50 L20 70",stroke:"#d6dbf8","stroke-width":"8","stroke-linecap":"round",fill:"none"})],-1)),jS={style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color1)","line-height":"1.5em"}},US={class:"container",style:{color:"black"}},qS={class:"title"},RS=va(()=>t("span",null,"\u7F51\u7EDC\u6D4B\u901F\u5DE5\u5177",-1)),WS=va(()=>t("p",null,"\u4E13\u4E1A\u7684\u7F51\u7EDC\u8FDE\u63A5\u901F\u5EA6\u68C0\u6D4B\u5DE5\u5177\uFF0C\u652F\u6301\u5185\u7F51\u548C\u5916\u7F51\u6D4B\u901F",-1)),HS=T({setup(o){const{$gettext:n}=H();return(a,l)=>{const c=ht("router-link");return r(),d(U,null,[t("div",NS,[t("div",VS,[B(c,{to:"/",style:{"text-decoration":"none",color:"var(--breadcrumbs-tit-color)","line-height":"1.5em","margin-right":"4px"}},{default:G(()=>[nt(i(e(n)("\u9996\u9875")),1)]),_:1}),GS,t("a",jS,i(e(n)("\u7F51\u7EDC\u6D4B\u901F")),1)])]),t("div",US,[t("div",qS,[t("div",null,[B(OS,{class:"icon"}),RS]),WS]),B(IS)])],64)}}});var JS=O(HS,[["__scopeId","data-v-63694ef8"]]);const Ce=o=>(it("data-v-1f11eeec"),o=o(),rt(),o),ZS=["onSubmit"],KS={class:"form-item"},QS={class:"label-name"},XS={class:"label-value switch_label"},tz={class:"label-flex pc-radio"},ez=["disabled"],az=["disabled"],oz=Ce(()=>t("div",{class:"switch-button"},null,-1)),nz=[oz],iz={key:0,class:"form-item"},rz={class:"label-name"},sz={class:"label-value"},dz=["disabled"],lz={value:100},cz={value:70},uz={value:50},pz={value:30},fz={key:0,class:"select-arrow"},mz={class:"form-item"},gz={class:"label-name"},vz={class:"label-value"},bz=["disabled","placeholder"],hz={class:"form-item"},_z={class:"label-name"},xz={class:"label-value"},wz=["disabled"],kz=["value"],yz={key:0,class:"select-arrow"},Fz={class:"form-item"},Ez={class:"label-name"},$z={class:"label-value"},Cz=["type","disabled","placeholder"],Dz={key:0,class:"seeIcon",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Bz=Ce(()=>t("path",{d:"M12 6c3.79 0 7.17 2.13 8.82 5.5-.59 1.22-1.42 2.27-2.41 3.12l1.41 1.41c1.39-1.23 2.49-2.77 3.18-4.53C21.27 7.11 17 4 12 4c-1.27 0-2.49.2-3.64.57l1.65 1.65C10.66 6.09 11.32 6 12 6zm-1.07 1.14L13 9.21c.57.25 1.03.71 1.28 1.28l2.07 2.07c.08-.34.14-.7.14-1.07C16.5 9.01 14.48 7 12 7c-.37 0-.72.05-1.07.14zM2.01 3.87l2.68 2.68C3.06 7.83 1.77 9.53 1 11.5 2.73 15.89 7 19 12 19c1.52 0 2.98-.29 4.32-.82l3.42 3.42 1.41-1.41L3.42 2.45 2.01 3.87zm7.5 7.5l2.61 2.61c-.04.01-.08.02-.12.02-1.38 0-2.5-1.12-2.5-2.5 0-.05.01-.08.01-.13zm-3.4-3.4l1.75 1.75c-.23.55-.36 1.15-.36 1.78 0 2.48 2.02 4.5 4.5 4.5.63 0 1.23-.13 1.77-.36l.98.98c-.88.24-1.8.38-2.75.38-3.79 0-7.17-2.13-8.82-5.5.7-1.43 1.72-2.61 2.93-3.53z",fill:"currentColor"},null,-1)),Yz=[Bz],Az={key:1,class:"seeIcon",viewBox:"0 0 22 22",xmlns:"http://www.w3.org/2000/svg"},Sz=Ce(()=>t("path",{d:"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z",fill:"currentColor"},null,-1)),zz=[Sz],Pz={class:"form-item"},Tz={class:"label-name"},Iz={class:"label-value"},Mz=["disabled"],Lz={value:!1},Oz={value:!0},Nz={key:0,class:"select-arrow"},Vz={key:1,class:"form-item"},Gz={class:"label-name"},jz={class:"label-value"},Uz=["disabled"],qz=["value"],Rz={key:0,class:"select-arrow"},Wz={key:2,class:"form-item"},Hz={class:"label-name"},Jz={class:"label-value"},Zz=["disabled"],Kz=Ce(()=>t("option",{value:"20"},"20 MHz",-1)),Qz=Ce(()=>t("option",{value:"40"},"40 MHz",-1)),Xz={key:0,value:"auto"},tP={key:1,value:"80"},eP={key:2,value:"160"},aP={key:0,class:"select-arrow"},oP={key:3,class:"form-item"},nP={class:"label-name"},iP={class:"label-value"},rP=["disabled"],sP={value:0},dP=["value"],lP=["disabled"],cP={value:0},uP=Vt('',12),pP={key:2,class:"select-arrow"},fP={key:4,class:"form-item"},mP={class:"label-name"},gP={class:"label-value"},vP=["placeholder","disabled"],bP={class:"label-btns"},hP=["disabled"],_P=T({props:{data:null},emits:["getData"],setup(o,{emit:n}){const a=o,{$gettext:l,$ngettext:c}=H(),s=E(Object.assign({},a.data)),u=$o("disabled"),_=E(!0),g=()=>{u.value||(s.value.disabled=!s.value.disabled)};Yt(()=>s.value.disabled,y=>{f()});const p=()=>N(this,null,function*(){if(s.value.txpower===a.data.txpower)return;const y=$.Loading("\u914D\u7F6E\u4E2D...");try{const{data:x}=yield j.Quickwifi.Power.POST({device:s.value.device||"",txpower:s.value.txpower||0}),{error:F,success:b}=x;if(F)throw F;(b==null||b==0)&&$.Success("\u914D\u7F6E\u5B8C\u6210")}catch(x){throw $.Error("\u914D\u7F6E\u5931\u8D25\uFF0C\u8BF7\u91CD\u8BD5"),x}finally{y.Close()}}),f=()=>N(this,null,function*(){const y=$.Loading("\u914D\u7F6E\u4E2D...");try{const{data:x}=yield j.Quickwifi.Switch.POST({ifaceName:s.value.ifaceName||"",enable:!s.value.disabled}),{error:F,success:b}=x;if(F)throw F;(b==null||b==0)&&$.Success("\u914D\u7F6E\u5B8C\u6210")}catch(x){throw console.error("\u8BF7\u6C42\u51FA\u9519:",x),$.Error("\u914D\u7F6E\u5931\u8D25\uFF0C\u8BF7\u91CD\u8BD5"),x}finally{y.Close()}}),m=()=>N(this,null,function*(){const y=lt({},s.value);delete y.encryptSelects,delete y.hwmodeSelects,delete y.disabled,delete y.txpower;const{data:x}=yield j.Quickwifi.Edit.POST(y),{error:F,success:b}=x;if(F)throw F;(b==null||b==0)&&$.Success("\u914D\u7F6E\u5B8C\u6210")}),w=()=>N(this,null,function*(){if(u.value)return;u.value=!0;const y=$.Loading("\u914D\u7F6E\u4E2D...");try{yield m(),yield n("getData")}catch(x){const F=$.Error(`${x}`);setTimeout(()=>{F.Close()},2e3)}finally{y.Close(),u.value=!1}});return(y,x)=>(r(),d("form",{class:"form-container",onSubmit:ct(w,["prevent"])},[t("div",KS,[t("div",QS,[t("span",null,i(e(l)("\u542F\u7528Wi-Fi")),1)]),t("div",XS,[t("div",tz,[t("label",null,[L(t("input",{type:"radio",value:!1,"onUpdate:modelValue":x[0]||(x[0]=F=>s.value.disabled=F),disabled:e(u)},null,8,ez),[[Ft,s.value.disabled]]),nt(" "+i(e(l)("\u5F00\u542F")),1)]),t("label",null,[L(t("input",{type:"radio",value:!0,"onUpdate:modelValue":x[1]||(x[1]=F=>s.value.disabled=F),disabled:e(u)},null,8,az),[[Ft,s.value.disabled]]),nt(" "+i(e(l)("\u5173\u95ED")),1)])]),t("div",{class:"mobile-switch",onClick:g},[t("div",{class:st(["switch-core",{"is-checked":!s.value.disabled,"is-disabled":e(u)}])},nz,2)])])]),s.value.isGuest?D("",!0):(r(),d("div",iz,[t("div",rz,[t("span",null,i(e(l)("\u53D1\u5C04\u529F\u7387")),1)]),t("div",sz,[L(t("select",{"onUpdate:modelValue":x[2]||(x[2]=F=>s.value.txpower=F),disabled:e(u),onChange:p},[t("option",lz,i(e(l)("\u6700\u5927")),1),t("option",cz,i(e(l)("\u9AD8")),1),t("option",uz,i(e(l)("\u4E2D")),1),t("option",pz,i(e(l)("\u4F4E")),1)],40,dz),[[dt,s.value.txpower]]),e(u)?D("",!0):(r(),d("div",fz))])])),t("div",mz,[t("div",gz,[t("span",null,i(e(l)("Wi-Fi\u540D\u79F0\uFF08SSID\uFF09")),1)]),t("div",vz,[L(t("input",{"onUpdate:modelValue":x[3]||(x[3]=F=>s.value.ssid=F),disabled:e(u),placeholder:e(l)("\u8BF7\u8F93\u5165WIFI\u540D\u79F0")},null,8,bz),[[et,s.value.ssid]])])]),t("div",hz,[t("div",_z,[t("span",null,i(e(l)("Wi-Fi \u5B89\u5168\u6027")),1)]),t("div",xz,[L(t("select",{"onUpdate:modelValue":x[4]||(x[4]=F=>s.value.encryption=F),disabled:e(u)},[(r(!0),d(U,null,tt(s.value.encryptSelects,F=>(r(),d("option",{value:F},i(F),9,kz))),256))],8,wz),[[dt,s.value.encryption]]),e(u)?D("",!0):(r(),d("div",yz))])]),t("div",Fz,[t("div",Ez,[t("span",null,i(e(l)("Wi-Fi \u5BC6\u7801")),1)]),t("div",$z,[L(t("input",{"onUpdate:modelValue":x[5]||(x[5]=F=>s.value.key=F),class:"password_input",type:_.value?"password":"",disabled:e(u),placeholder:e(l)("\u8BF7\u8F93\u5165WIFI\u5BC6\u7801")},null,8,Cz),[[Co,s.value.key]]),e(u)?D("",!0):(r(),d("div",{key:0,onClick:x[6]||(x[6]=F=>_.value=!_.value)},[_.value?(r(),d("svg",Dz,Yz)):(r(),d("svg",Az,zz))]))])]),t("div",Pz,[t("div",Tz,[t("span",null,i(e(l)("SSID \u53EF\u89C1\u6027")),1)]),t("div",Iz,[L(t("select",{"onUpdate:modelValue":x[7]||(x[7]=F=>s.value.hidden=F),disabled:e(u)},[t("option",Lz,i(e(l)("\u663E\u793A")),1),t("option",Oz,i(e(l)("\u9690\u85CF")),1)],8,Mz),[[dt,s.value.hidden]]),e(u)?D("",!0):(r(),d("div",Nz))])]),s.value.isGuest?D("",!0):(r(),d("div",Vz,[t("div",Gz,[t("span",null,i(e(l)("\u65E0\u7EBF\u6A21\u5F0F")),1)]),t("div",jz,[L(t("select",{"onUpdate:modelValue":x[8]||(x[8]=F=>s.value.hwmode=F),disabled:e(u)},[(r(!0),d(U,null,tt(s.value.hwmodeSelects,F=>(r(),d("option",{value:F},i(F),9,qz))),256))],8,Uz),[[dt,s.value.hwmode]]),e(u)?D("",!0):(r(),d("div",Rz))])])),s.value.isGuest?D("",!0):(r(),d("div",Wz,[t("div",Hz,[t("span",null,i(e(l)("\u9891\u5BBD")),1)]),t("div",Jz,[L(t("select",{"onUpdate:modelValue":x[9]||(x[9]=F=>s.value.htmode=F),disabled:e(u)},[Kz,Qz,s.value.band==="2g"?(r(),d("option",Xz," 20/40 MHz ")):D("",!0),s.value.band==="5g"?(r(),d("option",tP," 80 MHz ")):D("",!0),s.value.band==="5g"?(r(),d("option",eP," 160 MHz ")):D("",!0)],8,Zz),[[dt,s.value.htmode]]),e(u)?D("",!0):(r(),d("div",aP))])])),s.value.isGuest?D("",!0):(r(),d("div",oP,[t("div",nP,[t("span",null,i(e(l)("\u4FE1\u9053")),1)]),t("div",iP,[s.value.band==="2g"?L((r(),d("select",{key:0,"onUpdate:modelValue":x[10]||(x[10]=F=>s.value.channel=F),disabled:e(u)},[t("option",sP,i(e(l)("\u81EA\u52A8")),1),(r(),d(U,null,tt(13,F=>t("option",{value:F},i(F),9,dP)),64))],8,rP)),[[dt,s.value.channel,void 0,{number:!0}]]):D("",!0),s.value.band==="5g"?L((r(),d("select",{key:1,"onUpdate:modelValue":x[11]||(x[11]=F=>s.value.channel=F),disabled:e(u)},[t("option",cP,i(e(l)("\u81EA\u52A8")),1),uP],8,lP)),[[dt,s.value.channel,void 0,{number:!0}]]):D("",!0),e(u)?D("",!0):(r(),d("div",pP))])])),s.value.isGuest?D("",!0):(r(),d("div",fP,[t("div",mP,[t("span",null,i(e(l)("\u7F51\u7EDC")),1)]),t("div",gP,[L(t("input",{type:"text",placeholder:e(l)("\u8BF7\u914D\u7F6E\u7F51\u7EDC\u540D\u79F0"),required:"","onUpdate:modelValue":x[12]||(x[12]=F=>s.value.network=F),disabled:e(u)},null,8,vP),[[et,s.value.network]])])])),t("div",bP,[t("button",{class:"btn primary-btn",disabled:e(u),onClick:w},i(e(l)("\u4FDD\u5B58\u914D\u7F6E")),9,hP)])],40,ZS))}});var xP=O(_P,[["__scopeId","data-v-1f11eeec"]]);const Ue=o=>(it("data-v-40cb5302"),o=o(),rt(),o),wP={id:"page",class:"page-container"},kP={class:"mobile-tags-container"},yP={class:"tags-wrapper"},FP={class:"tags-scroll"},EP=["onClick"],$P={class:"more-btn-wrapper"},CP=Ue(()=>t("div",{class:"fade-overlay"},null,-1)),DP=Ue(()=>t("div",{class:"line"},null,-1)),BP=Ue(()=>t("div",{class:"line"},null,-1)),YP=Ue(()=>t("div",{class:"line"},null,-1)),AP=[DP,BP,YP],SP={class:"page-flex"},zP={class:"page-sidebar"},PP=["onClick"],TP={class:"page-main"},IP={class:"popup-content"},MP={class:"popup-tags"},LP=["onClick"],OP={class:"popup-footer"},NP=T({setup(o){var F;const{$gettext:n}=H(),a=E(!1);Do("disabled",a);const l=E([]),c=Pe(),s=aa(),u=E(String((F=c==null?void 0:c.query)==null?void 0:F.tab)),_=E(!1),g=b=>{var h;return(h=b.band)==null?void 0:h.toUpperCase()},p=b=>b.isGuest?b.band+"_Guest":b.ssid,f=b=>{a.value||(u.value=p(b),_.value=!1,u.value!==c.query.tab&&s.push({query:{tab:u.value}}))},m=E(),w=b=>{a.value||(m.value=p(b))},y=()=>{_.value=!1,m.value!==c.query.tab&&s.push({query:{tab:m.value}})};Yt(()=>_.value,b=>{b?m.value=u.value:u.value=m.value});const x=()=>N(this,null,function*(){try{const{data:b}=yield j.Quickwifi.List.GET(),{error:h,result:v}=b;if(h)throw h;v!=null&&v.ifaces&&(l.value=v.ifaces.map(C=>pt(lt({},C),{hidden:C.hidden||!1,disabled:C.disabled||!1,isGuest:C.isGuest||!1,channel:C.channel||0,txpower:C.txpower||0,ifaceIndex:C.ifaceIndex||0})));let k=!1;for(let C=0;C0&&f(l.value[0])}catch(b){console.log(b)}});return x(),(b,h)=>(r(),d("div",wP,[t("div",kP,[t("div",yP,[t("div",FP,[(r(!0),d(U,null,tt(l.value,v=>(r(),d("div",{key:p(v),class:st(u.value===p(v)?"tag-item active":"tag-item"),onClick:ct(k=>f(v),["stop"])},i(g(v))+" "+i(v.isGuest?` ${e(n)("\u8BBF\u5BA2")}`:"")+" Wi-Fi "+i(v.ifaceIndex?`[${v.ifaceIndex}]`:""),11,EP))),128))]),t("div",$P,[CP,t("div",{class:"more-btn",onClick:h[0]||(h[0]=v=>_.value=!0)},AP)])])]),t("div",SP,[t("div",zP,[(r(!0),d(U,null,tt(l.value,v=>(r(),d("div",{key:p(v),class:st(u.value===p(v)?"item activeItem":"item"),onClick:ct(k=>f(v),["stop"])},i(g(v))+" "+i(v.isGuest?` ${e(n)("\u8BBF\u5BA2")}`:"")+" Wi-Fi "+i(v.ifaceIndex?`[${v.ifaceIndex}]`:""),11,PP))),128))]),t("div",TP,[(r(!0),d(U,null,tt(l.value,v=>(r(),d(U,{key:p(v)},[u.value===p(v)?(r(),J(xP,{key:0,data:v,onGetData:x},null,8,["data"])):D("",!0)],64))),128))])]),_.value?(r(),d("div",{key:0,class:"popup-overlay",onClick:h[2]||(h[2]=ct(v=>_.value=!1,["self"]))},[t("div",IP,[t("div",MP,[(r(!0),d(U,null,tt(l.value,v=>(r(),d("div",{key:p(v),class:st(m.value===p(v)?"popup-tag-item active":"popup-tag-item"),onClick:ct(k=>w(v),["stop"])},i(g(v))+" "+i(v.isGuest?` ${e(n)("\u8BBF\u5BA2")}`:"")+" Wi-Fi "+i(v.ifaceIndex?`[${v.ifaceIndex}]`:""),11,LP))),128))]),t("div",OP,[t("button",{class:"cancel-btn",onClick:h[1]||(h[1]=v=>_.value=!1)},i(e(n)("\u53D6\u6D88")),1),t("button",{class:"confirm-btn",onClick:y},i(e(n)("\u786E\u5B9A")),1)])])])):D("",!0)]))}});var VP=O(NP,[["__scopeId","data-v-40cb5302"]]);const GP=()=>window.vue_base||"/cgi-bin/luci/admin/quickstart",so=Bo({history:Yo(GP()),routes:[{name:"IndexPage",path:"/",meta:{title:"\u63A7\u5236\u53F0"},component:Nb},{name:"NetworkPage",path:"/network",meta:{title:"\u7F51\u7EDC\u8BBE\u7F6E\u5411\u5BFC"},component:jb,children:[{path:"",component:yh},{path:"pppoe",component:Rh},{path:"dhcp",component:A_},{path:"gateway",component:wx}]},{path:"/quickwifi",component:VP},{name:"RaidPage",path:"/raid",meta:{title:"raid\u5411\u5BFC"},component:Uk},{name:"SmartPage",path:"/smart",meta:{title:"smart\u68C0\u6D4B"},component:Qk,children:[{path:"",component:XE},{path:"task",component:m$},{path:"log",component:h$}]},{path:"/interfaceconfig",component:DC},{path:"/devicemanagement",component:ZA},{path:"/networkSpeedTest",component:JS}]});so.beforeEach((o,n)=>(o.meta.title,!0));const yt=vt(en);yt.component("svg-menu",ln);yt.component("svg-system",gn);yt.component("svg-download",wn);yt.component("svg-store",Bn);yt.component("svg-info",Tn);yt.component("svg-disk",ii);yt.component("svg-nav",ui);yt.component("progress-item",La);yt.component("svg-view-show",Ti);yt.component("svg-view-hidden",Vi);yt.component("article-item",Hi);yt.component("switch-box",Oa);yt.component("editable-select",Jt);yt.use(Na);yt.use(so);yt.use(Ao());zo(yt).finally(()=>yt.mount("#app"))});export default jP();
diff --git a/luci-app-quickstart/htdocs/luci-static/quickstart/style.css b/luci-app-quickstart/htdocs/luci-static/quickstart/style.css
index d5aa00d..a6c5d57 100644
--- a/luci-app-quickstart/htdocs/luci-static/quickstart/style.css
+++ b/luci-app-quickstart/htdocs/luci-static/quickstart/style.css
@@ -1 +1 @@
-@keyframes bganimation-41cbce66{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-41cbce66{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-41cbce66{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-41cbce66]{animation:rotateEnter-41cbce66 .7s;position:relative}.rotate-leave-active[data-v-41cbce66]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-41cbce66]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.disk-item-tooltip[data-v-41cbce66]{position:fixed;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;font-size:1em;min-width:200px;line-height:24px}.disk-item-tooltip[data-v-41cbce66]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}#main .app-btn,#actioner .app-btn{min-height:36px}@keyframes bganimation-2d97dedc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2d97dedc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2d97dedc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2d97dedc]{animation:rotateEnter-2d97dedc .7s;position:relative}.rotate-leave-active[data-v-2d97dedc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2d97dedc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#main[data-v-2d97dedc]{width:100%}#main[data-v-2d97dedc],#main[data-v-2d97dedc] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}:root{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}@media (prefers-color-scheme: light){:root{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}}@media (prefers-color-scheme: dark){:root{--flow-bg-color: transparent;--flow-span-color: #cccccc;--card-bg-color: #88888822;--card-box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, .35);--app-container_title-color: #cccccc;--app-container_status-label_block: #727272;--item-label_key-span-color: #cccccc;--item-label_value-span-color: #cccccc;--app-container_status-label_bg: #0000001a;--item_btn-border: 1px solid #cccccc;--item_btn-color: #cccccc;--tit-color: #cccccc;--popup-bg-color: #000;--tag-bg-color: #1e1e1e;--gradient-bg-color:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 62%, rgba(0,0,0,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #0000001a;--SystemUpdateBanner-bg-color: #2c2c2c;--SystemUpdateBanner-border-color: #2c2c2c;--btn-border-color: #727272;--card-txt-color: #32325d;--SystemInfo-bg-color:#2c2c2c}#app svg path{color:#666}#app svg circle{stroke:#666}}@media (prefers-color-scheme: no-preference){:root{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}}body[theme=dark]{--flow-bg-color: transparent;--flow-span-color: #cccccc;--card-bg-color: #88888822;--card-box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, .35);--app-container_title-color: #cccccc;--app-container_status-label_block: #727272;--item-label_key-span-color: #cccccc;--item-label_value-span-color: #cccccc;--app-container_status-label_bg: #0000001a;--item_btn-border: 1px solid #cccccc;--item_btn-color: #cccccc;--tit-color: #cccccc;--popup-bg-color: #000;--tag-bg-color: #1e1e1e;--gradient-bg-color:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 62%, rgba(0,0,0,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #0000001a;--SystemUpdateBanner-bg-color: #2c2c2c;--SystemUpdateBanner-border-color: #2c2c2c;--btn-border-color: #727272;--card-txt-color: #32325d;--SystemInfo-bg-color:#2c2c2c}body[theme=light]{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}@keyframes bganimation-3ee635ef{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3ee635ef{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3ee635ef{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3ee635ef]{animation:rotateEnter-3ee635ef .7s;position:relative}.rotate-leave-active[data-v-3ee635ef]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3ee635ef]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.progress[data-v-3ee635ef]{width:100%;display:block;position:relative;background-color:#eee;border-radius:4px;height:18px;line-height:18px;overflow:hidden}.progress .progress-value[data-v-3ee635ef]{transition:.5s;position:absolute;left:0;top:0;bottom:0;height:100%;text-align:center;color:#fff;vertical-align:middle;font-size:12px}@keyframes bganimation-54af3568{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-54af3568{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-54af3568{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-54af3568]{animation:rotateEnter-54af3568 .7s;position:relative}.rotate-leave-active[data-v-54af3568]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-54af3568]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}label.checkbox_switch[data-v-54af3568]{cursor:pointer;display:flex!important;align-items:center;width:initial!important}label.checkbox_switch input[type=checkbox][data-v-54af3568]{height:0!important;width:0!important;opacity:0!important;margin:0!important;padding:0!important;border:none!important}label.checkbox_switch .checkbox_switch_on[data-v-54af3568],label.checkbox_switch .checkbox_switch_off[data-v-54af3568]{flex:none}label.checkbox_switch .checkbox_switch_on[data-v-54af3568]{display:none!important}label.checkbox_switch .checkbox_switch_off[data-v-54af3568]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_on[data-v-54af3568]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_off[data-v-54af3568]{display:none!important}label.checkbox_switch svg[data-v-54af3568]{height:1em;width:2em}article[data-v-995510fc]{flex:0 0 100%;max-width:20%;position:relative;border-radius:4px;padding:10px}@media screen and (max-width: 1080px){article[data-v-995510fc]{max-width:33.333%}}@keyframes bganimation-995510fc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-995510fc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-995510fc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-995510fc]{animation:rotateEnter-995510fc .7s;position:relative}.rotate-leave-active[data-v-995510fc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-995510fc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){article[data-v-995510fc]{max-width:50%}}@keyframes bganimation-782f97c0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-782f97c0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-782f97c0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-782f97c0]{animation:rotateEnter-782f97c0 .7s;position:relative}.rotate-leave-active[data-v-782f97c0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-782f97c0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}a[data-v-782f97c0]{position:relative;display:block;width:100%;transition:.4s;cursor:pointer}a[data-v-782f97c0]:hover{transform:scale(1.07);transition:.4s;position:relative}a:hover .cover .thumbnail[data-v-782f97c0]{box-shadow:0 6px 40px #1c67f2}a .cover[data-v-782f97c0]{position:relative;padding-top:130%;z-index:1}a .cover[data-v-782f97c0] .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:6px;overflow:hidden;z-index:1;background-color:#2dc8fd;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}a .cover[data-v-782f97c0] .thumbnail i{display:block;font-size:100px;color:#eee}a .cover[data-v-782f97c0] .thumbnail span{display:block;text-align:center;width:100%;color:#eeee;font-size:28px;margin:1rem 0}article:nth-child(9n+1) a .cover .thumbnail[data-v-782f97c0]{background-color:#ff9100}article:nth-child(9n+2) a .cover .thumbnail[data-v-782f97c0]{background-color:#2dc8fd}article:nth-child(9n+3) a .cover .thumbnail[data-v-782f97c0]{background-color:#f66a2c}article:nth-child(9n+4) a .cover .thumbnail[data-v-782f97c0]{background-color:#9b58de}article:nth-child(9n+5) a .cover .thumbnail[data-v-782f97c0]{background-color:#297ff3}article:nth-child(9n+6) a .cover .thumbnail[data-v-782f97c0]{background-color:#27aa8f}article:nth-child(9n+7) a .cover .thumbnail[data-v-782f97c0]{background-color:#f15a4a}article:nth-child(9n+8) a .cover .thumbnail[data-v-782f97c0]{background-color:#439c07}@keyframes bganimation-c446588c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-c446588c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-c446588c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-c446588c]{animation:rotateEnter-c446588c .7s;position:relative}.rotate-leave-active[data-v-c446588c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-c446588c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.select-editable[data-v-c446588c]{position:relative;line-height:1.5rem;padding:.5rem .75rem;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-c446588c],.select-editable input[data-v-c446588c]{height:100%;padding:0;border:none;margin:0}.select-editable select[data-v-c446588c]{position:relative;width:100%}.select-editable input[data-v-c446588c]{position:absolute;top:0;left:.75rem;width:88%}.select-editable select[data-v-c446588c]:focus,.select-editable input[data-v-c446588c]:focus{outline:none;box-shadow:none}@keyframes bganimation-47c6049a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-47c6049a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-47c6049a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-47c6049a]{animation:rotateEnter-47c6049a .7s;position:relative}.rotate-leave-active[data-v-47c6049a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-47c6049a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-47c6049a{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.quick-loading[data-v-47c6049a]{animation:turn-47c6049a 1s steps(12,end) infinite;margin:0!important;padding:0!important;background:none!important;display:flex!important}.quick-loading svg[data-v-47c6049a]{width:100%;height:100%}.quick-loading svg path[data-v-47c6049a]{fill:#fff}@keyframes bganimation-0cc5bf50{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0cc5bf50{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0cc5bf50{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0cc5bf50]{animation:rotateEnter-0cc5bf50 .7s;position:relative}.rotate-leave-active[data-v-0cc5bf50]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0cc5bf50]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}a[data-v-0cc5bf50]{margin-left:4px;width:20px;vertical-align:middle}a svg[data-v-0cc5bf50]{width:22px;height:22px}a:hover svg path[data-v-0cc5bf50]{fill:#3688ff}.reusable-card[data-v-7af4a3d5]{border:1px solid;border-radius:10px;padding:20px 14px;box-sizing:border-box;background-clip:padding-box;display:flex;flex-direction:column;gap:12px;border:1px solid var(--border-color);background:var(--card-bg-color)}.card-header[data-v-7af4a3d5]{display:flex;justify-content:space-between;align-items:center}.card-header .left[data-v-7af4a3d5]{display:flex;align-items:center;gap:8px}.card-header[data-v-7af4a3d5]>svg{width:20px;height:20px}.title[data-v-7af4a3d5]{font-size:16px;font-weight:600;line-height:1;color:var(--app-container_title-color)}.settings-btn[data-v-7af4a3d5]{cursor:pointer}.card-body[data-v-7af4a3d5]{flex:1 1 auto}.card-footer[data-v-7af4a3d5]{display:flex;justify-content:center}.footer-btn[data-v-7af4a3d5]{display:inline-flex;align-items:center;gap:8px;padding:6px 8px;border-radius:6px;border:1px solid var(--btn-border-color);justify-content:center;cursor:pointer;width:100%;max-width:600px;margin-top:16px}.footer-icon[data-v-7af4a3d5]{display:inline-flex;align-items:center}.footer-text[data-v-7af4a3d5]{font-size:14px;font-weight:400;color:var(--app-container_title-color)}.settings-icon[data-v-7af4a3d5]{width:20px;height:20px}.settings-icon[data-v-7af4a3d5] svg,.settings-icon[data-v-7af4a3d5] g,.settings-icon[data-v-7af4a3d5] path,.settings-icon[data-v-7af4a3d5] circle,.settings-icon[data-v-7af4a3d5] rect,.settings-icon[data-v-7af4a3d5] line,.settings-icon[data-v-7af4a3d5] polyline,.settings-icon[data-v-7af4a3d5] polygon{fill:var(--app-container_title-color)!important;stroke:var(--app-container_title-color)!important}.settings-wrapper[data-v-7af4a3d5]{position:relative}.dropdown-menu[data-v-7af4a3d5]{position:absolute;top:38px;right:0;background:#fff;border-radius:6px;padding:16px 0;min-width:220px;box-shadow:0 4px 12px #0003;z-index:10}.fade-enter-active[data-v-7af4a3d5],.fade-leave-active[data-v-7af4a3d5]{transition:opacity .2s}.fade-enter-from[data-v-7af4a3d5],.fade-leave-to[data-v-7af4a3d5]{opacity:0}.dropdown-menu[data-v-7af4a3d5] div{display:block;width:100%;text-align:center;padding:8px 0;border:none;background:none;cursor:pointer;font-size:14px;color:#333;transition:background .2s,color .2s}.dropdown-menu[data-v-7af4a3d5] div:hover{background-color:#eee}@keyframes bganimation-7af4a3d5{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7af4a3d5{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7af4a3d5{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7af4a3d5]{animation:rotateEnter-7af4a3d5 .7s;position:relative}.rotate-leave-active[data-v-7af4a3d5]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7af4a3d5]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.reusable-card[data-v-7af4a3d5]{padding:10px;border-radius:6px}.title[data-v-7af4a3d5]{font-size:14px}.footer-btn[data-v-7af4a3d5]{margin-top:6px}.dropdown-menu[data-v-7af4a3d5]{padding:8px 0;min-width:150px}}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[lock-scroll=true]{overflow:hidden!important;height:100vh}@keyframes bganimation-a96d68d4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a96d68d4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-a96d68d4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-a96d68d4]{animation:rotateEnter-a96d68d4 .7s;position:relative}.rotate-leave-active[data-v-a96d68d4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a96d68d4]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.bg[data-v-a96d68d4]{position:fixed;inset:0;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:999}#actioner[data-v-a96d68d4]{position:fixed;z-index:1000;width:100%;height:100%;inset:0;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;overflow:auto}#actioner[data-v-a96d68d4],#actioner[data-v-a96d68d4] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}.action-container[data-v-a96d68d4]{width:100%;height:100%;background-color:#fff;position:fixed;z-index:9999;inset:0;margin:auto;overflow:auto}.action-container .action-container_header[data-v-a96d68d4]{width:100%;height:36px;line-height:36px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:0 .625rem;position:absolute;top:0;left:0;right:0;border-bottom:1px solid #1e1e1e;background-color:#252526}.action-container .action-container_header .title[data-v-a96d68d4]{color:#eee;font-size:16px}.action-container .action-container_header button.close[data-v-a96d68d4]{width:36px;height:36px;margin:0;padding:10px;background:none;border:none;cursor:pointer;opacity:1}.action-container .action-container_header button.close[data-v-a96d68d4] svg.icon{width:100%;height:100%}.action-container .action-container_header button.close[data-v-a96d68d4] svg.icon path{fill:#eee}.action-container .action-container_header button.close[data-v-a96d68d4]:hover{opacity:.9}.action-container .action-container_body[data-v-a96d68d4]{width:100%;height:100%;padding-top:36px}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes dialogEnter{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes dialogLeave{0%{transform:scale(1)}to{transform:scale(0)}}.dialog-enter-active{animation:dialogEnter .3s linear forwards}.dialog-leave-active{animation:dialogLeave .3s linear forwards}@keyframes bganimation-0bd83418{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0bd83418{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0bd83418{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0bd83418]{animation:rotateEnter-0bd83418 .7s;position:relative}.rotate-leave-active[data-v-0bd83418]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0bd83418]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}ul.disk-item[data-v-0bd83418]{width:100%;margin-bottom:10px}ul.disk-item .auto[data-v-0bd83418]{flex:auto}ul.disk-item .disk-item_icon[data-v-0bd83418]{width:24px;height:24px;margin-right:.5rem}ul.disk-item .disk-item_icon svg[data-v-0bd83418]{width:100%;height:100%}ul.disk-item li.disk-info[data-v-0bd83418]{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding:5px 1rem;height:50px;cursor:pointer;color:#666;font-size:12px;border-left:3px solid #89897f}ul.disk-item li.disk-info[data-v-0bd83418]:hover{background-color:#ecf5ff}ul.disk-item li.disk-info .disk-item_icon svg path[data-v-0bd83418]{fill:#09aaff}ul.disk-item li.disk-info .disk-item_f[data-v-0bd83418]{display:flex;flex-wrap:wrap}ul.disk-item li.disk-info .disk-item_f .disk-item_venderModel[data-v-0bd83418],ul.disk-item li.disk-info .disk-item_f .disk-item_used[data-v-0bd83418]{width:100%}ul.disk-item li.disk-info.on[data-v-0bd83418]{border-left:3px solid #ff9c08}ul.disk-item li.disk-info.on.nopoint[data-v-0bd83418]{background-color:#ecf5ff}ul.disk-item .disk-children[data-v-0bd83418]{width:100%;color:#666}ul.disk-item .disk-children li.disk-children_item[data-v-0bd83418]{width:100%;height:40px;line-height:40px;padding-left:2rem;font-size:12px;cursor:pointer;display:flex;flex-wrap:nowrap;align-items:center;border-left:3px solid #89897f;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}ul.disk-item .disk-children li.disk-children_item[data-v-0bd83418]:hover{background-color:#ecf5ff}ul.disk-item .disk-children li.disk-children_item span[data-v-0bd83418]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}ul.disk-item .disk-children li.disk-children_item.on.on[data-v-0bd83418]{border-left:3px solid #ff9c08;background-color:#ecf5ff}@keyframes bganimation-48bf84c6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-48bf84c6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-48bf84c6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-48bf84c6]{animation:rotateEnter-48bf84c6 .7s;position:relative}.rotate-leave-active[data-v-48bf84c6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-48bf84c6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-48bf84c6{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.toast[data-v-48bf84c6]{position:fixed;top:50%;left:50%;display:flex;flex-direction:column;align-items:center;justify-content:space-around;box-sizing:content-box;width:100px;max-width:70%;padding:16px;color:#fff;font-size:14px;text-align:center;background-color:#000000b3;border-radius:8px;transform:translate3d(-50%,-50%,0);z-index:9999;transition:.3s;cursor:pointer}.toast div.icon[data-v-48bf84c6]{width:50px;height:50px;margin:15px 0;background:none!important}.toast div.icon svg[data-v-48bf84c6]{width:100%;height:100%}.toast div.icon svg path[data-v-48bf84c6]{fill:#fff}.toast .loading[data-v-48bf84c6]{animation:turn-48bf84c6 1s steps(12,end) infinite}.toast .message[data-v-48bf84c6]{display:block;width:100%;flex:0 0 100%;word-wrap:break-word}.action .action-footer button[data-v-3dae3be2]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3dae3be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3dae3be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3dae3be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3dae3be2]{animation:rotateEnter-3dae3be2 .7s;position:relative}.rotate-leave-active[data-v-3dae3be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3dae3be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-3dae3be2]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-3dae3be2]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-3dae3be2]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-3dae3be2]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-3dae3be2]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-3dae3be2]{flex:auto}.action.format .disk-list[data-v-3dae3be2]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-3dae3be2]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-3dae3be2]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-3dae3be2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-3dae3be2]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-3dae3be2]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-3dae3be2],.action.format .label-item .label-item_value input[data-v-3dae3be2]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-3dae3be2]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-3dae3be2]{flex:auto}.action.format p.msg[data-v-3dae3be2]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-3dae3be2]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-3dae3be2]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-3dae3be2]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-3dae3be2]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-3dae3be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3dae3be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3dae3be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3dae3be2]{animation:rotateEnter-3dae3be2 .7s;position:relative}.rotate-leave-active[data-v-3dae3be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3dae3be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-3dae3be2]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-3dae3be2]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-3dae3be2]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-3dae3be2]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-3dae3be2]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-3dae3be2]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-3dae3be2]{color:#0000fb}.action.result .btns[data-v-3dae3be2]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-3dae3be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3dae3be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3dae3be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3dae3be2]{animation:rotateEnter-3dae3be2 .7s;position:relative}.rotate-leave-active[data-v-3dae3be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3dae3be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format[data-v-3dae3be2]{width:168%}}@media screen and (max-width: 900px){.action.format[data-v-3dae3be2]{width:146%}}@media screen and (max-width: 800px){.action.format[data-v-3dae3be2]{width:136%}}@media screen and (max-width: 700px){.action.format[data-v-3dae3be2]{width:116%}}@media screen and (max-width: 500px){.action.format[data-v-3dae3be2]{width:100%}}.action .action-footer button[data-v-b222ef5e]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.list[data-v-b222ef5e]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.list .action-header[data-v-b222ef5e]{width:100%;height:70px;line-height:70px}.action.list .action-header .action-header_title[data-v-b222ef5e]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.list .action-body[data-v-b222ef5e]{width:100%;height:calc(100% - 176px)}.action.list .action-msg[data-v-b222ef5e]{width:100%;height:36px;line-height:36px;text-align:center}.action.list .action-footer[data-v-b222ef5e]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.list .action-footer .auto[data-v-b222ef5e]{flex:auto}.action.list .disk-list[data-v-b222ef5e]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-b222ef5e]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-b222ef5e]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-b222ef5e]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-b222ef5e]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-b222ef5e]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-b222ef5e]{flex:auto}.action.format .disk-list[data-v-b222ef5e]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-b222ef5e]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-b222ef5e]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-b222ef5e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-b222ef5e]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-b222ef5e]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-b222ef5e],.action.format .label-item .label-item_value input[data-v-b222ef5e]{width:100%;height:36px}.action.format .auto[data-v-b222ef5e]{flex:auto}.action.format p.msg[data-v-b222ef5e]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-b222ef5e]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-b222ef5e]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-b222ef5e]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-b222ef5e]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-b222ef5e]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-header[data-v-b222ef5e]{width:100%;height:70px;line-height:70px}.action.result .action-header .action-header_title[data-v-b222ef5e]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.result .action-body[data-v-b222ef5e]{width:100%;height:calc(100% - 140px);overflow:auto}.action.result .action-body .format-result[data-v-b222ef5e]{width:100%;text-align:center;font-size:2em;color:#333;margin:1rem 0}.action.result .action-body .format-info[data-v-b222ef5e]{width:100%;text-align:center;font-size:1.3em}.action.result .action-body .format-info a[data-v-b222ef5e]{color:#f70324}.action.result .action-footer[data-v-b222ef5e]{width:100%;height:70px;line-height:70px;color:#333}.action.result .auto[data-v-b222ef5e]{flex:auto}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.list[data-v-b222ef5e]{width:136%}}@media screen and (max-width: 900px){.action.list[data-v-b222ef5e]{width:126%}}@media screen and (max-width: 800px){.action.list[data-v-b222ef5e]{width:112%}}@media screen and (max-width: 700px){.action.list[data-v-b222ef5e]{width:100%}}@media screen and (max-width: 500px){.action.list[data-v-b222ef5e]{width:80%}}@keyframes bganimation-45926ac6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-45926ac6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-45926ac6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-45926ac6]{animation:rotateEnter-45926ac6 .7s;position:relative}.rotate-leave-active[data-v-45926ac6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-45926ac6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-45926ac6]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-45926ac6]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-45926ac6]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-45926ac6]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-45926ac6]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-45926ac6]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-45926ac6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-45926ac6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-45926ac6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-45926ac6]{animation:rotateEnter-45926ac6 .7s;position:relative}.rotate-leave-active[data-v-45926ac6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-45926ac6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@keyframes bganimation-2b3974a4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2b3974a4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2b3974a4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2b3974a4]{animation:rotateEnter-2b3974a4 .7s;position:relative}.rotate-leave-active[data-v-2b3974a4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2b3974a4]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-2b3974a4]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-2b3974a4]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-2b3974a4]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-2b3974a4]{width:100%;height:calc(100% - 140px);overflow:auto}.action .action-body .label-item[data-v-2b3974a4]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-2b3974a4]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-2b3974a4]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-2b3974a4]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-2b3974a4]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-2b3974a4],.action .action-body .label-item .label-item_value input[data-v-2b3974a4]{width:100%;height:36px}.action .action-footer[data-v-2b3974a4]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action .action-footer .auto[data-v-2b3974a4]{flex:auto}.action .action-footer button[data-v-2b3974a4]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-88275da0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-88275da0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-88275da0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-88275da0]{animation:rotateEnter-88275da0 .7s;position:relative}.rotate-leave-active[data-v-88275da0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-88275da0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-88275da0]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-88275da0]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-88275da0]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-88275da0]{width:100%;height:calc(100% - 140px)}.action .action-body .label-item[data-v-88275da0]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-88275da0]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-88275da0]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-88275da0]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-88275da0]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-88275da0],.action .action-body .label-item .label-item_value input[data-v-88275da0]{width:100%;height:36px}.action .action-body .samba-item[data-v-88275da0]{margin-top:-18px;font-size:12px}.action .action-body .samba-item .samba-item_allow[data-v-88275da0]{display:flex;align-items:flex-end}.action .action-body .samba-item .samba-item_allow .samba-allow[data-v-88275da0]{padding-left:10px;cursor:pointer}.action .action-body .samba-item .samba-item_tips[data-v-88275da0]{margin-top:10px}.action .action-body .samba-item .samba-item_tips .tooltip-trigger[data-v-88275da0]{display:flex}.action .action-body .samba-item .samba-item_tips .samba_dir_tip[data-v-88275da0]{margin-left:10px}.action .action-footer[data-v-88275da0]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center;padding-bottom:30px}.action .action-footer .auto[data-v-88275da0]{flex:auto}.action .action-footer button[data-v-88275da0]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3f686017{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3f686017{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3f686017{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3f686017]{animation:rotateEnter-3f686017 .7s;position:relative}.rotate-leave-active[data-v-3f686017]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3f686017]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-3f686017]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-3f686017]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action h3.desc[data-v-3f686017]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:1rem 0;text-align:center}.action form[data-v-3f686017]{width:100%;display:block;padding:2rem 0}.action form label[data-v-3f686017]{width:100%;display:block;margin:1rem 0}.action form label input[data-v-3f686017],.action form label select[data-v-3f686017]{width:100%;display:block;height:42px}.action .btns[data-v-3f686017]{width:100%;margin-top:3rem}.action .btns button[data-v-3f686017]{display:block;width:100%!important;margin:.5rem 0}.action li.disk-item[data-v-3f686017]{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;width:100%;padding:5px 1rem;border-bottom:1px solid #eee;cursor:pointer}.action li.disk-item[data-v-3f686017]:hover{background-color:#eee}.action li.disk-item .disk-item_f[data-v-3f686017]{display:flex;flex-wrap:wrap}.action li.disk-item .disk-item_f .disk-item_venderModel[data-v-3f686017],.action li.disk-item .disk-item_f .disk-item_used[data-v-3f686017]{width:100%}.action .tips[data-v-3f686017]{float:right;font-size:.8em}@keyframes bganimation-3f686017{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3f686017{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3f686017{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3f686017]{animation:rotateEnter-3f686017 .7s;position:relative}.rotate-leave-active[data-v-3f686017]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3f686017]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action h2.title[data-v-3f686017]{font-size:2em}}@keyframes bganimation-376759fb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-376759fb{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-376759fb{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-376759fb]{animation:rotateEnter-376759fb .7s;position:relative}.rotate-leave-active[data-v-376759fb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-376759fb]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.aria2-item[data-v-376759fb]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.aria2-item .aria2-item_name[data-v-376759fb]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.aria2-item .aria2-item_value[data-v-376759fb]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.aria2-item .aria2-item_value .configure[data-v-376759fb]{color:#297ff3;padding:3px}li.aria2-item .aria2-item_value .configure.enabel[data-v-376759fb]{color:#888}.use-url_app[data-v-376759fb]{padding-bottom:14px}.use-url_app a[data-v-376759fb]{text-decoration:none;color:#297ff3}@keyframes bganimation-086db06c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-086db06c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-086db06c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-086db06c]{animation:rotateEnter-086db06c .7s;position:relative}.rotate-leave-active[data-v-086db06c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-086db06c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.qbittorrent-item[data-v-086db06c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.qbittorrent-item .qbittorrent-item_name[data-v-086db06c]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.qbittorrent-item .qbittorrent-item_value[data-v-086db06c]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.qbittorrent-item .qbittorrent-item_value .configure[data-v-086db06c]{color:#297ff3;padding:3px}li.qbittorrent-item .qbittorrent-item_value .configure.enabel[data-v-086db06c]{color:#888}a[data-v-086db06c]{text-decoration:none;color:#297ff3}@keyframes bganimation-3232162a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3232162a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3232162a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3232162a]{animation:rotateEnter-3232162a .7s;position:relative}.rotate-leave-active[data-v-3232162a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3232162a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.transmission-item[data-v-3232162a]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.transmission-item .transmission-item_name[data-v-3232162a]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.transmission-item .transmission-item_value[data-v-3232162a]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.transmission-item .transmission-item_value .configure[data-v-3232162a]{color:#297ff3;padding:3px}li.transmission-item .transmission-item_value .configure.enabel[data-v-3232162a]{color:#888}a[data-v-3232162a]{text-decoration:none;color:#297ff3}@keyframes bganimation-395b81d2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-395b81d2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-395b81d2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-395b81d2]{animation:rotateEnter-395b81d2 .7s;position:relative}.rotate-leave-active[data-v-395b81d2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-395b81d2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-395b81d2]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:1rem 87px;border-radius:6px}.action p[data-v-395b81d2]{color:#999;font-size:14px}.action input[data-v-395b81d2]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC}.action h2.title[data-v-395b81d2]{width:100%;color:#1e1e1e;font-size:22px;font-family:PingFangSC-Medium,PingFang SC;padding:0;margin:0;text-align:center}.action span[data-v-395b81d2]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4;font-weight:700}.action form label[data-v-395b81d2]{width:100%}.action form label input[data-v-395b81d2],.action form label select[data-v-395b81d2]{height:100%;font-size:14px}.action .myinput_wrap[data-v-395b81d2],.action .RPC_input[data-v-395b81d2]{width:85%}.action .myinput_wrap textarea[data-v-395b81d2]{width:100%;padding:2px 3px;border:1px solid #dee2e6;border-radius:.25rem}.action .input_row[data-v-395b81d2]{margin:16px 0;display:flex;justify-content:left;align-items:center}.action .input_row .radios[data-v-395b81d2]{margin-right:10px}.action .input_row .radios input[data-v-395b81d2],.action .input_row .radios label[data-v-395b81d2]{cursor:pointer}.action .Tracker label[data-v-395b81d2]{margin-right:10px;cursor:pointer}.action .Tracker_input[data-v-395b81d2]{padding:6px 2px}.action .btns[data-v-395b81d2]{width:100%;margin:42px auto 0}.action .btns button[data-v-395b81d2]{display:block;width:100%!important;margin:.5rem 0}.action .tooltip-trigger[data-v-395b81d2]{position:relative;display:inline-block;cursor:help;margin-right:6px}.action .tooltip-trigger .tooltip-text[data-v-395b81d2]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.action .tooltip-trigger .tooltip-text span[data-v-395b81d2]{color:#fff}.action .tooltip-trigger .tooltip-text .dowload_dir_tip[data-v-395b81d2]{min-width:14rem;display:inline-block}.action .tooltip-trigger:hover .tooltip-text[data-v-395b81d2]{visibility:visible;opacity:1}.action .tooltip-top[data-v-395b81d2]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.action .tooltip-bottom[data-v-395b81d2]{top:100%;left:50%;margin-top:5px;transform:translate(-50%)}.action .tooltip-bottom .dowload_rpc_tip[data-v-395b81d2]{min-width:10rem;display:inline-block}.action .tooltip-right[data-v-395b81d2]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.action .tooltip-left[data-v-395b81d2]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.action .tooltip-top[data-v-395b81d2]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.action .tooltip-bottom[data-v-395b81d2]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.action .successed[data-v-395b81d2]{text-align:center;font-size:14px}.action .finished[data-v-395b81d2]{display:flex;justify-content:center;margin:80px 80px 28px}.left[data-v-395b81d2]{display:flex;align-items:center;justify-content:flex-start;width:110px;flex:none}.select-editable[data-v-395b81d2]{position:relative;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-395b81d2]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.select-editable input[data-v-395b81d2]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-395b81d2]:focus,.select-editable input[data-v-395b81d2]:focus{outline:none}[data-v-395b81d2]::placeholder{color:#999}@keyframes bganimation-395b81d2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-395b81d2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-395b81d2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-395b81d2]{animation:rotateEnter-395b81d2 .7s;position:relative}.rotate-leave-active[data-v-395b81d2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-395b81d2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action[data-v-395b81d2]{width:100%}.action .input_row[data-v-395b81d2]{display:block}.action .input_row .myinput_wrap[data-v-395b81d2],.action .input_row .RPC_input[data-v-395b81d2]{width:100%}}@keyframes bganimation-2299b58c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2299b58c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2299b58c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2299b58c]{animation:rotateEnter-2299b58c .7s;position:relative}.rotate-leave-active[data-v-2299b58c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2299b58c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-2299b58c]{width:1.3rem;height:1.3rem}.icon1[data-v-2299b58c]{width:1rem;height:1rem}.icon2[data-v-2299b58c]{width:1.5rem;height:1.5rem;margin-bottom:12px}[data-v-2299b58c] .downloadIcon path{fill:var(--app-container_title-color)!important}a[data-v-2299b58c]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-2299b58c]{color:#333;margin-top:20px;margin-bottom:20px;font-weight:400}.content .tab[data-v-2299b58c]{display:flex;gap:8px}.content .tab .item[data-v-2299b58c]{flex:1;padding:16px;display:flex;flex-direction:column;align-items:center;border-radius:10px;cursor:pointer}.content .tab .item .title[data-v-2299b58c]{margin-bottom:8px}.content .tab .item>span[data-v-2299b58c]{font-size:12px}.content .tab .active[data-v-2299b58c]{border:2px solid #6d6d6d}.content .tab .cloud[data-v-2299b58c]{background-color:#fff7ed;color:#ca3500}.content .tab .memory[data-v-2299b58c]{background-color:#f9fafb;color:#364153}.content .tab .network[data-v-2299b58c]{background-color:#f0fdfa;color:#277881}.btn_settings[data-v-2299b58c]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-2299b58c]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-2299b58c]{transform:rotate(90deg)}@keyframes bganimation-2299b58c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2299b58c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2299b58c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2299b58c]{animation:rotateEnter-2299b58c .7s;position:relative}.rotate-leave-active[data-v-2299b58c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2299b58c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-2299b58c]{margin:10px 0}}@keyframes bganimation-73552138{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-73552138{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-73552138{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-73552138]{animation:rotateEnter-73552138 .7s;position:relative}.rotate-leave-active[data-v-73552138]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-73552138]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}h3[data-v-73552138]{text-align:center;margin-bottom:20px}.label-item[data-v-73552138]{display:flex;align-items:center;flex-wrap:wrap;margin:1rem 0;padding:0 30px}.label-item label[data-v-73552138]{display:flex;flex-wrap:wrap;align-items:center;width:100%;height:26px;line-height:26px;cursor:pointer}.label-item label input[type=radio][data-v-73552138]{top:0;right:0;vertical-align:middle}.label-item label span[data-v-73552138]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#000000d4;display:inline-block;margin-left:10px}.label-item p.label_info[data-v-73552138]{color:#999;font-size:12px;padding-left:24px;line-height:20px}.label-item .label-item_key[data-v-73552138]{display:flex;flex-wrap:wrap;align-items:center}.label-item .label-item_key .ddnsto_serve[data-v-73552138]{flex:0 0 100%;display:flex;justify-content:space-between;margin-bottom:14px}.label-item .label-item_key .ddnsto_serve_item[data-v-73552138]{flex:0 0 100%;display:flex;justify-content:space-between}@keyframes bganimation-b9ee57da{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b9ee57da{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b9ee57da{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b9ee57da]{animation:rotateEnter-b9ee57da .7s;position:relative}.rotate-leave-active[data-v-b9ee57da]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b9ee57da]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-b9ee57da]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-b9ee57da]{width:100px;height:100px}.actioner-container_body .body-title[data-v-b9ee57da]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-tips[data-v-b9ee57da]{text-align:center}.actioner-container_body .body-info[data-v-b9ee57da]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body .body-tips[data-v-b9ee57da]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-b9ee57da]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-b9ee57da]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-aefb6fdc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-aefb6fdc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-aefb6fdc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-aefb6fdc]{animation:rotateEnter-aefb6fdc .7s;position:relative}.rotate-leave-active[data-v-aefb6fdc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-aefb6fdc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-aefb6fdc]{width:100%;height:100%;border:none}@keyframes bganimation-0e2b47e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0e2b47e6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0e2b47e6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0e2b47e6]{animation:rotateEnter-0e2b47e6 .7s;position:relative}.rotate-leave-active[data-v-0e2b47e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0e2b47e6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-0e2b47e6]{width:100%;height:100%;border:none}@keyframes bganimation-29e2aec8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-29e2aec8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-29e2aec8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-29e2aec8]{animation:rotateEnter-29e2aec8 .7s;position:relative}.rotate-leave-active[data-v-29e2aec8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-29e2aec8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-29e2aec8]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-29e2aec8]{width:100px;height:100px}.actioner-container_body .body-title[data-v-29e2aec8]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-info[data-v-29e2aec8]{color:#666;font-size:1.3em;margin:1rem 0;width:100%}.actioner-container_body .body-tips[data-v-29e2aec8]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-29e2aec8]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-29e2aec8]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-169b4450{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-169b4450{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-169b4450{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-169b4450]{animation:rotateEnter-169b4450 .7s;position:relative}.rotate-leave-active[data-v-169b4450]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-169b4450]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-169b4450]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-6590a3fa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6590a3fa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6590a3fa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6590a3fa]{animation:rotateEnter-6590a3fa .7s;position:relative}.rotate-leave-active[data-v-6590a3fa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6590a3fa]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-6590a3fa]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-3b80943c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3b80943c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3b80943c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3b80943c]{animation:rotateEnter-3b80943c .7s;position:relative}.rotate-leave-active[data-v-3b80943c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3b80943c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-3b80943c]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-3b80943c] .actioner-container{width:100%}.action-main[data-v-3b80943c] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;color:#0060ff;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-3b80943c] .actioner-container .actioner-container_body{padding:1rem;text-align:center;width:100%;height:400px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-3b80943c] .actioner-container .actioner-container_body.ddnsto-bind{height:280px}@keyframes bganimation-3b80943c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3b80943c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3b80943c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3b80943c]{animation:rotateEnter-3b80943c .7s;position:relative}.rotate-leave-active[data-v-3b80943c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3b80943c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-3b80943c]{width:90%}}@keyframes bganimation-145a3c50{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-145a3c50{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-145a3c50{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-145a3c50]{animation:rotateEnter-145a3c50 .7s;position:relative}.rotate-leave-active[data-v-145a3c50]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-145a3c50]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-145a3c50]{width:500px;max-height:90%;background-color:#fff;position:relative;z-index:99999;margin:auto;border-radius:4px;padding:10px 0}.action .action-header[data-v-145a3c50]{width:100%;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;padding-left:1rem;padding-right:1rem;text-align:left;font-size:18px;line-height:1;color:#303133}.action .action-body[data-v-145a3c50]{display:block;margin:2rem 0;line-height:24px;padding:0 15px;color:#606266;font-size:14px}.action .action-footer[data-v-145a3c50]{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action .next[data-v-145a3c50]{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:120px;height:32px;background:#553AFE;border-radius:2px}.action .next[data-v-145a3c50]:hover{opacity:.8}.action .clear[data-v-145a3c50]{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action .clear[data-v-145a3c50]:hover{opacity:.8}@keyframes bganimation-2c659599{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2c659599{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2c659599{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2c659599]{animation:rotateEnter-2c659599 .7s;position:relative}.rotate-leave-active[data-v-2c659599]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2c659599]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.title_info[data-v-2c659599]{display:block;width:100%;text-align:center}.title_info p[data-v-2c659599]{font-size:20px;margin-bottom:10px}.label-item[data-v-2c659599]{width:100%;margin:1rem 0}.label-item .label-item_key[data-v-2c659599]{width:100%;font-size:12px;color:#666}.label-item .label-item_key span[data-v-2c659599]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-2c659599]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-2c659599]{width:100%;margin-top:5px}.label-item .label-item_value select[data-v-2c659599],.label-item .label-item_value input[data-v-2c659599]{width:100%;height:36px;color:#000}.label-item .label-item_value input[data-v-2c659599]::placeholder{color:#999;font-size:12PX}.label-item .label_tips[data-v-2c659599]{display:flex;margin-top:6px}.label-item .label_tips .info[data-v-2c659599]{margin-left:8px}.label-message[data-v-2c659599]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}@keyframes bganimation-8a1e6470{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8a1e6470{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-8a1e6470{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-8a1e6470]{animation:rotateEnter-8a1e6470 .7s;position:relative}.rotate-leave-active[data-v-8a1e6470]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8a1e6470]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-8a1e6470]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-8a1e6470] .actioner-container{width:100%}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body{padding:1rem;width:100%;height:400px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body.ali,.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body.dnspod,.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body.oray{height:451px}@keyframes bganimation-8a1e6470{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8a1e6470{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-8a1e6470{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-8a1e6470]{animation:rotateEnter-8a1e6470 .7s;position:relative}.rotate-leave-active[data-v-8a1e6470]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8a1e6470]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-8a1e6470]{width:90%}}@keyframes bganimation-d3a8d744{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d3a8d744{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d3a8d744{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d3a8d744]{animation:rotateEnter-d3a8d744 .7s;position:relative}.rotate-leave-active[data-v-d3a8d744]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d3a8d744]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-d3a8d744] .footer-btn{background:var(--card-bg-color);border:1px solid var(--btn-border-color)}[data-v-d3a8d744] .reusable-card{background:#fff5ee!important;border:1px solid #ffd6a7!important}[data-v-d3a8d744] .earthIcon path{fill:var(--app-container_title-color)!important}.icon[data-v-d3a8d744]{width:1.3rem;height:1.3rem}.icon1[data-v-d3a8d744]{width:1rem;height:1rem}.icon2[data-v-d3a8d744]{width:1.5rem;height:1.5rem;margin-bottom:8px}.icon3[data-v-d3a8d744]{width:1.5rem;height:1.5rem;cursor:pointer}a[data-v-d3a8d744]{text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-d3a8d744]{color:#333;margin-top:20px;margin-bottom:20px;font-weight:400;padding:0 12px}.content .tab[data-v-d3a8d744]{display:flex;gap:8px}.content .tab .item[data-v-d3a8d744]{flex:1;padding:16px;display:flex;flex-direction:column;align-items:center;border-radius:10px;cursor:pointer}.content .tab .item .title[data-v-d3a8d744]{margin-bottom:8px}.content .tab .item>span[data-v-d3a8d744]{font-size:12px}.content .tab .active[data-v-d3a8d744]{border:2px solid #6d6d6d}.content .tab .cloud[data-v-d3a8d744]{background-color:#eff6ff;color:#1447e6}.content .tab .memory[data-v-d3a8d744]{background-color:#f0fdf4;color:#008236}.content .tab .network[data-v-d3a8d744]{background-color:#f9fafb;color:#4a5565}.content .info[data-v-d3a8d744]{margin-top:20px}.content .info .status[data-v-d3a8d744]{padding:20px 0 0;margin-top:16px;display:flex;justify-content:space-between;border-top:1px solid var(--btn-border-color)}.content .info .status .offline[data-v-d3a8d744]{background:#eceef2;color:#030213}.content .info .status>div[data-v-d3a8d744]{color:var(--app-container_title-color);font-size:16px}.content .info .status>span[data-v-d3a8d744]{color:#fff;padding:4px 8px;background:#030213;border-radius:6px;font-size:12px}.content .info .title_box[data-v-d3a8d744]{margin:20px 0}.content .info .title_box .title[data-v-d3a8d744]{color:var(--item-label_key-span-color);margin-bottom:10px}.content .info .title_box .path[data-v-d3a8d744]{display:flex;align-items:center;justify-content:space-between;border:1px solid #e0e1e1;background:#f9fafb;border-radius:4px;padding:8px 10px}.content .info .title_box .path>span[data-v-d3a8d744]{display:inline-block;padding:4px 8px;border:1px solid #553afb;font-size:12px;border-radius:4px;cursor:pointer;flex-shrink:0}.content .info .title_box .path>span>a[data-v-d3a8d744]{color:#553afb}.btn_settings[data-v-d3a8d744]{padding:6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}@keyframes bganimation-d3a8d744{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d3a8d744{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d3a8d744{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d3a8d744]{animation:rotateEnter-d3a8d744 .7s;position:relative}.rotate-leave-active[data-v-d3a8d744]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d3a8d744]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-d3a8d744]{margin:10px 0 0;padding:4px}.content .info[data-v-d3a8d744]{margin-top:10px}.content .info .status[data-v-d3a8d744]{padding-top:10px}.content .info .title_box[data-v-d3a8d744]{margin:10px 0}}@keyframes bganimation-4b7f2557{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4b7f2557{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4b7f2557{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4b7f2557]{animation:rotateEnter-4b7f2557 .7s;position:relative}.rotate-leave-active[data-v-4b7f2557]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4b7f2557]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-4b7f2557]{width:1.5rem;height:1.5rem;margin-right:6px}.display_flex[data-v-4b7f2557]{display:flex;align-items:center}.network_container[data-v-4b7f2557]{border:1px solid var(--border-color);border-radius:10px;padding:20px 14px;box-sizing:border-box;background-clip:padding-box;background:var(--card-bg-color);height:100%;display:flex;flex-direction:column}.network_container .title_box[data-v-4b7f2557]{display:flex;justify-content:space-between;align-items:center;margin-bottom:26px;flex-shrink:0}.network_container .title_box>span[data-v-4b7f2557]{font-size:16px;font-weight:600}.network_container .title_box .network_tag[data-v-4b7f2557]{display:flex;align-items:center}.network_container .title_box .network_tag .tag_item[data-v-4b7f2557]{display:flex;align-items:center;font-size:12px;margin-left:16px}.network_container .title_box .network_tag .tag_item>span[data-v-4b7f2557]{line-height:1}.network_container .title_box .network_tag .tag_item>div[data-v-4b7f2557]{width:12px;height:12px;border-radius:50%;margin-right:6px}.network_container .title_box .network_tag .tag_item .tag_dn[data-v-4b7f2557]{background:#20c7f7}.network_container .title_box .network_tag .tag_item .tag_up[data-v-4b7f2557]{background:#553afe}.network_container .echart[data-v-4b7f2557]{flex:1;min-height:200px}.network_container .speed[data-v-4b7f2557]{display:flex;flex-shrink:0}.network_container .speed .speed_item[data-v-4b7f2557]{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center}.network_container .speed .speed_item>span[data-v-4b7f2557]{font-size:12px;color:#999;margin-bottom:10px}.network_container .speed .speed_item>div[data-v-4b7f2557]{font-size:16px;color:#333}.speed_box[data-v-4b7f2557]{display:flex;align-items:center;justify-content:flex-end;margin-top:16px}@keyframes bganimation-4b7f2557{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4b7f2557{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4b7f2557{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4b7f2557]{animation:rotateEnter-4b7f2557 .7s;position:relative}.rotate-leave-active[data-v-4b7f2557]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4b7f2557]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.network_container[data-v-4b7f2557]{border-radius:6px;padding:10px}.network_container .title_box[data-v-4b7f2557]{margin-bottom:16px}.network_container .title_box>span[data-v-4b7f2557]{font-size:14px;font-weight:600}}@keyframes bganimation-2ac87be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2ac87be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2ac87be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2ac87be2]{animation:rotateEnter-2ac87be2 .7s;position:relative}.rotate-leave-active[data-v-2ac87be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2ac87be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-2ac87be2]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2ac87be2]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2ac87be2]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2ac87be2]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2ac87be2]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2ac87be2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2ac87be2]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2ac87be2]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2ac87be2],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2ac87be2]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2ac87be2]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2ac87be2]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2ac87be2]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2ac87be2]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-2ac87be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2ac87be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2ac87be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2ac87be2]{animation:rotateEnter-2ac87be2 .7s;position:relative}.rotate-leave-active[data-v-2ac87be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2ac87be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2ac87be2]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-2ac87be2]{width:100%}}@keyframes bganimation-2deed63d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2deed63d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2deed63d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2deed63d]{animation:rotateEnter-2deed63d .7s;position:relative}.rotate-leave-active[data-v-2deed63d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2deed63d]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-2deed63d]{width:800px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2deed63d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2deed63d]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2deed63d]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2deed63d]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2deed63d]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2deed63d]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2deed63d]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2deed63d],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2deed63d]{height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2deed63d]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2deed63d]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2deed63d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2deed63d]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-dns .select-editable[data-v-2deed63d]{position:relative;border:solid grey 1px;width:100%}.actioner-dns .select-editable select[data-v-2deed63d]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.actioner-dns .select-editable input[data-v-2deed63d]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.actioner-dns .select-editable select[data-v-2deed63d]:focus,.actioner-dns .select-editable input[data-v-2deed63d]:focus{outline:none}.actioner-dns[data-v-2deed63d] ::placeholder{color:#999}.successed[data-v-2deed63d]{text-align:center;font-size:14px;margin-bottom:104px}.finished[data-v-2deed63d]{display:flex;justify-content:center;margin:80px 80px 28px}.docker_moves[data-v-2deed63d]{text-align:center}.docker_moves .moves[data-v-2deed63d]{margin-top:10px}.docker_moves .moves input[data-v-2deed63d]{cursor:pointer}.docker_moves .moves label[data-v-2deed63d]{margin-left:10px;cursor:pointer}.btns[data-v-2deed63d]{text-align:center}.item_info[data-v-2deed63d]{margin-left:10px}.softsource_tit[data-v-2deed63d]{margin:0 auto}.softsource_successed[data-v-2deed63d]{width:20%!important}@keyframes bganimation-2deed63d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2deed63d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2deed63d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2deed63d]{animation:rotateEnter-2deed63d .7s;position:relative}.rotate-leave-active[data-v-2deed63d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2deed63d]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2deed63d]{min-height:34vh}}@media screen and (max-width: 860px){.actioner-dns[data-v-2deed63d]{width:100%}}@keyframes bganimation-500d40e5{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-500d40e5{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-500d40e5{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-500d40e5]{animation:rotateEnter-500d40e5 .7s;position:relative}.rotate-leave-active[data-v-500d40e5]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-500d40e5]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-500d40e5]{width:1.5rem;height:1.5rem}[data-v-500d40e5] .networkIcon path{fill:var(--app-container_title-color)!important}.flex[data-v-500d40e5]{display:flex;align-items:center}.info_content[data-v-500d40e5]{margin:12px 0 0 4px}.info_content .status_box[data-v-500d40e5]{display:flex;align-items:center;justify-content:space-between;padding-bottom:12px;border-bottom:1px solid var(--border-color);font-size:14px;line-height:1}.info_content .status_box .status_name[data-v-500d40e5]{display:flex;align-items:center;line-height:1}.info_content .status_box .status_name .icon[data-v-500d40e5]{width:1rem;height:1rem;margin-right:6px}.info_content .status_box .status_time[data-v-500d40e5]{padding:4px 8px;background:#dbfce7;color:#008236;border-radius:4px}.info_content .ip_item[data-v-500d40e5]{display:flex;justify-content:space-between;align-items:center}.info_content .ip_item .ip_tag[data-v-500d40e5]{padding:3px 6px;border-radius:6px;border:1px solid #d1d5db;font-size:12px;line-height:1;display:flex;align-items:center}.info_content .ip_item .ip_tag>svg[data-v-500d40e5]{width:1.3rem;height:1.3rem;vertical-align:middle;margin-right:4px}.info_content .ip_item .device[data-v-500d40e5]{font-size:14px;color:#155dfc}.info_content .ip_item .delay[data-v-500d40e5]{font-size:14px;color:#00a663}.info_content .ip_item .download[data-v-500d40e5]{font-size:14px;color:var(--item-label_key-span-color)}.info_content .line[data-v-500d40e5]{width:100%;height:1px;background:var(--btn-border-color);margin-bottom:20px}.info_content .line1[data-v-500d40e5]{width:100%;height:1px;background:var(--btn-border-color);margin:20px 0}.info_content .ip_item[data-v-500d40e5]:nth-last-child(1){margin-top:20px}.info_content .ip_info[data-v-500d40e5]{margin:24px 0 20px}.info_content .ip_info .ip_address[data-v-500d40e5]{color:var(--item-label_key-span-color);margin-top:10px}.btn-primary[data-v-500d40e5]{background-color:#00b8db;color:#fff;border:none;padding:3px 16px;border-radius:8px;font-size:14px;cursor:pointer;transition:background .2s,transform .1s;margin-left:6px}.btn-primary[data-v-500d40e5]:hover{background-color:#26a7c7}.btn-primary[data-v-500d40e5]:active{transform:scale(.95)}.btn-pink[data-v-500d40e5]{background-color:#f751a9;color:#fff;border:none;padding:3px 12px;border-radius:8px;font-size:14px;cursor:pointer;transition:background .2s,transform .1s;margin-left:6px}.btn-pink[data-v-500d40e5]:hover{background-color:#e60076}.btn-pink[data-v-500d40e5]:active{transform:scale(.95)}@keyframes bganimation-500d40e5{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-500d40e5{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-500d40e5{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-500d40e5]{animation:rotateEnter-500d40e5 .7s;position:relative}.rotate-leave-active[data-v-500d40e5]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-500d40e5]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.flex[data-v-500d40e5]{flex-direction:column;align-items:flex-start}}@keyframes bganimation-2988896b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2988896b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2988896b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2988896b]{animation:rotateEnter-2988896b .7s;position:relative}.rotate-leave-active[data-v-2988896b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2988896b]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-2988896b]{width:1.3rem;height:1.3rem}.icon1[data-v-2988896b],.icon2[data-v-2988896b]{width:1rem;height:1rem}[data-v-2988896b] .interfaceIcon path{fill:var(--app-container_title-color)!important}[data-v-2988896b] .footer-btn{margin-top:6px}.content[data-v-2988896b]{margin-top:6px;padding-bottom:16px;min-height:30px;display:flex;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-gutter:stable both-edges;scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.35) transparent}.content[data-v-2988896b]::-webkit-scrollbar{height:6px}.content[data-v-2988896b]::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.content .item[data-v-2988896b]{position:relative;display:inline-flex;align-items:center;padding-right:20px;margin-right:16px;cursor:pointer}.content .item[data-v-2988896b]:before{content:"";display:inline-block;position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px!important;height:60%;background:#e0e0e0}.content .item[data-v-2988896b]:last-child:before{content:none}.content .icon_box[data-v-2988896b]{display:inline-flex;justify-content:center;align-items:center;width:30px;height:30px;border-radius:8px;background:#dbfce7;margin-right:12px}.content .name[data-v-2988896b]{display:flex;align-items:center;margin-bottom:6px}.content .speed[data-v-2988896b]{padding:4px 6px;background:#dbfce7;font-size:12px;border-radius:6px;line-height:1;color:#008236;margin-left:8px}.content .status[data-v-2988896b]{font-size:12px;color:#6a7282}.content>*[data-v-2988896b]{flex:0 0 auto}[data-v-2988896b] .content::-webkit-scrollbar{height:8px}[data-v-2988896b] .content::-webkit-scrollbar-thumb{border-radius:4px;background:rgba(0,0,0,.35)}[data-v-2988896b] .content::-webkit-scrollbar-track{background:transparent}.btn_settings[data-v-2988896b]{position:relative;padding:6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-2988896b]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-2988896b]{transform:rotate(90deg)}.row input[type=checkbox][data-v-2988896b]{vertical-align:middle;margin:0}.row[data-v-2988896b]{gap:8px;padding:0;margin:6px 0;display:flex;align-items:center}.row>input[data-v-2988896b]{margin-right:6px!important;margin-top:0}[data-v-2988896b] .dropdown-menu div:hover{background:transparent!important}[data-v-2988896b] .dropdown-menu{padding:8px 0}[data-v-2988896b] .dropdown-menu>div{padding:0}@keyframes bganimation-2988896b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2988896b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2988896b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2988896b]{animation:rotateEnter-2988896b .7s;position:relative}.rotate-leave-active[data-v-2988896b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2988896b]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-adc89aea{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-adc89aea{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-adc89aea{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-adc89aea]{animation:rotateEnter-adc89aea .7s;position:relative}.rotate-leave-active[data-v-adc89aea]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-adc89aea]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.feature-card[data-v-adc89aea]{flex:1 1 0;min-width:280px;max-width:350px;padding:14px 14px 20px;border:2px solid var(--border-color);border-radius:10px;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease;background-color:var(--card-bg-color);display:flex;align-items:center;justify-content:space-between}.feature-card[data-v-adc89aea]:hover{transform:translateY(-2px);box-shadow:0 4px 12px #00000014}.feature-card .badge[data-v-adc89aea]{font-size:12px;padding:4px 6px;border-radius:6px;color:#fff;line-height:1}.feature-card .header[data-v-adc89aea]{display:flex;align-items:center;gap:6px;margin-bottom:16px}.feature-card .header .icon-wrapper[data-v-adc89aea]{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;background-color:#999;color:#fff}.feature-card .header .icon-wrapper .icon-svg[data-v-adc89aea]{width:24px;height:24px}.feature-card .content .title[data-v-adc89aea]{font-weight:700;color:var(--item-label_key-span-color);margin-bottom:8px}.feature-card .content .subtitle[data-v-adc89aea]{font-size:14px;color:#666;margin-top:2px}.feature-card .footer[data-v-adc89aea]{display:flex;align-items:center;margin-top:12px;font-size:12px}.feature-card .footer .status[data-v-adc89aea]{padding:4px 6px;border-radius:6px;background-color:#eee;color:#666;line-height:1;margin-right:6px}.feature-card .footer .status.active[data-v-adc89aea]{background-color:#d3f9d8;color:#38a169}.feature-card .footer .extra[data-v-adc89aea]{color:inherit}.feature-card .footer .extra .extra_num[data-v-adc89aea]{font-size:16px}.feature-card .right-arrow[data-v-adc89aea]{width:18px;height:18px}.feature-card.purple .icon-wrapper[data-v-adc89aea]{background-color:#ad46ff}.feature-card.purple .badge[data-v-adc89aea]{background-color:#f3e8ff;color:#8200db}.feature-card.blue .icon-wrapper[data-v-adc89aea]{background-color:#3b82f6}.feature-card.blue .badge[data-v-adc89aea]{background-color:#e6effe;color:#3b82f6}.feature-card.blue .right-arrow[data-v-adc89aea]{opacity:.8;width:18px;height:18px}.feature-card.green .icon-wrapper[data-v-adc89aea],.feature-card.green .badge[data-v-adc89aea]{background-color:#22c55e}.feature-card.pink .icon-wrapper[data-v-adc89aea]{background-color:#ec4899}.feature-card.pink .badge[data-v-adc89aea]{background-color:#f6339a}.feature-card.pink .right-arrow[data-v-adc89aea]{color:#f6349b;opacity:.7}.feature-card.skyblue .icon-wrapper[data-v-adc89aea]{background-color:#615fff}.feature-card.skyblue .badge[data-v-adc89aea]{background-color:#e0e7ff;color:#432dd7}.feature-card.orange .icon-wrapper[data-v-adc89aea],.feature-card.orange .badge[data-v-adc89aea]{background-color:#f97316}@keyframes bganimation-adc89aea{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-adc89aea{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-adc89aea{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-adc89aea]{animation:rotateEnter-adc89aea .7s;position:relative}.rotate-leave-active[data-v-adc89aea]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-adc89aea]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.feature-card[data-v-adc89aea]{min-width:180px;padding:10px;border-radius:6px;border:1px solid #e5e5e5;transition:none}.feature-card[data-v-adc89aea]:hover{transform:none;box-shadow:none}.feature-card .header[data-v-adc89aea]{margin-bottom:8px}.feature-card .content .title[data-v-adc89aea]{font-weight:700;color:#333;margin-bottom:4px}.feature-card .footer[data-v-adc89aea]{margin-top:6px}}@keyframes bganimation-0d919a1e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d919a1e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d919a1e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d919a1e]{animation:rotateEnter-0d919a1e .7s;position:relative}.rotate-leave-active[data-v-0d919a1e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d919a1e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-0d919a1e]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-0d919a1e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-0d919a1e]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-0d919a1e]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0d919a1e]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0d919a1e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0d919a1e]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-0d919a1e]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-0d919a1e],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-0d919a1e]{width:100%;height:36px}.actioner-dns .actioner-dns_body .chose_dhcp[data-v-0d919a1e]{height:1em;font-size:1.3em}.actioner-dns .actioner-dns_body .chose_dhcp .dhcp_info[data-v-0d919a1e]{margin-left:10px;user-select:none}.actioner-dns .actioner-dns_body .label-message[data-v-0d919a1e]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-0d919a1e]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-0d919a1e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-0d919a1e]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.setting_status[data-v-0d919a1e]{text-align:center}.setting_status p[data-v-0d919a1e]{margin:10px 0}.setting_status a[data-v-0d919a1e]{text-align:center;display:block;text-decoration:none}.NewAdress[data-v-0d919a1e]{margin-top:10px}@keyframes bganimation-0d919a1e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d919a1e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d919a1e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d919a1e]{animation:rotateEnter-0d919a1e .7s;position:relative}.rotate-leave-active[data-v-0d919a1e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d919a1e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-0d919a1e]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-0d919a1e]{width:100%}}@keyframes bganimation-59ad49e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-59ad49e6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-59ad49e6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-59ad49e6]{animation:rotateEnter-59ad49e6 .7s;position:relative}.rotate-leave-active[data-v-59ad49e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-59ad49e6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-59ad49e6]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-59ad49e6]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-59ad49e6]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_roboot_tips[data-v-59ad49e6]{margin-top:24px;text-align:center}.actioner-dns .actioner-dns_body .disk_loading_icon[data-v-59ad49e6]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.actioner-dns .actioner-dns_body .disk_loading_icon .disk_loading_info[data-v-59ad49e6]{margin-top:5px}.actioner-dns .actioner-dns_body .disk_tips[data-v-59ad49e6]{text-align:center;font-size:16px;margin-top:159px;color:#f9ad1e}.actioner-dns .actioner-dns_body .disk_tips svg[data-v-59ad49e6]{vertical-align:middle}.actioner-dns .actioner-dns_body .disk_tips span[data-v-59ad49e6]{margin-left:6px}.actioner-dns .actioner-dns_body .sandbox_info[data-v-59ad49e6]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .label-item[data-v-59ad49e6]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-59ad49e6]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-59ad49e6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-59ad49e6]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-59ad49e6]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-59ad49e6],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-59ad49e6]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-59ad49e6]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .actioner-dns_body .sandbox_tips svg[data-v-59ad49e6]{vertical-align:middle}.actioner-dns .actioner-dns_body .sandbox_tips span[data-v-59ad49e6]{font-size:12px;margin-left:4px}.actioner-dns .config-message[data-v-59ad49e6]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-59ad49e6]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-59ad49e6]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-59ad49e6]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-59ad49e6]{margin-top:114px}.timeout span[data-v-59ad49e6],.sandbox_roboot_refresh[data-v-59ad49e6]{color:#5e72e4}option[data-v-59ad49e6]:disabled{background-color:#e0e0e0}@keyframes bganimation-59ad49e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-59ad49e6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-59ad49e6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-59ad49e6]{animation:rotateEnter-59ad49e6 .7s;position:relative}.rotate-leave-active[data-v-59ad49e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-59ad49e6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-59ad49e6]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-59ad49e6]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-59ad49e6]{min-height:42vh}.actioner-tips[data-v-59ad49e6]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-59ad49e6]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-59ad49e6]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-59ad49e6]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-59ad49e6]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-59ad49e6]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-59ad49e6]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_footer button[data-v-59ad49e6]{width:100%!important;margin-bottom:10px}.actioner-tips .sandbox_info[data-v-59ad49e6]{padding:3px 10px}}@keyframes bganimation-3e084f0f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3e084f0f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3e084f0f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3e084f0f]{animation:rotateEnter-3e084f0f .7s;position:relative}.rotate-leave-active[data-v-3e084f0f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3e084f0f]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-3e084f0f]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-3e084f0f]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-3e084f0f]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_info[data-v-3e084f0f]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-3e084f0f]{font-size:16px;line-height:28px;margin:20px 0}.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-3e084f0f]{font-size:16px;line-height:28px}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_reboot[data-v-3e084f0f]{color:#5e72e4}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_tex[data-v-3e084f0f]{color:red;font-size:.9em}.actioner-dns .actioner-dns_footer[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-3e084f0f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-3e084f0f]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-3e084f0f]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-3e084f0f]{margin-top:114px}.timeout span[data-v-3e084f0f]{color:#5e72e4}@keyframes bganimation-3e084f0f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3e084f0f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3e084f0f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3e084f0f]{animation:rotateEnter-3e084f0f .7s;position:relative}.rotate-leave-active[data-v-3e084f0f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3e084f0f]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-3e084f0f]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-3e084f0f]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-3e084f0f]{min-height:42vh}.actioner-dns .actioner-dns_footer button[data-v-3e084f0f]{width:100%!important;margin-bottom:10px}.actioner-tips[data-v-3e084f0f]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-3e084f0f]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-3e084f0f]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-3e084f0f]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-3e084f0f]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-3e084f0f]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-3e084f0f]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .sandbox_info[data-v-3e084f0f]{font-size:10px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-3e084f0f],.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-3e084f0f]{font-size:12px}.actioner-tips .sandbox_info[data-v-3e084f0f]{padding:3px 10px}}@keyframes bganimation-c1428106{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-c1428106{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-c1428106{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-c1428106]{animation:rotateEnter-c1428106 .7s;position:relative}.rotate-leave-active[data-v-c1428106]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-c1428106]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-c1428106] .icon{width:1.5rem;height:1.5rem;margin-bottom:12px;display:inline-block;flex:0 0 auto}button[data-v-c1428106]{margin:0!important}button.item[data-v-c1428106]:disabled{opacity:1}button.item:disabled svg[data-v-c1428106],button.item:disabled .icon[data-v-c1428106]{opacity:1!important;filter:none!important;color:#00b8db!important;stroke:#00b8db!important;fill:#00b8db!important}.item_container[data-v-c1428106]{display:flex;gap:16px;width:100%;padding-bottom:4px;box-sizing:border-box;flex-wrap:wrap}.item_container[data-v-c1428106]::-webkit-scrollbar{height:6px}.item_container[data-v-c1428106]::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.item_container .item[data-v-c1428106]{position:relative;flex:1 1 0;padding:16px 12px;min-width:120px;max-width:200px;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:14px;border-radius:8px;box-sizing:border-box;border:1px solid #e5e7eb;cursor:pointer;color:var(--card-txt-color)}.item_container .app-update-button-more[data-v-c1428106]{position:absolute;top:4px;right:4px}.item_container .menu_background[data-v-c1428106]{position:fixed;inset:0}.item_container .renew[data-v-c1428106]{display:flex;align-items:center}.item_container .renew i[data-v-c1428106]{display:inline-block;padding:3px;background-color:red;border-radius:50%;margin-right:4px}.item_container .dns_txt[data-v-c1428106]{display:flex;align-items:center;line-height:1;color:#32325d}.item_container .disabled-style[data-v-c1428106]{opacity:.6;cursor:not-allowed;pointer-events:none;background-color:#e0e0e0}.item_container .app-update-button-menu[data-v-c1428106]{position:absolute;z-index:999;width:30%;right:0;top:0}.item_container .app-update-button-menu ul[data-v-c1428106]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:6px 0;border-radius:6px;top:-45px;right:0;text-align:center;position:absolute;word-break:keep-all}.item_container .app-update-button-menu ul li[data-v-c1428106]{cursor:pointer;font-size:16px;line-height:1em;color:#1e1e1e;padding:0 5px;position:relative}.item_container .app-update-button-menu ul li .app-update-menu-item[data-v-c1428106]{padding:5px 2px;white-space:nowrap}.item_container .app-update-button-menu ul li .app-update-menu-item-loading[data-v-c1428106]{display:flex;justify-content:center;align-items:center;position:absolute;width:100%;height:100%;top:0;left:0;background-color:#fffc}@keyframes bganimation-c1428106{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-c1428106{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-c1428106{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-c1428106]{animation:rotateEnter-c1428106 .7s;position:relative}.rotate-leave-active[data-v-c1428106]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-c1428106]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.item_container[data-v-c1428106]{gap:10px}}@keyframes bganimation-6c80f0b7{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6c80f0b7{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6c80f0b7{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6c80f0b7]{animation:rotateEnter-6c80f0b7 .7s;position:relative}.rotate-leave-active[data-v-6c80f0b7]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6c80f0b7]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.sambas-item[data-v-6c80f0b7]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.sambas-item .sambas-item_name[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.sambas-item .sambas-item_value[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--app-container_title-color)}.app-container_samba li.samba-item[data-v-6c80f0b7]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}.app-container_samba li.samba-item .samba-item_name[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}.app-container_samba li.samba-item .samba-item_value[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-container_samba li.samba-item .samba-item_value button[data-v-6c80f0b7]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.app-container_samba li.samba-item .samba-item_value button[data-v-6c80f0b7]:hover{opacity:.7}.tit[data-v-6c80f0b7]{color:var(--tit-color);font-weight:700;font-size:16px}@keyframes bganimation-9e39e9b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9e39e9b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9e39e9b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9e39e9b2]{animation:rotateEnter-9e39e9b2 .7s;position:relative}.rotate-leave-active[data-v-9e39e9b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9e39e9b2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.webdav-item[data-v-9e39e9b2]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.webdav-item .webdav-item_name[data-v-9e39e9b2]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.webdav-item .webdav-item_value[data-v-9e39e9b2]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--app-container_title-color)}@keyframes bganimation-485e1494{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-485e1494{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-485e1494{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-485e1494]{animation:rotateEnter-485e1494 .7s;position:relative}.rotate-leave-active[data-v-485e1494]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-485e1494]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.linkease-item[data-v-485e1494]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.linkease-item .linkease-item_name[data-v-485e1494]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.linkease-item .linkease-item_value[data-v-485e1494]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--app-container_title-color)}li.linkease-item .linkease-item_value .configure[data-v-485e1494]{color:#297ff3;padding:3px}li.linkease-item .linkease-item_value .configure.enabel[data-v-485e1494]{cursor:pointer}a[data-v-485e1494]{text-decoration:none;color:#297ff3}@keyframes bganimation-7ee59a9a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ee59a9a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7ee59a9a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7ee59a9a]{animation:rotateEnter-7ee59a9a .7s;position:relative}.rotate-leave-active[data-v-7ee59a9a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ee59a9a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-7ee59a9a]{width:1.3rem;height:1.3rem}.icon1[data-v-7ee59a9a]{width:1rem;height:1rem}.icon2[data-v-7ee59a9a]{width:1.5rem;height:1.5rem;margin-bottom:12px}.settings-icon[data-v-7ee59a9a] svg,.settings-icon[data-v-7ee59a9a] g,.settings-icon[data-v-7ee59a9a] path,.settings-icon[data-v-7ee59a9a] circle,.settings-icon[data-v-7ee59a9a] rect,.settings-icon[data-v-7ee59a9a] line,.settings-icon[data-v-7ee59a9a] polyline,.settings-icon[data-v-7ee59a9a] polygon{fill:var(--app-container_title-color)!important;stroke:var(--app-container_title-color)!important}a[data-v-7ee59a9a]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-7ee59a9a]{color:#333;margin-top:10px;margin-bottom:10px;font-weight:400}.content .tab[data-v-7ee59a9a]{display:flex;gap:8px}.content .tab .item[data-v-7ee59a9a]{flex:1;padding:16px;display:flex;flex-direction:column;align-items:center;border-radius:10px;cursor:pointer}.content .tab .item .title[data-v-7ee59a9a]{margin-bottom:8px}.content .tab .item>span[data-v-7ee59a9a]{font-size:12px}.content .tab .active[data-v-7ee59a9a]{border:2px solid #6d6d6d}.content .tab .cloud[data-v-7ee59a9a]{background-color:#eff6ff;color:#1447e6}.content .tab .memory[data-v-7ee59a9a]{background-color:#dbfce7;color:#008236}.content .tab .network[data-v-7ee59a9a]{background-color:#faf5ff;color:#8200db}.btn_settings[data-v-7ee59a9a]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-7ee59a9a]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-7ee59a9a]{transform:rotate(90deg)}@keyframes bganimation-7ee59a9a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ee59a9a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7ee59a9a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7ee59a9a]{animation:rotateEnter-7ee59a9a .7s;position:relative}.rotate-leave-active[data-v-7ee59a9a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ee59a9a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-7ee59a9a]{margin:10px 0}}@keyframes bganimation-5f5fb500{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5f5fb500{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5f5fb500{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5f5fb500]{animation:rotateEnter-5f5fb500 .7s;position:relative}.rotate-leave-active[data-v-5f5fb500]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5f5fb500]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action .action-footer button[data-v-5f5fb500]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-5f5fb500{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5f5fb500{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5f5fb500{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5f5fb500]{animation:rotateEnter-5f5fb500 .7s;position:relative}.rotate-leave-active[data-v-5f5fb500]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5f5fb500]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-5f5fb500]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-5f5fb500]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-5f5fb500]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-5f5fb500]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-5f5fb500]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-5f5fb500]{flex:auto}.action.format .disk-list[data-v-5f5fb500]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-5f5fb500]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-5f5fb500]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-5f5fb500]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-5f5fb500]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-5f5fb500]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-5f5fb500],.action.format .label-item .label-item_value input[data-v-5f5fb500]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-5f5fb500]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-5f5fb500]{flex:auto}.action.format p.msg[data-v-5f5fb500]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-5f5fb500]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-5f5fb500]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-5f5fb500]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-5f5fb500]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-5f5fb500{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5f5fb500{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5f5fb500{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5f5fb500]{animation:rotateEnter-5f5fb500 .7s;position:relative}.rotate-leave-active[data-v-5f5fb500]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5f5fb500]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-5f5fb500]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-5f5fb500]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-5f5fb500]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-5f5fb500]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-5f5fb500]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-5f5fb500]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-5f5fb500]{color:#0000fb}.action.result .btns[data-v-5f5fb500]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-4e7285ca{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4e7285ca{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4e7285ca{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4e7285ca]{animation:rotateEnter-4e7285ca .7s;position:relative}.rotate-leave-active[data-v-4e7285ca]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4e7285ca]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-4e7285ca]{color:red}.disk-content[data-v-4e7285ca]{padding:1rem;border:1px solid #cfcfcf;margin:16px 0}.disk-content li.disk-item[data-v-4e7285ca]{width:100%;display:flex;align-items:center}.disk-content li.disk-item .disk-item_name[data-v-4e7285ca]{flex:0 0 50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.disk-content li.disk-item .value-data[data-v-4e7285ca]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%;color:#297ff3;cursor:default}.disk-content li.disk-item .value-data button[data-v-4e7285ca]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.disk-content li.disk-item .value-data button[data-v-4e7285ca]:hover{opacity:.7}.disk-content li.disk-item .value-data.buttondiv[data-v-4e7285ca]{cursor:pointer}.disk-content li.disk-item .disk_value[data-v-4e7285ca]{flex:0 0 50%;display:flex;justify-content:space-between;align-items:center}.disk-content li.disk-item .disk_value .cbi-button[data-v-4e7285ca]{margin-left:10px}.disk-content li.disk-item .disk_value .disk-item_value[data-v-4e7285ca]{flex:auto;padding-left:10px;position:relative}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-4e7285ca]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:10px;right:0;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-4e7285ca]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}.disk-content li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-4e7285ca]{visibility:visible;transition:.7s;opacity:1}.disk-content .disk_status[data-v-4e7285ca]{display:flex;text-align:left;padding-left:10px;font-size:12px;padding-top:6px}.disk-content .disk_status .disk_status_item[data-v-4e7285ca]{display:flex;margin-right:20px}.disk-content .disk_status .disk_status_item .disk_tip[data-v-4e7285ca]{display:flex;align-items:center}.disk_infoicon[data-v-4e7285ca]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-4e7285ca]{flex:none}.tooltip-trigger[data-v-4e7285ca]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-4e7285ca]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-4e7285ca]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-4e7285ca]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-4e7285ca]{visibility:visible;opacity:1}.tooltip-top[data-v-4e7285ca]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-4e7285ca]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-4e7285ca]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-4e7285ca{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4e7285ca{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4e7285ca{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4e7285ca]{animation:rotateEnter-4e7285ca .7s;position:relative}.rotate-leave-active[data-v-4e7285ca]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4e7285ca]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.disk-content li.disk-item .disk_value[data-v-4e7285ca]{display:block}.disk-content .disk_status[data-v-4e7285ca]{flex-wrap:wrap}}@keyframes bganimation-56d0d562{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-56d0d562{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-56d0d562{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-56d0d562]{animation:rotateEnter-56d0d562 .7s;position:relative}.rotate-leave-active[data-v-56d0d562]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-56d0d562]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-56d0d562]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:3rem;border-radius:6px;display:flex;flex-direction:column;flex-wrap:nowrap}.action ul[data-v-56d0d562]{overflow:auto}.action ul .app-container_info[data-v-56d0d562]{display:flex;justify-content:space-between;max-width:56%;margin-top:18px;font-weight:600}.action ul .app-container_body[data-v-56d0d562]{width:100%;height:100%}.action .action-footer[data-v-56d0d562]{text-align:center;margin-top:46px}.action .action-footer button[data-v-56d0d562]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-56d0d562{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-56d0d562{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-56d0d562{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-56d0d562]{animation:rotateEnter-56d0d562 .7s;position:relative}.rotate-leave-active[data-v-56d0d562]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-56d0d562]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action[data-v-56d0d562]{width:160%}}@media screen and (max-width: 800px){.action[data-v-56d0d562]{width:138%}}@media screen and (max-width: 700px){.action[data-v-56d0d562]{width:132%}}@media screen and (max-width: 600px){.action[data-v-56d0d562]{width:116%}}@media screen and (max-width: 500px){.action[data-v-56d0d562]{width:100%}}@media screen and (max-width: 400px){.action[data-v-56d0d562]{width:90%}}@media screen and (max-width: 300px){.action[data-v-56d0d562]{width:100%}}.progress-bar-wrapper[data-v-2691c876]{width:100%;margin-bottom:0}.progress-bar[data-v-2691c876]{width:100%;position:relative;box-shadow:inset 0 1px 3px #0000001a}.progress-fill[data-v-2691c876]{display:flex;align-items:center;justify-content:flex-end;padding-right:8px;box-sizing:border-box}.percentage-text[data-v-2691c876]{color:#fff;font-size:12px;font-weight:700;text-shadow:0 1px 2px rgba(0,0,0,.3);white-space:nowrap;line-height:1}@media (max-width: 768px){.percentage-text[data-v-2691c876]{font-size:10px;padding-right:4px}}@media (prefers-color-scheme: dark){.progress-bar[data-v-2691c876]{box-shadow:inset 0 1px 3px #ffffff1a}}@keyframes bganimation-34a1dfa9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-34a1dfa9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-34a1dfa9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-34a1dfa9]{animation:rotateEnter-34a1dfa9 .7s;position:relative}.rotate-leave-active[data-v-34a1dfa9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-34a1dfa9]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-34a1dfa9]{color:red}li.disk-item[data-v-34a1dfa9]{width:100%;margin:0 0 1rem}li.disk-item .disk-item_name[data-v-34a1dfa9]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.disk-item .disk-item_name>span[data-v-34a1dfa9]{color:#6a7280}li.disk-item .disk_icon[data-v-34a1dfa9]{padding-left:1rem;align-self:center;align-items:center;flex:none;display:flex}li.disk-item .disk_value[data-v-34a1dfa9]{display:flex;justify-content:flex-end}li.disk-item .disk_value .disk-item_value[data-v-34a1dfa9]{flex:auto;position:relative;cursor:help;display:flex;align-items:center}li.disk-item .disk_value .disk-item_value .value-data[data-v-34a1dfa9]{width:100%;text-overflow:ellipsis;white-space:nowrap}li.disk-item .disk_value .disk-item_value .value-data>div[data-v-34a1dfa9]{margin-top:10px;display:flex;justify-content:space-between}li.disk-item .disk_value .disk-item_value .value-data button[data-v-34a1dfa9]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer;padding:0;margin:0;line-height:normal}li.disk-item .disk_value .disk-item_value .value-data button[data-v-34a1dfa9]:hover{opacity:.7}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-34a1dfa9]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:30%;right:30%;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-34a1dfa9]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-34a1dfa9]{visibility:visible;transition:.7s;opacity:1}.disk_infoicon[data-v-34a1dfa9]{margin-left:10px;cursor:pointer;margin-bottom:10px}.tooltip-trigger[data-v-34a1dfa9]{flex:none;cursor:help}.tooltip-trigger[data-v-34a1dfa9]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-34a1dfa9]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-34a1dfa9]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-34a1dfa9]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-34a1dfa9]{visibility:visible;opacity:1}.tooltip-top[data-v-34a1dfa9]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-34a1dfa9]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-34a1dfa9]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-1e31ad3a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e31ad3a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e31ad3a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e31ad3a]{animation:rotateEnter-1e31ad3a .7s;position:relative}.rotate-leave-active[data-v-1e31ad3a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e31ad3a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-1e31ad3a]{width:1.3rem;height:1.3rem}.icon1[data-v-1e31ad3a]{width:1rem;height:1rem}[data-v-1e31ad3a] .folderIcon path{fill:var(--app-container_title-color)!important}a[data-v-1e31ad3a]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content .disk_loading_icon[data-v-1e31ad3a]{height:100px;display:flex;flex-direction:column;align-items:center;padding:10px}.content .disk_loading_icon .disk_loading_info[data-v-1e31ad3a]{font-size:16px;color:#333;margin-top:12px}.content .line[data-v-1e31ad3a]{height:1px;background:var(--btn-border-color);margin:0}.content .item[data-v-1e31ad3a]{display:flex;margin-top:8px;padding:10px}.content .item .icon_box[data-v-1e31ad3a]{width:1.5rem;height:1.5rem;background:#dbeafe;display:flex;align-items:center;justify-content:center;border-radius:4px}.content .item .icon_box .icon[data-v-1e31ad3a]{width:.8rem;height:.8rem}.content .item .info[data-v-1e31ad3a]{flex:1}.content .item .info .name[data-v-1e31ad3a]{display:flex;justify-content:space-between;align-items:center;margin-left:12px;margin-top:6px}.content .item .info .name>div[data-v-1e31ad3a]{font-size:14px;color:var(--app-container_title-color)}.content .item .info .name>span[data-v-1e31ad3a]{display:inline-flex;align-items:center;padding:4px 6px;line-height:1;border:1px solid #d8e3db;background:#f0fdf4;border-radius:4px;color:#008236;font-size:12px;font-weight:400}.content .item .info .name>span .icon[data-v-1e31ad3a]{width:.7rem;height:.7rem;margin-right:4px}.content .item .info .schedule[data-v-1e31ad3a]{margin-top:12px}.content .item .info .schedule span[data-v-1e31ad3a]{font-size:12px;color:#6a7280;font-weight:400}.content .item .info .schedule>div[data-v-1e31ad3a]{display:flex;justify-content:space-between;align-items:center;margin-top:8px}.btn_settings[data-v-1e31ad3a]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-1e31ad3a]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-1e31ad3a]{transform:rotate(90deg)}@keyframes bganimation-1e31ad3a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e31ad3a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e31ad3a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e31ad3a]{animation:rotateEnter-1e31ad3a .7s;position:relative}.rotate-leave-active[data-v-1e31ad3a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e31ad3a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content .item[data-v-1e31ad3a]{margin-top:0}.content .line[data-v-1e31ad3a]{height:1px;background:#e5e7eb;margin:0 0 10px}}@keyframes bganimation-5d803f28{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5d803f28{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5d803f28{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5d803f28]{animation:rotateEnter-5d803f28 .7s;position:relative}.rotate-leave-active[data-v-5d803f28]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5d803f28]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.docker-item[data-v-5d803f28]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0}li.docker-item .docker-item_name[data-v-5d803f28]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.docker-item .docker-item_value[data-v-5d803f28]{flex:0 0 100%;max-width:50%;padding-left:10px;display:flex;justify-content:flex-end;align-items:center}li.docker-item .docker-item_value .configure[data-v-5d803f28]{color:#297ff3;overflow:hidden;white-space:nowrap;padding:3px;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_value .configure.enabel[data-v-5d803f28]{color:#888;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_root[data-v-5d803f28]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.tooltip-trigger[data-v-5d803f28]{position:relative;display:inline-block;cursor:help}.tooltip-trigger .tooltip-text[data-v-5d803f28]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-5d803f28]{color:#fff}.tooltip-trigger .tooltip-text .docker_dir_tip[data-v-5d803f28]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-5d803f28]{visibility:visible;opacity:1}.tooltip-top[data-v-5d803f28]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.tooltip-right[data-v-5d803f28]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.tooltip-left[data-v-5d803f28]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.tooltip-top[data-v-5d803f28]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-5d803f28]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.input-switch[data-v-5d803f28]{display:inline-block;cursor:pointer;position:relative}.input-switch span[data-v-5d803f28]{display:block;position:relative;width:50px;height:20px;border-radius:10px;padding:2px}.input-switch span em[data-v-5d803f28]{display:block;width:16px;height:16px;background-color:#fff;border-radius:10px}.input-switch span.enable[data-v-5d803f28]{background-color:#52c41a;transition:.3s}.input-switch span.enable em[data-v-5d803f28]{transform:translate(30px);transition:.3s}.input-switch span.close[data-v-5d803f28]{background-color:#cecece;transition:.3s}.input-switch span.close em[data-v-5d803f28]{transform:translate(0);transition:.3s}.content[data-v-5d803f28]{color:#333;margin-top:20px;margin-bottom:20px;font-weight:400}.content .status[data-v-5d803f28]{display:flex;justify-content:space-between;padding-bottom:20px;border-bottom:1px solid #e8e8e8;margin:0 6px}.content .docker_box[data-v-5d803f28]{display:flex;align-items:center;justify-content:space-between;margin:20px 6px}.content .docker_box .title[data-v-5d803f28]{margin-bottom:20px}.content .docker_box .path[data-v-5d803f28]{flex:1;border:1px solid #e0e1e1;background:#f9fafb;border-radius:4px;padding:8px 10px}.content .docker_num[data-v-5d803f28]{display:flex}.content .docker_num .num_item[data-v-5d803f28]{flex:1;display:flex;justify-content:center;align-items:center;flex-direction:column;color:var(--app-container_title-color)}.content .docker_num .num_item>span[data-v-5d803f28]{font-size:20px;margin-top:6px}.docker_tip svg[data-v-5d803f28]{vertical-align:bottom;margin-left:14px;width:1.5em;height:1.5em}.status-icon[data-v-5d803f28]{display:inline-block;margin-left:10px;font-size:12px;color:#008236;padding:4px 6px;background:#dbfce7;border-radius:6px}@keyframes bganimation-81932f72{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-81932f72{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-81932f72{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-81932f72]{animation:rotateEnter-81932f72 .7s;position:relative}.rotate-leave-active[data-v-81932f72]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-81932f72]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-81932f72]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-81932f72]{width:100%;display:block;color:#1e1e1e;font-size:22px;padding:0;margin:0;text-align:center}.action .roots[data-v-81932f72]{display:flex;max-width:342px;align-items:center;margin-top:32px;margin-bottom:16px}.action .roots .root[data-v-81932f72]{color:#000000d4;font-size:14px;text-align:center}.action .move[data-v-81932f72]{display:flex;justify-content:left;align-items:center}.action .change[data-v-81932f72]{width:678px}.action .desc[data-v-81932f72]{width:100%;display:block;font-size:1.2em;padding:0;margin:1rem 0;margin-top:32px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4}.action form[data-v-81932f72]{width:100%;display:block}.action .tips[data-v-81932f72]{width:477px}.action .tips .tip[data-v-81932f72]{color:#faad14;padding-left:6px}.action .btns[data-v-81932f72]{width:100%;margin:104px auto 0}.action .btns button[data-v-81932f72]{display:block;width:100%!important;margin-left:0;margin-right:0}.action .roots_tit[data-v-81932f72]{color:#000000d4;font-size:14px;font-weight:700;width:118px;text-align:right;flex:none}.action .successed[data-v-81932f72]{text-align:center;font-size:14px}.action .finished[data-v-81932f72]{display:flex;justify-content:center;margin:80px 80px 28px}.action .docker_moves[data-v-81932f72]{text-align:center}.action .docker_moves .moves[data-v-81932f72]{margin-top:10px}.action .docker_moves .moves input[data-v-81932f72]{cursor:pointer}.action .docker_moves .moves label[data-v-81932f72]{margin-left:10px;cursor:pointer}.select-editable[data-v-81932f72]{position:relative;border:solid grey 1px;width:438px;height:34px}.select-editable select[data-v-81932f72]{position:absolute;top:0;left:0;font-size:14px;border:none;width:100%;height:100%;margin:0}.select-editable input[data-v-81932f72]{position:absolute;top:0;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-81932f72]:focus,.select-editable input[data-v-81932f72]:focus{outline:none}[data-v-81932f72]::placeholder{color:#999}@keyframes bganimation-81932f72{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-81932f72{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-81932f72{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-81932f72]{animation:rotateEnter-81932f72 .7s;position:relative}.rotate-leave-active[data-v-81932f72]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-81932f72]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action[data-v-81932f72]{width:100%}.docker_download[data-v-81932f72]{width:80%}}@keyframes bganimation-faa89494{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-faa89494{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-faa89494{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-faa89494]{animation:rotateEnter-faa89494 .7s;position:relative}.rotate-leave-active[data-v-faa89494]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-faa89494]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-faa89494]{width:1.3rem;height:1.3rem}.icon1[data-v-faa89494]{width:1rem;height:1rem}[data-v-faa89494] .dockerIcon path{fill:var(--app-container_title-color)!important}a[data-v-faa89494]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-faa89494]{color:#333;margin-top:10px;margin-bottom:10px;font-weight:400}.btn_settings[data-v-faa89494]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-faa89494]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-faa89494]{transform:rotate(90deg)}@keyframes bganimation-faa89494{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-faa89494{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-faa89494{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-faa89494]{animation:rotateEnter-faa89494 .7s;position:relative}.rotate-leave-active[data-v-faa89494]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-faa89494]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-faa89494]{margin:10px 0}}.pie-chart-wrapper[data-v-a9cd39ac]{position:relative;display:flex;align-items:center;justify-content:center}.chart-dom[data-v-a9cd39ac]{width:100%;height:100%}.center-content[data-v-a9cd39ac]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:2;pointer-events:none}.center-icon[data-v-a9cd39ac]{width:20px;height:20px;margin-bottom:4px;display:block;margin-left:auto;margin-right:auto}.center-label[data-v-a9cd39ac]{margin-top:4px;font-size:14px;font-weight:600}@keyframes bganimation-acb74352{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-acb74352{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-acb74352{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-acb74352]{animation:rotateEnter-acb74352 .7s;position:relative}.rotate-leave-active[data-v-acb74352]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-acb74352]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-acb74352]{width:1.3rem;height:1.3rem}.icon1[data-v-acb74352]{width:2rem;height:2rem;margin-bottom:8px}.icon2[data-v-acb74352]{width:1rem;height:1rem}[data-v-acb74352] .computerIcon path{fill:var(--app-container_title-color)!important}a[data-v-acb74352]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-acb74352]{color:#333;margin-top:20px;margin-bottom:20px;padding:0 10px;font-weight:400}.content .chart_box[data-v-acb74352]{padding-bottom:20px;border-bottom:1px solid var(--btn-border-color);margin-bottom:20px;display:flex}.content .chart_box .chart[data-v-acb74352]{flex:1;display:flex;flex-direction:column;align-items:center;color:var(--app-container_title-color)}.content .chart_box .chart>div[data-v-acb74352]{margin-top:4px}.content .info[data-v-acb74352]{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.content .info .item[data-v-acb74352]{display:flex;justify-content:center}.content .info .item>div[data-v-acb74352]{color:var(--app-container_title-color)}.content .info .item>span[data-v-acb74352]{color:var(--app-container_status-label_block);font-size:16px;line-height:1}.content .info .item1[data-v-acb74352]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-top:20px;padding:30px}.content .info .item1>div[data-v-acb74352]{display:flex;align-items:center;margin-bottom:8px}.content .info .item1>div>span[data-v-acb74352]{margin-left:8px}.content .info .bgcolor1[data-v-acb74352]{background:#e9f2ff;border-radius:10px;border:1px solid #bedbff;color:#155dfc}.content .info .bgcolor2[data-v-acb74352]{background:#ebfdf1;border-radius:10px;border:1px solid #b9f8cf;color:#008236}.btn_settings[data-v-acb74352]{position:relative;padding:6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}@keyframes bganimation-acb74352{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-acb74352{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-acb74352{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-acb74352]{animation:rotateEnter-acb74352 .7s;position:relative}.rotate-leave-active[data-v-acb74352]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-acb74352]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-acb74352]{margin-top:10px;margin-bottom:10px;padding:0 4px}.content .chart_box[data-v-acb74352]{padding-bottom:10px;margin-bottom:10px;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}.content .chart_box[data-v-acb74352]::-webkit-scrollbar{display:none}.content .info[data-v-acb74352]{grid-template-columns:repeat(1,1fr);gap:6px}.content .info .item1[data-v-acb74352]{margin-top:6px;padding:10px}.content .info .bgcolor1[data-v-acb74352]{background:#e9f2ff;border-radius:10px;border:1px solid #bedbff;color:#155dfc}.content .info .bgcolor2[data-v-acb74352]{background:#ebfdf1;border-radius:10px;border:1px solid #b9f8cf;color:#008236}}@keyframes bganimation-4ca82311{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4ca82311{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4ca82311{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4ca82311]{animation:rotateEnter-4ca82311 .7s;position:relative}.rotate-leave-active[data-v-4ca82311]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4ca82311]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-4ca82311]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-4ca82311]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-4ca82311]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-4ca82311]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-4ca82311]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-4ca82311]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-4ca82311{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4ca82311{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4ca82311{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4ca82311]{animation:rotateEnter-4ca82311 .7s;position:relative}.rotate-leave-active[data-v-4ca82311]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4ca82311]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@keyframes bganimation-309b7393{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-309b7393{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-309b7393{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-309b7393]{animation:rotateEnter-309b7393 .7s;position:relative}.rotate-leave-active[data-v-309b7393]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-309b7393]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.page-container .card-container[data-v-309b7393]{display:flex;flex-wrap:nowrap;overflow-x:auto;gap:16px;width:100%;padding-bottom:10px;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-gutter:stable both-edges;scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.35) transparent}.page-container .card-container[data-v-309b7393]::-webkit-scrollbar{height:6px}.page-container .card-container[data-v-309b7393]::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.page-container .card-container>*[data-v-309b7393]{flex:0 0 auto}.page-container[data-v-309b7393] .card-container::-webkit-scrollbar{height:8px}.page-container[data-v-309b7393] .card-container::-webkit-scrollbar-thumb{border-radius:4px;background:rgba(0,0,0,.35)}.page-container[data-v-309b7393] .card-container::-webkit-scrollbar-track{background:transparent}.page-container .network-container[data-v-309b7393]{display:flex;gap:24px;width:100%;margin-top:20px;align-items:stretch}.page-container .network-container .left-box[data-v-309b7393]{flex:2;min-width:0}.page-container .network-container .right-box[data-v-309b7393]{flex:1;overflow:hidden;min-width:0}.page-container .align-c[data-v-309b7393]{align-items:center}.page-container .other-container[data-v-309b7393]{width:100%;margin-top:20px}.page-container .other-container .grid-container[data-v-309b7393]{display:flex;flex-wrap:wrap;gap:24px}.page-container .other-container .grid-container .grid-item[data-v-309b7393]{display:flex;justify-content:center;border-radius:8px}.page-container .btns[data-v-309b7393]{margin-top:20px}.page-container .system[data-v-309b7393]{margin-top:24px}@keyframes bganimation-309b7393{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-309b7393{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-309b7393{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-309b7393]{animation:rotateEnter-309b7393 .7s;position:relative}.rotate-leave-active[data-v-309b7393]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-309b7393]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1300px){.page-container .other-container[data-v-309b7393]{width:100%;margin-top:16px}.page-container .other-container .grid-container[data-v-309b7393]{flex-direction:column;gap:12px}.page-container .other-container .grid-container .grid-item[data-v-309b7393]{border-radius:6px}}@keyframes bganimation-309b7393{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-309b7393{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-309b7393{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-309b7393]{animation:rotateEnter-309b7393 .7s;position:relative}.rotate-leave-active[data-v-309b7393]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-309b7393]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.page-container .card-container[data-v-309b7393]{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;gap:16px;scrollbar-width:none;-ms-overflow-style:none}.page-container .card-container>*[data-v-309b7393]{flex:0 0 auto;min-width:280px}.page-container .card-container[data-v-309b7393]::-webkit-scrollbar{display:none}.page-container .network-container[data-v-309b7393]{flex-direction:column;margin-top:10px;gap:10px}.page-container .network-container .right-box[data-v-309b7393]{flex:none;width:100%}.page-container .other-container[data-v-309b7393]{width:100%;margin-top:16px}.page-container .other-container .grid-container[data-v-309b7393]{flex-direction:column;gap:12px}.page-container .other-container .grid-container .grid-item[data-v-309b7393]{border-radius:6px}}@keyframes bganimation-0b149a51{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0b149a51{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0b149a51{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0b149a51]{animation:rotateEnter-0b149a51 .7s;position:relative}.rotate-leave-active[data-v-0b149a51]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0b149a51]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-0b149a51]{width:100%;padding:1rem;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;align-content:center;max-width:800px;height:100vh;overflow:overlay}#page .title[data-v-0b149a51]{width:100%;display:block;text-align:center;font-size:32px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#000c;line-height:45px}#page .desc[data-v-0b149a51]{width:100%;display:block;font-size:24px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#0009;line-height:33px;text-align:center;margin-top:10px}#page div.info[data-v-0b149a51]{width:100%;display:block;font-size:1.6em;font-size:16px;margin-left:34px}#page .network-containers[data-v-0b149a51]{width:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;margin:3rem 0 1rem}#page .network-containers .network-container_item[data-v-0b149a51]{flex:0 0 100%;position:relative;border-radius:4px;padding:10px;cursor:pointer;max-width:240px;width:240px;height:308px}#page .network-containers .network-container_item a[data-v-0b149a51]{position:relative;display:block;width:100%}#page .network-containers .network-container_item a .cover[data-v-0b149a51]{position:relative;padding-top:130%;z-index:1}#page .network-containers .network-container_item a .cover .thumbnail[data-v-0b149a51]{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:8px;overflow:hidden;z-index:1;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;background-color:#2dc8fd}#page .network-containers .network-container_item a .cover .thumbnail i[data-v-0b149a51]{display:block;font-size:100px;color:#eee}#page .network-containers .network-container_item a .cover .thumbnail span[data-v-0b149a51]{display:block;text-align:center;width:100%;color:#eeee;font-size:2em;line-height:1.5;font-size:22px;font-family:PingFangSC-Semibold,PingFang SC;color:#fff;line-height:40px}#page .network-containers .network-container_item:nth-child(9n+1) a .cover .thumbnail[data-v-0b149a51]{background:linear-gradient(138deg,#FF6E6B 0%,#FF6966 100%)}#page .network-containers .network-container_item:nth-child(9n+2) a .cover .thumbnail[data-v-0b149a51]{background:linear-gradient(145deg,#37D5A9 0%,#42D8B0 100%)}#page .network-containers .network-container_item:nth-child(9n+3) a .cover .thumbnail[data-v-0b149a51]{background:linear-gradient(145deg,#549AFF 0%,#2C82FF 100%)}#page .network-containers .network-container_item:nth-child(9n+4) a .cover .thumbnail[data-v-0b149a51]{background-color:#9b58de}#page .network-containers .network-container_item:nth-child(9n+5) a .cover .thumbnail[data-v-0b149a51]{background-color:#297ff3}#page .network-containers .network-container_item:nth-child(9n+6) a .cover .thumbnail[data-v-0b149a51]{background-color:#27aa8f}#page .network-containers .network-container_item:nth-child(9n+7) a .cover .thumbnail[data-v-0b149a51]{background-color:#f15a4a}#page .network-containers .network-container_item:nth-child(9n+8) a .cover .thumbnail[data-v-0b149a51]{background-color:#439c07}@keyframes bganimation-0b149a51{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0b149a51{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0b149a51{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0b149a51]{animation:rotateEnter-0b149a51 .7s;position:relative}.rotate-leave-active[data-v-0b149a51]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0b149a51]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-f442676c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f442676c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f442676c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f442676c]{animation:rotateEnter-f442676c .7s;position:relative}.rotate-leave-active[data-v-f442676c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f442676c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-f442676c]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-f442676c]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-f442676c]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-f442676c]{margin:.5rem 0}#page .network-message li[data-v-f442676c]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-f442676c]{color:red}#page .network-message li a[data-v-f442676c]{color:#00f}#page form[data-v-f442676c]{display:block;width:100%;margin:3rem 0}#page form label[data-v-f442676c]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-f442676c]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-f442676c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-f442676c]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-f442676c]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-f442676c]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-f442676c]{margin-left:10px;user-select:none}#page .msg[data-v-f442676c]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page .btns[data-v-f442676c]{width:100%;margin-top:3rem}#page .btns button[data-v-f442676c]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-162eca5f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-162eca5f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-162eca5f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-162eca5f]{animation:rotateEnter-162eca5f .7s;position:relative}.rotate-leave-active[data-v-162eca5f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-162eca5f]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-162eca5f]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-162eca5f]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-162eca5f]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-162eca5f]{margin:.5rem 0}#page .network-message li[data-v-162eca5f]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-162eca5f]{color:red}#page .network-message li a[data-v-162eca5f]{color:#00f}#page form[data-v-162eca5f]{display:block;width:100%;margin:3rem 0}#page form label[data-v-162eca5f]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-162eca5f]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-162eca5f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-162eca5f]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-162eca5f],#page form label select[data-v-162eca5f]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-162eca5f]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-162eca5f]{margin-left:10px;user-select:none}#page .msgs[data-v-162eca5f]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-162eca5f]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-162eca5f]{width:100%;margin-top:3rem}#page .btns button[data-v-162eca5f]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-2dee59a8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2dee59a8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2dee59a8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2dee59a8]{animation:rotateEnter-2dee59a8 .7s;position:relative}.rotate-leave-active[data-v-2dee59a8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2dee59a8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-2dee59a8]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-2dee59a8]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-2dee59a8]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page code[data-v-2dee59a8]{background-color:#eee;display:block;width:100%;font-size:1.3em;padding:1rem;line-height:2;margin:2rem 0}#page div.info[data-v-2dee59a8]{width:100%;display:block;margin:1rem 0;font-size:1.3em;text-align:left}#page .msgs[data-v-2dee59a8]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-2dee59a8]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-2dee59a8]{width:100%;display:block;margin-top:3rem}#page .btns button[data-v-2dee59a8]{display:block;width:100%!important;margin:.5rem 0}#page form[data-v-2dee59a8]{display:block;width:100%;margin:3rem 0}#page form label[data-v-2dee59a8]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-2dee59a8]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-2dee59a8]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-2dee59a8]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-2dee59a8],#page form label select[data-v-2dee59a8]{width:100%;display:block;height:42px}.switch_inline[data-v-2dee59a8]{height:1em;font-size:1.3em}.switch_inline .switch_info[data-v-2dee59a8]{margin-left:10px;user-select:none}@keyframes bganimation-77451104{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-77451104{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-77451104{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-77451104]{animation:rotateEnter-77451104 .7s;position:relative}.rotate-leave-active[data-v-77451104]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-77451104]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}p[data-v-77451104]{line-height:22px;font-size:14px}.label-item[data-v-77451104]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-77451104]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-77451104]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-77451104]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-77451104]{width:100%;margin:10px 0}.label-item .label-item_value select[data-v-77451104],.label-item .label-item_value input[data-v-77451104]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value input[data-v-77451104]::placeholder{color:#999;font-size:12PX}.label-item .label-item_value label[data-v-77451104]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=checkbox][data-v-77451104]{top:0}.label-item .label-item_tips[data-v-77451104]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-77451104]{vertical-align:top}span.msg-warning[data-v-77451104]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}.label-message[data-v-77451104]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-container_body.setup-loading[data-v-77451104]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-loading span[data-v-77451104]{width:100%;display:block;font-size:1.2em;margin-top:1rem;color:#666}.actioner-container_body.setup-error[data-v-77451104]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-error svg.icon[data-v-77451104]{width:100px;height:100px}.actioner-container_body.setup-error span[data-v-77451104]{width:100%;display:block;font-size:1.4em;color:#ff6b6b}.actioner-container_body.setup-success[data-v-77451104]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body.setup-success svg.icon[data-v-77451104]{width:100px;height:100px}.actioner-container_body.setup-success .body-title[data-v-77451104]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body.setup-success .body-tips[data-v-77451104]{text-align:center}.actioner-container_body.setup-success .body-info[data-v-77451104]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body.setup-success .body-info span[data-v-77451104]{display:block}.actioner-container_body.setup-success .body-tips[data-v-77451104]{margin:1rem 0;display:block;width:100%}.actioner-container_body.setup-success .body-btns[data-v-77451104]{width:100%;margin-top:3rem}.actioner-container_body.setup-success .body-btns button[data-v-77451104]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-5ec616d8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5ec616d8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5ec616d8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5ec616d8]{animation:rotateEnter-5ec616d8 .7s;position:relative}.rotate-leave-active[data-v-5ec616d8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5ec616d8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-5ec616d8]{display:block;width:100%;height:100%;border:none;resize:none}@keyframes bganimation-70cb932e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-70cb932e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-70cb932e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-70cb932e]{animation:rotateEnter-70cb932e .7s;position:relative}.rotate-leave-active[data-v-70cb932e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-70cb932e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-70cb932e]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-70cb932e]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-70cb932e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-70cb932e]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-70cb932e]{width:100%}.label-item .label-item_value select[data-v-70cb932e]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-70cb932e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-70cb932e]{top:0;margin:0}.label-item .label-item_tips[data-v-70cb932e]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-70cb932e]{vertical-align:top}span.msg-warning[data-v-70cb932e]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-56c0f6fb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-56c0f6fb{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-56c0f6fb{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-56c0f6fb]{animation:rotateEnter-56c0f6fb .7s;position:relative}.rotate-leave-active[data-v-56c0f6fb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-56c0f6fb]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-56c0f6fb]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-56c0f6fb]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-56c0f6fb]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-56c0f6fb]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-56c0f6fb]{width:100%}.label-item .label-item_value select[data-v-56c0f6fb]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-56c0f6fb]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-56c0f6fb]{top:0;margin:0}.label-item .label-item_tips[data-v-56c0f6fb]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-56c0f6fb]{vertical-align:top}span.msg-warning[data-v-56c0f6fb]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-0586260e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0586260e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0586260e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0586260e]{animation:rotateEnter-0586260e .7s;position:relative}.rotate-leave-active[data-v-0586260e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0586260e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-0586260e]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-0586260e]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-0586260e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-0586260e]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-0586260e]{width:100%}.label-item .label-item_value select[data-v-0586260e]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-0586260e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-0586260e]{top:0;margin:0}.label-item .label-item_tips[data-v-0586260e]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-0586260e]{vertical-align:top}span.msg-warning[data-v-0586260e]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-e20ba082{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-e20ba082{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-e20ba082{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-e20ba082]{animation:rotateEnter-e20ba082 .7s;position:relative}.rotate-leave-active[data-v-e20ba082]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-e20ba082]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-e20ba082]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-e20ba082] .actioner-container{width:100%}.action-main[data-v-e20ba082] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-e20ba082] .actioner-container .actioner-container_body{padding:20px;width:100%;height:400px}@keyframes bganimation-e20ba082{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-e20ba082{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-e20ba082{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-e20ba082]{animation:rotateEnter-e20ba082 .7s;position:relative}.rotate-leave-active[data-v-e20ba082]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-e20ba082]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-e20ba082]{width:90%}}@keyframes bganimation-f1411b40{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f1411b40{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f1411b40{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f1411b40]{animation:rotateEnter-f1411b40 .7s;position:relative}.rotate-leave-active[data-v-f1411b40]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f1411b40]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.cbi-map-descr[data-v-f1411b40]{margin-bottom:32px}.item-status[data-v-f1411b40]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.item-status-detail[data-v-f1411b40]{text-decoration:underline;cursor:help}@keyframes bganimation-2b6b4ef9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2b6b4ef9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2b6b4ef9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2b6b4ef9]{animation:rotateEnter-2b6b4ef9 .7s;position:relative}.rotate-leave-active[data-v-2b6b4ef9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2b6b4ef9]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page .cbi-map-descr[data-v-2b6b4ef9]{margin-bottom:1rem}#page[data-v-2b6b4ef9] .cbi-section{padding:1rem}#page[data-v-2b6b4ef9] span.cbi-page-actions.control-group{width:100%;display:block}@keyframes bganimation-f3b0d6f0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f3b0d6f0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f3b0d6f0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f3b0d6f0]{animation:rotateEnter-f3b0d6f0 .7s;position:relative}.rotate-leave-active[data-v-f3b0d6f0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f3b0d6f0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-f3b0d6f0]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-f3b0d6f0] .actioner-container{width:100%}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:16px;border-bottom:1px solid #eee;justify-content:flex-start;padding:0 1rem;color:#525f7f}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem;padding:0;border:none}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_body{padding:20px;width:100%;min-height:400px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_body label.cbi-value-title{width:150px!important}@keyframes bganimation-f3b0d6f0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f3b0d6f0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f3b0d6f0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f3b0d6f0]{animation:rotateEnter-f3b0d6f0 .7s;position:relative}.rotate-leave-active[data-v-f3b0d6f0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f3b0d6f0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-f3b0d6f0]{width:90%}}@keyframes bganimation-abf07ee0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-abf07ee0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-abf07ee0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-abf07ee0]{animation:rotateEnter-abf07ee0 .7s;position:relative}.rotate-leave-active[data-v-abf07ee0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-abf07ee0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-abf07ee0]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-4a646cde{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4a646cde{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4a646cde{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4a646cde]{animation:rotateEnter-4a646cde .7s;position:relative}.rotate-leave-active[data-v-4a646cde]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4a646cde]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-4a646cde]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-997c3dee{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-997c3dee{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-997c3dee{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-997c3dee]{animation:rotateEnter-997c3dee .7s;position:relative}.rotate-leave-active[data-v-997c3dee]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-997c3dee]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-997c3dee]{display:block;width:100%;height:500px;padding:1rem;font-size:14px;resize:none;border:1px solid #999;border-radius:3px}@keyframes bganimation-17b89cb7{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-17b89cb7{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-17b89cb7{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-17b89cb7]{animation:rotateEnter-17b89cb7 .7s;position:relative}.rotate-leave-active[data-v-17b89cb7]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-17b89cb7]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.app-container_status-label_bg[data-v-17b89cb7]{flex:0 0 230px;width:230px;height:80px;display:flex;background:var(--app-container_status-label_bg);align-items:center;padding:10px;margin-right:10px;transition:.3s}.app-container_status-label_bg .app-container_status-label_text[data-v-17b89cb7]{margin-left:6px;font-size:14px;line-height:22px;text-align:left}.app-container_status-label_bg .app-container_status-label_text .text_status[data-v-17b89cb7]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_style[data-v-17b89cb7]{margin:6px 0}.app-container_status-label_bg .app-container_status-label_text .text_style.close[data-v-17b89cb7]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_info[data-v-17b89cb7]{font-weight:700;font-size:14px}@keyframes bganimation-6f6071af{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f6071af{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f6071af{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f6071af]{animation:rotateEnter-6f6071af .7s;position:relative}.rotate-leave-active[data-v-6f6071af]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f6071af]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-6f6071af]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-6f6071af]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-6f6071af]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-6f6071af]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-6f6071af]{width:100%;font-size:16px;color:#666;margin-bottom:10px}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-6f6071af]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-6f6071af]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-6f6071af]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-6f6071af],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-6f6071af]{width:100%;min-height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-6f6071af]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-6f6071af]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-6f6071af]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-6f6071af]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-6f6071af{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f6071af{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f6071af{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f6071af]{animation:rotateEnter-6f6071af .7s;position:relative}.rotate-leave-active[data-v-6f6071af]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f6071af]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-6f6071af]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-6f6071af]{width:100%}}@keyframes bganimation-4ec945e0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4ec945e0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4ec945e0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4ec945e0]{animation:rotateEnter-4ec945e0 .7s;position:relative}.rotate-leave-active[data-v-4ec945e0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4ec945e0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-4ec945e0] .app-container_status-label_bg{margin:8px 0;flex:0 0 170px;height:80px;justify-content:start}[data-v-4ec945e0] .interface-device-flex{justify-content:start}.container[data-v-4ec945e0]{width:100%;overflow-x:auto}.container .table-wrapper[data-v-4ec945e0]{min-width:1280px;width:max-content}.container .table-wrapper .table-body[data-v-4ec945e0]{display:flex;flex-direction:column;min-width:100%}.container .table-wrapper .table-header[data-v-4ec945e0]{display:flex;border-bottom:2px solid #e5e7eb;background-color:#f8fafc;padding-left:10px}.container .table-wrapper .table-row[data-v-4ec945e0]{display:flex;min-width:100%;align-items:center;border-bottom:1px solid #e5e7eb;transition:background-color .2s}.container .table-wrapper .table-row[data-v-4ec945e0]:hover{background-color:#f3f4f6}.container .table-wrapper .add-row[data-v-4ec945e0]{cursor:pointer}.container .table-wrapper .add-row[data-v-4ec945e0]:hover{background-color:#f0f9ff}.container .table-wrapper .table-cell[data-v-4ec945e0]{padding:12px 16px;box-sizing:border-box;display:flex;justify-content:center}.container .table-wrapper .device-col[data-v-4ec945e0]{flex:0 0 200px;min-width:200px}.container .table-wrapper .spacer-col[data-v-4ec945e0]:first-of-type{flex:0 0 10px}.container .table-wrapper .spacer-col[data-v-4ec945e0]:last-of-type{flex:0 0 32px}.container .table-wrapper .name-col[data-v-4ec945e0]{flex:0 0 150px;min-width:150px;text-align:left}.container .table-wrapper .action-col[data-v-4ec945e0]{flex:0 0 auto;text-align:right;min-width:160px}.container .table-wrapper .icon[data-v-4ec945e0]{width:48px;height:100%;cursor:pointer}.container .table-wrapper .interface-device-flex[data-v-4ec945e0]{display:flex;justify-content:center;width:100%}.container .cbi-page-actions[data-v-4ec945e0]{margin-top:20px;display:flex;justify-content:flex-end}@media (max-width: 768px){.container[data-v-4ec945e0] .app-container_status-label_bg{margin:8px 0;flex:0 0 80px;width:120px;height:80px;justify-content:start}.container .table-wrapper[data-v-4ec945e0]{min-width:100%}.container .table-cell[data-v-4ec945e0]{padding:8px 12px}.container .device-col[data-v-4ec945e0]{flex:0 0 120px!important;min-width:120px!important;margin-right:16px}.container .name-col[data-v-4ec945e0]{flex:0 0 80px!important;min-width:80px!important}.container .action-col[data-v-4ec945e0]{min-width:120px}.container .interface-device-flex[data-v-4ec945e0]{flex-direction:column;gap:4px}}tr>td,tr>th,.tr>.td,.tr>.th,.cbi-section-table-row:before,#cbi-wireless>#wifi_assoclist_table>.tr:nth-child(2){border:none}@keyframes bganimation-2c8ecf89{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2c8ecf89{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2c8ecf89{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2c8ecf89]{animation:rotateEnter-2c8ecf89 .7s;position:relative}.rotate-leave-active[data-v-2c8ecf89]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2c8ecf89]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.custom-table-container[data-v-2c8ecf89]{width:100%;font-size:14px;color:var(--flow-span-color)}.custom-table-container input[data-v-2c8ecf89]{margin:0}.custom-table-container .custom-table-wrapper[data-v-2c8ecf89]{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.custom-table-container .custom-table[data-v-2c8ecf89]{width:100%;border-collapse:collapse;table-layout:auto}.custom-table-container .custom-table thead[data-v-2c8ecf89]{border-radius:8px!important;background:#F8F8F8}.custom-table-container .custom-table thead tr th[data-v-2c8ecf89]{color:var(--flow-span-color)!important;font-weight:500!important;border:none!important;padding:18px 8px!important;white-space:nowrap}.custom-table-container .custom-table tbody tr[data-v-2c8ecf89]{background:transparent;border-bottom:1px solid #f8f8f8!important}.custom-table-container .custom-table tbody tr[data-v-2c8ecf89]:last-child{border-bottom:none!important}.custom-table-container .custom-table tbody tr td[data-v-2c8ecf89]{padding:24px 8px!important;white-space:nowrap}.custom-table-container .custom-table tbody tr:hover td[data-v-2c8ecf89]{background-color:#00000005!important}.custom-table-container .custom-table tbody tr.empty-row td[data-v-2c8ecf89]{text-align:center!important;padding:30px 0!important;color:#c98d8d66!important;border-bottom:none!important}.custom-table-container .custom-table .selection-header[data-v-2c8ecf89],.custom-table-container .custom-table .selection-cell[data-v-2c8ecf89]{width:50px!important;min-width:50px!important;text-align:center!important}.custom-table-container .pagination-wrapper[data-v-2c8ecf89]{display:flex;justify-content:space-between;align-items:center;margin-top:16px;padding:0 8px}.custom-table-container .pagination-wrapper .pagination-info[data-v-2c8ecf89]{color:#0009;font-size:13px}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]{min-width:32px;height:32px;margin:0 4px;padding:0 8px;background:#fff;color:#000000a6;cursor:pointer;transition:all .3s}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]:hover:not(:disabled){color:#1890ff;border-color:#1890ff}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]:disabled{color:#00000040;background-color:#f5f5f5;border-color:#d9d9d9;cursor:not-allowed}.custom-table-container .pagination-wrapper .pagination-controls button.active[data-v-2c8ecf89]{color:#fff;background-color:#1890ff;border-color:#1890ff}@media (max-width: 768px){.custom-table-container .custom-table thead tr th[data-v-2c8ecf89]{padding:8px 4px!important;font-size:13px!important}.custom-table-container .custom-table tbody tr td[data-v-2c8ecf89]{padding:12px 4px!important;font-size:13px!important}.custom-table-container .pagination-wrapper[data-v-2c8ecf89]{flex-direction:column;align-items:flex-start;gap:12px}.custom-table-container .pagination-wrapper .pagination-controls[data-v-2c8ecf89]{display:flex;flex-wrap:wrap;gap:4px}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]{min-width:28px;height:28px;margin:0;padding:0 6px;font-size:13px}}@keyframes bganimation-d28f7d82{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d28f7d82{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d28f7d82{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d28f7d82]{animation:rotateEnter-d28f7d82 .7s;position:relative}.rotate-leave-active[data-v-d28f7d82]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d28f7d82]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.del-button[data-v-d28f7d82]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:8px 15px;font-size:14px;border-radius:4px}.add-button--danger[data-v-d28f7d82]{color:#fff;background-color:#553afe;border-color:#553afe}.add-button--danger[data-v-d28f7d82]:hover{background:#5c44f8;border-color:#5c44f8;color:#fff}.add-button--danger[data-v-d28f7d82]:active{background:#553AFE;border-color:#553afe;color:#fff}.add-button.is-disabled[data-v-d28f7d82]{opacity:.5;cursor:not-allowed}.del-button--danger[data-v-d28f7d82]{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.del-button--danger[data-v-d28f7d82]:hover{background:#f78989;border-color:#f78989;color:#fff}.del-button--danger[data-v-d28f7d82]:active{background:#dd6161;border-color:#dd6161;color:#fff}.del-button.is-disabled[data-v-d28f7d82]{opacity:.5;cursor:not-allowed}.search_box[data-v-d28f7d82]{width:350px}.search_box .search_container[data-v-d28f7d82]{display:flex;align-items:center;gap:8px}.search_box .search_container .search_input_wrapper[data-v-d28f7d82]{position:relative;flex-grow:1}.search_box .search_container .search_input_wrapper .search_icon[data-v-d28f7d82]{position:absolute;right:10px;top:50%;transform:translateY(-50%);fill:#000c;cursor:pointer}.search_box .search_container .search_input_wrapper .search_input[data-v-d28f7d82]{width:100%;padding:4px 35px 4px 12px;border-radius:4px;border:1px solid rgba(0,0,0,.6);font-size:14px;outline:none;transition:border-color .3s;color:#222;background:transparent}.search_box .search_container .search_input_wrapper .search_input[data-v-d28f7d82]:focus{border-color:#4a90e2}.search_box .search_container .refresh_button[data-v-d28f7d82]{background:none;border:none;cursor:pointer;padding:8px;border-radius:50%;transition:background-color .3s;display:flex;align-items:center;justify-content:center}.search_box .search_container .refresh_button[data-v-d28f7d82]:hover{background-color:#f0f0f0}.search_box .search_container .refresh_button .refresh_icon[data-v-d28f7d82]{fill:#000c;transition:transform .3s}.search_box .search_container .refresh_button.rotate .refresh_icon[data-v-d28f7d82]{animation:spin-d28f7d82 1s linear infinite}@keyframes spin-d28f7d82{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes bganimation-d28f7d82{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d28f7d82{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d28f7d82{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d28f7d82]{animation:rotateEnter-d28f7d82 .7s;position:relative}.rotate-leave-active[data-v-d28f7d82]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d28f7d82]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media (max-width: 827px){.search_box[data-v-d28f7d82]{width:80%}.del-button[data-v-d28f7d82]{padding:6px 8px}}@keyframes bganimation-9ce78472{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9ce78472{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9ce78472{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9ce78472]{animation:rotateEnter-9ce78472 .7s;position:relative}.rotate-leave-active[data-v-9ce78472]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9ce78472]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.switch[data-v-9ce78472]{display:inline-flex;align-items:center;position:relative;font-size:14px;height:20px}.switch.is-disabled[data-v-9ce78472]{opacity:.6;cursor:not-allowed}.switch.is-disabled .switch__core[data-v-9ce78472]{cursor:not-allowed}.switch__input[data-v-9ce78472]{position:absolute;width:0;height:0;opacity:0;margin:0;z-index:-1}.switch__core[data-v-9ce78472]{margin:0;display:inline-block;position:relative;width:40px;height:20px;border:1px solid;outline:none;border-radius:10px;box-sizing:border-box;cursor:pointer;transition:border-color .3s,background-color .3s}.switch__button[data-v-9ce78472]{position:absolute;top:1px;left:1px;border-radius:100%;transition:all .3s;width:16px;height:16px;background-color:#fff;box-shadow:0 1px 2px #0003}.switch.is-checked .switch__button[data-v-9ce78472]{transform:translate(20px)}@keyframes bganimation-529a02b0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-529a02b0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-529a02b0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-529a02b0]{animation:rotateEnter-529a02b0 .7s;position:relative}.rotate-leave-active[data-v-529a02b0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-529a02b0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.flow[data-v-529a02b0]{position:relative;height:260px}.flow .echart[data-v-529a02b0]{width:100%;height:100%}.flow .flow-data[data-v-529a02b0]{position:absolute;right:10px;top:10px}.flow .flow-data span[data-v-529a02b0]{display:block;color:var(--flow-span-color);font-size:12px;margin-bottom:5px;font-weight:600;font-family:PingFangSC-Semibold,PingFang SC}@media screen and (max-width: 600px){.flow[data-v-529a02b0]{height:55vw}}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.modal-overlay{position:fixed;inset:0;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:999;backdrop-filter:blur(2px)}.modal-container{background-color:#fff;border-radius:8px;box-shadow:0 4px 20px #00000026;width:90%;max-width:var(--1df87c10);max-height:90vh;display:flex;flex-direction:column;overflow:hidden}.modal-container .modal-header{padding:8px 12px;border-bottom:1px solid #f0f0f0;display:flex;justify-content:space-between;align-items:center}.modal-container .modal-header .modal-title{margin:0;font-size:18px;color:#333;padding:0;text-align:center;background:transparent!important}.modal-container .modal-header .modal-close{background:none;border:none;font-size:24px;cursor:pointer;color:#999;transition:color .2s}.modal-container .modal-header .modal-close:hover{color:#666}.modal-container .modal-content{padding:18px;overflow-y:auto;flex:1}.modal-container .modal-footer{padding:8px 12px;border-top:1px solid #f0f0f0;display:flex;justify-content:flex-end;gap:12px}.modal-container .modal-footer .modal-button{padding:4px 16px;border-radius:4px;font-size:14px;cursor:pointer;transition:all .2s;border:1px solid transparent}.modal-container .modal-footer .modal-button.cancel{background-color:#fff;border-color:#ddd;color:#666}.modal-container .modal-footer .modal-button.cancel:hover{background-color:#f5f5f5}.modal-container .modal-footer .modal-button.confirm{background-color:#553afe;color:#fff}.modal-container .modal-footer .modal-button.confirm:hover{background-color:#3f21fe}@media (max-width: 768px){.modal-container{width:95%;max-width:none;max-height:90vh;margin:0 10px}.modal-container .modal-header{padding:12px 16px}.modal-container .modal-header .modal-title{font-size:16px;background:transparent!important}.modal-container .modal-header .modal-close{font-size:20px}.modal-container .modal-content{padding:16px}.modal-container .modal-footer{padding:12px 16px;flex-direction:column-reverse;gap:8px}.modal-container .modal-footer .modal-button{width:100%;padding:10px;font-size:15px}}.fade-enter-active,.fade-leave-active{transition:opacity .3s ease}.fade-enter-from,.fade-leave-to{opacity:0}.slide-enter-active,.slide-leave-active{transition:transform .3s ease,opacity .3s ease}.slide-enter-from,.slide-leave-to{transform:translateY(-20px);opacity:0}@keyframes bganimation-2f8a90b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2f8a90b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2f8a90b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2f8a90b2]{animation:rotateEnter-2f8a90b2 .7s;position:relative}.rotate-leave-active[data-v-2f8a90b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2f8a90b2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-2f8a90b2] .tag-input{padding:4px 12px}.custom-content[data-v-2f8a90b2]{position:relative}.custom-content .img_box[data-v-2f8a90b2]{position:absolute;right:0;top:0;width:100px;height:100px}.custom-content .img_box>img[data-v-2f8a90b2]{width:100%;height:100%}.custom-content .IP_address[data-v-2f8a90b2]{text-align:center;padding:14px 16px;background:rgba(85,58,254,.1);border-radius:8px;margin-bottom:16px}.custom-content .tip[data-v-2f8a90b2]{text-align:center;margin-top:16px;font-size:12px}.custom-content .item_box[data-v-2f8a90b2]{margin-top:12px;display:flex;align-items:center}.custom-content .item_box>input[data-v-2f8a90b2]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>input[data-v-2f8a90b2]::placeholder{color:#8898aa}.custom-content .item_box>select[data-v-2f8a90b2]{width:45%;background:transparent!important;color:var(--card-box-shadow)}.custom-content .item_box>select>option[data-v-2f8a90b2]{padding:4px 12px!important}.custom-content .item_box .item_left[data-v-2f8a90b2]{width:140px;text-align:right}.info-content[data-v-2f8a90b2]{display:flex}.info-content .img_box[data-v-2f8a90b2]{position:relative}.info-content .item_box .item_left[data-v-2f8a90b2]{width:100px}@keyframes bganimation-2f8a90b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2f8a90b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2f8a90b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2f8a90b2]{animation:rotateEnter-2f8a90b2 .7s;position:relative}.rotate-leave-active[data-v-2f8a90b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2f8a90b2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-0ad740fc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ad740fc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ad740fc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ad740fc]{animation:rotateEnter-0ad740fc .7s;position:relative}.rotate-leave-active[data-v-0ad740fc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ad740fc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.custom-content[data-v-0ad740fc]{position:relative}.custom-content .img_box[data-v-0ad740fc]{position:absolute;right:0;top:0;width:100px;height:100px}.custom-content .img_box>img[data-v-0ad740fc]{width:100%;height:100%}.custom-content .IP_address[data-v-0ad740fc]{text-align:center;padding:14px 16px;background:rgba(85,58,254,.1);border-radius:8px;margin-bottom:16px}.custom-content .tip[data-v-0ad740fc]{text-align:center;margin-top:16px;font-size:12px}.custom-content .item_box[data-v-0ad740fc]{margin-top:12px;display:flex;align-items:center}.custom-content .item_box>input[data-v-0ad740fc]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>input[data-v-0ad740fc]::placeholder{color:#8898aa}.custom-content .item_box>select[data-v-0ad740fc]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>select>option[data-v-0ad740fc]{padding:4px 12px!important}.custom-content .item_box .item_left[data-v-0ad740fc]{width:140px;text-align:right}.del-button[data-v-0ad740fc]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:6px 10px;font-size:14px;border-radius:4px}.del-button--danger[data-v-0ad740fc]{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.del-button--danger[data-v-0ad740fc]:hover{background:#f78989;border-color:#f78989;color:#fff}.del-button--danger[data-v-0ad740fc]:active{background:#dd6161;border-color:#dd6161;color:#fff}.del-button.is-disabled[data-v-0ad740fc]{opacity:.5;cursor:not-allowed}@keyframes bganimation-0ad740fc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ad740fc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ad740fc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ad740fc]{animation:rotateEnter-0ad740fc .7s;position:relative}.rotate-leave-active[data-v-0ad740fc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ad740fc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-1c110960{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c110960{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1c110960{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1c110960]{animation:rotateEnter-1c110960 .7s;position:relative}.rotate-leave-active[data-v-1c110960]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c110960]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.custom-content[data-v-1c110960]{position:relative}.custom-content .img_box[data-v-1c110960]{position:absolute;right:0;top:0;width:100px;height:100px}.custom-content .img_box>img[data-v-1c110960]{width:100%;height:100%}.custom-content .IP_address[data-v-1c110960]{text-align:center;padding:14px 16px;background:rgba(85,58,254,.1);border-radius:8px;margin-bottom:16px}.custom-content .tip[data-v-1c110960]{text-align:center;margin-top:16px;font-size:12px}.custom-content .item_box[data-v-1c110960]{margin-top:12px;display:flex;align-items:center}.custom-content .item_box>input[data-v-1c110960]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>input[data-v-1c110960]::placeholder{color:#8898aa}.custom-content .item_box>select[data-v-1c110960]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>select>option[data-v-1c110960]{padding:4px 12px!important}.custom-content .item_box .item_left[data-v-1c110960]{width:140px;text-align:right}.del-button[data-v-1c110960]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:6px 10px;font-size:14px;border-radius:4px}.del-button--danger[data-v-1c110960]{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.del-button--danger[data-v-1c110960]:hover{background:#f78989;border-color:#f78989;color:#fff}.del-button--danger[data-v-1c110960]:active{background:#dd6161;border-color:#dd6161;color:#fff}.del-button.is-disabled[data-v-1c110960]{opacity:.5;cursor:not-allowed}@keyframes bganimation-1c110960{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c110960{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1c110960{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1c110960]{animation:rotateEnter-1c110960 .7s;position:relative}.rotate-leave-active[data-v-1c110960]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c110960]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-15068472{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-15068472{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-15068472{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-15068472]{animation:rotateEnter-15068472 .7s;position:relative}.rotate-leave-active[data-v-15068472]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-15068472]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.dialog-overlay[data-v-15068472]{position:fixed;inset:0;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:1000;padding:16px}.dialog-container[data-v-15068472]{background-color:#fff;border-radius:12px;padding:16px;width:100%;max-width:400px;box-shadow:0 4px 12px #00000026}.dialog-container .dialog-title[data-v-15068472]{margin:0 0 20px;font-size:1.2rem;font-weight:500;color:#333;text-align:left}.dialog-container .dialog-message[data-v-15068472]{margin:20px 0;font-size:1rem;color:#666;text-align:center}.dialog-container .loading-animation[data-v-15068472]{margin:20px 0}.dialog-container .loading-animation .spinner[data-v-15068472]{width:40px;height:40px;margin:0 auto;border:4px solid rgba(110,72,170,.2);border-radius:50%;border-top-color:#8d78fa;animation:spin-15068472 1s linear infinite}.dialog-container .dialog-button[data-v-15068472]{background-color:#553afe;color:#fff;border:none;border-radius:6px;padding:4px 20px;font-size:1rem;cursor:pointer;transition:all .2s;margin:0 auto;display:block}.dialog-container .dialog-button[data-v-15068472]:hover{background-color:#553afe;opacity:.9}.dialog-container .dialog-button[data-v-15068472]:active{transform:scale(.98)}.dialog-container .warning-message[data-v-15068472]{display:flex;gap:8px;background-color:#fff8e1;border-left:4px solid #FFC107;padding:12px;margin-bottom:20px;border-radius:4px;font-size:.9rem;color:#333;text-align:left}.dialog-container .warning-message .warning-icon[data-v-15068472]{flex-shrink:0;width:20px;height:20px;color:#ffa000}.dialog-container .input-group[data-v-15068472]{margin-bottom:16px;text-align:left}.dialog-container .input-group label[data-v-15068472]{display:block;margin-bottom:8px;font-size:.95rem;color:#333}.dialog-container .input-group .tag-input[data-v-15068472]{width:100%;padding:10px 12px;border:1px solid #ddd;border-radius:6px;font-size:1rem;transition:border-color .2s}.dialog-container .input-group .tag-input[data-v-15068472]:focus{outline:none;border-color:#6e48aa}.dialog-container .button-group[data-v-15068472]{display:flex;justify-content:flex-end;gap:12px}.dialog-container .button-group .cancel-button[data-v-15068472]{background-color:#fff;color:#333;border:1px solid #ddd;border-radius:6px;padding:4px 20px;font-size:1rem;cursor:pointer;transition:all .2s}.dialog-container .button-group .cancel-button[data-v-15068472]:hover{background-color:#e0e0e0}.dialog-container .button-group .cancel-button[data-v-15068472]:active{transform:scale(.98)}.dialog-container .button-group .confirm-button[data-v-15068472]{background-color:#553afe;color:#fff;border:none;border-radius:6px;padding:4px 20px;font-size:1rem;cursor:pointer;transition:all .2s}.dialog-container .button-group .confirm-button[data-v-15068472]:hover{background-color:#553afe;opacity:.9}.dialog-container .button-group .confirm-button[data-v-15068472]:active{transform:scale(.98)}.tag-dialog[data-v-15068472]{max-width:500px}.fade-enter-active[data-v-15068472],.fade-leave-active[data-v-15068472]{transition:opacity .3s ease}.fade-enter-from[data-v-15068472],.fade-leave-to[data-v-15068472]{opacity:0}@keyframes spin-15068472{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes rotate-circle-15068472{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes icon-line-tip-15068472{0%{width:0;left:1px;top:15px}54%{width:0;left:1px;top:15px}70%{width:40px;left:-6px;top:30px}84%{width:14px;left:17px;top:38px}to{width:12px;left:8px;top:22px}}@keyframes icon-line-long-15068472{0%{width:0;right:37px;top:43px}65%{width:0;right:37px;top:43px}84%{width:44px;right:0;top:28px}to{width:20px;right:8px;top:20px}}@media (max-width: 480px){.dialog-container[data-v-15068472]{padding:16px}.dialog-container .dialog-title[data-v-15068472]{font-size:1.1rem;margin-bottom:16px}.dialog-container .dialog-message[data-v-15068472]{font-size:.95rem;margin:16px 0}.dialog-container .warning-message[data-v-15068472]{font-size:.85rem;padding:10px}.dialog-container .input-group[data-v-15068472]{margin-bottom:20px}.dialog-container .input-group label[data-v-15068472]{font-size:.9rem}.dialog-container .input-group .tag-input[data-v-15068472]{padding:8px 10px;font-size:.95rem}.dialog-container .button-group[data-v-15068472]{gap:8px}.dialog-container .button-group .cancel-button[data-v-15068472],.dialog-container .button-group .confirm-button[data-v-15068472]{padding:4px 16px;font-size:.95rem}.dialog-container .loading-animation .spinner[data-v-15068472]{width:36px;height:36px}}@keyframes bganimation-66e54129{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-66e54129{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-66e54129{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-66e54129]{animation:rotateEnter-66e54129 .7s;position:relative}.rotate-leave-active[data-v-66e54129]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-66e54129]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.add-button[data-v-66e54129]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:8px 12px;font-size:14px;border-radius:4px}.add-button--danger[data-v-66e54129]{color:#fff;background-color:#553afe;border-color:#553afe}.add-button--danger[data-v-66e54129]:hover{background:#5c44f8;border-color:#5c44f8;color:#fff}.add-button--danger[data-v-66e54129]:active{background:#553AFE;border-color:#553afe;color:#fff}.add-button.is-disabled[data-v-66e54129]{opacity:.5;cursor:not-allowed}.tab-container[data-v-66e54129]{display:flex;flex-direction:row;width:100%;margin:0 auto;border-radius:8px;overflow:hidden}@media (max-width: 768px){.tab-container[data-v-66e54129]{flex-direction:column}}.tab-header[data-v-66e54129]{display:flex;flex-direction:column;width:120px}@media (max-width: 768px){.tab-header[data-v-66e54129]{flex-direction:row;width:100%;overflow-x:auto;white-space:nowrap}}.tab-button[data-v-66e54129]{padding:12px 16px;text-align:left;border:none;background:transparent!important;cursor:pointer;font-size:14px;color:var(--flow-span-color);transition:all .3s ease;border-radius:8px 0 0 8px}.tab-button[data-v-66e54129]:hover{background:var(--tag-bg-color)!important}.tab-button.active[data-v-66e54129]{background:var(--tag-bg-color)!important;font-weight:500;margin:0}@media (max-width: 768px){.tab-button[data-v-66e54129]{border-radius:8px 8px 0 0;text-align:center;flex:1;min-width:max-content}.tab-button.active[data-v-66e54129]{border-radius:8px 8px 0 0}}.tab-content_g[data-v-66e54129]{flex:1;padding:20px;background:var(--tag-bg-color);border-radius:0 8px 8px 0;min-height:60vh}.tab-content_g .not_installed[data-v-66e54129]{display:flex;flex-direction:column;align-items:center}.tab-content_g .not_installed>span[data-v-66e54129]{color:var(--tit-color);margin:20px 0}.tab-content_g .not_installed .not_installed_btn[data-v-66e54129]{padding:6px 16px;background:#553AFE;border-radius:4px;font-size:14px;color:#fff;cursor:pointer}@media (max-width: 768px){.tab-content_g[data-v-66e54129]{border-radius:0 0 8px 8px}}.item_box[data-v-66e54129]{margin-top:12px;display:flex;align-items:center;color:var(--tit-color)!important}.item_box>input[data-v-66e54129]{width:40%;color:var(--card-box-shadow);background:transparent!important;color:var(--tit-color)!important}@media (max-width: 768px){.item_box>input[data-v-66e54129]{width:70%}}.item_box>input[data-v-66e54129]::placeholder{color:var(--item-label_key-span-color)}.item_box>select[data-v-66e54129]{background:transparent!important;width:40%;color:var(--card-box-shadow)}@media (max-width: 768px){.item_box>select[data-v-66e54129]{width:70%}}.item_box>select>option[data-v-66e54129]{padding:4px 12px!important}.item_box .item_left[data-v-66e54129]{width:140px;text-align:right}@media (max-width: 768px){.item_box .item_left[data-v-66e54129]{width:100px}}@keyframes bganimation-a5a78984{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a5a78984{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-a5a78984{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-a5a78984]{animation:rotateEnter-a5a78984 .7s;position:relative}.rotate-leave-active[data-v-a5a78984]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a5a78984]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.tab-container[data-v-a5a78984]{margin:0 auto}.tabs_box_g[data-v-a5a78984]{display:flex}.tabs_box_g button[data-v-a5a78984]{padding:14px 24px;border:none;background:none;cursor:pointer;font-size:14px;border-radius:8px 8px 0 0;margin:0;transition:all .3s ease}.tabs_box_g button.active[data-v-a5a78984]{background:var(--card-bg-color);color:#553afe;font-weight:700;position:relative}.tab-content_g[data-v-a5a78984]{background:var(--card-bg-color);padding:16px;border-radius:0 8px 8px}.content-item[data-v-a5a78984]{min-height:60vh}@keyframes bganimation-a5a78984{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a5a78984{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-a5a78984{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-a5a78984]{animation:rotateEnter-a5a78984 .7s;position:relative}.rotate-leave-active[data-v-a5a78984]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a5a78984]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media (max-width: 827px){.tabs_box_g button[data-v-a5a78984]{padding:7px 12px!important}.tab-content_g[data-v-a5a78984]{border-radius:0 0 8px 8px}}@keyframes bganimation-de94d0fe{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-de94d0fe{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-de94d0fe{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-de94d0fe]{animation:rotateEnter-de94d0fe .7s;position:relative}.rotate-leave-active[data-v-de94d0fe]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-de94d0fe]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-de94d0fe]{width:24px;height:24px;margin-right:6px}.icon1[data-v-de94d0fe]{width:16px;height:16px;margin-right:8px}.icon2[data-v-de94d0fe]{width:20px;height:20px;margin-right:8px}.icon3[data-v-de94d0fe]{width:17px;height:17px;margin-right:8px}.m-20[data-v-de94d0fe]{margin:20px 0!important}[data-v-de94d0fe] .modal-container .modal-header{border-bottom:none;padding-bottom:0;padding-left:20px}[data-v-de94d0fe] .modal-container .modal-header .modal-title{text-align:left}[data-v-de94d0fe] .modal-container .modal-content{padding:0 20px 20px}.item_container[data-v-de94d0fe]{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);grid-gap:24px;font-size:16px}.item_container .item[data-v-de94d0fe]{padding:16px;background:var(--card-bg-color);border-radius:10px}.item_container .item .item_title[data-v-de94d0fe]{display:flex;align-items:center}.item_container .item .item_title>span[data-v-de94d0fe]{color:var(--app-container_title-color);display:inline-block;padding-top:2px}.item_container .item>p[data-v-de94d0fe]{color:#717182;margin-top:10px}.item_container .item .wifi_btn[data-v-de94d0fe]{margin:40px 0;display:flex;justify-content:center}.item_container .item .wifi_btn>div[data-v-de94d0fe]{background:#000;padding:12px 24px;border-radius:6px;display:flex;align-items:center;color:#fff;cursor:pointer;font-size:14px}.item_container .item .wifi_btn>div>span[data-v-de94d0fe]{display:inline-block;padding-top:2px}.item_container .item .wifi_btn .start_btn[data-v-de94d0fe]{padding:10px;width:100%;display:flex;justify-content:center}.item_container .item .progress>p[data-v-de94d0fe]{display:flex;justify-content:space-between;font-size:16px;color:#0a0a0a;margin-bottom:12px}.item_container .item .is-bg[data-v-de94d0fe]{opacity:.6;pointer-events:none;cursor:not-allowed}.item_container .item .select_box[data-v-de94d0fe]{margin-top:30px;color:var(--app-container_title-color)}.item_container .item .select_box>select[data-v-de94d0fe]{width:100%;background:#f3f3f5;border-radius:6px;color:var(--app-container_title-color)}.item_container .item .select_box>select.is-placeholder[data-v-de94d0fe]{color:#9aa0a6}.item_container .item .select_box option[disabled][data-v-de94d0fe]{color:#9aa0a6}.item_container .item .select_box option[hidden][data-v-de94d0fe]{display:none}.item_container .item .tip[data-v-de94d0fe]{text-align:center;font-size:14px}.item_container .item .log_info[data-v-de94d0fe]{padding:24px 16px;margin-top:20px;background:black;border-radius:8px;max-height:300px;overflow-y:auto}.item_container .item .log_info[data-v-de94d0fe]::-webkit-scrollbar{height:6px}.item_container .item .log_info[data-v-de94d0fe]::-webkit-scrollbar-thumb{background:#777780;border-radius:6px}.item_container .item .log_info>p[data-v-de94d0fe]{font-size:14px;color:#05df72;margin-bottom:12px}.item_container .item .log_info>p[data-v-de94d0fe]:last-child{margin-bottom:0}.item_container .item .result_box[data-v-de94d0fe]{margin-top:20px}.item_container .item .result_box .result[data-v-de94d0fe]{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:12px}.item_container .item .result_box .result .result_state[data-v-de94d0fe]{display:flex;flex-direction:column;align-items:center;color:var(--app-container_title-color)}.item_container .item .result_box .result .result_state>div[data-v-de94d0fe]{margin-bottom:6px;font-weight:700;font-size:18px;letter-spacing:.1em}.item_container .item .result_box .result .result_state .result_txt[data-v-de94d0fe]{font-size:12px}.item_container .item .result_box .result .result_item[data-v-de94d0fe]{background:#ececf0;border-radius:6px;padding:20px 16px;display:flex;flex-direction:column;align-items:center;justify-content:center}.item_container .item .result_box .result .result_item .result_title[data-v-de94d0fe]{font-size:16px;color:#0a0a0a;margin-bottom:12px}.item_container .item .result_box .result .result_item .speed_value[data-v-de94d0fe]{font-size:24px;font-weight:700;letter-spacing:.1em}.item_container .item .result_box .result .result_item .speed_title[data-v-de94d0fe]{font-size:12px}.item_container .item .result_box .result .result_item .icon_speed[data-v-de94d0fe]{width:30px;height:30px;margin-bottom:10px}.item_container .item .result_box .result .result_item .icon_speed1[data-v-de94d0fe]{width:26px;height:26px;margin-bottom:10px}.item_container .item .result_box .result .result_item .unit[data-v-de94d0fe]{color:#717182;display:inline-block;margin-bottom:6px}.custom-content p[data-v-de94d0fe]{color:#717182}.custom-content .address_box[data-v-de94d0fe]{background:#ececf0;border-radius:6px;padding:10px 12px;margin-top:16px;display:flex;justify-content:space-between;align-items:center}.custom-content .address_box>span[data-v-de94d0fe]{font-size:16px}.custom-content .address_box>div[data-v-de94d0fe]{background:#fff;padding:6px 12px;border-radius:4px;cursor:pointer}@keyframes spin-de94d0fe{to{transform:rotate(360deg)}}.icon3-wrap[data-v-de94d0fe]{display:inline-flex;width:17px;height:17px;margin-right:8px;align-items:center;justify-content:center}.icon3-wrap .icon3[data-v-de94d0fe]{width:100%;height:100%}.is-rotating[data-v-de94d0fe]{animation:spin-de94d0fe 1s linear infinite;transform-origin:center;transform-box:fill-box;will-change:transform}.line[data-v-de94d0fe]{height:1px;background:#d9d9d9;margin:20px 0}.status[data-v-de94d0fe]{display:inline-block;padding:4px 12px;color:#fff;border-radius:6px;font-size:12px;margin-bottom:10px}.status_bg1[data-v-de94d0fe]{background:#00c950}.status_bg2[data-v-de94d0fe]{background:#2b7fff}.status_bg3[data-v-de94d0fe]{background:#ef4444}.status_bg4[data-v-de94d0fe]{background:#f0b100}@keyframes bganimation-de94d0fe{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-de94d0fe{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-de94d0fe{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-de94d0fe]{animation:rotateEnter-de94d0fe .7s;position:relative}.rotate-leave-active[data-v-de94d0fe]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-de94d0fe]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media (max-width: 827px){.item_container[data-v-de94d0fe]{grid-template-columns:repeat(1,1fr);grid-gap:12px;padding-bottom:16px}}@keyframes bganimation-63694ef8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-63694ef8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-63694ef8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-63694ef8]{animation:rotateEnter-63694ef8 .7s;position:relative}.rotate-leave-active[data-v-63694ef8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-63694ef8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-63694ef8]{width:30px;height:30px;margin-right:10px;display:block}.icon[data-v-63694ef8] svg{display:block}.container[data-v-63694ef8]{min-height:87vh}.container .title[data-v-63694ef8]{font-size:16px;margin-bottom:20px;display:flex;justify-content:center;flex-direction:column}.container .title>div[data-v-63694ef8]{display:inline-flex;justify-content:center;align-items:center;line-height:1;margin-bottom:10px}.container .title>div>span[data-v-63694ef8]{color:var(--app-container_title-color);position:relative;top:1px;font-weight:600}.container .title>p[data-v-63694ef8]{text-align:center;color:#717182}@keyframes bganimation-63694ef8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-63694ef8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-63694ef8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-63694ef8]{animation:rotateEnter-63694ef8 .7s;position:relative}.rotate-leave-active[data-v-63694ef8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-63694ef8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-1f11eeec{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1f11eeec{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1f11eeec{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1f11eeec]{animation:rotateEnter-1f11eeec .7s;position:relative}.rotate-leave-active[data-v-1f11eeec]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1f11eeec]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}button[data-v-1f11eeec]{outline:none;cursor:pointer;border:none}.pc-radio[data-v-1f11eeec]{display:flex;flex-wrap:wrap;align-items:center}.label-flex.pc-radio label[data-v-1f11eeec]{width:100px;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;color:#666}.label-flex.pc-radio input[type=radio][data-v-1f11eeec]{margin:0 4px 0 0;top:0}.mobile-switch[data-v-1f11eeec]{display:none;align-items:center}.switch-core[data-v-1f11eeec]{position:relative;width:50px;border:1px solid #dcdfe6;outline:none;border-radius:20px;box-sizing:border-box;background:#dcdfe6;cursor:pointer;transition:border-color .3s,background-color .3s;display:inline-block}.switch-core.is-checked[data-v-1f11eeec]{border-color:#409eff;background-color:#409eff}.switch-core.is-disabled[data-v-1f11eeec]{opacity:.6;cursor:not-allowed}.switch-button[data-v-1f11eeec]{position:absolute;top:1px;left:1px;border-radius:100%;transition:all .3s;width:16px;height:16px;background-color:#fff}.switch-core.is-checked .switch-button[data-v-1f11eeec]{transform:translate(20px)}.switch-label[data-v-1f11eeec]{font-size:14px;color:#999}.switch-label.active[data-v-1f11eeec]{color:#409eff}form.form-container[data-v-1f11eeec]{display:block;width:100%;padding:0 1rem;margin-top:50px}form.form-container .label-name[data-v-1f11eeec]{display:block;width:100%;margin-bottom:.5rem;color:var(--item-label_key-span-color)}form.form-container .label-name span[data-v-1f11eeec]:before{content:"*";color:#f56c6c;margin-right:4px;width:10px;display:inline-block;vertical-align:middle}form.form-container .label-value[data-v-1f11eeec]{display:block;width:100%;margin-bottom:1rem}form.form-container .label-value input[data-v-1f11eeec],form.form-container .label-value select[data-v-1f11eeec]{display:block;width:100%;height:42px;background:none;border:1px solid #c2c2c2;color:var(--item-label_key-span-color);font-size:14px}form.form-container .label-value input>option[data-v-1f11eeec],form.form-container .label-value select>option[data-v-1f11eeec]{color:#8898aa}form.form-container .label-value input[data-v-1f11eeec]:focus,form.form-container .label-value select[data-v-1f11eeec]:focus{transition:.2s;border:1px solid #418dfe}form.form-container .label-value select[data-v-1f11eeec]{border-radius:3px;padding:0 10px}form.form-container .label-value input[data-v-1f11eeec]{border-left:none!important;border-right:none!important;border-top:none!important;box-shadow:none!important;padding:0 10px}form.form-container .label-value input[type=checkbox][data-v-1f11eeec],form.form-container .label-value input[type=radio][data-v-1f11eeec]{width:auto}form.form-container .label-value input[type=radio][data-v-1f11eeec]{margin:0 4px 0 0;top:0}form.form-container .label-value input[data-v-1f11eeec]:disabled{background-color:#eee;border:1px solid #c2c2c2;border-radius:3px}form.form-container .label-value input[data-v-1f11eeec]::placeholder{color:var(--item-label_value-span-color);opacity:.54;font-size:14px}form.form-container .label-value input[data-v-1f11eeec]:-ms-input-placeholder{color:var(--item-label_value-span-color);opacity:.54;font-size:14px}form.form-container .label-value input[data-v-1f11eeec]::-ms-input-placeholder{color:var(--item-label_value-span-color);opacity:.54;font-size:14px}form.form-container .label-btns[data-v-1f11eeec]{width:100%;display:flex;flex-wrap:wrap;justify-content:flex-end}form.form-container .label-msg[data-v-1f11eeec]{display:block;width:100%;color:#ff3b3b;font-size:14px}form.form-container .label-msg.warning[data-v-1f11eeec]{color:#f9ad1e}form.form-container .label-flex[data-v-1f11eeec]{width:100%;display:flex;flex-wrap:wrap;align-items:center}form.form-container .label-flex label[data-v-1f11eeec]{width:100px;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;color:#666}.form-item[data-v-1f11eeec]{display:flex;align-items:center;height:55px}.form-item .label-name[data-v-1f11eeec]{width:200px!important}.form-item .label-value[data-v-1f11eeec]{width:300px!important;padding-top:10px;position:relative;display:flex!important;align-items:center}p[data-v-1f11eeec]{font-size:1em;color:#999;line-height:26px;text-align:left;margin-bottom:1rem}.label-btns[data-v-1f11eeec]{width:500px!important;margin-top:1rem}.label-btns .btn[data-v-1f11eeec]{width:300px!important;text-align:center;border-radius:32px}.label-btns .btn[data-v-1f11eeec]:hover{background:#5279f7;transition:.3}.label-btns .primary-btn[data-v-1f11eeec]{border:none;background:#5279f7;color:#fff;margin-bottom:10px}.label-btns .primary-btn[data-v-1f11eeec]:hover{opacity:.9;transition:.3}select[data-v-1f11eeec]:disabled{background-color:#eee!important;border:1px solid #c2c2c2!important}.seeIcon[data-v-1f11eeec]{width:22px;height:22px;position:absolute;cursor:pointer;z-index:1;right:6px;top:50%;transform:translateY(-50%) scale(1);transition:all .3s ease;transform-origin:center}.seeIcon[data-v-1f11eeec]:hover{transform:translateY(-50%) scale(1.1)}@media only screen and (max-width: 1050px){form.form-container[data-v-1f11eeec]{padding:0;margin-top:-16px}form.form-container .form-item[data-v-1f11eeec]{position:relative;height:auto;margin-bottom:0;height:50px;padding-top:6px;border-bottom:1px solid rgba(0,0,0,.16)!important}form.form-container .form-item .label-name[data-v-1f11eeec]{width:100%!important;margin-bottom:0;font-size:14px}form.form-container .form-item .label-name>span[data-v-1f11eeec]{color:var(--item-label_key-span-color)}form.form-container .form-item .label-value[data-v-1f11eeec]{width:100%!important;margin-bottom:0;padding-top:0}form.form-container .form-item .label-value input[data-v-1f11eeec],form.form-container .form-item .label-value select[data-v-1f11eeec]{height:40px;font-size:14px}form.form-container .form-item .label-value .password_input[data-v-1f11eeec]{padding-right:24px}form.form-container .form-item .label-value input[data-v-1f11eeec]{border:none;text-align:right;padding:0}form.form-container .form-item .label-value select[data-v-1f11eeec]:disabled{border:none!important}form.form-container .form-item .label-value select[data-v-1f11eeec]{padding-right:16px!important;border:none;appearance:none;-webkit-appearance:none;-moz-appearance:none;padding:0;outline:none;background:transparent;text-align:right}form.form-container .form-item .label-value[data-v-1f11eeec] ::selection{background:transparent;color:inherit}form.form-container .form-item .label-value[data-v-1f11eeec] ::-moz-selection{background:transparent;color:inherit}form.form-container .label-flex[data-v-1f11eeec]{display:flex}form.form-container .label-flex label[data-v-1f11eeec]{width:100%;margin-bottom:.5rem}form.form-container .label-btns[data-v-1f11eeec]{width:100%!important;margin-top:1.5rem}form.form-container .label-btns .btn[data-v-1f11eeec]{width:100%!important;height:44px;font-size:16px}.seeIcon[data-v-1f11eeec]{width:20px;height:20px;right:0}.pc-radio[data-v-1f11eeec],.label-flex[data-v-1f11eeec]{display:none!important}.mobile-switch[data-v-1f11eeec]{display:flex;align-items:center;height:50px}.switch_label[data-v-1f11eeec]{display:flex;justify-content:end}.switch-core[data-v-1f11eeec]{width:50px;height:24px}.switch-button[data-v-1f11eeec]{width:20px;height:20px}.switch-core.is-checked .switch-button[data-v-1f11eeec]{transform:translate(26px)}.select-arrow[data-v-1f11eeec]{position:absolute;right:6px;top:50%!important;transform:translateY(-50%)!important;width:10px;height:10px;border-top:2px solid #606165;border-right:2px solid #606165;transform:translateY(-50%) rotate(45deg)!important;pointer-events:none}}@keyframes bganimation-40cb5302{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-40cb5302{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-40cb5302{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-40cb5302]{animation:rotateEnter-40cb5302 .7s;position:relative}.rotate-leave-active[data-v-40cb5302]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-40cb5302]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.page-container[data-v-40cb5302]{width:100%;background-color:var(--card-bg-color);border-radius:6px;padding:3rem;margin-top:50px}.mobile-tags-container[data-v-40cb5302]{display:none}.page-flex[data-v-40cb5302]{display:flex}.page-flex .page-sidebar[data-v-40cb5302]{flex:0 0 200px;border-right:1px solid #eee}.page-flex .page-sidebar .item[data-v-40cb5302]{width:100%;height:42px;line-height:42px;font-size:16px;cursor:pointer;color:var(--item-label_key-span-color);display:block;user-select:none;position:relative;display:flex;flex-wrap:wrap;align-items:center}.page-flex .page-sidebar .item[data-v-40cb5302]:hover,.page-flex .page-sidebar .item.activeItem[data-v-40cb5302]{transition:.3s;color:#418cff}.page-flex .page-sidebar .item.activeItem[data-v-40cb5302]:before{content:"";position:absolute;left:-1rem;width:3px;height:20px;background-color:#4388ff}.page-flex .page-main[data-v-40cb5302]{flex:1;padding-left:24px}@media (max-width: 827px){.page-container[data-v-40cb5302]{padding:12px 12px 0 8px;margin-top:0}.page-flex[data-v-40cb5302]{display:block}.page-flex .page-sidebar[data-v-40cb5302]{display:none}.page-flex .page-main[data-v-40cb5302]{padding-left:0;padding-top:16px}.mobile-tags-container[data-v-40cb5302]{display:block;width:100%;margin-bottom:16px;position:relative}.tags-wrapper[data-v-40cb5302]{display:flex;align-items:center;height:40px;position:relative}.tags-scroll[data-v-40cb5302]{flex:1;display:flex;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;height:100%;align-items:center;white-space:nowrap;padding-right:40px}.tags-scroll[data-v-40cb5302]::-webkit-scrollbar{display:none}.tag-item[data-v-40cb5302]{flex-shrink:0;padding:7px 12px;margin-right:8px;border-radius:4px;background-color:var(--tag-bg-color);color:var(--item-label_key-span-color);font-size:12px;line-height:18px;cursor:pointer;white-space:nowrap}.tag-item.active[data-v-40cb5302]{background-color:#5279f7;color:#fff}.more-btn-wrapper[data-v-40cb5302]{position:absolute;right:-6px;top:0;height:100%;width:40px;display:flex;align-items:center;justify-content:flex-end;pointer-events:none}.fade-overlay[data-v-40cb5302]{position:absolute;right:0;top:50%;transform:translateY(-50%);width:100px;height:32px;background:var(--gradient-bg-color)}.more-btn[data-v-40cb5302]{width:28px;height:28px;border-radius:4px;display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer;pointer-events:auto;position:relative;z-index:1}.more-btn .line[data-v-40cb5302]{width:14px;height:2px;background-color:#5279f7;margin:2px 0;border-radius:1px}[data-v-40cb5302] .showSide{z-index:1!important}.popup-overlay[data-v-40cb5302]{position:fixed;inset:0;background-color:#00000080;z-index:1000;display:flex;justify-content:center;align-items:flex-start}.popup-content[data-v-40cb5302]{width:100%;max-height:85vh;background-color:var(--popup-bg-color);border-radius:0 0 4px 4px;animation:slideDown-40cb5302 .3s ease-out;overflow-y:auto;padding-top:25px}.popup-content .popup-tag-item[data-v-40cb5302],.popup-content .active[data-v-40cb5302]{text-align:center;padding:8px 12px 5px;width:calc((100% - 24px) / 3)}@keyframes slideDown-40cb5302{0%{transform:translateY(-100%)}to{transform:translateY(0)}}.popup-tags[data-v-40cb5302]{padding:12px;display:flex;flex-wrap:wrap;gap:8px;max-height:70vh;overflow-y:auto}.popup-tag-item[data-v-40cb5302]{padding:7px 12px;border-radius:4px;background-color:#f5f5f5;color:#333;font-size:12px;line-height:18px;cursor:pointer;white-space:nowrap}.popup-tag-item.active[data-v-40cb5302]{background-color:#5279f7;color:#fff}.popup-footer[data-v-40cb5302]{display:flex;padding:12px;border-top:1px solid #f0f0f0}.popup-footer button[data-v-40cb5302]{flex:1;height:36px;border-radius:23px;font-size:14px;cursor:pointer}.popup-footer .cancel-btn[data-v-40cb5302]{background-color:#f5f5f5;color:#000;border:none;margin-right:12px}.popup-footer .confirm-btn[data-v-40cb5302]{background-color:#5279f7;color:#fff;border:none}}
+@keyframes bganimation-41cbce66{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-41cbce66{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-41cbce66{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-41cbce66]{animation:rotateEnter-41cbce66 .7s;position:relative}.rotate-leave-active[data-v-41cbce66]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-41cbce66]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.disk-item-tooltip[data-v-41cbce66]{position:fixed;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;font-size:1em;min-width:200px;line-height:24px}.disk-item-tooltip[data-v-41cbce66]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}#main .app-btn,#actioner .app-btn{min-height:36px}@keyframes bganimation-2d97dedc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2d97dedc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2d97dedc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2d97dedc]{animation:rotateEnter-2d97dedc .7s;position:relative}.rotate-leave-active[data-v-2d97dedc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2d97dedc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#main[data-v-2d97dedc]{width:100%}#main[data-v-2d97dedc],#main[data-v-2d97dedc] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}:root{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}@media (prefers-color-scheme: light){:root{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}}@media (prefers-color-scheme: dark){:root{--flow-bg-color: transparent;--flow-span-color: #cccccc;--card-bg-color: #88888822;--card-box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, .35);--app-container_title-color: #cccccc;--app-container_status-label_block: #727272;--item-label_key-span-color: #cccccc;--item-label_value-span-color: #cccccc;--app-container_status-label_bg: #0000001a;--item_btn-border: 1px solid #cccccc;--item_btn-color: #cccccc;--tit-color: #cccccc;--popup-bg-color: #000;--tag-bg-color: #1e1e1e;--gradient-bg-color:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 62%, rgba(0,0,0,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #0000001a;--SystemUpdateBanner-bg-color: #2c2c2c;--SystemUpdateBanner-border-color: #2c2c2c;--btn-border-color: #727272;--card-txt-color: #32325d;--SystemInfo-bg-color:#2c2c2c}#app svg path{color:#666}#app svg circle{stroke:#666}}@media (prefers-color-scheme: no-preference){:root{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}}body[theme=dark]{--flow-bg-color: transparent;--flow-span-color: #cccccc;--card-bg-color: #88888822;--card-box-shadow: 0 0 .5rem 0 rgba(0, 0, 0, .35);--app-container_title-color: #cccccc;--app-container_status-label_block: #727272;--item-label_key-span-color: #cccccc;--item-label_value-span-color: #cccccc;--app-container_status-label_bg: #0000001a;--item_btn-border: 1px solid #cccccc;--item_btn-color: #cccccc;--tit-color: #cccccc;--popup-bg-color: #000;--tag-bg-color: #1e1e1e;--gradient-bg-color:linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 62%, rgba(0,0,0,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #0000001a;--SystemUpdateBanner-bg-color: #2c2c2c;--SystemUpdateBanner-border-color: #2c2c2c;--btn-border-color: #727272;--card-txt-color: #32325d;--SystemInfo-bg-color:#2c2c2c}body[theme=light]{--flow-bg-color: #fff;--flow-span-color: rgba(0, 0, 0, .6);--card-bg-color: #fff;--card-box-shadow: 0 0 10px 1px #bfbfbf24;--app-container_title-color: #1e1e1e;--app-container_status-label_block: black;--item-label_key-span-color: #333;--item-label_value-span-color: #333;--app-container_status-label_bg: #f3f3f3;--item_btn-border: 1px solid #553afb;--item_btn-color: #553afb;--tit-color: #1e1e1e;--popup-bg-color: #fff;--tag-bg-color: #f5f5f5;--gradient-bg-color:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 62%, rgba(255,255,255,1) 100%);--breadcrumbs-tit-color:#d6dbf8;--breadcrumbs-tit-color1:#f1f2f9;--border-color: #e5e5e5;--SystemUpdateBanner-bg-color: #eff6ff;--SystemUpdateBanner-border-color: #bedbff;--btn-border-color: #e5e5e5;--card-txt-color: #32325d;--SystemInfo-bg-color:#f9fafd}@keyframes bganimation-3ee635ef{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3ee635ef{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3ee635ef{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3ee635ef]{animation:rotateEnter-3ee635ef .7s;position:relative}.rotate-leave-active[data-v-3ee635ef]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3ee635ef]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.progress[data-v-3ee635ef]{width:100%;display:block;position:relative;background-color:#eee;border-radius:4px;height:18px;line-height:18px;overflow:hidden}.progress .progress-value[data-v-3ee635ef]{transition:.5s;position:absolute;left:0;top:0;bottom:0;height:100%;text-align:center;color:#fff;vertical-align:middle;font-size:12px}@keyframes bganimation-54af3568{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-54af3568{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-54af3568{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-54af3568]{animation:rotateEnter-54af3568 .7s;position:relative}.rotate-leave-active[data-v-54af3568]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-54af3568]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}label.checkbox_switch[data-v-54af3568]{cursor:pointer;display:flex!important;align-items:center;width:initial!important}label.checkbox_switch input[type=checkbox][data-v-54af3568]{height:0!important;width:0!important;opacity:0!important;margin:0!important;padding:0!important;border:none!important}label.checkbox_switch .checkbox_switch_on[data-v-54af3568],label.checkbox_switch .checkbox_switch_off[data-v-54af3568]{flex:none}label.checkbox_switch .checkbox_switch_on[data-v-54af3568]{display:none!important}label.checkbox_switch .checkbox_switch_off[data-v-54af3568]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_on[data-v-54af3568]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_off[data-v-54af3568]{display:none!important}label.checkbox_switch svg[data-v-54af3568]{height:1em;width:2em}article[data-v-995510fc]{flex:0 0 100%;max-width:20%;position:relative;border-radius:4px;padding:10px}@media screen and (max-width: 1080px){article[data-v-995510fc]{max-width:33.333%}}@keyframes bganimation-995510fc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-995510fc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-995510fc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-995510fc]{animation:rotateEnter-995510fc .7s;position:relative}.rotate-leave-active[data-v-995510fc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-995510fc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){article[data-v-995510fc]{max-width:50%}}@keyframes bganimation-782f97c0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-782f97c0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-782f97c0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-782f97c0]{animation:rotateEnter-782f97c0 .7s;position:relative}.rotate-leave-active[data-v-782f97c0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-782f97c0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}a[data-v-782f97c0]{position:relative;display:block;width:100%;transition:.4s;cursor:pointer}a[data-v-782f97c0]:hover{transform:scale(1.07);transition:.4s;position:relative}a:hover .cover .thumbnail[data-v-782f97c0]{box-shadow:0 6px 40px #1c67f2}a .cover[data-v-782f97c0]{position:relative;padding-top:130%;z-index:1}a .cover[data-v-782f97c0] .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:6px;overflow:hidden;z-index:1;background-color:#2dc8fd;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}a .cover[data-v-782f97c0] .thumbnail i{display:block;font-size:100px;color:#eee}a .cover[data-v-782f97c0] .thumbnail span{display:block;text-align:center;width:100%;color:#eeee;font-size:28px;margin:1rem 0}article:nth-child(9n+1) a .cover .thumbnail[data-v-782f97c0]{background-color:#ff9100}article:nth-child(9n+2) a .cover .thumbnail[data-v-782f97c0]{background-color:#2dc8fd}article:nth-child(9n+3) a .cover .thumbnail[data-v-782f97c0]{background-color:#f66a2c}article:nth-child(9n+4) a .cover .thumbnail[data-v-782f97c0]{background-color:#9b58de}article:nth-child(9n+5) a .cover .thumbnail[data-v-782f97c0]{background-color:#297ff3}article:nth-child(9n+6) a .cover .thumbnail[data-v-782f97c0]{background-color:#27aa8f}article:nth-child(9n+7) a .cover .thumbnail[data-v-782f97c0]{background-color:#f15a4a}article:nth-child(9n+8) a .cover .thumbnail[data-v-782f97c0]{background-color:#439c07}@keyframes bganimation-c446588c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-c446588c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-c446588c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-c446588c]{animation:rotateEnter-c446588c .7s;position:relative}.rotate-leave-active[data-v-c446588c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-c446588c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.select-editable[data-v-c446588c]{position:relative;line-height:1.5rem;padding:.5rem .75rem;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-c446588c],.select-editable input[data-v-c446588c]{height:100%;padding:0;border:none;margin:0}.select-editable select[data-v-c446588c]{position:relative;width:100%}.select-editable input[data-v-c446588c]{position:absolute;top:0;left:.75rem;width:88%}.select-editable select[data-v-c446588c]:focus,.select-editable input[data-v-c446588c]:focus{outline:none;box-shadow:none}@keyframes bganimation-47c6049a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-47c6049a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-47c6049a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-47c6049a]{animation:rotateEnter-47c6049a .7s;position:relative}.rotate-leave-active[data-v-47c6049a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-47c6049a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-47c6049a{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.quick-loading[data-v-47c6049a]{animation:turn-47c6049a 1s steps(12,end) infinite;margin:0!important;padding:0!important;background:none!important;display:flex!important}.quick-loading svg[data-v-47c6049a]{width:100%;height:100%}.quick-loading svg path[data-v-47c6049a]{fill:#fff}@keyframes bganimation-0cc5bf50{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0cc5bf50{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0cc5bf50{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0cc5bf50]{animation:rotateEnter-0cc5bf50 .7s;position:relative}.rotate-leave-active[data-v-0cc5bf50]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0cc5bf50]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}a[data-v-0cc5bf50]{margin-left:4px;width:20px;vertical-align:middle}a svg[data-v-0cc5bf50]{width:22px;height:22px}a:hover svg path[data-v-0cc5bf50]{fill:#3688ff}.reusable-card[data-v-7af4a3d5]{border:1px solid;border-radius:10px;padding:20px 14px;box-sizing:border-box;background-clip:padding-box;display:flex;flex-direction:column;gap:12px;border:1px solid var(--border-color);background:var(--card-bg-color)}.card-header[data-v-7af4a3d5]{display:flex;justify-content:space-between;align-items:center}.card-header .left[data-v-7af4a3d5]{display:flex;align-items:center;gap:8px}.card-header[data-v-7af4a3d5]>svg{width:20px;height:20px}.title[data-v-7af4a3d5]{font-size:16px;font-weight:600;line-height:1;color:var(--app-container_title-color)}.settings-btn[data-v-7af4a3d5]{cursor:pointer}.card-body[data-v-7af4a3d5]{flex:1 1 auto}.card-footer[data-v-7af4a3d5]{display:flex;justify-content:center}.footer-btn[data-v-7af4a3d5]{display:inline-flex;align-items:center;gap:8px;padding:6px 8px;border-radius:6px;border:1px solid var(--btn-border-color);justify-content:center;cursor:pointer;width:100%;max-width:600px;margin-top:16px}.footer-icon[data-v-7af4a3d5]{display:inline-flex;align-items:center}.footer-text[data-v-7af4a3d5]{font-size:14px;font-weight:400;color:var(--app-container_title-color)}.settings-icon[data-v-7af4a3d5]{width:20px;height:20px}.settings-icon[data-v-7af4a3d5] svg,.settings-icon[data-v-7af4a3d5] g,.settings-icon[data-v-7af4a3d5] path,.settings-icon[data-v-7af4a3d5] circle,.settings-icon[data-v-7af4a3d5] rect,.settings-icon[data-v-7af4a3d5] line,.settings-icon[data-v-7af4a3d5] polyline,.settings-icon[data-v-7af4a3d5] polygon{fill:var(--app-container_title-color)!important;stroke:var(--app-container_title-color)!important}.settings-wrapper[data-v-7af4a3d5]{position:relative}.dropdown-menu[data-v-7af4a3d5]{position:absolute;top:38px;right:0;background:#fff;border-radius:6px;padding:16px 0;min-width:220px;box-shadow:0 4px 12px #0003;z-index:10}.fade-enter-active[data-v-7af4a3d5],.fade-leave-active[data-v-7af4a3d5]{transition:opacity .2s}.fade-enter-from[data-v-7af4a3d5],.fade-leave-to[data-v-7af4a3d5]{opacity:0}.dropdown-menu[data-v-7af4a3d5] div{display:block;width:100%;text-align:center;padding:8px 0;border:none;background:none;cursor:pointer;font-size:14px;color:#333;transition:background .2s,color .2s}.dropdown-menu[data-v-7af4a3d5] div:hover{background-color:#eee}@keyframes bganimation-7af4a3d5{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7af4a3d5{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7af4a3d5{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7af4a3d5]{animation:rotateEnter-7af4a3d5 .7s;position:relative}.rotate-leave-active[data-v-7af4a3d5]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7af4a3d5]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.reusable-card[data-v-7af4a3d5]{padding:10px;border-radius:6px}.title[data-v-7af4a3d5]{font-size:14px}.footer-btn[data-v-7af4a3d5]{margin-top:6px}.dropdown-menu[data-v-7af4a3d5]{padding:8px 0;min-width:150px}}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[lock-scroll=true]{overflow:hidden!important;height:100vh}@keyframes bganimation-a96d68d4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a96d68d4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-a96d68d4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-a96d68d4]{animation:rotateEnter-a96d68d4 .7s;position:relative}.rotate-leave-active[data-v-a96d68d4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a96d68d4]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.bg[data-v-a96d68d4]{position:fixed;inset:0;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:999}#actioner[data-v-a96d68d4]{position:fixed;z-index:1000;width:100%;height:100%;inset:0;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;overflow:auto}#actioner[data-v-a96d68d4],#actioner[data-v-a96d68d4] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}.action-container[data-v-a96d68d4]{width:100%;height:100%;background-color:#fff;position:fixed;z-index:9999;inset:0;margin:auto;overflow:auto}.action-container .action-container_header[data-v-a96d68d4]{width:100%;height:36px;line-height:36px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:0 .625rem;position:absolute;top:0;left:0;right:0;border-bottom:1px solid #1e1e1e;background-color:#252526}.action-container .action-container_header .title[data-v-a96d68d4]{color:#eee;font-size:16px}.action-container .action-container_header button.close[data-v-a96d68d4]{width:36px;height:36px;margin:0;padding:10px;background:none;border:none;cursor:pointer;opacity:1}.action-container .action-container_header button.close[data-v-a96d68d4] svg.icon{width:100%;height:100%}.action-container .action-container_header button.close[data-v-a96d68d4] svg.icon path{fill:#eee}.action-container .action-container_header button.close[data-v-a96d68d4]:hover{opacity:.9}.action-container .action-container_body[data-v-a96d68d4]{width:100%;height:100%;padding-top:36px}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes dialogEnter{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes dialogLeave{0%{transform:scale(1)}to{transform:scale(0)}}.dialog-enter-active{animation:dialogEnter .3s linear forwards}.dialog-leave-active{animation:dialogLeave .3s linear forwards}@keyframes bganimation-0bd83418{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0bd83418{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0bd83418{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0bd83418]{animation:rotateEnter-0bd83418 .7s;position:relative}.rotate-leave-active[data-v-0bd83418]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0bd83418]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}ul.disk-item[data-v-0bd83418]{width:100%;margin-bottom:10px}ul.disk-item .auto[data-v-0bd83418]{flex:auto}ul.disk-item .disk-item_icon[data-v-0bd83418]{width:24px;height:24px;margin-right:.5rem}ul.disk-item .disk-item_icon svg[data-v-0bd83418]{width:100%;height:100%}ul.disk-item li.disk-info[data-v-0bd83418]{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding:5px 1rem;height:50px;cursor:pointer;color:#666;font-size:12px;border-left:3px solid #89897f}ul.disk-item li.disk-info[data-v-0bd83418]:hover{background-color:#ecf5ff}ul.disk-item li.disk-info .disk-item_icon svg path[data-v-0bd83418]{fill:#09aaff}ul.disk-item li.disk-info .disk-item_f[data-v-0bd83418]{display:flex;flex-wrap:wrap}ul.disk-item li.disk-info .disk-item_f .disk-item_venderModel[data-v-0bd83418],ul.disk-item li.disk-info .disk-item_f .disk-item_used[data-v-0bd83418]{width:100%}ul.disk-item li.disk-info.on[data-v-0bd83418]{border-left:3px solid #ff9c08}ul.disk-item li.disk-info.on.nopoint[data-v-0bd83418]{background-color:#ecf5ff}ul.disk-item .disk-children[data-v-0bd83418]{width:100%;color:#666}ul.disk-item .disk-children li.disk-children_item[data-v-0bd83418]{width:100%;height:40px;line-height:40px;padding-left:2rem;font-size:12px;cursor:pointer;display:flex;flex-wrap:nowrap;align-items:center;border-left:3px solid #89897f;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}ul.disk-item .disk-children li.disk-children_item[data-v-0bd83418]:hover{background-color:#ecf5ff}ul.disk-item .disk-children li.disk-children_item span[data-v-0bd83418]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}ul.disk-item .disk-children li.disk-children_item.on.on[data-v-0bd83418]{border-left:3px solid #ff9c08;background-color:#ecf5ff}@keyframes bganimation-48bf84c6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-48bf84c6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-48bf84c6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-48bf84c6]{animation:rotateEnter-48bf84c6 .7s;position:relative}.rotate-leave-active[data-v-48bf84c6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-48bf84c6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-48bf84c6{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.toast[data-v-48bf84c6]{position:fixed;top:50%;left:50%;display:flex;flex-direction:column;align-items:center;justify-content:space-around;box-sizing:content-box;width:100px;max-width:70%;padding:16px;color:#fff;font-size:14px;text-align:center;background-color:#000000b3;border-radius:8px;transform:translate3d(-50%,-50%,0);z-index:9999;transition:.3s;cursor:pointer}.toast div.icon[data-v-48bf84c6]{width:50px;height:50px;margin:15px 0;background:none!important}.toast div.icon svg[data-v-48bf84c6]{width:100%;height:100%}.toast div.icon svg path[data-v-48bf84c6]{fill:#fff}.toast .loading[data-v-48bf84c6]{animation:turn-48bf84c6 1s steps(12,end) infinite}.toast .message[data-v-48bf84c6]{display:block;width:100%;flex:0 0 100%;word-wrap:break-word}.action .action-footer button[data-v-3dae3be2]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3dae3be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3dae3be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3dae3be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3dae3be2]{animation:rotateEnter-3dae3be2 .7s;position:relative}.rotate-leave-active[data-v-3dae3be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3dae3be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-3dae3be2]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-3dae3be2]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-3dae3be2]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-3dae3be2]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-3dae3be2]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-3dae3be2]{flex:auto}.action.format .disk-list[data-v-3dae3be2]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-3dae3be2]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-3dae3be2]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-3dae3be2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-3dae3be2]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-3dae3be2]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-3dae3be2],.action.format .label-item .label-item_value input[data-v-3dae3be2]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-3dae3be2]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-3dae3be2]{flex:auto}.action.format p.msg[data-v-3dae3be2]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-3dae3be2]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-3dae3be2]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-3dae3be2]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-3dae3be2]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-3dae3be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3dae3be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3dae3be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3dae3be2]{animation:rotateEnter-3dae3be2 .7s;position:relative}.rotate-leave-active[data-v-3dae3be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3dae3be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-3dae3be2]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-3dae3be2]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-3dae3be2]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-3dae3be2]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-3dae3be2]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-3dae3be2]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-3dae3be2]{color:#0000fb}.action.result .btns[data-v-3dae3be2]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-3dae3be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3dae3be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3dae3be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3dae3be2]{animation:rotateEnter-3dae3be2 .7s;position:relative}.rotate-leave-active[data-v-3dae3be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3dae3be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format[data-v-3dae3be2]{width:168%}}@media screen and (max-width: 900px){.action.format[data-v-3dae3be2]{width:146%}}@media screen and (max-width: 800px){.action.format[data-v-3dae3be2]{width:136%}}@media screen and (max-width: 700px){.action.format[data-v-3dae3be2]{width:116%}}@media screen and (max-width: 500px){.action.format[data-v-3dae3be2]{width:100%}}.action .action-footer button[data-v-b222ef5e]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.list[data-v-b222ef5e]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.list .action-header[data-v-b222ef5e]{width:100%;height:70px;line-height:70px}.action.list .action-header .action-header_title[data-v-b222ef5e]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.list .action-body[data-v-b222ef5e]{width:100%;height:calc(100% - 176px)}.action.list .action-msg[data-v-b222ef5e]{width:100%;height:36px;line-height:36px;text-align:center}.action.list .action-footer[data-v-b222ef5e]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.list .action-footer .auto[data-v-b222ef5e]{flex:auto}.action.list .disk-list[data-v-b222ef5e]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-b222ef5e]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-b222ef5e]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-b222ef5e]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-b222ef5e]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-b222ef5e]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-b222ef5e]{flex:auto}.action.format .disk-list[data-v-b222ef5e]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-b222ef5e]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-b222ef5e]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-b222ef5e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-b222ef5e]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-b222ef5e]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-b222ef5e],.action.format .label-item .label-item_value input[data-v-b222ef5e]{width:100%;height:36px}.action.format .auto[data-v-b222ef5e]{flex:auto}.action.format p.msg[data-v-b222ef5e]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-b222ef5e]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-b222ef5e]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-b222ef5e]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-b222ef5e]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-b222ef5e]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-header[data-v-b222ef5e]{width:100%;height:70px;line-height:70px}.action.result .action-header .action-header_title[data-v-b222ef5e]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.result .action-body[data-v-b222ef5e]{width:100%;height:calc(100% - 140px);overflow:auto}.action.result .action-body .format-result[data-v-b222ef5e]{width:100%;text-align:center;font-size:2em;color:#333;margin:1rem 0}.action.result .action-body .format-info[data-v-b222ef5e]{width:100%;text-align:center;font-size:1.3em}.action.result .action-body .format-info a[data-v-b222ef5e]{color:#f70324}.action.result .action-footer[data-v-b222ef5e]{width:100%;height:70px;line-height:70px;color:#333}.action.result .auto[data-v-b222ef5e]{flex:auto}@keyframes bganimation-b222ef5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b222ef5e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b222ef5e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b222ef5e]{animation:rotateEnter-b222ef5e .7s;position:relative}.rotate-leave-active[data-v-b222ef5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b222ef5e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.list[data-v-b222ef5e]{width:136%}}@media screen and (max-width: 900px){.action.list[data-v-b222ef5e]{width:126%}}@media screen and (max-width: 800px){.action.list[data-v-b222ef5e]{width:112%}}@media screen and (max-width: 700px){.action.list[data-v-b222ef5e]{width:100%}}@media screen and (max-width: 500px){.action.list[data-v-b222ef5e]{width:80%}}@keyframes bganimation-45926ac6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-45926ac6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-45926ac6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-45926ac6]{animation:rotateEnter-45926ac6 .7s;position:relative}.rotate-leave-active[data-v-45926ac6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-45926ac6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-45926ac6]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-45926ac6]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-45926ac6]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-45926ac6]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-45926ac6]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-45926ac6]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-45926ac6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-45926ac6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-45926ac6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-45926ac6]{animation:rotateEnter-45926ac6 .7s;position:relative}.rotate-leave-active[data-v-45926ac6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-45926ac6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-45926ac6]{font-size:20px}}@keyframes bganimation-2b3974a4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2b3974a4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2b3974a4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2b3974a4]{animation:rotateEnter-2b3974a4 .7s;position:relative}.rotate-leave-active[data-v-2b3974a4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2b3974a4]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-2b3974a4]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-2b3974a4]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-2b3974a4]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-2b3974a4]{width:100%;height:calc(100% - 140px);overflow:auto}.action .action-body .label-item[data-v-2b3974a4]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-2b3974a4]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-2b3974a4]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-2b3974a4]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-2b3974a4]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-2b3974a4],.action .action-body .label-item .label-item_value input[data-v-2b3974a4]{width:100%;height:36px}.action .action-footer[data-v-2b3974a4]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action .action-footer .auto[data-v-2b3974a4]{flex:auto}.action .action-footer button[data-v-2b3974a4]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-88275da0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-88275da0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-88275da0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-88275da0]{animation:rotateEnter-88275da0 .7s;position:relative}.rotate-leave-active[data-v-88275da0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-88275da0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-88275da0]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-88275da0]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-88275da0]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-88275da0]{width:100%;height:calc(100% - 140px)}.action .action-body .label-item[data-v-88275da0]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-88275da0]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-88275da0]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-88275da0]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-88275da0]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-88275da0],.action .action-body .label-item .label-item_value input[data-v-88275da0]{width:100%;height:36px}.action .action-body .samba-item[data-v-88275da0]{margin-top:-18px;font-size:12px}.action .action-body .samba-item .samba-item_allow[data-v-88275da0]{display:flex;align-items:flex-end}.action .action-body .samba-item .samba-item_allow .samba-allow[data-v-88275da0]{padding-left:10px;cursor:pointer}.action .action-body .samba-item .samba-item_tips[data-v-88275da0]{margin-top:10px}.action .action-body .samba-item .samba-item_tips .tooltip-trigger[data-v-88275da0]{display:flex}.action .action-body .samba-item .samba-item_tips .samba_dir_tip[data-v-88275da0]{margin-left:10px}.action .action-footer[data-v-88275da0]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center;padding-bottom:30px}.action .action-footer .auto[data-v-88275da0]{flex:auto}.action .action-footer button[data-v-88275da0]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3f686017{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3f686017{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3f686017{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3f686017]{animation:rotateEnter-3f686017 .7s;position:relative}.rotate-leave-active[data-v-3f686017]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3f686017]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-3f686017]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-3f686017]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action h3.desc[data-v-3f686017]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:1rem 0;text-align:center}.action form[data-v-3f686017]{width:100%;display:block;padding:2rem 0}.action form label[data-v-3f686017]{width:100%;display:block;margin:1rem 0}.action form label input[data-v-3f686017],.action form label select[data-v-3f686017]{width:100%;display:block;height:42px}.action .btns[data-v-3f686017]{width:100%;margin-top:3rem}.action .btns button[data-v-3f686017]{display:block;width:100%!important;margin:.5rem 0}.action li.disk-item[data-v-3f686017]{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;width:100%;padding:5px 1rem;border-bottom:1px solid #eee;cursor:pointer}.action li.disk-item[data-v-3f686017]:hover{background-color:#eee}.action li.disk-item .disk-item_f[data-v-3f686017]{display:flex;flex-wrap:wrap}.action li.disk-item .disk-item_f .disk-item_venderModel[data-v-3f686017],.action li.disk-item .disk-item_f .disk-item_used[data-v-3f686017]{width:100%}.action .tips[data-v-3f686017]{float:right;font-size:.8em}@keyframes bganimation-3f686017{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3f686017{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3f686017{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3f686017]{animation:rotateEnter-3f686017 .7s;position:relative}.rotate-leave-active[data-v-3f686017]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3f686017]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action h2.title[data-v-3f686017]{font-size:2em}}@keyframes bganimation-376759fb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-376759fb{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-376759fb{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-376759fb]{animation:rotateEnter-376759fb .7s;position:relative}.rotate-leave-active[data-v-376759fb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-376759fb]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.aria2-item[data-v-376759fb]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.aria2-item .aria2-item_name[data-v-376759fb]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.aria2-item .aria2-item_value[data-v-376759fb]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.aria2-item .aria2-item_value .configure[data-v-376759fb]{color:#297ff3;padding:3px}li.aria2-item .aria2-item_value .configure.enabel[data-v-376759fb]{color:#888}.use-url_app[data-v-376759fb]{padding-bottom:14px}.use-url_app a[data-v-376759fb]{text-decoration:none;color:#297ff3}@keyframes bganimation-086db06c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-086db06c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-086db06c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-086db06c]{animation:rotateEnter-086db06c .7s;position:relative}.rotate-leave-active[data-v-086db06c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-086db06c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.qbittorrent-item[data-v-086db06c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.qbittorrent-item .qbittorrent-item_name[data-v-086db06c]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.qbittorrent-item .qbittorrent-item_value[data-v-086db06c]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.qbittorrent-item .qbittorrent-item_value .configure[data-v-086db06c]{color:#297ff3;padding:3px}li.qbittorrent-item .qbittorrent-item_value .configure.enabel[data-v-086db06c]{color:#888}a[data-v-086db06c]{text-decoration:none;color:#297ff3}@keyframes bganimation-3232162a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3232162a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3232162a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3232162a]{animation:rotateEnter-3232162a .7s;position:relative}.rotate-leave-active[data-v-3232162a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3232162a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.transmission-item[data-v-3232162a]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.transmission-item .transmission-item_name[data-v-3232162a]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.transmission-item .transmission-item_value[data-v-3232162a]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.transmission-item .transmission-item_value .configure[data-v-3232162a]{color:#297ff3;padding:3px}li.transmission-item .transmission-item_value .configure.enabel[data-v-3232162a]{color:#888}a[data-v-3232162a]{text-decoration:none;color:#297ff3}@keyframes bganimation-395b81d2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-395b81d2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-395b81d2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-395b81d2]{animation:rotateEnter-395b81d2 .7s;position:relative}.rotate-leave-active[data-v-395b81d2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-395b81d2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-395b81d2]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:1rem 87px;border-radius:6px}.action p[data-v-395b81d2]{color:#999;font-size:14px}.action input[data-v-395b81d2]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC}.action h2.title[data-v-395b81d2]{width:100%;color:#1e1e1e;font-size:22px;font-family:PingFangSC-Medium,PingFang SC;padding:0;margin:0;text-align:center}.action span[data-v-395b81d2]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4;font-weight:700}.action form label[data-v-395b81d2]{width:100%}.action form label input[data-v-395b81d2],.action form label select[data-v-395b81d2]{height:100%;font-size:14px}.action .myinput_wrap[data-v-395b81d2],.action .RPC_input[data-v-395b81d2]{width:85%}.action .myinput_wrap textarea[data-v-395b81d2]{width:100%;padding:2px 3px;border:1px solid #dee2e6;border-radius:.25rem}.action .input_row[data-v-395b81d2]{margin:16px 0;display:flex;justify-content:left;align-items:center}.action .input_row .radios[data-v-395b81d2]{margin-right:10px}.action .input_row .radios input[data-v-395b81d2],.action .input_row .radios label[data-v-395b81d2]{cursor:pointer}.action .Tracker label[data-v-395b81d2]{margin-right:10px;cursor:pointer}.action .Tracker_input[data-v-395b81d2]{padding:6px 2px}.action .btns[data-v-395b81d2]{width:100%;margin:42px auto 0}.action .btns button[data-v-395b81d2]{display:block;width:100%!important;margin:.5rem 0}.action .tooltip-trigger[data-v-395b81d2]{position:relative;display:inline-block;cursor:help;margin-right:6px}.action .tooltip-trigger .tooltip-text[data-v-395b81d2]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.action .tooltip-trigger .tooltip-text span[data-v-395b81d2]{color:#fff}.action .tooltip-trigger .tooltip-text .dowload_dir_tip[data-v-395b81d2]{min-width:14rem;display:inline-block}.action .tooltip-trigger:hover .tooltip-text[data-v-395b81d2]{visibility:visible;opacity:1}.action .tooltip-top[data-v-395b81d2]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.action .tooltip-bottom[data-v-395b81d2]{top:100%;left:50%;margin-top:5px;transform:translate(-50%)}.action .tooltip-bottom .dowload_rpc_tip[data-v-395b81d2]{min-width:10rem;display:inline-block}.action .tooltip-right[data-v-395b81d2]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.action .tooltip-left[data-v-395b81d2]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.action .tooltip-top[data-v-395b81d2]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.action .tooltip-bottom[data-v-395b81d2]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.action .successed[data-v-395b81d2]{text-align:center;font-size:14px}.action .finished[data-v-395b81d2]{display:flex;justify-content:center;margin:80px 80px 28px}.left[data-v-395b81d2]{display:flex;align-items:center;justify-content:flex-start;width:110px;flex:none}.select-editable[data-v-395b81d2]{position:relative;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-395b81d2]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.select-editable input[data-v-395b81d2]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-395b81d2]:focus,.select-editable input[data-v-395b81d2]:focus{outline:none}[data-v-395b81d2]::placeholder{color:#999}@keyframes bganimation-395b81d2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-395b81d2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-395b81d2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-395b81d2]{animation:rotateEnter-395b81d2 .7s;position:relative}.rotate-leave-active[data-v-395b81d2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-395b81d2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action[data-v-395b81d2]{width:100%}.action .input_row[data-v-395b81d2]{display:block}.action .input_row .myinput_wrap[data-v-395b81d2],.action .input_row .RPC_input[data-v-395b81d2]{width:100%}}@keyframes bganimation-2299b58c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2299b58c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2299b58c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2299b58c]{animation:rotateEnter-2299b58c .7s;position:relative}.rotate-leave-active[data-v-2299b58c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2299b58c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-2299b58c]{width:1.3rem;height:1.3rem}.icon1[data-v-2299b58c]{width:1rem;height:1rem}.icon2[data-v-2299b58c]{width:1.5rem;height:1.5rem;margin-bottom:12px}[data-v-2299b58c] .downloadIcon path{fill:var(--app-container_title-color)!important}a[data-v-2299b58c]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-2299b58c]{color:#333;margin-top:20px;margin-bottom:20px;font-weight:400}.content .tab[data-v-2299b58c]{display:flex;gap:8px}.content .tab .item[data-v-2299b58c]{flex:1;padding:16px;display:flex;flex-direction:column;align-items:center;border-radius:10px;cursor:pointer}.content .tab .item .title[data-v-2299b58c]{margin-bottom:8px}.content .tab .item>span[data-v-2299b58c]{font-size:12px}.content .tab .active[data-v-2299b58c]{border:2px solid #6d6d6d}.content .tab .cloud[data-v-2299b58c]{background-color:#fff7ed;color:#ca3500}.content .tab .memory[data-v-2299b58c]{background-color:#f9fafb;color:#364153}.content .tab .network[data-v-2299b58c]{background-color:#f0fdfa;color:#277881}.btn_settings[data-v-2299b58c]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-2299b58c]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-2299b58c]{transform:rotate(90deg)}@keyframes bganimation-2299b58c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2299b58c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2299b58c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2299b58c]{animation:rotateEnter-2299b58c .7s;position:relative}.rotate-leave-active[data-v-2299b58c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2299b58c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-2299b58c]{margin:10px 0}}@keyframes bganimation-73552138{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-73552138{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-73552138{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-73552138]{animation:rotateEnter-73552138 .7s;position:relative}.rotate-leave-active[data-v-73552138]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-73552138]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}h3[data-v-73552138]{text-align:center;margin-bottom:20px}.label-item[data-v-73552138]{display:flex;align-items:center;flex-wrap:wrap;margin:1rem 0;padding:0 30px}.label-item label[data-v-73552138]{display:flex;flex-wrap:wrap;align-items:center;width:100%;height:26px;line-height:26px;cursor:pointer}.label-item label input[type=radio][data-v-73552138]{top:0;right:0;vertical-align:middle}.label-item label span[data-v-73552138]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#000000d4;display:inline-block;margin-left:10px}.label-item p.label_info[data-v-73552138]{color:#999;font-size:12px;padding-left:24px;line-height:20px}.label-item .label-item_key[data-v-73552138]{display:flex;flex-wrap:wrap;align-items:center}.label-item .label-item_key .ddnsto_serve[data-v-73552138]{flex:0 0 100%;display:flex;justify-content:space-between;margin-bottom:14px}.label-item .label-item_key .ddnsto_serve_item[data-v-73552138]{flex:0 0 100%;display:flex;justify-content:space-between}@keyframes bganimation-b9ee57da{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b9ee57da{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b9ee57da{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b9ee57da]{animation:rotateEnter-b9ee57da .7s;position:relative}.rotate-leave-active[data-v-b9ee57da]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b9ee57da]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-b9ee57da]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-b9ee57da]{width:100px;height:100px}.actioner-container_body .body-title[data-v-b9ee57da]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-tips[data-v-b9ee57da]{text-align:center}.actioner-container_body .body-info[data-v-b9ee57da]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body .body-tips[data-v-b9ee57da]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-b9ee57da]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-b9ee57da]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-aefb6fdc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-aefb6fdc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-aefb6fdc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-aefb6fdc]{animation:rotateEnter-aefb6fdc .7s;position:relative}.rotate-leave-active[data-v-aefb6fdc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-aefb6fdc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-aefb6fdc]{width:100%;height:100%;border:none}@keyframes bganimation-0e2b47e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0e2b47e6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0e2b47e6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0e2b47e6]{animation:rotateEnter-0e2b47e6 .7s;position:relative}.rotate-leave-active[data-v-0e2b47e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0e2b47e6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-0e2b47e6]{width:100%;height:100%;border:none}@keyframes bganimation-29e2aec8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-29e2aec8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-29e2aec8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-29e2aec8]{animation:rotateEnter-29e2aec8 .7s;position:relative}.rotate-leave-active[data-v-29e2aec8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-29e2aec8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-29e2aec8]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-29e2aec8]{width:100px;height:100px}.actioner-container_body .body-title[data-v-29e2aec8]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-info[data-v-29e2aec8]{color:#666;font-size:1.3em;margin:1rem 0;width:100%}.actioner-container_body .body-tips[data-v-29e2aec8]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-29e2aec8]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-29e2aec8]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-169b4450{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-169b4450{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-169b4450{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-169b4450]{animation:rotateEnter-169b4450 .7s;position:relative}.rotate-leave-active[data-v-169b4450]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-169b4450]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-169b4450]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-6590a3fa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6590a3fa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6590a3fa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6590a3fa]{animation:rotateEnter-6590a3fa .7s;position:relative}.rotate-leave-active[data-v-6590a3fa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6590a3fa]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-6590a3fa]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-3b80943c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3b80943c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3b80943c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3b80943c]{animation:rotateEnter-3b80943c .7s;position:relative}.rotate-leave-active[data-v-3b80943c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3b80943c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-3b80943c]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-3b80943c] .actioner-container{width:100%}.action-main[data-v-3b80943c] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;color:#0060ff;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-3b80943c] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-3b80943c] .actioner-container .actioner-container_body{padding:1rem;text-align:center;width:100%;height:400px}.action-main[data-v-3b80943c] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-3b80943c] .actioner-container .actioner-container_body.ddnsto-bind{height:280px}@keyframes bganimation-3b80943c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3b80943c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3b80943c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3b80943c]{animation:rotateEnter-3b80943c .7s;position:relative}.rotate-leave-active[data-v-3b80943c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3b80943c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-3b80943c]{width:90%}}@keyframes bganimation-145a3c50{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-145a3c50{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-145a3c50{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-145a3c50]{animation:rotateEnter-145a3c50 .7s;position:relative}.rotate-leave-active[data-v-145a3c50]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-145a3c50]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-145a3c50]{width:500px;max-height:90%;background-color:#fff;position:relative;z-index:99999;margin:auto;border-radius:4px;padding:10px 0}.action .action-header[data-v-145a3c50]{width:100%;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;padding-left:1rem;padding-right:1rem;text-align:left;font-size:18px;line-height:1;color:#303133}.action .action-body[data-v-145a3c50]{display:block;margin:2rem 0;line-height:24px;padding:0 15px;color:#606266;font-size:14px}.action .action-footer[data-v-145a3c50]{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action .next[data-v-145a3c50]{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:120px;height:32px;background:#553AFE;border-radius:2px}.action .next[data-v-145a3c50]:hover{opacity:.8}.action .clear[data-v-145a3c50]{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action .clear[data-v-145a3c50]:hover{opacity:.8}@keyframes bganimation-2c659599{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2c659599{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2c659599{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2c659599]{animation:rotateEnter-2c659599 .7s;position:relative}.rotate-leave-active[data-v-2c659599]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2c659599]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.title_info[data-v-2c659599]{display:block;width:100%;text-align:center}.title_info p[data-v-2c659599]{font-size:20px;margin-bottom:10px}.label-item[data-v-2c659599]{width:100%;margin:1rem 0}.label-item .label-item_key[data-v-2c659599]{width:100%;font-size:12px;color:#666}.label-item .label-item_key span[data-v-2c659599]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-2c659599]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-2c659599]{width:100%;margin-top:5px}.label-item .label-item_value select[data-v-2c659599],.label-item .label-item_value input[data-v-2c659599]{width:100%;height:36px;color:#000}.label-item .label-item_value input[data-v-2c659599]::placeholder{color:#999;font-size:12PX}.label-item .label_tips[data-v-2c659599]{display:flex;margin-top:6px}.label-item .label_tips .info[data-v-2c659599]{margin-left:8px}.label-message[data-v-2c659599]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}@keyframes bganimation-8a1e6470{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8a1e6470{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-8a1e6470{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-8a1e6470]{animation:rotateEnter-8a1e6470 .7s;position:relative}.rotate-leave-active[data-v-8a1e6470]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8a1e6470]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-8a1e6470]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-8a1e6470] .actioner-container{width:100%}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-8a1e6470] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body{padding:1rem;width:100%;height:400px}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body.ali,.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body.dnspod,.action-main[data-v-8a1e6470] .actioner-container .actioner-container_body.oray{height:451px}@keyframes bganimation-8a1e6470{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8a1e6470{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-8a1e6470{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-8a1e6470]{animation:rotateEnter-8a1e6470 .7s;position:relative}.rotate-leave-active[data-v-8a1e6470]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8a1e6470]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-8a1e6470]{width:90%}}@keyframes bganimation-d3a8d744{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d3a8d744{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d3a8d744{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d3a8d744]{animation:rotateEnter-d3a8d744 .7s;position:relative}.rotate-leave-active[data-v-d3a8d744]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d3a8d744]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-d3a8d744] .footer-btn{background:var(--card-bg-color);border:1px solid var(--btn-border-color)}[data-v-d3a8d744] .reusable-card{background:#fff5ee!important;border:1px solid #ffd6a7!important}[data-v-d3a8d744] .earthIcon path{fill:var(--app-container_title-color)!important}.icon[data-v-d3a8d744]{width:1.3rem;height:1.3rem}.icon1[data-v-d3a8d744]{width:1rem;height:1rem}.icon2[data-v-d3a8d744]{width:1.5rem;height:1.5rem;margin-bottom:8px}.icon3[data-v-d3a8d744]{width:1.5rem;height:1.5rem;cursor:pointer}a[data-v-d3a8d744]{text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-d3a8d744]{color:#333;margin-top:20px;margin-bottom:20px;font-weight:400;padding:0 12px}.content .tab[data-v-d3a8d744]{display:flex;gap:8px}.content .tab .item[data-v-d3a8d744]{flex:1;padding:16px;display:flex;flex-direction:column;align-items:center;border-radius:10px;cursor:pointer}.content .tab .item .title[data-v-d3a8d744]{margin-bottom:8px}.content .tab .item>span[data-v-d3a8d744]{font-size:12px}.content .tab .active[data-v-d3a8d744]{border:2px solid #6d6d6d}.content .tab .cloud[data-v-d3a8d744]{background-color:#eff6ff;color:#1447e6}.content .tab .memory[data-v-d3a8d744]{background-color:#f0fdf4;color:#008236}.content .tab .network[data-v-d3a8d744]{background-color:#f9fafb;color:#4a5565}.content .info[data-v-d3a8d744]{margin-top:20px}.content .info .status[data-v-d3a8d744]{padding:20px 0 0;margin-top:16px;display:flex;justify-content:space-between;border-top:1px solid var(--btn-border-color)}.content .info .status .offline[data-v-d3a8d744]{background:#eceef2;color:#030213}.content .info .status>div[data-v-d3a8d744]{color:var(--app-container_title-color);font-size:16px}.content .info .status>span[data-v-d3a8d744]{color:#fff;padding:4px 8px;background:#030213;border-radius:6px;font-size:12px}.content .info .title_box[data-v-d3a8d744]{margin:20px 0}.content .info .title_box .title[data-v-d3a8d744]{color:var(--item-label_key-span-color);margin-bottom:10px}.content .info .title_box .path[data-v-d3a8d744]{display:flex;align-items:center;justify-content:space-between;border:1px solid #e0e1e1;background:#f9fafb;border-radius:4px;padding:8px 10px}.content .info .title_box .path>span[data-v-d3a8d744]{display:inline-block;padding:4px 8px;border:1px solid #553afb;font-size:12px;border-radius:4px;cursor:pointer;flex-shrink:0}.content .info .title_box .path>span>a[data-v-d3a8d744]{color:#553afb}.btn_settings[data-v-d3a8d744]{padding:6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}@keyframes bganimation-d3a8d744{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d3a8d744{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d3a8d744{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d3a8d744]{animation:rotateEnter-d3a8d744 .7s;position:relative}.rotate-leave-active[data-v-d3a8d744]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d3a8d744]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-d3a8d744]{margin:10px 0 0;padding:4px}.content .info[data-v-d3a8d744]{margin-top:10px}.content .info .status[data-v-d3a8d744]{padding-top:10px}.content .info .title_box[data-v-d3a8d744]{margin:10px 0}}@keyframes bganimation-243be5d3{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-243be5d3{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-243be5d3{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-243be5d3]{animation:rotateEnter-243be5d3 .7s;position:relative}.rotate-leave-active[data-v-243be5d3]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-243be5d3]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-243be5d3]{width:1.5rem;height:1.5rem;margin-right:6px}.display_flex[data-v-243be5d3]{display:flex;align-items:center}.network_container[data-v-243be5d3]{border:1px solid var(--border-color);border-radius:10px;padding:20px 14px;box-sizing:border-box;background-clip:padding-box;background:var(--card-bg-color);height:100%;display:flex;flex-direction:column;min-height:0}.network_container .title_box[data-v-243be5d3]{display:flex;justify-content:space-between;align-items:center;margin-bottom:26px;flex-shrink:0}.network_container .title_box>span[data-v-243be5d3]{font-size:16px;font-weight:600}.network_container .title_box .network_tag[data-v-243be5d3]{display:flex;align-items:center}.network_container .title_box .network_tag .tag_item[data-v-243be5d3]{display:flex;align-items:center;font-size:12px;margin-left:16px}.network_container .title_box .network_tag .tag_item>span[data-v-243be5d3]{line-height:1}.network_container .title_box .network_tag .tag_item>div[data-v-243be5d3]{width:12px;height:12px;border-radius:50%;margin-right:6px}.network_container .title_box .network_tag .tag_item .tag_dn[data-v-243be5d3]{background:#20c7f7}.network_container .title_box .network_tag .tag_item .tag_up[data-v-243be5d3]{background:#553afe}.network_container .echart[data-v-243be5d3]{flex:1;min-height:200px;min-width:0}.network_container .speed[data-v-243be5d3]{display:flex;flex-shrink:0}.network_container .speed .speed_item[data-v-243be5d3]{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center}.network_container .speed .speed_item>span[data-v-243be5d3]{font-size:12px;color:#999;margin-bottom:10px}.network_container .speed .speed_item>div[data-v-243be5d3]{font-size:16px;color:#333}.speed_box[data-v-243be5d3]{display:flex;align-items:center;justify-content:flex-end;margin-top:16px}@keyframes bganimation-243be5d3{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-243be5d3{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-243be5d3{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-243be5d3]{animation:rotateEnter-243be5d3 .7s;position:relative}.rotate-leave-active[data-v-243be5d3]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-243be5d3]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.network_container[data-v-243be5d3]{border-radius:6px;padding:10px}.network_container .title_box[data-v-243be5d3]{margin-bottom:16px}.network_container .title_box>span[data-v-243be5d3]{font-size:14px;font-weight:600}}@keyframes bganimation-2ac87be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2ac87be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2ac87be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2ac87be2]{animation:rotateEnter-2ac87be2 .7s;position:relative}.rotate-leave-active[data-v-2ac87be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2ac87be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-2ac87be2]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2ac87be2]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2ac87be2]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2ac87be2]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2ac87be2]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2ac87be2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2ac87be2]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2ac87be2]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2ac87be2],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2ac87be2]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2ac87be2]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2ac87be2]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2ac87be2]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2ac87be2]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-2ac87be2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2ac87be2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2ac87be2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2ac87be2]{animation:rotateEnter-2ac87be2 .7s;position:relative}.rotate-leave-active[data-v-2ac87be2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2ac87be2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2ac87be2]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-2ac87be2]{width:100%}}@keyframes bganimation-2deed63d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2deed63d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2deed63d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2deed63d]{animation:rotateEnter-2deed63d .7s;position:relative}.rotate-leave-active[data-v-2deed63d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2deed63d]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-2deed63d]{width:800px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2deed63d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2deed63d]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2deed63d]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2deed63d]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2deed63d]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2deed63d]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2deed63d]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2deed63d],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2deed63d]{height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2deed63d]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2deed63d]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2deed63d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2deed63d]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-dns .select-editable[data-v-2deed63d]{position:relative;border:solid grey 1px;width:100%}.actioner-dns .select-editable select[data-v-2deed63d]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.actioner-dns .select-editable input[data-v-2deed63d]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.actioner-dns .select-editable select[data-v-2deed63d]:focus,.actioner-dns .select-editable input[data-v-2deed63d]:focus{outline:none}.actioner-dns[data-v-2deed63d] ::placeholder{color:#999}.successed[data-v-2deed63d]{text-align:center;font-size:14px;margin-bottom:104px}.finished[data-v-2deed63d]{display:flex;justify-content:center;margin:80px 80px 28px}.docker_moves[data-v-2deed63d]{text-align:center}.docker_moves .moves[data-v-2deed63d]{margin-top:10px}.docker_moves .moves input[data-v-2deed63d]{cursor:pointer}.docker_moves .moves label[data-v-2deed63d]{margin-left:10px;cursor:pointer}.btns[data-v-2deed63d]{text-align:center}.item_info[data-v-2deed63d]{margin-left:10px}.softsource_tit[data-v-2deed63d]{margin:0 auto}.softsource_successed[data-v-2deed63d]{width:20%!important}@keyframes bganimation-2deed63d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2deed63d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2deed63d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2deed63d]{animation:rotateEnter-2deed63d .7s;position:relative}.rotate-leave-active[data-v-2deed63d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2deed63d]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2deed63d]{min-height:34vh}}@media screen and (max-width: 860px){.actioner-dns[data-v-2deed63d]{width:100%}}@keyframes bganimation-500d40e5{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-500d40e5{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-500d40e5{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-500d40e5]{animation:rotateEnter-500d40e5 .7s;position:relative}.rotate-leave-active[data-v-500d40e5]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-500d40e5]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-500d40e5]{width:1.5rem;height:1.5rem}[data-v-500d40e5] .networkIcon path{fill:var(--app-container_title-color)!important}.flex[data-v-500d40e5]{display:flex;align-items:center}.info_content[data-v-500d40e5]{margin:12px 0 0 4px}.info_content .status_box[data-v-500d40e5]{display:flex;align-items:center;justify-content:space-between;padding-bottom:12px;border-bottom:1px solid var(--border-color);font-size:14px;line-height:1}.info_content .status_box .status_name[data-v-500d40e5]{display:flex;align-items:center;line-height:1}.info_content .status_box .status_name .icon[data-v-500d40e5]{width:1rem;height:1rem;margin-right:6px}.info_content .status_box .status_time[data-v-500d40e5]{padding:4px 8px;background:#dbfce7;color:#008236;border-radius:4px}.info_content .ip_item[data-v-500d40e5]{display:flex;justify-content:space-between;align-items:center}.info_content .ip_item .ip_tag[data-v-500d40e5]{padding:3px 6px;border-radius:6px;border:1px solid #d1d5db;font-size:12px;line-height:1;display:flex;align-items:center}.info_content .ip_item .ip_tag>svg[data-v-500d40e5]{width:1.3rem;height:1.3rem;vertical-align:middle;margin-right:4px}.info_content .ip_item .device[data-v-500d40e5]{font-size:14px;color:#155dfc}.info_content .ip_item .delay[data-v-500d40e5]{font-size:14px;color:#00a663}.info_content .ip_item .download[data-v-500d40e5]{font-size:14px;color:var(--item-label_key-span-color)}.info_content .line[data-v-500d40e5]{width:100%;height:1px;background:var(--btn-border-color);margin-bottom:20px}.info_content .line1[data-v-500d40e5]{width:100%;height:1px;background:var(--btn-border-color);margin:20px 0}.info_content .ip_item[data-v-500d40e5]:nth-last-child(1){margin-top:20px}.info_content .ip_info[data-v-500d40e5]{margin:24px 0 20px}.info_content .ip_info .ip_address[data-v-500d40e5]{color:var(--item-label_key-span-color);margin-top:10px}.btn-primary[data-v-500d40e5]{background-color:#00b8db;color:#fff;border:none;padding:3px 16px;border-radius:8px;font-size:14px;cursor:pointer;transition:background .2s,transform .1s;margin-left:6px}.btn-primary[data-v-500d40e5]:hover{background-color:#26a7c7}.btn-primary[data-v-500d40e5]:active{transform:scale(.95)}.btn-pink[data-v-500d40e5]{background-color:#f751a9;color:#fff;border:none;padding:3px 12px;border-radius:8px;font-size:14px;cursor:pointer;transition:background .2s,transform .1s;margin-left:6px}.btn-pink[data-v-500d40e5]:hover{background-color:#e60076}.btn-pink[data-v-500d40e5]:active{transform:scale(.95)}@keyframes bganimation-500d40e5{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-500d40e5{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-500d40e5{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-500d40e5]{animation:rotateEnter-500d40e5 .7s;position:relative}.rotate-leave-active[data-v-500d40e5]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-500d40e5]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.flex[data-v-500d40e5]{flex-direction:column;align-items:flex-start}}@keyframes bganimation-2988896b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2988896b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2988896b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2988896b]{animation:rotateEnter-2988896b .7s;position:relative}.rotate-leave-active[data-v-2988896b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2988896b]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-2988896b]{width:1.3rem;height:1.3rem}.icon1[data-v-2988896b],.icon2[data-v-2988896b]{width:1rem;height:1rem}[data-v-2988896b] .interfaceIcon path{fill:var(--app-container_title-color)!important}[data-v-2988896b] .footer-btn{margin-top:6px}.content[data-v-2988896b]{margin-top:6px;padding-bottom:16px;min-height:30px;display:flex;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-gutter:stable both-edges;scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.35) transparent}.content[data-v-2988896b]::-webkit-scrollbar{height:6px}.content[data-v-2988896b]::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.content .item[data-v-2988896b]{position:relative;display:inline-flex;align-items:center;padding-right:20px;margin-right:16px;cursor:pointer}.content .item[data-v-2988896b]:before{content:"";display:inline-block;position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px!important;height:60%;background:#e0e0e0}.content .item[data-v-2988896b]:last-child:before{content:none}.content .icon_box[data-v-2988896b]{display:inline-flex;justify-content:center;align-items:center;width:30px;height:30px;border-radius:8px;background:#dbfce7;margin-right:12px}.content .name[data-v-2988896b]{display:flex;align-items:center;margin-bottom:6px}.content .speed[data-v-2988896b]{padding:4px 6px;background:#dbfce7;font-size:12px;border-radius:6px;line-height:1;color:#008236;margin-left:8px}.content .status[data-v-2988896b]{font-size:12px;color:#6a7282}.content>*[data-v-2988896b]{flex:0 0 auto}[data-v-2988896b] .content::-webkit-scrollbar{height:8px}[data-v-2988896b] .content::-webkit-scrollbar-thumb{border-radius:4px;background:rgba(0,0,0,.35)}[data-v-2988896b] .content::-webkit-scrollbar-track{background:transparent}.btn_settings[data-v-2988896b]{position:relative;padding:6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-2988896b]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-2988896b]{transform:rotate(90deg)}.row input[type=checkbox][data-v-2988896b]{vertical-align:middle;margin:0}.row[data-v-2988896b]{gap:8px;padding:0;margin:6px 0;display:flex;align-items:center}.row>input[data-v-2988896b]{margin-right:6px!important;margin-top:0}[data-v-2988896b] .dropdown-menu div:hover{background:transparent!important}[data-v-2988896b] .dropdown-menu{padding:8px 0}[data-v-2988896b] .dropdown-menu>div{padding:0}@keyframes bganimation-2988896b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2988896b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2988896b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2988896b]{animation:rotateEnter-2988896b .7s;position:relative}.rotate-leave-active[data-v-2988896b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2988896b]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-adc89aea{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-adc89aea{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-adc89aea{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-adc89aea]{animation:rotateEnter-adc89aea .7s;position:relative}.rotate-leave-active[data-v-adc89aea]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-adc89aea]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.feature-card[data-v-adc89aea]{flex:1 1 0;min-width:280px;max-width:350px;padding:14px 14px 20px;border:2px solid var(--border-color);border-radius:10px;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease;background-color:var(--card-bg-color);display:flex;align-items:center;justify-content:space-between}.feature-card[data-v-adc89aea]:hover{transform:translateY(-2px);box-shadow:0 4px 12px #00000014}.feature-card .badge[data-v-adc89aea]{font-size:12px;padding:4px 6px;border-radius:6px;color:#fff;line-height:1}.feature-card .header[data-v-adc89aea]{display:flex;align-items:center;gap:6px;margin-bottom:16px}.feature-card .header .icon-wrapper[data-v-adc89aea]{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;background-color:#999;color:#fff}.feature-card .header .icon-wrapper .icon-svg[data-v-adc89aea]{width:24px;height:24px}.feature-card .content .title[data-v-adc89aea]{font-weight:700;color:var(--item-label_key-span-color);margin-bottom:8px}.feature-card .content .subtitle[data-v-adc89aea]{font-size:14px;color:#666;margin-top:2px}.feature-card .footer[data-v-adc89aea]{display:flex;align-items:center;margin-top:12px;font-size:12px}.feature-card .footer .status[data-v-adc89aea]{padding:4px 6px;border-radius:6px;background-color:#eee;color:#666;line-height:1;margin-right:6px}.feature-card .footer .status.active[data-v-adc89aea]{background-color:#d3f9d8;color:#38a169}.feature-card .footer .extra[data-v-adc89aea]{color:inherit}.feature-card .footer .extra .extra_num[data-v-adc89aea]{font-size:16px}.feature-card .right-arrow[data-v-adc89aea]{width:18px;height:18px}.feature-card.purple .icon-wrapper[data-v-adc89aea]{background-color:#ad46ff}.feature-card.purple .badge[data-v-adc89aea]{background-color:#f3e8ff;color:#8200db}.feature-card.blue .icon-wrapper[data-v-adc89aea]{background-color:#3b82f6}.feature-card.blue .badge[data-v-adc89aea]{background-color:#e6effe;color:#3b82f6}.feature-card.blue .right-arrow[data-v-adc89aea]{opacity:.8;width:18px;height:18px}.feature-card.green .icon-wrapper[data-v-adc89aea],.feature-card.green .badge[data-v-adc89aea]{background-color:#22c55e}.feature-card.pink .icon-wrapper[data-v-adc89aea]{background-color:#ec4899}.feature-card.pink .badge[data-v-adc89aea]{background-color:#f6339a}.feature-card.pink .right-arrow[data-v-adc89aea]{color:#f6349b;opacity:.7}.feature-card.skyblue .icon-wrapper[data-v-adc89aea]{background-color:#615fff}.feature-card.skyblue .badge[data-v-adc89aea]{background-color:#e0e7ff;color:#432dd7}.feature-card.orange .icon-wrapper[data-v-adc89aea],.feature-card.orange .badge[data-v-adc89aea]{background-color:#f97316}@keyframes bganimation-adc89aea{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-adc89aea{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-adc89aea{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-adc89aea]{animation:rotateEnter-adc89aea .7s;position:relative}.rotate-leave-active[data-v-adc89aea]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-adc89aea]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.feature-card[data-v-adc89aea]{min-width:180px;padding:10px;border-radius:6px;border:1px solid #e5e5e5;transition:none}.feature-card[data-v-adc89aea]:hover{transform:none;box-shadow:none}.feature-card .header[data-v-adc89aea]{margin-bottom:8px}.feature-card .content .title[data-v-adc89aea]{font-weight:700;color:#333;margin-bottom:4px}.feature-card .footer[data-v-adc89aea]{margin-top:6px}}@keyframes bganimation-0d919a1e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d919a1e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d919a1e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d919a1e]{animation:rotateEnter-0d919a1e .7s;position:relative}.rotate-leave-active[data-v-0d919a1e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d919a1e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-0d919a1e]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-0d919a1e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-0d919a1e]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-0d919a1e]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0d919a1e]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0d919a1e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0d919a1e]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-0d919a1e]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-0d919a1e],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-0d919a1e]{width:100%;height:36px}.actioner-dns .actioner-dns_body .chose_dhcp[data-v-0d919a1e]{height:1em;font-size:1.3em}.actioner-dns .actioner-dns_body .chose_dhcp .dhcp_info[data-v-0d919a1e]{margin-left:10px;user-select:none}.actioner-dns .actioner-dns_body .label-message[data-v-0d919a1e]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-0d919a1e]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-0d919a1e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-0d919a1e]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.setting_status[data-v-0d919a1e]{text-align:center}.setting_status p[data-v-0d919a1e]{margin:10px 0}.setting_status a[data-v-0d919a1e]{text-align:center;display:block;text-decoration:none}.NewAdress[data-v-0d919a1e]{margin-top:10px}@keyframes bganimation-0d919a1e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d919a1e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d919a1e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d919a1e]{animation:rotateEnter-0d919a1e .7s;position:relative}.rotate-leave-active[data-v-0d919a1e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d919a1e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-0d919a1e]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-0d919a1e]{width:100%}}@keyframes bganimation-59ad49e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-59ad49e6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-59ad49e6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-59ad49e6]{animation:rotateEnter-59ad49e6 .7s;position:relative}.rotate-leave-active[data-v-59ad49e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-59ad49e6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-59ad49e6]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-59ad49e6]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-59ad49e6]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_roboot_tips[data-v-59ad49e6]{margin-top:24px;text-align:center}.actioner-dns .actioner-dns_body .disk_loading_icon[data-v-59ad49e6]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.actioner-dns .actioner-dns_body .disk_loading_icon .disk_loading_info[data-v-59ad49e6]{margin-top:5px}.actioner-dns .actioner-dns_body .disk_tips[data-v-59ad49e6]{text-align:center;font-size:16px;margin-top:159px;color:#f9ad1e}.actioner-dns .actioner-dns_body .disk_tips svg[data-v-59ad49e6]{vertical-align:middle}.actioner-dns .actioner-dns_body .disk_tips span[data-v-59ad49e6]{margin-left:6px}.actioner-dns .actioner-dns_body .sandbox_info[data-v-59ad49e6]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .label-item[data-v-59ad49e6]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-59ad49e6]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-59ad49e6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-59ad49e6]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-59ad49e6]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-59ad49e6],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-59ad49e6]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-59ad49e6]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .actioner-dns_body .sandbox_tips svg[data-v-59ad49e6]{vertical-align:middle}.actioner-dns .actioner-dns_body .sandbox_tips span[data-v-59ad49e6]{font-size:12px;margin-left:4px}.actioner-dns .config-message[data-v-59ad49e6]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-59ad49e6]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-59ad49e6]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-59ad49e6]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-59ad49e6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-59ad49e6]{margin-top:114px}.timeout span[data-v-59ad49e6],.sandbox_roboot_refresh[data-v-59ad49e6]{color:#5e72e4}option[data-v-59ad49e6]:disabled{background-color:#e0e0e0}@keyframes bganimation-59ad49e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-59ad49e6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-59ad49e6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-59ad49e6]{animation:rotateEnter-59ad49e6 .7s;position:relative}.rotate-leave-active[data-v-59ad49e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-59ad49e6]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-59ad49e6]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-59ad49e6]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-59ad49e6]{min-height:42vh}.actioner-tips[data-v-59ad49e6]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-59ad49e6]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-59ad49e6]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-59ad49e6]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-59ad49e6]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-59ad49e6]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-59ad49e6]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_footer button[data-v-59ad49e6]{width:100%!important;margin-bottom:10px}.actioner-tips .sandbox_info[data-v-59ad49e6]{padding:3px 10px}}@keyframes bganimation-3e084f0f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3e084f0f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3e084f0f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3e084f0f]{animation:rotateEnter-3e084f0f .7s;position:relative}.rotate-leave-active[data-v-3e084f0f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3e084f0f]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-3e084f0f]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-3e084f0f]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-3e084f0f]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_info[data-v-3e084f0f]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-3e084f0f]{font-size:16px;line-height:28px;margin:20px 0}.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-3e084f0f]{font-size:16px;line-height:28px}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_reboot[data-v-3e084f0f]{color:#5e72e4}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_tex[data-v-3e084f0f]{color:red;font-size:.9em}.actioner-dns .actioner-dns_footer[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-3e084f0f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-3e084f0f]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-3e084f0f]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-3e084f0f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-3e084f0f]{margin-top:114px}.timeout span[data-v-3e084f0f]{color:#5e72e4}@keyframes bganimation-3e084f0f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3e084f0f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3e084f0f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3e084f0f]{animation:rotateEnter-3e084f0f .7s;position:relative}.rotate-leave-active[data-v-3e084f0f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3e084f0f]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-3e084f0f]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-3e084f0f]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-3e084f0f]{min-height:42vh}.actioner-dns .actioner-dns_footer button[data-v-3e084f0f]{width:100%!important;margin-bottom:10px}.actioner-tips[data-v-3e084f0f]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-3e084f0f]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-3e084f0f]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-3e084f0f]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-3e084f0f]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-3e084f0f]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-3e084f0f]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .sandbox_info[data-v-3e084f0f]{font-size:10px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-3e084f0f],.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-3e084f0f]{font-size:12px}.actioner-tips .sandbox_info[data-v-3e084f0f]{padding:3px 10px}}@keyframes bganimation-00934cf4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-00934cf4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-00934cf4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-00934cf4]{animation:rotateEnter-00934cf4 .7s;position:relative}.rotate-leave-active[data-v-00934cf4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-00934cf4]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-00934cf4] .icon{width:1.5rem;height:1.5rem;margin-bottom:12px;display:inline-block;flex:0 0 auto}button[data-v-00934cf4]{margin:0!important}button.item[data-v-00934cf4]:disabled{opacity:1}button.item:disabled svg[data-v-00934cf4],button.item:disabled .icon[data-v-00934cf4]{opacity:1!important;filter:none!important;color:#00b8db!important;stroke:#00b8db!important;fill:#00b8db!important}.item_container[data-v-00934cf4]{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px;width:100%;padding-bottom:4px;box-sizing:border-box}.item_container[data-v-00934cf4]::-webkit-scrollbar{height:6px}.item_container[data-v-00934cf4]::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.item_container .item[data-v-00934cf4]{position:relative;padding:16px 12px;min-width:180px;display:flex;flex-direction:column;justify-content:center;align-items:center;font-size:14px;border-radius:8px;box-sizing:border-box;border:1px solid #e5e7eb;cursor:pointer;color:var(--card-txt-color)}.item_container .app-update-button-more[data-v-00934cf4]{position:absolute;top:4px;right:4px}.item_container .menu_background[data-v-00934cf4]{position:fixed;inset:0}.item_container .renew[data-v-00934cf4]{display:flex;align-items:center}.item_container .renew i[data-v-00934cf4]{display:inline-block;padding:3px;background-color:red;border-radius:50%;margin-right:4px}.item_container .dns_txt[data-v-00934cf4]{display:flex;align-items:center;line-height:1;color:#32325d}.item_container .disabled-style[data-v-00934cf4]{opacity:.6;cursor:not-allowed;pointer-events:none;background-color:#e0e0e0}.item_container .app-update-button-menu[data-v-00934cf4]{position:absolute;z-index:999;width:30%;right:0;top:0}.item_container .app-update-button-menu ul[data-v-00934cf4]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:6px 0;border-radius:6px;top:-45px;right:0;text-align:center;position:absolute;word-break:keep-all}.item_container .app-update-button-menu ul li[data-v-00934cf4]{cursor:pointer;font-size:16px;line-height:1em;color:#1e1e1e;padding:0 5px;position:relative}.item_container .app-update-button-menu ul li .app-update-menu-item[data-v-00934cf4]{padding:5px 2px;white-space:nowrap}.item_container .app-update-button-menu ul li .app-update-menu-item-loading[data-v-00934cf4]{display:flex;justify-content:center;align-items:center;position:absolute;width:100%;height:100%;top:0;left:0;background-color:#fffc}@keyframes bganimation-00934cf4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-00934cf4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-00934cf4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-00934cf4]{animation:rotateEnter-00934cf4 .7s;position:relative}.rotate-leave-active[data-v-00934cf4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-00934cf4]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.item_container[data-v-00934cf4]{display:flex;flex-wrap:wrap;gap:10px;width:100%;padding:0;box-sizing:border-box;justify-content:space-between}.item_container .item[data-v-00934cf4]{width:48%;min-width:120px;flex-shrink:0}}@keyframes bganimation-6c80f0b7{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6c80f0b7{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6c80f0b7{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6c80f0b7]{animation:rotateEnter-6c80f0b7 .7s;position:relative}.rotate-leave-active[data-v-6c80f0b7]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6c80f0b7]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.sambas-item[data-v-6c80f0b7]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.sambas-item .sambas-item_name[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.sambas-item .sambas-item_value[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--app-container_title-color)}.app-container_samba li.samba-item[data-v-6c80f0b7]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}.app-container_samba li.samba-item .samba-item_name[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}.app-container_samba li.samba-item .samba-item_value[data-v-6c80f0b7]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-container_samba li.samba-item .samba-item_value button[data-v-6c80f0b7]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.app-container_samba li.samba-item .samba-item_value button[data-v-6c80f0b7]:hover{opacity:.7}.tit[data-v-6c80f0b7]{color:var(--tit-color);font-weight:700;font-size:16px}@keyframes bganimation-9e39e9b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9e39e9b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9e39e9b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9e39e9b2]{animation:rotateEnter-9e39e9b2 .7s;position:relative}.rotate-leave-active[data-v-9e39e9b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9e39e9b2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.webdav-item[data-v-9e39e9b2]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.webdav-item .webdav-item_name[data-v-9e39e9b2]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.webdav-item .webdav-item_value[data-v-9e39e9b2]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--app-container_title-color)}@keyframes bganimation-485e1494{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-485e1494{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-485e1494{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-485e1494]{animation:rotateEnter-485e1494 .7s;position:relative}.rotate-leave-active[data-v-485e1494]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-485e1494]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.linkease-item[data-v-485e1494]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.linkease-item .linkease-item_name[data-v-485e1494]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.linkease-item .linkease-item_value[data-v-485e1494]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--app-container_title-color)}li.linkease-item .linkease-item_value .configure[data-v-485e1494]{color:#297ff3;padding:3px}li.linkease-item .linkease-item_value .configure.enabel[data-v-485e1494]{cursor:pointer}a[data-v-485e1494]{text-decoration:none;color:#297ff3}@keyframes bganimation-7ee59a9a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ee59a9a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7ee59a9a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7ee59a9a]{animation:rotateEnter-7ee59a9a .7s;position:relative}.rotate-leave-active[data-v-7ee59a9a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ee59a9a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-7ee59a9a]{width:1.3rem;height:1.3rem}.icon1[data-v-7ee59a9a]{width:1rem;height:1rem}.icon2[data-v-7ee59a9a]{width:1.5rem;height:1.5rem;margin-bottom:12px}.settings-icon[data-v-7ee59a9a] svg,.settings-icon[data-v-7ee59a9a] g,.settings-icon[data-v-7ee59a9a] path,.settings-icon[data-v-7ee59a9a] circle,.settings-icon[data-v-7ee59a9a] rect,.settings-icon[data-v-7ee59a9a] line,.settings-icon[data-v-7ee59a9a] polyline,.settings-icon[data-v-7ee59a9a] polygon{fill:var(--app-container_title-color)!important;stroke:var(--app-container_title-color)!important}a[data-v-7ee59a9a]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-7ee59a9a]{color:#333;margin-top:10px;margin-bottom:10px;font-weight:400}.content .tab[data-v-7ee59a9a]{display:flex;gap:8px}.content .tab .item[data-v-7ee59a9a]{flex:1;padding:16px;display:flex;flex-direction:column;align-items:center;border-radius:10px;cursor:pointer}.content .tab .item .title[data-v-7ee59a9a]{margin-bottom:8px}.content .tab .item>span[data-v-7ee59a9a]{font-size:12px}.content .tab .active[data-v-7ee59a9a]{border:2px solid #6d6d6d}.content .tab .cloud[data-v-7ee59a9a]{background-color:#eff6ff;color:#1447e6}.content .tab .memory[data-v-7ee59a9a]{background-color:#dbfce7;color:#008236}.content .tab .network[data-v-7ee59a9a]{background-color:#faf5ff;color:#8200db}.btn_settings[data-v-7ee59a9a]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-7ee59a9a]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-7ee59a9a]{transform:rotate(90deg)}@keyframes bganimation-7ee59a9a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ee59a9a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7ee59a9a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7ee59a9a]{animation:rotateEnter-7ee59a9a .7s;position:relative}.rotate-leave-active[data-v-7ee59a9a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ee59a9a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-7ee59a9a]{margin:10px 0}}@keyframes bganimation-5f5fb500{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5f5fb500{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5f5fb500{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5f5fb500]{animation:rotateEnter-5f5fb500 .7s;position:relative}.rotate-leave-active[data-v-5f5fb500]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5f5fb500]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action .action-footer button[data-v-5f5fb500]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-5f5fb500{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5f5fb500{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5f5fb500{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5f5fb500]{animation:rotateEnter-5f5fb500 .7s;position:relative}.rotate-leave-active[data-v-5f5fb500]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5f5fb500]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-5f5fb500]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-5f5fb500]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-5f5fb500]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-5f5fb500]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-5f5fb500]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-5f5fb500]{flex:auto}.action.format .disk-list[data-v-5f5fb500]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-5f5fb500]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-5f5fb500]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-5f5fb500]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-5f5fb500]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-5f5fb500]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-5f5fb500],.action.format .label-item .label-item_value input[data-v-5f5fb500]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-5f5fb500]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-5f5fb500]{flex:auto}.action.format p.msg[data-v-5f5fb500]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-5f5fb500]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-5f5fb500]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-5f5fb500]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-5f5fb500]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-5f5fb500{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5f5fb500{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5f5fb500{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5f5fb500]{animation:rotateEnter-5f5fb500 .7s;position:relative}.rotate-leave-active[data-v-5f5fb500]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5f5fb500]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-5f5fb500]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-5f5fb500]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-5f5fb500]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-5f5fb500]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-5f5fb500]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-5f5fb500]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-5f5fb500]{color:#0000fb}.action.result .btns[data-v-5f5fb500]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-4e7285ca{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4e7285ca{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4e7285ca{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4e7285ca]{animation:rotateEnter-4e7285ca .7s;position:relative}.rotate-leave-active[data-v-4e7285ca]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4e7285ca]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-4e7285ca]{color:red}.disk-content[data-v-4e7285ca]{padding:1rem;border:1px solid #cfcfcf;margin:16px 0}.disk-content li.disk-item[data-v-4e7285ca]{width:100%;display:flex;align-items:center}.disk-content li.disk-item .disk-item_name[data-v-4e7285ca]{flex:0 0 50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.disk-content li.disk-item .value-data[data-v-4e7285ca]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%;color:#297ff3;cursor:default}.disk-content li.disk-item .value-data button[data-v-4e7285ca]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.disk-content li.disk-item .value-data button[data-v-4e7285ca]:hover{opacity:.7}.disk-content li.disk-item .value-data.buttondiv[data-v-4e7285ca]{cursor:pointer}.disk-content li.disk-item .disk_value[data-v-4e7285ca]{flex:0 0 50%;display:flex;justify-content:space-between;align-items:center}.disk-content li.disk-item .disk_value .cbi-button[data-v-4e7285ca]{margin-left:10px}.disk-content li.disk-item .disk_value .disk-item_value[data-v-4e7285ca]{flex:auto;padding-left:10px;position:relative}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-4e7285ca]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:10px;right:0;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-4e7285ca]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}.disk-content li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-4e7285ca]{visibility:visible;transition:.7s;opacity:1}.disk-content .disk_status[data-v-4e7285ca]{display:flex;text-align:left;padding-left:10px;font-size:12px;padding-top:6px}.disk-content .disk_status .disk_status_item[data-v-4e7285ca]{display:flex;margin-right:20px}.disk-content .disk_status .disk_status_item .disk_tip[data-v-4e7285ca]{display:flex;align-items:center}.disk_infoicon[data-v-4e7285ca]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-4e7285ca]{flex:none}.tooltip-trigger[data-v-4e7285ca]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-4e7285ca]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-4e7285ca]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-4e7285ca]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-4e7285ca]{visibility:visible;opacity:1}.tooltip-top[data-v-4e7285ca]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-4e7285ca]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-4e7285ca]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-4e7285ca{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4e7285ca{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4e7285ca{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4e7285ca]{animation:rotateEnter-4e7285ca .7s;position:relative}.rotate-leave-active[data-v-4e7285ca]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4e7285ca]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.disk-content li.disk-item .disk_value[data-v-4e7285ca]{display:block}.disk-content .disk_status[data-v-4e7285ca]{flex-wrap:wrap}}@keyframes bganimation-56d0d562{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-56d0d562{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-56d0d562{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-56d0d562]{animation:rotateEnter-56d0d562 .7s;position:relative}.rotate-leave-active[data-v-56d0d562]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-56d0d562]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-56d0d562]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:3rem;border-radius:6px;display:flex;flex-direction:column;flex-wrap:nowrap}.action ul[data-v-56d0d562]{overflow:auto}.action ul .app-container_info[data-v-56d0d562]{display:flex;justify-content:space-between;max-width:56%;margin-top:18px;font-weight:600}.action ul .app-container_body[data-v-56d0d562]{width:100%;height:100%}.action .action-footer[data-v-56d0d562]{text-align:center;margin-top:46px}.action .action-footer button[data-v-56d0d562]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-56d0d562{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-56d0d562{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-56d0d562{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-56d0d562]{animation:rotateEnter-56d0d562 .7s;position:relative}.rotate-leave-active[data-v-56d0d562]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-56d0d562]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action[data-v-56d0d562]{width:160%}}@media screen and (max-width: 800px){.action[data-v-56d0d562]{width:138%}}@media screen and (max-width: 700px){.action[data-v-56d0d562]{width:132%}}@media screen and (max-width: 600px){.action[data-v-56d0d562]{width:116%}}@media screen and (max-width: 500px){.action[data-v-56d0d562]{width:100%}}@media screen and (max-width: 400px){.action[data-v-56d0d562]{width:90%}}@media screen and (max-width: 300px){.action[data-v-56d0d562]{width:100%}}.progress-bar-wrapper[data-v-2691c876]{width:100%;margin-bottom:0}.progress-bar[data-v-2691c876]{width:100%;position:relative;box-shadow:inset 0 1px 3px #0000001a}.progress-fill[data-v-2691c876]{display:flex;align-items:center;justify-content:flex-end;padding-right:8px;box-sizing:border-box}.percentage-text[data-v-2691c876]{color:#fff;font-size:12px;font-weight:700;text-shadow:0 1px 2px rgba(0,0,0,.3);white-space:nowrap;line-height:1}@media (max-width: 768px){.percentage-text[data-v-2691c876]{font-size:10px;padding-right:4px}}@media (prefers-color-scheme: dark){.progress-bar[data-v-2691c876]{box-shadow:inset 0 1px 3px #ffffff1a}}@keyframes bganimation-34a1dfa9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-34a1dfa9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-34a1dfa9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-34a1dfa9]{animation:rotateEnter-34a1dfa9 .7s;position:relative}.rotate-leave-active[data-v-34a1dfa9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-34a1dfa9]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-34a1dfa9]{color:red}li.disk-item[data-v-34a1dfa9]{width:100%;margin:0 0 1rem}li.disk-item .disk-item_name[data-v-34a1dfa9]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.disk-item .disk-item_name>span[data-v-34a1dfa9]{color:#6a7280}li.disk-item .disk_icon[data-v-34a1dfa9]{padding-left:1rem;align-self:center;align-items:center;flex:none;display:flex}li.disk-item .disk_value[data-v-34a1dfa9]{display:flex;justify-content:flex-end}li.disk-item .disk_value .disk-item_value[data-v-34a1dfa9]{flex:auto;position:relative;cursor:help;display:flex;align-items:center}li.disk-item .disk_value .disk-item_value .value-data[data-v-34a1dfa9]{width:100%;text-overflow:ellipsis;white-space:nowrap}li.disk-item .disk_value .disk-item_value .value-data>div[data-v-34a1dfa9]{margin-top:10px;display:flex;justify-content:space-between}li.disk-item .disk_value .disk-item_value .value-data button[data-v-34a1dfa9]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer;padding:0;margin:0;line-height:normal}li.disk-item .disk_value .disk-item_value .value-data button[data-v-34a1dfa9]:hover{opacity:.7}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-34a1dfa9]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:30%;right:30%;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-34a1dfa9]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-34a1dfa9]{visibility:visible;transition:.7s;opacity:1}.disk_infoicon[data-v-34a1dfa9]{margin-left:10px;cursor:pointer;margin-bottom:10px}.tooltip-trigger[data-v-34a1dfa9]{flex:none;cursor:help}.tooltip-trigger[data-v-34a1dfa9]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-34a1dfa9]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-34a1dfa9]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-34a1dfa9]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-34a1dfa9]{visibility:visible;opacity:1}.tooltip-top[data-v-34a1dfa9]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-34a1dfa9]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-34a1dfa9]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-1e31ad3a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e31ad3a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e31ad3a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e31ad3a]{animation:rotateEnter-1e31ad3a .7s;position:relative}.rotate-leave-active[data-v-1e31ad3a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e31ad3a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-1e31ad3a]{width:1.3rem;height:1.3rem}.icon1[data-v-1e31ad3a]{width:1rem;height:1rem}[data-v-1e31ad3a] .folderIcon path{fill:var(--app-container_title-color)!important}a[data-v-1e31ad3a]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content .disk_loading_icon[data-v-1e31ad3a]{height:100px;display:flex;flex-direction:column;align-items:center;padding:10px}.content .disk_loading_icon .disk_loading_info[data-v-1e31ad3a]{font-size:16px;color:#333;margin-top:12px}.content .line[data-v-1e31ad3a]{height:1px;background:var(--btn-border-color);margin:0}.content .item[data-v-1e31ad3a]{display:flex;margin-top:8px;padding:10px}.content .item .icon_box[data-v-1e31ad3a]{width:1.5rem;height:1.5rem;background:#dbeafe;display:flex;align-items:center;justify-content:center;border-radius:4px}.content .item .icon_box .icon[data-v-1e31ad3a]{width:.8rem;height:.8rem}.content .item .info[data-v-1e31ad3a]{flex:1}.content .item .info .name[data-v-1e31ad3a]{display:flex;justify-content:space-between;align-items:center;margin-left:12px;margin-top:6px}.content .item .info .name>div[data-v-1e31ad3a]{font-size:14px;color:var(--app-container_title-color)}.content .item .info .name>span[data-v-1e31ad3a]{display:inline-flex;align-items:center;padding:4px 6px;line-height:1;border:1px solid #d8e3db;background:#f0fdf4;border-radius:4px;color:#008236;font-size:12px;font-weight:400}.content .item .info .name>span .icon[data-v-1e31ad3a]{width:.7rem;height:.7rem;margin-right:4px}.content .item .info .schedule[data-v-1e31ad3a]{margin-top:12px}.content .item .info .schedule span[data-v-1e31ad3a]{font-size:12px;color:#6a7280;font-weight:400}.content .item .info .schedule>div[data-v-1e31ad3a]{display:flex;justify-content:space-between;align-items:center;margin-top:8px}.btn_settings[data-v-1e31ad3a]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-1e31ad3a]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-1e31ad3a]{transform:rotate(90deg)}@keyframes bganimation-1e31ad3a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e31ad3a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e31ad3a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e31ad3a]{animation:rotateEnter-1e31ad3a .7s;position:relative}.rotate-leave-active[data-v-1e31ad3a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e31ad3a]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content .item[data-v-1e31ad3a]{margin-top:0}.content .line[data-v-1e31ad3a]{height:1px;background:#e5e7eb;margin:0 0 10px}}@keyframes bganimation-5d803f28{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5d803f28{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5d803f28{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5d803f28]{animation:rotateEnter-5d803f28 .7s;position:relative}.rotate-leave-active[data-v-5d803f28]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5d803f28]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}li.docker-item[data-v-5d803f28]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0}li.docker-item .docker-item_name[data-v-5d803f28]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px;color:var(--app-container_title-color)}li.docker-item .docker-item_value[data-v-5d803f28]{flex:0 0 100%;max-width:50%;padding-left:10px;display:flex;justify-content:flex-end;align-items:center}li.docker-item .docker-item_value .configure[data-v-5d803f28]{color:#297ff3;overflow:hidden;white-space:nowrap;padding:3px;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_value .configure.enabel[data-v-5d803f28]{color:#888;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_root[data-v-5d803f28]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.tooltip-trigger[data-v-5d803f28]{position:relative;display:inline-block;cursor:help}.tooltip-trigger .tooltip-text[data-v-5d803f28]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-5d803f28]{color:#fff}.tooltip-trigger .tooltip-text .docker_dir_tip[data-v-5d803f28]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-5d803f28]{visibility:visible;opacity:1}.tooltip-top[data-v-5d803f28]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.tooltip-right[data-v-5d803f28]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.tooltip-left[data-v-5d803f28]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.tooltip-top[data-v-5d803f28]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-5d803f28]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.input-switch[data-v-5d803f28]{display:inline-block;cursor:pointer;position:relative}.input-switch span[data-v-5d803f28]{display:block;position:relative;width:50px;height:20px;border-radius:10px;padding:2px}.input-switch span em[data-v-5d803f28]{display:block;width:16px;height:16px;background-color:#fff;border-radius:10px}.input-switch span.enable[data-v-5d803f28]{background-color:#52c41a;transition:.3s}.input-switch span.enable em[data-v-5d803f28]{transform:translate(30px);transition:.3s}.input-switch span.close[data-v-5d803f28]{background-color:#cecece;transition:.3s}.input-switch span.close em[data-v-5d803f28]{transform:translate(0);transition:.3s}.content[data-v-5d803f28]{color:#333;margin-top:20px;margin-bottom:20px;font-weight:400}.content .status[data-v-5d803f28]{display:flex;justify-content:space-between;padding-bottom:20px;border-bottom:1px solid #e8e8e8;margin:0 6px}.content .docker_box[data-v-5d803f28]{display:flex;align-items:center;justify-content:space-between;margin:20px 6px}.content .docker_box .title[data-v-5d803f28]{margin-bottom:20px}.content .docker_box .path[data-v-5d803f28]{flex:1;border:1px solid #e0e1e1;background:#f9fafb;border-radius:4px;padding:8px 10px}.content .docker_num[data-v-5d803f28]{display:flex}.content .docker_num .num_item[data-v-5d803f28]{flex:1;display:flex;justify-content:center;align-items:center;flex-direction:column;color:var(--app-container_title-color)}.content .docker_num .num_item>span[data-v-5d803f28]{font-size:20px;margin-top:6px}.docker_tip svg[data-v-5d803f28]{vertical-align:bottom;margin-left:14px;width:1.5em;height:1.5em}.status-icon[data-v-5d803f28]{display:inline-block;margin-left:10px;font-size:12px;color:#008236;padding:4px 6px;background:#dbfce7;border-radius:6px}@keyframes bganimation-81932f72{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-81932f72{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-81932f72{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-81932f72]{animation:rotateEnter-81932f72 .7s;position:relative}.rotate-leave-active[data-v-81932f72]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-81932f72]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-81932f72]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-81932f72]{width:100%;display:block;color:#1e1e1e;font-size:22px;padding:0;margin:0;text-align:center}.action .roots[data-v-81932f72]{display:flex;max-width:342px;align-items:center;margin-top:32px;margin-bottom:16px}.action .roots .root[data-v-81932f72]{color:#000000d4;font-size:14px;text-align:center}.action .move[data-v-81932f72]{display:flex;justify-content:left;align-items:center}.action .change[data-v-81932f72]{width:678px}.action .desc[data-v-81932f72]{width:100%;display:block;font-size:1.2em;padding:0;margin:1rem 0;margin-top:32px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4}.action form[data-v-81932f72]{width:100%;display:block}.action .tips[data-v-81932f72]{width:477px}.action .tips .tip[data-v-81932f72]{color:#faad14;padding-left:6px}.action .btns[data-v-81932f72]{width:100%;margin:104px auto 0}.action .btns button[data-v-81932f72]{display:block;width:100%!important;margin-left:0;margin-right:0}.action .roots_tit[data-v-81932f72]{color:#000000d4;font-size:14px;font-weight:700;width:118px;text-align:right;flex:none}.action .successed[data-v-81932f72]{text-align:center;font-size:14px}.action .finished[data-v-81932f72]{display:flex;justify-content:center;margin:80px 80px 28px}.action .docker_moves[data-v-81932f72]{text-align:center}.action .docker_moves .moves[data-v-81932f72]{margin-top:10px}.action .docker_moves .moves input[data-v-81932f72]{cursor:pointer}.action .docker_moves .moves label[data-v-81932f72]{margin-left:10px;cursor:pointer}.select-editable[data-v-81932f72]{position:relative;border:solid grey 1px;width:438px;height:34px}.select-editable select[data-v-81932f72]{position:absolute;top:0;left:0;font-size:14px;border:none;width:100%;height:100%;margin:0}.select-editable input[data-v-81932f72]{position:absolute;top:0;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-81932f72]:focus,.select-editable input[data-v-81932f72]:focus{outline:none}[data-v-81932f72]::placeholder{color:#999}@keyframes bganimation-81932f72{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-81932f72{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-81932f72{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-81932f72]{animation:rotateEnter-81932f72 .7s;position:relative}.rotate-leave-active[data-v-81932f72]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-81932f72]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action[data-v-81932f72]{width:100%}.docker_download[data-v-81932f72]{width:80%}}@keyframes bganimation-faa89494{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-faa89494{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-faa89494{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-faa89494]{animation:rotateEnter-faa89494 .7s;position:relative}.rotate-leave-active[data-v-faa89494]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-faa89494]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-faa89494]{width:1.3rem;height:1.3rem}.icon1[data-v-faa89494]{width:1rem;height:1rem}[data-v-faa89494] .dockerIcon path{fill:var(--app-container_title-color)!important}a[data-v-faa89494]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-faa89494]{color:#333;margin-top:10px;margin-bottom:10px;font-weight:400}.btn_settings[data-v-faa89494]{position:relative;padding:6px 34px 6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}.rotation[data-v-faa89494]{position:absolute;right:2px;top:50%;height:100%;transform:translateY(-50%);border-left:1px solid var(--btn-border-color);display:flex;align-items:center}.rotation .moreIcon[data-v-faa89494]{transform:rotate(90deg)}@keyframes bganimation-faa89494{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-faa89494{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-faa89494{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-faa89494]{animation:rotateEnter-faa89494 .7s;position:relative}.rotate-leave-active[data-v-faa89494]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-faa89494]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-faa89494]{margin:10px 0}}.pie-chart-wrapper[data-v-a9cd39ac]{position:relative;display:flex;align-items:center;justify-content:center}.chart-dom[data-v-a9cd39ac]{width:100%;height:100%}.center-content[data-v-a9cd39ac]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:2;pointer-events:none}.center-icon[data-v-a9cd39ac]{width:20px;height:20px;margin-bottom:4px;display:block;margin-left:auto;margin-right:auto}.center-label[data-v-a9cd39ac]{margin-top:4px;font-size:14px;font-weight:600}@keyframes bganimation-17decdbc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-17decdbc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-17decdbc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-17decdbc]{animation:rotateEnter-17decdbc .7s;position:relative}.rotate-leave-active[data-v-17decdbc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-17decdbc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-17decdbc]{width:1.3rem;height:1.3rem}.icon1[data-v-17decdbc]{width:2rem;height:2rem;margin-bottom:8px}.icon2[data-v-17decdbc]{width:1rem;height:1rem}[data-v-17decdbc] .computerIcon path{fill:var(--app-container_title-color)!important}a[data-v-17decdbc]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.content[data-v-17decdbc]{color:#333;margin-top:20px;margin-bottom:20px;padding:0 10px;font-weight:400}.content .chart_box[data-v-17decdbc]{padding-bottom:20px;border-bottom:1px solid var(--btn-border-color);margin-bottom:20px;display:flex}.content .chart_box .chart[data-v-17decdbc]{flex:1;display:flex;flex-direction:column;align-items:center;color:var(--app-container_title-color)}.content .chart_box .chart>div[data-v-17decdbc]{margin-top:4px}.content .info[data-v-17decdbc]{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.content .info .item[data-v-17decdbc]{display:flex;justify-content:center}.content .info .item>div[data-v-17decdbc]{color:var(--app-container_title-color)}.content .info .item>span[data-v-17decdbc]{color:var(--app-container_status-label_block);font-size:16px;line-height:1}.content .info .item1[data-v-17decdbc]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-top:20px;padding:30px}.content .info .item1>div[data-v-17decdbc]{display:flex;align-items:center;margin-bottom:8px}.content .info .item1>div>span[data-v-17decdbc]{margin-left:8px}.content .info .bgcolor1[data-v-17decdbc]{background:#e9f2ff;border-radius:10px;border:1px solid #bedbff;color:#155dfc}.content .info .bgcolor2[data-v-17decdbc]{background:#ebfdf1;border-radius:10px;border:1px solid #b9f8cf;color:#008236}.btn_settings[data-v-17decdbc]{position:relative;padding:6px 18px;border-radius:4px;border:1px solid var(--btn-border-color);line-height:1;display:flex;align-items:center}@keyframes bganimation-17decdbc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-17decdbc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-17decdbc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-17decdbc]{animation:rotateEnter-17decdbc .7s;position:relative}.rotate-leave-active[data-v-17decdbc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-17decdbc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.content[data-v-17decdbc]{margin-top:10px;margin-bottom:10px;padding:0 4px}.content .chart_box[data-v-17decdbc]{padding-bottom:10px;margin-bottom:10px;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}.content .chart_box[data-v-17decdbc]::-webkit-scrollbar{display:none}.content .info[data-v-17decdbc]{grid-template-columns:repeat(1,1fr);gap:6px}.content .info .item1[data-v-17decdbc]{margin-top:6px;padding:10px}.content .info .bgcolor1[data-v-17decdbc]{background:#e9f2ff;border-radius:10px;border:1px solid #bedbff;color:#155dfc}.content .info .bgcolor2[data-v-17decdbc]{background:#ebfdf1;border-radius:10px;border:1px solid #b9f8cf;color:#008236}}@keyframes bganimation-4ca82311{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4ca82311{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4ca82311{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4ca82311]{animation:rotateEnter-4ca82311 .7s;position:relative}.rotate-leave-active[data-v-4ca82311]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4ca82311]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action[data-v-4ca82311]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-4ca82311]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-4ca82311]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-4ca82311]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-4ca82311]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-4ca82311]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-4ca82311{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4ca82311{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4ca82311{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4ca82311]{animation:rotateEnter-4ca82311 .7s;position:relative}.rotate-leave-active[data-v-4ca82311]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4ca82311]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-4ca82311]{font-size:20px}}@keyframes bganimation-4f195c52{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4f195c52{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4f195c52{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4f195c52]{animation:rotateEnter-4f195c52 .7s;position:relative}.rotate-leave-active[data-v-4f195c52]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4f195c52]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.page-container .card-container[data-v-4f195c52]{display:flex;flex-wrap:nowrap;overflow-x:auto;gap:16px;width:100%;padding-bottom:10px;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-gutter:stable both-edges;scrollbar-width:thin;scrollbar-color:rgba(0,0,0,.35) transparent}.page-container .card-container[data-v-4f195c52]::-webkit-scrollbar{height:6px}.page-container .card-container[data-v-4f195c52]::-webkit-scrollbar-thumb{background:#ccc;border-radius:3px}.page-container .card-container>*[data-v-4f195c52]{flex:0 0 auto}.page-container[data-v-4f195c52] .card-container::-webkit-scrollbar{height:8px}.page-container[data-v-4f195c52] .card-container::-webkit-scrollbar-thumb{border-radius:4px;background:rgba(0,0,0,.35)}.page-container[data-v-4f195c52] .card-container::-webkit-scrollbar-track{background:transparent}.page-container .network-container[data-v-4f195c52]{display:flex;gap:24px;width:100%;margin-top:20px;align-items:stretch}.page-container .network-container .left-box[data-v-4f195c52]{flex:2;min-width:0}.page-container .network-container .right-box[data-v-4f195c52]{flex:1;overflow:hidden;min-width:0;display:flex;flex-direction:column;justify-content:space-between}.page-container .align-c[data-v-4f195c52]{align-items:center}.page-container .other-container[data-v-4f195c52]{width:100%;margin-top:20px}.page-container .other-container .grid-container[data-v-4f195c52]{display:flex;flex-wrap:wrap;gap:24px}.page-container .other-container .grid-container .grid-item[data-v-4f195c52]{display:flex;justify-content:center;border-radius:8px}.page-container .btns[data-v-4f195c52]{margin-top:20px}.page-container .system[data-v-4f195c52]{margin-top:24px}@keyframes bganimation-4f195c52{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4f195c52{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4f195c52{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4f195c52]{animation:rotateEnter-4f195c52 .7s;position:relative}.rotate-leave-active[data-v-4f195c52]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4f195c52]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1300px){.page-container .other-container[data-v-4f195c52]{width:100%;margin-top:16px}.page-container .other-container .grid-container[data-v-4f195c52]{flex-direction:column;gap:12px}.page-container .other-container .grid-container .grid-item[data-v-4f195c52]{border-radius:6px}}@keyframes bganimation-4f195c52{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4f195c52{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4f195c52{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4f195c52]{animation:rotateEnter-4f195c52 .7s;position:relative}.rotate-leave-active[data-v-4f195c52]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4f195c52]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){.page-container .card-container[data-v-4f195c52]{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;gap:16px;scrollbar-width:none;-ms-overflow-style:none}.page-container .card-container>*[data-v-4f195c52]{flex:0 0 auto;min-width:280px}.page-container .card-container[data-v-4f195c52]::-webkit-scrollbar{display:none}.page-container .network-container[data-v-4f195c52]{flex-direction:column;margin-top:10px;gap:10px}.page-container .network-container .right-box[data-v-4f195c52]{flex:none;width:100%}.page-container .other-container[data-v-4f195c52]{width:100%;margin-top:16px}.page-container .other-container .grid-container[data-v-4f195c52]{flex-direction:column;gap:12px}.page-container .other-container .grid-container .grid-item[data-v-4f195c52]{border-radius:6px}}@keyframes bganimation-0b149a51{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0b149a51{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0b149a51{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0b149a51]{animation:rotateEnter-0b149a51 .7s;position:relative}.rotate-leave-active[data-v-0b149a51]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0b149a51]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-0b149a51]{width:100%;padding:1rem;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;align-content:center;max-width:800px;height:100vh;overflow:overlay}#page .title[data-v-0b149a51]{width:100%;display:block;text-align:center;font-size:32px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#000c;line-height:45px}#page .desc[data-v-0b149a51]{width:100%;display:block;font-size:24px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#0009;line-height:33px;text-align:center;margin-top:10px}#page div.info[data-v-0b149a51]{width:100%;display:block;font-size:1.6em;font-size:16px;margin-left:34px}#page .network-containers[data-v-0b149a51]{width:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;margin:3rem 0 1rem}#page .network-containers .network-container_item[data-v-0b149a51]{flex:0 0 100%;position:relative;border-radius:4px;padding:10px;cursor:pointer;max-width:240px;width:240px;height:308px}#page .network-containers .network-container_item a[data-v-0b149a51]{position:relative;display:block;width:100%}#page .network-containers .network-container_item a .cover[data-v-0b149a51]{position:relative;padding-top:130%;z-index:1}#page .network-containers .network-container_item a .cover .thumbnail[data-v-0b149a51]{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:8px;overflow:hidden;z-index:1;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;background-color:#2dc8fd}#page .network-containers .network-container_item a .cover .thumbnail i[data-v-0b149a51]{display:block;font-size:100px;color:#eee}#page .network-containers .network-container_item a .cover .thumbnail span[data-v-0b149a51]{display:block;text-align:center;width:100%;color:#eeee;font-size:2em;line-height:1.5;font-size:22px;font-family:PingFangSC-Semibold,PingFang SC;color:#fff;line-height:40px}#page .network-containers .network-container_item:nth-child(9n+1) a .cover .thumbnail[data-v-0b149a51]{background:linear-gradient(138deg,#FF6E6B 0%,#FF6966 100%)}#page .network-containers .network-container_item:nth-child(9n+2) a .cover .thumbnail[data-v-0b149a51]{background:linear-gradient(145deg,#37D5A9 0%,#42D8B0 100%)}#page .network-containers .network-container_item:nth-child(9n+3) a .cover .thumbnail[data-v-0b149a51]{background:linear-gradient(145deg,#549AFF 0%,#2C82FF 100%)}#page .network-containers .network-container_item:nth-child(9n+4) a .cover .thumbnail[data-v-0b149a51]{background-color:#9b58de}#page .network-containers .network-container_item:nth-child(9n+5) a .cover .thumbnail[data-v-0b149a51]{background-color:#297ff3}#page .network-containers .network-container_item:nth-child(9n+6) a .cover .thumbnail[data-v-0b149a51]{background-color:#27aa8f}#page .network-containers .network-container_item:nth-child(9n+7) a .cover .thumbnail[data-v-0b149a51]{background-color:#f15a4a}#page .network-containers .network-container_item:nth-child(9n+8) a .cover .thumbnail[data-v-0b149a51]{background-color:#439c07}@keyframes bganimation-0b149a51{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0b149a51{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0b149a51{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0b149a51]{animation:rotateEnter-0b149a51 .7s;position:relative}.rotate-leave-active[data-v-0b149a51]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0b149a51]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-f442676c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f442676c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f442676c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f442676c]{animation:rotateEnter-f442676c .7s;position:relative}.rotate-leave-active[data-v-f442676c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f442676c]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-f442676c]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-f442676c]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-f442676c]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-f442676c]{margin:.5rem 0}#page .network-message li[data-v-f442676c]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-f442676c]{color:red}#page .network-message li a[data-v-f442676c]{color:#00f}#page form[data-v-f442676c]{display:block;width:100%;margin:3rem 0}#page form label[data-v-f442676c]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-f442676c]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-f442676c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-f442676c]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-f442676c]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-f442676c]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-f442676c]{margin-left:10px;user-select:none}#page .msg[data-v-f442676c]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page .btns[data-v-f442676c]{width:100%;margin-top:3rem}#page .btns button[data-v-f442676c]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-162eca5f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-162eca5f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-162eca5f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-162eca5f]{animation:rotateEnter-162eca5f .7s;position:relative}.rotate-leave-active[data-v-162eca5f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-162eca5f]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-162eca5f]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-162eca5f]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-162eca5f]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-162eca5f]{margin:.5rem 0}#page .network-message li[data-v-162eca5f]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-162eca5f]{color:red}#page .network-message li a[data-v-162eca5f]{color:#00f}#page form[data-v-162eca5f]{display:block;width:100%;margin:3rem 0}#page form label[data-v-162eca5f]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-162eca5f]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-162eca5f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-162eca5f]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-162eca5f],#page form label select[data-v-162eca5f]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-162eca5f]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-162eca5f]{margin-left:10px;user-select:none}#page .msgs[data-v-162eca5f]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-162eca5f]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-162eca5f]{width:100%;margin-top:3rem}#page .btns button[data-v-162eca5f]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-2dee59a8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2dee59a8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2dee59a8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2dee59a8]{animation:rotateEnter-2dee59a8 .7s;position:relative}.rotate-leave-active[data-v-2dee59a8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2dee59a8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page[data-v-2dee59a8]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-2dee59a8]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-2dee59a8]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page code[data-v-2dee59a8]{background-color:#eee;display:block;width:100%;font-size:1.3em;padding:1rem;line-height:2;margin:2rem 0}#page div.info[data-v-2dee59a8]{width:100%;display:block;margin:1rem 0;font-size:1.3em;text-align:left}#page .msgs[data-v-2dee59a8]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-2dee59a8]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-2dee59a8]{width:100%;display:block;margin-top:3rem}#page .btns button[data-v-2dee59a8]{display:block;width:100%!important;margin:.5rem 0}#page form[data-v-2dee59a8]{display:block;width:100%;margin:3rem 0}#page form label[data-v-2dee59a8]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-2dee59a8]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-2dee59a8]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-2dee59a8]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-2dee59a8],#page form label select[data-v-2dee59a8]{width:100%;display:block;height:42px}.switch_inline[data-v-2dee59a8]{height:1em;font-size:1.3em}.switch_inline .switch_info[data-v-2dee59a8]{margin-left:10px;user-select:none}@keyframes bganimation-77451104{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-77451104{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-77451104{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-77451104]{animation:rotateEnter-77451104 .7s;position:relative}.rotate-leave-active[data-v-77451104]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-77451104]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}p[data-v-77451104]{line-height:22px;font-size:14px}.label-item[data-v-77451104]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-77451104]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-77451104]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-77451104]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-77451104]{width:100%;margin:10px 0}.label-item .label-item_value select[data-v-77451104],.label-item .label-item_value input[data-v-77451104]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value input[data-v-77451104]::placeholder{color:#999;font-size:12PX}.label-item .label-item_value label[data-v-77451104]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=checkbox][data-v-77451104]{top:0}.label-item .label-item_tips[data-v-77451104]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-77451104]{vertical-align:top}span.msg-warning[data-v-77451104]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}.label-message[data-v-77451104]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-container_body.setup-loading[data-v-77451104]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-loading span[data-v-77451104]{width:100%;display:block;font-size:1.2em;margin-top:1rem;color:#666}.actioner-container_body.setup-error[data-v-77451104]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-error svg.icon[data-v-77451104]{width:100px;height:100px}.actioner-container_body.setup-error span[data-v-77451104]{width:100%;display:block;font-size:1.4em;color:#ff6b6b}.actioner-container_body.setup-success[data-v-77451104]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body.setup-success svg.icon[data-v-77451104]{width:100px;height:100px}.actioner-container_body.setup-success .body-title[data-v-77451104]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body.setup-success .body-tips[data-v-77451104]{text-align:center}.actioner-container_body.setup-success .body-info[data-v-77451104]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body.setup-success .body-info span[data-v-77451104]{display:block}.actioner-container_body.setup-success .body-tips[data-v-77451104]{margin:1rem 0;display:block;width:100%}.actioner-container_body.setup-success .body-btns[data-v-77451104]{width:100%;margin-top:3rem}.actioner-container_body.setup-success .body-btns button[data-v-77451104]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-5ec616d8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5ec616d8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5ec616d8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5ec616d8]{animation:rotateEnter-5ec616d8 .7s;position:relative}.rotate-leave-active[data-v-5ec616d8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5ec616d8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-5ec616d8]{display:block;width:100%;height:100%;border:none;resize:none}@keyframes bganimation-70cb932e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-70cb932e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-70cb932e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-70cb932e]{animation:rotateEnter-70cb932e .7s;position:relative}.rotate-leave-active[data-v-70cb932e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-70cb932e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-70cb932e]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-70cb932e]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-70cb932e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-70cb932e]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-70cb932e]{width:100%}.label-item .label-item_value select[data-v-70cb932e]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-70cb932e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-70cb932e]{top:0;margin:0}.label-item .label-item_tips[data-v-70cb932e]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-70cb932e]{vertical-align:top}span.msg-warning[data-v-70cb932e]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-56c0f6fb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-56c0f6fb{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-56c0f6fb{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-56c0f6fb]{animation:rotateEnter-56c0f6fb .7s;position:relative}.rotate-leave-active[data-v-56c0f6fb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-56c0f6fb]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-56c0f6fb]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-56c0f6fb]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-56c0f6fb]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-56c0f6fb]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-56c0f6fb]{width:100%}.label-item .label-item_value select[data-v-56c0f6fb]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-56c0f6fb]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-56c0f6fb]{top:0;margin:0}.label-item .label-item_tips[data-v-56c0f6fb]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-56c0f6fb]{vertical-align:top}span.msg-warning[data-v-56c0f6fb]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-0586260e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0586260e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0586260e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0586260e]{animation:rotateEnter-0586260e .7s;position:relative}.rotate-leave-active[data-v-0586260e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0586260e]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-0586260e]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-0586260e]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-0586260e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-0586260e]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-0586260e]{width:100%}.label-item .label-item_value select[data-v-0586260e]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-0586260e]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-0586260e]{top:0;margin:0}.label-item .label-item_tips[data-v-0586260e]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-0586260e]{vertical-align:top}span.msg-warning[data-v-0586260e]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-e20ba082{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-e20ba082{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-e20ba082{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-e20ba082]{animation:rotateEnter-e20ba082 .7s;position:relative}.rotate-leave-active[data-v-e20ba082]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-e20ba082]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-e20ba082]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-e20ba082] .actioner-container{width:100%}.action-main[data-v-e20ba082] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-e20ba082] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-e20ba082] .actioner-container .actioner-container_body{padding:20px;width:100%;height:400px}@keyframes bganimation-e20ba082{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-e20ba082{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-e20ba082{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-e20ba082]{animation:rotateEnter-e20ba082 .7s;position:relative}.rotate-leave-active[data-v-e20ba082]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-e20ba082]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-e20ba082]{width:90%}}@keyframes bganimation-f1411b40{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f1411b40{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f1411b40{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f1411b40]{animation:rotateEnter-f1411b40 .7s;position:relative}.rotate-leave-active[data-v-f1411b40]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f1411b40]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.cbi-map-descr[data-v-f1411b40]{margin-bottom:32px}.item-status[data-v-f1411b40]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.item-status-detail[data-v-f1411b40]{text-decoration:underline;cursor:help}@keyframes bganimation-2b6b4ef9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2b6b4ef9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2b6b4ef9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2b6b4ef9]{animation:rotateEnter-2b6b4ef9 .7s;position:relative}.rotate-leave-active[data-v-2b6b4ef9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2b6b4ef9]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}#page .cbi-map-descr[data-v-2b6b4ef9]{margin-bottom:1rem}#page[data-v-2b6b4ef9] .cbi-section{padding:1rem}#page[data-v-2b6b4ef9] span.cbi-page-actions.control-group{width:100%;display:block}@keyframes bganimation-f3b0d6f0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f3b0d6f0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f3b0d6f0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f3b0d6f0]{animation:rotateEnter-f3b0d6f0 .7s;position:relative}.rotate-leave-active[data-v-f3b0d6f0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f3b0d6f0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-f3b0d6f0]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-f3b0d6f0] .actioner-container{width:100%}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:16px;border-bottom:1px solid #eee;justify-content:flex-start;padding:0 1rem;color:#525f7f}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem;padding:0;border:none}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_body{padding:20px;width:100%;min-height:400px}.action-main[data-v-f3b0d6f0] .actioner-container .actioner-container_body label.cbi-value-title{width:150px!important}@keyframes bganimation-f3b0d6f0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f3b0d6f0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f3b0d6f0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f3b0d6f0]{animation:rotateEnter-f3b0d6f0 .7s;position:relative}.rotate-leave-active[data-v-f3b0d6f0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f3b0d6f0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-f3b0d6f0]{width:90%}}@keyframes bganimation-abf07ee0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-abf07ee0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-abf07ee0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-abf07ee0]{animation:rotateEnter-abf07ee0 .7s;position:relative}.rotate-leave-active[data-v-abf07ee0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-abf07ee0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-abf07ee0]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-4a646cde{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4a646cde{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4a646cde{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4a646cde]{animation:rotateEnter-4a646cde .7s;position:relative}.rotate-leave-active[data-v-4a646cde]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4a646cde]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-4a646cde]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-997c3dee{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-997c3dee{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-997c3dee{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-997c3dee]{animation:rotateEnter-997c3dee .7s;position:relative}.rotate-leave-active[data-v-997c3dee]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-997c3dee]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-997c3dee]{display:block;width:100%;height:500px;padding:1rem;font-size:14px;resize:none;border:1px solid #999;border-radius:3px}@keyframes bganimation-17b89cb7{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-17b89cb7{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-17b89cb7{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-17b89cb7]{animation:rotateEnter-17b89cb7 .7s;position:relative}.rotate-leave-active[data-v-17b89cb7]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-17b89cb7]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.app-container_status-label_bg[data-v-17b89cb7]{flex:0 0 230px;width:230px;height:80px;display:flex;background:var(--app-container_status-label_bg);align-items:center;padding:10px;margin-right:10px;transition:.3s}.app-container_status-label_bg .app-container_status-label_text[data-v-17b89cb7]{margin-left:6px;font-size:14px;line-height:22px;text-align:left}.app-container_status-label_bg .app-container_status-label_text .text_status[data-v-17b89cb7]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_style[data-v-17b89cb7]{margin:6px 0}.app-container_status-label_bg .app-container_status-label_text .text_style.close[data-v-17b89cb7]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_info[data-v-17b89cb7]{font-weight:700;font-size:14px}@keyframes bganimation-6f6071af{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f6071af{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f6071af{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f6071af]{animation:rotateEnter-6f6071af .7s;position:relative}.rotate-leave-active[data-v-6f6071af]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f6071af]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-6f6071af]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-6f6071af]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-6f6071af]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-6f6071af]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-6f6071af]{width:100%;font-size:16px;color:#666;margin-bottom:10px}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-6f6071af]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-6f6071af]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-6f6071af]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-6f6071af],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-6f6071af]{width:100%;min-height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-6f6071af]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-6f6071af]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-6f6071af]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-6f6071af]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-6f6071af{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f6071af{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f6071af{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f6071af]{animation:rotateEnter-6f6071af .7s;position:relative}.rotate-leave-active[data-v-6f6071af]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f6071af]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-6f6071af]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-6f6071af]{width:100%}}@keyframes bganimation-4ec945e0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4ec945e0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4ec945e0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4ec945e0]{animation:rotateEnter-4ec945e0 .7s;position:relative}.rotate-leave-active[data-v-4ec945e0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4ec945e0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-4ec945e0] .app-container_status-label_bg{margin:8px 0;flex:0 0 170px;height:80px;justify-content:start}[data-v-4ec945e0] .interface-device-flex{justify-content:start}.container[data-v-4ec945e0]{width:100%;overflow-x:auto}.container .table-wrapper[data-v-4ec945e0]{min-width:1280px;width:max-content}.container .table-wrapper .table-body[data-v-4ec945e0]{display:flex;flex-direction:column;min-width:100%}.container .table-wrapper .table-header[data-v-4ec945e0]{display:flex;border-bottom:2px solid #e5e7eb;background-color:#f8fafc;padding-left:10px}.container .table-wrapper .table-row[data-v-4ec945e0]{display:flex;min-width:100%;align-items:center;border-bottom:1px solid #e5e7eb;transition:background-color .2s}.container .table-wrapper .table-row[data-v-4ec945e0]:hover{background-color:#f3f4f6}.container .table-wrapper .add-row[data-v-4ec945e0]{cursor:pointer}.container .table-wrapper .add-row[data-v-4ec945e0]:hover{background-color:#f0f9ff}.container .table-wrapper .table-cell[data-v-4ec945e0]{padding:12px 16px;box-sizing:border-box;display:flex;justify-content:center}.container .table-wrapper .device-col[data-v-4ec945e0]{flex:0 0 200px;min-width:200px}.container .table-wrapper .spacer-col[data-v-4ec945e0]:first-of-type{flex:0 0 10px}.container .table-wrapper .spacer-col[data-v-4ec945e0]:last-of-type{flex:0 0 32px}.container .table-wrapper .name-col[data-v-4ec945e0]{flex:0 0 150px;min-width:150px;text-align:left}.container .table-wrapper .action-col[data-v-4ec945e0]{flex:0 0 auto;text-align:right;min-width:160px}.container .table-wrapper .icon[data-v-4ec945e0]{width:48px;height:100%;cursor:pointer}.container .table-wrapper .interface-device-flex[data-v-4ec945e0]{display:flex;justify-content:center;width:100%}.container .cbi-page-actions[data-v-4ec945e0]{margin-top:20px;display:flex;justify-content:flex-end}@media (max-width: 768px){.container[data-v-4ec945e0] .app-container_status-label_bg{margin:8px 0;flex:0 0 80px;width:120px;height:80px;justify-content:start}.container .table-wrapper[data-v-4ec945e0]{min-width:100%}.container .table-cell[data-v-4ec945e0]{padding:8px 12px}.container .device-col[data-v-4ec945e0]{flex:0 0 120px!important;min-width:120px!important;margin-right:16px}.container .name-col[data-v-4ec945e0]{flex:0 0 80px!important;min-width:80px!important}.container .action-col[data-v-4ec945e0]{min-width:120px}.container .interface-device-flex[data-v-4ec945e0]{flex-direction:column;gap:4px}}tr>td,tr>th,.tr>.td,.tr>.th,.cbi-section-table-row:before,#cbi-wireless>#wifi_assoclist_table>.tr:nth-child(2){border:none}@keyframes bganimation-2c8ecf89{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2c8ecf89{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2c8ecf89{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2c8ecf89]{animation:rotateEnter-2c8ecf89 .7s;position:relative}.rotate-leave-active[data-v-2c8ecf89]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2c8ecf89]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.custom-table-container[data-v-2c8ecf89]{width:100%;font-size:14px;color:var(--flow-span-color)}.custom-table-container input[data-v-2c8ecf89]{margin:0}.custom-table-container .custom-table-wrapper[data-v-2c8ecf89]{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.custom-table-container .custom-table[data-v-2c8ecf89]{width:100%;border-collapse:collapse;table-layout:auto}.custom-table-container .custom-table thead[data-v-2c8ecf89]{border-radius:8px!important;background:#F8F8F8}.custom-table-container .custom-table thead tr th[data-v-2c8ecf89]{color:var(--flow-span-color)!important;font-weight:500!important;border:none!important;padding:18px 8px!important;white-space:nowrap}.custom-table-container .custom-table tbody tr[data-v-2c8ecf89]{background:transparent;border-bottom:1px solid #f8f8f8!important}.custom-table-container .custom-table tbody tr[data-v-2c8ecf89]:last-child{border-bottom:none!important}.custom-table-container .custom-table tbody tr td[data-v-2c8ecf89]{padding:24px 8px!important;white-space:nowrap}.custom-table-container .custom-table tbody tr:hover td[data-v-2c8ecf89]{background-color:#00000005!important}.custom-table-container .custom-table tbody tr.empty-row td[data-v-2c8ecf89]{text-align:center!important;padding:30px 0!important;color:#c98d8d66!important;border-bottom:none!important}.custom-table-container .custom-table .selection-header[data-v-2c8ecf89],.custom-table-container .custom-table .selection-cell[data-v-2c8ecf89]{width:50px!important;min-width:50px!important;text-align:center!important}.custom-table-container .pagination-wrapper[data-v-2c8ecf89]{display:flex;justify-content:space-between;align-items:center;margin-top:16px;padding:0 8px}.custom-table-container .pagination-wrapper .pagination-info[data-v-2c8ecf89]{color:#0009;font-size:13px}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]{min-width:32px;height:32px;margin:0 4px;padding:0 8px;background:#fff;color:#000000a6;cursor:pointer;transition:all .3s}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]:hover:not(:disabled){color:#1890ff;border-color:#1890ff}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]:disabled{color:#00000040;background-color:#f5f5f5;border-color:#d9d9d9;cursor:not-allowed}.custom-table-container .pagination-wrapper .pagination-controls button.active[data-v-2c8ecf89]{color:#fff;background-color:#1890ff;border-color:#1890ff}@media (max-width: 768px){.custom-table-container .custom-table thead tr th[data-v-2c8ecf89]{padding:8px 4px!important;font-size:13px!important}.custom-table-container .custom-table tbody tr td[data-v-2c8ecf89]{padding:12px 4px!important;font-size:13px!important}.custom-table-container .pagination-wrapper[data-v-2c8ecf89]{flex-direction:column;align-items:flex-start;gap:12px}.custom-table-container .pagination-wrapper .pagination-controls[data-v-2c8ecf89]{display:flex;flex-wrap:wrap;gap:4px}.custom-table-container .pagination-wrapper .pagination-controls button[data-v-2c8ecf89]{min-width:28px;height:28px;margin:0;padding:0 6px;font-size:13px}}@keyframes bganimation-d28f7d82{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d28f7d82{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d28f7d82{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d28f7d82]{animation:rotateEnter-d28f7d82 .7s;position:relative}.rotate-leave-active[data-v-d28f7d82]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d28f7d82]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.del-button[data-v-d28f7d82]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:8px 15px;font-size:14px;border-radius:4px}.add-button--danger[data-v-d28f7d82]{color:#fff;background-color:#553afe;border-color:#553afe}.add-button--danger[data-v-d28f7d82]:hover{background:#5c44f8;border-color:#5c44f8;color:#fff}.add-button--danger[data-v-d28f7d82]:active{background:#553AFE;border-color:#553afe;color:#fff}.add-button.is-disabled[data-v-d28f7d82]{opacity:.5;cursor:not-allowed}.del-button--danger[data-v-d28f7d82]{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.del-button--danger[data-v-d28f7d82]:hover{background:#f78989;border-color:#f78989;color:#fff}.del-button--danger[data-v-d28f7d82]:active{background:#dd6161;border-color:#dd6161;color:#fff}.del-button.is-disabled[data-v-d28f7d82]{opacity:.5;cursor:not-allowed}.search_box[data-v-d28f7d82]{width:350px}.search_box .search_container[data-v-d28f7d82]{display:flex;align-items:center;gap:8px}.search_box .search_container .search_input_wrapper[data-v-d28f7d82]{position:relative;flex-grow:1}.search_box .search_container .search_input_wrapper .search_icon[data-v-d28f7d82]{position:absolute;right:10px;top:50%;transform:translateY(-50%);fill:#000c;cursor:pointer}.search_box .search_container .search_input_wrapper .search_input[data-v-d28f7d82]{width:100%;padding:4px 35px 4px 12px;border-radius:4px;border:1px solid rgba(0,0,0,.6);font-size:14px;outline:none;transition:border-color .3s;color:#222;background:transparent}.search_box .search_container .search_input_wrapper .search_input[data-v-d28f7d82]:focus{border-color:#4a90e2}.search_box .search_container .refresh_button[data-v-d28f7d82]{background:none;border:none;cursor:pointer;padding:8px;border-radius:50%;transition:background-color .3s;display:flex;align-items:center;justify-content:center}.search_box .search_container .refresh_button[data-v-d28f7d82]:hover{background-color:#f0f0f0}.search_box .search_container .refresh_button .refresh_icon[data-v-d28f7d82]{fill:#000c;transition:transform .3s}.search_box .search_container .refresh_button.rotate .refresh_icon[data-v-d28f7d82]{animation:spin-d28f7d82 1s linear infinite}@keyframes spin-d28f7d82{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes bganimation-d28f7d82{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d28f7d82{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d28f7d82{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d28f7d82]{animation:rotateEnter-d28f7d82 .7s;position:relative}.rotate-leave-active[data-v-d28f7d82]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d28f7d82]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media (max-width: 827px){.search_box[data-v-d28f7d82]{width:80%}.del-button[data-v-d28f7d82]{padding:6px 8px}}@keyframes bganimation-9ce78472{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9ce78472{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9ce78472{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9ce78472]{animation:rotateEnter-9ce78472 .7s;position:relative}.rotate-leave-active[data-v-9ce78472]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9ce78472]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.switch[data-v-9ce78472]{display:inline-flex;align-items:center;position:relative;font-size:14px;height:20px}.switch.is-disabled[data-v-9ce78472]{opacity:.6;cursor:not-allowed}.switch.is-disabled .switch__core[data-v-9ce78472]{cursor:not-allowed}.switch__input[data-v-9ce78472]{position:absolute;width:0;height:0;opacity:0;margin:0;z-index:-1}.switch__core[data-v-9ce78472]{margin:0;display:inline-block;position:relative;width:40px;height:20px;border:1px solid;outline:none;border-radius:10px;box-sizing:border-box;cursor:pointer;transition:border-color .3s,background-color .3s}.switch__button[data-v-9ce78472]{position:absolute;top:1px;left:1px;border-radius:100%;transition:all .3s;width:16px;height:16px;background-color:#fff;box-shadow:0 1px 2px #0003}.switch.is-checked .switch__button[data-v-9ce78472]{transform:translate(20px)}@keyframes bganimation-529a02b0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-529a02b0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-529a02b0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-529a02b0]{animation:rotateEnter-529a02b0 .7s;position:relative}.rotate-leave-active[data-v-529a02b0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-529a02b0]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.flow[data-v-529a02b0]{position:relative;height:260px}.flow .echart[data-v-529a02b0]{width:100%;height:100%}.flow .flow-data[data-v-529a02b0]{position:absolute;right:10px;top:10px}.flow .flow-data span[data-v-529a02b0]{display:block;color:var(--flow-span-color);font-size:12px;margin-bottom:5px;font-weight:600;font-family:PingFangSC-Semibold,PingFang SC}@media screen and (max-width: 600px){.flow[data-v-529a02b0]{height:55vw}}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.modal-overlay{position:fixed;inset:0;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:999;backdrop-filter:blur(2px)}.modal-container{background-color:#fff;border-radius:8px;box-shadow:0 4px 20px #00000026;width:90%;max-width:var(--1df87c10);max-height:90vh;display:flex;flex-direction:column;overflow:hidden}.modal-container .modal-header{padding:8px 12px;border-bottom:1px solid #f0f0f0;display:flex;justify-content:space-between;align-items:center}.modal-container .modal-header .modal-title{margin:0;font-size:18px;color:#333;padding:0;text-align:center;background:transparent!important}.modal-container .modal-header .modal-close{background:none;border:none;font-size:24px;cursor:pointer;color:#999;transition:color .2s}.modal-container .modal-header .modal-close:hover{color:#666}.modal-container .modal-content{padding:18px;overflow-y:auto;flex:1}.modal-container .modal-footer{padding:8px 12px;border-top:1px solid #f0f0f0;display:flex;justify-content:flex-end;gap:12px}.modal-container .modal-footer .modal-button{padding:4px 16px;border-radius:4px;font-size:14px;cursor:pointer;transition:all .2s;border:1px solid transparent}.modal-container .modal-footer .modal-button.cancel{background-color:#fff;border-color:#ddd;color:#666}.modal-container .modal-footer .modal-button.cancel:hover{background-color:#f5f5f5}.modal-container .modal-footer .modal-button.confirm{background-color:#553afe;color:#fff}.modal-container .modal-footer .modal-button.confirm:hover{background-color:#3f21fe}@media (max-width: 768px){.modal-container{width:95%;max-width:none;max-height:90vh;margin:0 10px}.modal-container .modal-header{padding:12px 16px}.modal-container .modal-header .modal-title{font-size:16px;background:transparent!important}.modal-container .modal-header .modal-close{font-size:20px}.modal-container .modal-content{padding:16px}.modal-container .modal-footer{padding:12px 16px;flex-direction:column-reverse;gap:8px}.modal-container .modal-footer .modal-button{width:100%;padding:10px;font-size:15px}}.fade-enter-active,.fade-leave-active{transition:opacity .3s ease}.fade-enter-from,.fade-leave-to{opacity:0}.slide-enter-active,.slide-leave-active{transition:transform .3s ease,opacity .3s ease}.slide-enter-from,.slide-leave-to{transform:translateY(-20px);opacity:0}@keyframes bganimation-2f8a90b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2f8a90b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2f8a90b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2f8a90b2]{animation:rotateEnter-2f8a90b2 .7s;position:relative}.rotate-leave-active[data-v-2f8a90b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2f8a90b2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}[data-v-2f8a90b2] .tag-input{padding:4px 12px}.custom-content[data-v-2f8a90b2]{position:relative}.custom-content .img_box[data-v-2f8a90b2]{position:absolute;right:0;top:0;width:100px;height:100px}.custom-content .img_box>img[data-v-2f8a90b2]{width:100%;height:100%}.custom-content .IP_address[data-v-2f8a90b2]{text-align:center;padding:14px 16px;background:rgba(85,58,254,.1);border-radius:8px;margin-bottom:16px}.custom-content .tip[data-v-2f8a90b2]{text-align:center;margin-top:16px;font-size:12px}.custom-content .item_box[data-v-2f8a90b2]{margin-top:12px;display:flex;align-items:center}.custom-content .item_box>input[data-v-2f8a90b2]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>input[data-v-2f8a90b2]::placeholder{color:#8898aa}.custom-content .item_box>select[data-v-2f8a90b2]{width:45%;background:transparent!important;color:var(--card-box-shadow)}.custom-content .item_box>select>option[data-v-2f8a90b2]{padding:4px 12px!important}.custom-content .item_box .item_left[data-v-2f8a90b2]{width:140px;text-align:right}.info-content[data-v-2f8a90b2]{display:flex}.info-content .img_box[data-v-2f8a90b2]{position:relative}.info-content .item_box .item_left[data-v-2f8a90b2]{width:100px}@keyframes bganimation-2f8a90b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2f8a90b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2f8a90b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2f8a90b2]{animation:rotateEnter-2f8a90b2 .7s;position:relative}.rotate-leave-active[data-v-2f8a90b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2f8a90b2]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-0ad740fc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ad740fc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ad740fc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ad740fc]{animation:rotateEnter-0ad740fc .7s;position:relative}.rotate-leave-active[data-v-0ad740fc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ad740fc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.custom-content[data-v-0ad740fc]{position:relative}.custom-content .img_box[data-v-0ad740fc]{position:absolute;right:0;top:0;width:100px;height:100px}.custom-content .img_box>img[data-v-0ad740fc]{width:100%;height:100%}.custom-content .IP_address[data-v-0ad740fc]{text-align:center;padding:14px 16px;background:rgba(85,58,254,.1);border-radius:8px;margin-bottom:16px}.custom-content .tip[data-v-0ad740fc]{text-align:center;margin-top:16px;font-size:12px}.custom-content .item_box[data-v-0ad740fc]{margin-top:12px;display:flex;align-items:center}.custom-content .item_box>input[data-v-0ad740fc]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>input[data-v-0ad740fc]::placeholder{color:#8898aa}.custom-content .item_box>select[data-v-0ad740fc]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>select>option[data-v-0ad740fc]{padding:4px 12px!important}.custom-content .item_box .item_left[data-v-0ad740fc]{width:140px;text-align:right}.del-button[data-v-0ad740fc]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:6px 10px;font-size:14px;border-radius:4px}.del-button--danger[data-v-0ad740fc]{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.del-button--danger[data-v-0ad740fc]:hover{background:#f78989;border-color:#f78989;color:#fff}.del-button--danger[data-v-0ad740fc]:active{background:#dd6161;border-color:#dd6161;color:#fff}.del-button.is-disabled[data-v-0ad740fc]{opacity:.5;cursor:not-allowed}@keyframes bganimation-0ad740fc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ad740fc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ad740fc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ad740fc]{animation:rotateEnter-0ad740fc .7s;position:relative}.rotate-leave-active[data-v-0ad740fc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ad740fc]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-1c110960{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c110960{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1c110960{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1c110960]{animation:rotateEnter-1c110960 .7s;position:relative}.rotate-leave-active[data-v-1c110960]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c110960]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.custom-content[data-v-1c110960]{position:relative}.custom-content .img_box[data-v-1c110960]{position:absolute;right:0;top:0;width:100px;height:100px}.custom-content .img_box>img[data-v-1c110960]{width:100%;height:100%}.custom-content .IP_address[data-v-1c110960]{text-align:center;padding:14px 16px;background:rgba(85,58,254,.1);border-radius:8px;margin-bottom:16px}.custom-content .tip[data-v-1c110960]{text-align:center;margin-top:16px;font-size:12px}.custom-content .item_box[data-v-1c110960]{margin-top:12px;display:flex;align-items:center}.custom-content .item_box>input[data-v-1c110960]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>input[data-v-1c110960]::placeholder{color:#8898aa}.custom-content .item_box>select[data-v-1c110960]{width:45%;color:var(--card-box-shadow);background:transparent!important}.custom-content .item_box>select>option[data-v-1c110960]{padding:4px 12px!important}.custom-content .item_box .item_left[data-v-1c110960]{width:140px;text-align:right}.del-button[data-v-1c110960]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:6px 10px;font-size:14px;border-radius:4px}.del-button--danger[data-v-1c110960]{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.del-button--danger[data-v-1c110960]:hover{background:#f78989;border-color:#f78989;color:#fff}.del-button--danger[data-v-1c110960]:active{background:#dd6161;border-color:#dd6161;color:#fff}.del-button.is-disabled[data-v-1c110960]{opacity:.5;cursor:not-allowed}@keyframes bganimation-1c110960{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c110960{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1c110960{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1c110960]{animation:rotateEnter-1c110960 .7s;position:relative}.rotate-leave-active[data-v-1c110960]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c110960]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-15068472{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-15068472{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-15068472{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-15068472]{animation:rotateEnter-15068472 .7s;position:relative}.rotate-leave-active[data-v-15068472]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-15068472]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.dialog-overlay[data-v-15068472]{position:fixed;inset:0;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:1000;padding:16px}.dialog-container[data-v-15068472]{background-color:#fff;border-radius:12px;padding:16px;width:100%;max-width:400px;box-shadow:0 4px 12px #00000026}.dialog-container .dialog-title[data-v-15068472]{margin:0 0 20px;font-size:1.2rem;font-weight:500;color:#333;text-align:left}.dialog-container .dialog-message[data-v-15068472]{margin:20px 0;font-size:1rem;color:#666;text-align:center}.dialog-container .loading-animation[data-v-15068472]{margin:20px 0}.dialog-container .loading-animation .spinner[data-v-15068472]{width:40px;height:40px;margin:0 auto;border:4px solid rgba(110,72,170,.2);border-radius:50%;border-top-color:#8d78fa;animation:spin-15068472 1s linear infinite}.dialog-container .dialog-button[data-v-15068472]{background-color:#553afe;color:#fff;border:none;border-radius:6px;padding:4px 20px;font-size:1rem;cursor:pointer;transition:all .2s;margin:0 auto;display:block}.dialog-container .dialog-button[data-v-15068472]:hover{background-color:#553afe;opacity:.9}.dialog-container .dialog-button[data-v-15068472]:active{transform:scale(.98)}.dialog-container .warning-message[data-v-15068472]{display:flex;gap:8px;background-color:#fff8e1;border-left:4px solid #FFC107;padding:12px;margin-bottom:20px;border-radius:4px;font-size:.9rem;color:#333;text-align:left}.dialog-container .warning-message .warning-icon[data-v-15068472]{flex-shrink:0;width:20px;height:20px;color:#ffa000}.dialog-container .input-group[data-v-15068472]{margin-bottom:16px;text-align:left}.dialog-container .input-group label[data-v-15068472]{display:block;margin-bottom:8px;font-size:.95rem;color:#333}.dialog-container .input-group .tag-input[data-v-15068472]{width:100%;padding:10px 12px;border:1px solid #ddd;border-radius:6px;font-size:1rem;transition:border-color .2s}.dialog-container .input-group .tag-input[data-v-15068472]:focus{outline:none;border-color:#6e48aa}.dialog-container .button-group[data-v-15068472]{display:flex;justify-content:flex-end;gap:12px}.dialog-container .button-group .cancel-button[data-v-15068472]{background-color:#fff;color:#333;border:1px solid #ddd;border-radius:6px;padding:4px 20px;font-size:1rem;cursor:pointer;transition:all .2s}.dialog-container .button-group .cancel-button[data-v-15068472]:hover{background-color:#e0e0e0}.dialog-container .button-group .cancel-button[data-v-15068472]:active{transform:scale(.98)}.dialog-container .button-group .confirm-button[data-v-15068472]{background-color:#553afe;color:#fff;border:none;border-radius:6px;padding:4px 20px;font-size:1rem;cursor:pointer;transition:all .2s}.dialog-container .button-group .confirm-button[data-v-15068472]:hover{background-color:#553afe;opacity:.9}.dialog-container .button-group .confirm-button[data-v-15068472]:active{transform:scale(.98)}.tag-dialog[data-v-15068472]{max-width:500px}.fade-enter-active[data-v-15068472],.fade-leave-active[data-v-15068472]{transition:opacity .3s ease}.fade-enter-from[data-v-15068472],.fade-leave-to[data-v-15068472]{opacity:0}@keyframes spin-15068472{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes rotate-circle-15068472{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}to{transform:rotate(-405deg)}}@keyframes icon-line-tip-15068472{0%{width:0;left:1px;top:15px}54%{width:0;left:1px;top:15px}70%{width:40px;left:-6px;top:30px}84%{width:14px;left:17px;top:38px}to{width:12px;left:8px;top:22px}}@keyframes icon-line-long-15068472{0%{width:0;right:37px;top:43px}65%{width:0;right:37px;top:43px}84%{width:44px;right:0;top:28px}to{width:20px;right:8px;top:20px}}@media (max-width: 480px){.dialog-container[data-v-15068472]{padding:16px}.dialog-container .dialog-title[data-v-15068472]{font-size:1.1rem;margin-bottom:16px}.dialog-container .dialog-message[data-v-15068472]{font-size:.95rem;margin:16px 0}.dialog-container .warning-message[data-v-15068472]{font-size:.85rem;padding:10px}.dialog-container .input-group[data-v-15068472]{margin-bottom:20px}.dialog-container .input-group label[data-v-15068472]{font-size:.9rem}.dialog-container .input-group .tag-input[data-v-15068472]{padding:8px 10px;font-size:.95rem}.dialog-container .button-group[data-v-15068472]{gap:8px}.dialog-container .button-group .cancel-button[data-v-15068472],.dialog-container .button-group .confirm-button[data-v-15068472]{padding:4px 16px;font-size:.95rem}.dialog-container .loading-animation .spinner[data-v-15068472]{width:36px;height:36px}}@keyframes bganimation-66e54129{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-66e54129{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-66e54129{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-66e54129]{animation:rotateEnter-66e54129 .7s;position:relative}.rotate-leave-active[data-v-66e54129]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-66e54129]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.add-button[data-v-66e54129]{display:inline-flex;justify-content:center;align-items:center;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;text-align:center;box-sizing:border-box;outline:none;margin:0 8px 0 0;transition:all .1s;font-weight:500;user-select:none;padding:8px 12px;font-size:14px;border-radius:4px}.add-button--danger[data-v-66e54129]{color:#fff;background-color:#553afe;border-color:#553afe}.add-button--danger[data-v-66e54129]:hover{background:#5c44f8;border-color:#5c44f8;color:#fff}.add-button--danger[data-v-66e54129]:active{background:#553AFE;border-color:#553afe;color:#fff}.add-button.is-disabled[data-v-66e54129]{opacity:.5;cursor:not-allowed}.tab-container[data-v-66e54129]{display:flex;flex-direction:row;width:100%;margin:0 auto;border-radius:8px;overflow:hidden}@media (max-width: 768px){.tab-container[data-v-66e54129]{flex-direction:column}}.tab-header[data-v-66e54129]{display:flex;flex-direction:column;width:120px}@media (max-width: 768px){.tab-header[data-v-66e54129]{flex-direction:row;width:100%;overflow-x:auto;white-space:nowrap}}.tab-button[data-v-66e54129]{padding:12px 16px;text-align:left;border:none;background:transparent!important;cursor:pointer;font-size:14px;color:var(--flow-span-color);transition:all .3s ease;border-radius:8px 0 0 8px}.tab-button[data-v-66e54129]:hover{background:var(--tag-bg-color)!important}.tab-button.active[data-v-66e54129]{background:var(--tag-bg-color)!important;font-weight:500;margin:0}@media (max-width: 768px){.tab-button[data-v-66e54129]{border-radius:8px 8px 0 0;text-align:center;flex:1;min-width:max-content}.tab-button.active[data-v-66e54129]{border-radius:8px 8px 0 0}}.tab-content_g[data-v-66e54129]{flex:1;padding:20px;background:var(--tag-bg-color);border-radius:0 8px 8px 0;min-height:60vh}.tab-content_g .not_installed[data-v-66e54129]{display:flex;flex-direction:column;align-items:center}.tab-content_g .not_installed>span[data-v-66e54129]{color:var(--tit-color);margin:20px 0}.tab-content_g .not_installed .not_installed_btn[data-v-66e54129]{padding:6px 16px;background:#553AFE;border-radius:4px;font-size:14px;color:#fff;cursor:pointer}@media (max-width: 768px){.tab-content_g[data-v-66e54129]{border-radius:0 0 8px 8px}}.item_box[data-v-66e54129]{margin-top:12px;display:flex;align-items:center;color:var(--tit-color)!important}.item_box>input[data-v-66e54129]{width:40%;color:var(--card-box-shadow);background:transparent!important;color:var(--tit-color)!important}@media (max-width: 768px){.item_box>input[data-v-66e54129]{width:70%}}.item_box>input[data-v-66e54129]::placeholder{color:var(--item-label_key-span-color)}.item_box>select[data-v-66e54129]{background:transparent!important;width:40%;color:var(--card-box-shadow)}@media (max-width: 768px){.item_box>select[data-v-66e54129]{width:70%}}.item_box>select>option[data-v-66e54129]{padding:4px 12px!important}.item_box .item_left[data-v-66e54129]{width:140px;text-align:right}@media (max-width: 768px){.item_box .item_left[data-v-66e54129]{width:100px}}@keyframes bganimation-a5a78984{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a5a78984{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-a5a78984{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-a5a78984]{animation:rotateEnter-a5a78984 .7s;position:relative}.rotate-leave-active[data-v-a5a78984]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a5a78984]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.tab-container[data-v-a5a78984]{margin:0 auto}.tabs_box_g[data-v-a5a78984]{display:flex}.tabs_box_g button[data-v-a5a78984]{padding:14px 24px;border:none;background:none;cursor:pointer;font-size:14px;border-radius:8px 8px 0 0;margin:0;transition:all .3s ease}.tabs_box_g button.active[data-v-a5a78984]{background:var(--card-bg-color);color:#553afe;font-weight:700;position:relative}.tab-content_g[data-v-a5a78984]{background:var(--card-bg-color);padding:16px;border-radius:0 8px 8px}.content-item[data-v-a5a78984]{min-height:60vh}@keyframes bganimation-a5a78984{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a5a78984{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-a5a78984{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-a5a78984]{animation:rotateEnter-a5a78984 .7s;position:relative}.rotate-leave-active[data-v-a5a78984]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a5a78984]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media (max-width: 827px){.tabs_box_g button[data-v-a5a78984]{padding:7px 12px!important}.tab-content_g[data-v-a5a78984]{border-radius:0 0 8px 8px}}@keyframes bganimation-de94d0fe{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-de94d0fe{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-de94d0fe{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-de94d0fe]{animation:rotateEnter-de94d0fe .7s;position:relative}.rotate-leave-active[data-v-de94d0fe]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-de94d0fe]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-de94d0fe]{width:24px;height:24px;margin-right:6px}.icon1[data-v-de94d0fe]{width:16px;height:16px;margin-right:8px}.icon2[data-v-de94d0fe]{width:20px;height:20px;margin-right:8px}.icon3[data-v-de94d0fe]{width:17px;height:17px;margin-right:8px}.m-20[data-v-de94d0fe]{margin:20px 0!important}[data-v-de94d0fe] .modal-container .modal-header{border-bottom:none;padding-bottom:0;padding-left:20px}[data-v-de94d0fe] .modal-container .modal-header .modal-title{text-align:left}[data-v-de94d0fe] .modal-container .modal-content{padding:0 20px 20px}.item_container[data-v-de94d0fe]{max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);grid-gap:24px;font-size:16px}.item_container .item[data-v-de94d0fe]{padding:16px;background:var(--card-bg-color);border-radius:10px}.item_container .item .item_title[data-v-de94d0fe]{display:flex;align-items:center}.item_container .item .item_title>span[data-v-de94d0fe]{color:var(--app-container_title-color);display:inline-block;padding-top:2px}.item_container .item>p[data-v-de94d0fe]{color:#717182;margin-top:10px}.item_container .item .wifi_btn[data-v-de94d0fe]{margin:40px 0;display:flex;justify-content:center}.item_container .item .wifi_btn>div[data-v-de94d0fe]{background:#000;padding:12px 24px;border-radius:6px;display:flex;align-items:center;color:#fff;cursor:pointer;font-size:14px}.item_container .item .wifi_btn>div>span[data-v-de94d0fe]{display:inline-block;padding-top:2px}.item_container .item .wifi_btn .start_btn[data-v-de94d0fe]{padding:10px;width:100%;display:flex;justify-content:center}.item_container .item .progress>p[data-v-de94d0fe]{display:flex;justify-content:space-between;font-size:16px;color:#0a0a0a;margin-bottom:12px}.item_container .item .is-bg[data-v-de94d0fe]{opacity:.6;pointer-events:none;cursor:not-allowed}.item_container .item .select_box[data-v-de94d0fe]{margin-top:30px;color:var(--app-container_title-color)}.item_container .item .select_box>select[data-v-de94d0fe]{width:100%;background:#f3f3f5;border-radius:6px;color:var(--app-container_title-color)}.item_container .item .select_box>select.is-placeholder[data-v-de94d0fe]{color:#9aa0a6}.item_container .item .select_box option[disabled][data-v-de94d0fe]{color:#9aa0a6}.item_container .item .select_box option[hidden][data-v-de94d0fe]{display:none}.item_container .item .tip[data-v-de94d0fe]{text-align:center;font-size:14px}.item_container .item .log_info[data-v-de94d0fe]{padding:24px 16px;margin-top:20px;background:black;border-radius:8px;max-height:300px;overflow-y:auto}.item_container .item .log_info[data-v-de94d0fe]::-webkit-scrollbar{height:6px}.item_container .item .log_info[data-v-de94d0fe]::-webkit-scrollbar-thumb{background:#777780;border-radius:6px}.item_container .item .log_info>p[data-v-de94d0fe]{font-size:14px;color:#05df72;margin-bottom:12px}.item_container .item .log_info>p[data-v-de94d0fe]:last-child{margin-bottom:0}.item_container .item .result_box[data-v-de94d0fe]{margin-top:20px}.item_container .item .result_box .result[data-v-de94d0fe]{display:grid;grid-template-columns:repeat(2,1fr);grid-gap:12px}.item_container .item .result_box .result .result_state[data-v-de94d0fe]{display:flex;flex-direction:column;align-items:center;color:var(--app-container_title-color)}.item_container .item .result_box .result .result_state>div[data-v-de94d0fe]{margin-bottom:6px;font-weight:700;font-size:18px;letter-spacing:.1em}.item_container .item .result_box .result .result_state .result_txt[data-v-de94d0fe]{font-size:12px}.item_container .item .result_box .result .result_item[data-v-de94d0fe]{background:#ececf0;border-radius:6px;padding:20px 16px;display:flex;flex-direction:column;align-items:center;justify-content:center}.item_container .item .result_box .result .result_item .result_title[data-v-de94d0fe]{font-size:16px;color:#0a0a0a;margin-bottom:12px}.item_container .item .result_box .result .result_item .speed_value[data-v-de94d0fe]{font-size:24px;font-weight:700;letter-spacing:.1em}.item_container .item .result_box .result .result_item .speed_title[data-v-de94d0fe]{font-size:12px}.item_container .item .result_box .result .result_item .icon_speed[data-v-de94d0fe]{width:30px;height:30px;margin-bottom:10px}.item_container .item .result_box .result .result_item .icon_speed1[data-v-de94d0fe]{width:26px;height:26px;margin-bottom:10px}.item_container .item .result_box .result .result_item .unit[data-v-de94d0fe]{color:#717182;display:inline-block;margin-bottom:6px}.custom-content p[data-v-de94d0fe]{color:#717182}.custom-content .address_box[data-v-de94d0fe]{background:#ececf0;border-radius:6px;padding:10px 12px;margin-top:16px;display:flex;justify-content:space-between;align-items:center}.custom-content .address_box>span[data-v-de94d0fe]{font-size:16px}.custom-content .address_box>div[data-v-de94d0fe]{background:#fff;padding:6px 12px;border-radius:4px;cursor:pointer}@keyframes spin-de94d0fe{to{transform:rotate(360deg)}}.icon3-wrap[data-v-de94d0fe]{display:inline-flex;width:17px;height:17px;margin-right:8px;align-items:center;justify-content:center}.icon3-wrap .icon3[data-v-de94d0fe]{width:100%;height:100%}.is-rotating[data-v-de94d0fe]{animation:spin-de94d0fe 1s linear infinite;transform-origin:center;transform-box:fill-box;will-change:transform}.line[data-v-de94d0fe]{height:1px;background:#d9d9d9;margin:20px 0}.status[data-v-de94d0fe]{display:inline-block;padding:4px 12px;color:#fff;border-radius:6px;font-size:12px;margin-bottom:10px}.status_bg1[data-v-de94d0fe]{background:#00c950}.status_bg2[data-v-de94d0fe]{background:#2b7fff}.status_bg3[data-v-de94d0fe]{background:#ef4444}.status_bg4[data-v-de94d0fe]{background:#f0b100}@keyframes bganimation-de94d0fe{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-de94d0fe{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-de94d0fe{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-de94d0fe]{animation:rotateEnter-de94d0fe .7s;position:relative}.rotate-leave-active[data-v-de94d0fe]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-de94d0fe]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@media (max-width: 827px){.item_container[data-v-de94d0fe]{grid-template-columns:repeat(1,1fr);grid-gap:12px;padding-bottom:16px}}@keyframes bganimation-63694ef8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-63694ef8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-63694ef8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-63694ef8]{animation:rotateEnter-63694ef8 .7s;position:relative}.rotate-leave-active[data-v-63694ef8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-63694ef8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-63694ef8]{width:30px;height:30px;margin-right:10px;display:block}.icon[data-v-63694ef8] svg{display:block}.container[data-v-63694ef8]{min-height:87vh}.container .title[data-v-63694ef8]{font-size:16px;margin-bottom:20px;display:flex;justify-content:center;flex-direction:column}.container .title>div[data-v-63694ef8]{display:inline-flex;justify-content:center;align-items:center;line-height:1;margin-bottom:10px}.container .title>div>span[data-v-63694ef8]{color:var(--app-container_title-color);position:relative;top:1px;font-weight:600}.container .title>p[data-v-63694ef8]{text-align:center;color:#717182}@keyframes bganimation-63694ef8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-63694ef8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-63694ef8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-63694ef8]{animation:rotateEnter-63694ef8 .7s;position:relative}.rotate-leave-active[data-v-63694ef8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-63694ef8]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-1f11eeec{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1f11eeec{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1f11eeec{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1f11eeec]{animation:rotateEnter-1f11eeec .7s;position:relative}.rotate-leave-active[data-v-1f11eeec]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1f11eeec]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}button[data-v-1f11eeec]{outline:none;cursor:pointer;border:none}.pc-radio[data-v-1f11eeec]{display:flex;flex-wrap:wrap;align-items:center}.label-flex.pc-radio label[data-v-1f11eeec]{width:100px;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;color:#666}.label-flex.pc-radio input[type=radio][data-v-1f11eeec]{margin:0 4px 0 0;top:0}.mobile-switch[data-v-1f11eeec]{display:none;align-items:center}.switch-core[data-v-1f11eeec]{position:relative;width:50px;border:1px solid #dcdfe6;outline:none;border-radius:20px;box-sizing:border-box;background:#dcdfe6;cursor:pointer;transition:border-color .3s,background-color .3s;display:inline-block}.switch-core.is-checked[data-v-1f11eeec]{border-color:#409eff;background-color:#409eff}.switch-core.is-disabled[data-v-1f11eeec]{opacity:.6;cursor:not-allowed}.switch-button[data-v-1f11eeec]{position:absolute;top:1px;left:1px;border-radius:100%;transition:all .3s;width:16px;height:16px;background-color:#fff}.switch-core.is-checked .switch-button[data-v-1f11eeec]{transform:translate(20px)}.switch-label[data-v-1f11eeec]{font-size:14px;color:#999}.switch-label.active[data-v-1f11eeec]{color:#409eff}form.form-container[data-v-1f11eeec]{display:block;width:100%;padding:0 1rem;margin-top:50px}form.form-container .label-name[data-v-1f11eeec]{display:block;width:100%;margin-bottom:.5rem;color:var(--item-label_key-span-color)}form.form-container .label-name span[data-v-1f11eeec]:before{content:"*";color:#f56c6c;margin-right:4px;width:10px;display:inline-block;vertical-align:middle}form.form-container .label-value[data-v-1f11eeec]{display:block;width:100%;margin-bottom:1rem}form.form-container .label-value input[data-v-1f11eeec],form.form-container .label-value select[data-v-1f11eeec]{display:block;width:100%;height:42px;background:none;border:1px solid #c2c2c2;color:var(--item-label_key-span-color);font-size:14px}form.form-container .label-value input>option[data-v-1f11eeec],form.form-container .label-value select>option[data-v-1f11eeec]{color:#8898aa}form.form-container .label-value input[data-v-1f11eeec]:focus,form.form-container .label-value select[data-v-1f11eeec]:focus{transition:.2s;border:1px solid #418dfe}form.form-container .label-value select[data-v-1f11eeec]{border-radius:3px;padding:0 10px}form.form-container .label-value input[data-v-1f11eeec]{border-left:none!important;border-right:none!important;border-top:none!important;box-shadow:none!important;padding:0 10px}form.form-container .label-value input[type=checkbox][data-v-1f11eeec],form.form-container .label-value input[type=radio][data-v-1f11eeec]{width:auto}form.form-container .label-value input[type=radio][data-v-1f11eeec]{margin:0 4px 0 0;top:0}form.form-container .label-value input[data-v-1f11eeec]:disabled{background-color:#eee;border:1px solid #c2c2c2;border-radius:3px}form.form-container .label-value input[data-v-1f11eeec]::placeholder{color:var(--item-label_value-span-color);opacity:.54;font-size:14px}form.form-container .label-value input[data-v-1f11eeec]:-ms-input-placeholder{color:var(--item-label_value-span-color);opacity:.54;font-size:14px}form.form-container .label-value input[data-v-1f11eeec]::-ms-input-placeholder{color:var(--item-label_value-span-color);opacity:.54;font-size:14px}form.form-container .label-btns[data-v-1f11eeec]{width:100%;display:flex;flex-wrap:wrap;justify-content:flex-end}form.form-container .label-msg[data-v-1f11eeec]{display:block;width:100%;color:#ff3b3b;font-size:14px}form.form-container .label-msg.warning[data-v-1f11eeec]{color:#f9ad1e}form.form-container .label-flex[data-v-1f11eeec]{width:100%;display:flex;flex-wrap:wrap;align-items:center}form.form-container .label-flex label[data-v-1f11eeec]{width:100px;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;color:#666}.form-item[data-v-1f11eeec]{display:flex;align-items:center;height:55px}.form-item .label-name[data-v-1f11eeec]{width:200px!important}.form-item .label-value[data-v-1f11eeec]{width:300px!important;padding-top:10px;position:relative;display:flex!important;align-items:center}p[data-v-1f11eeec]{font-size:1em;color:#999;line-height:26px;text-align:left;margin-bottom:1rem}.label-btns[data-v-1f11eeec]{width:500px!important;margin-top:1rem}.label-btns .btn[data-v-1f11eeec]{width:300px!important;text-align:center;border-radius:32px}.label-btns .btn[data-v-1f11eeec]:hover{background:#5279f7;transition:.3}.label-btns .primary-btn[data-v-1f11eeec]{border:none;background:#5279f7;color:#fff;margin-bottom:10px}.label-btns .primary-btn[data-v-1f11eeec]:hover{opacity:.9;transition:.3}select[data-v-1f11eeec]:disabled{background-color:#eee!important;border:1px solid #c2c2c2!important}.seeIcon[data-v-1f11eeec]{width:22px;height:22px;position:absolute;cursor:pointer;z-index:1;right:6px;top:50%;transform:translateY(-50%) scale(1);transition:all .3s ease;transform-origin:center}.seeIcon[data-v-1f11eeec]:hover{transform:translateY(-50%) scale(1.1)}@media only screen and (max-width: 1050px){form.form-container[data-v-1f11eeec]{padding:0;margin-top:-16px}form.form-container .form-item[data-v-1f11eeec]{position:relative;height:auto;margin-bottom:0;height:50px;padding-top:6px;border-bottom:1px solid rgba(0,0,0,.16)!important}form.form-container .form-item .label-name[data-v-1f11eeec]{width:100%!important;margin-bottom:0;font-size:14px}form.form-container .form-item .label-name>span[data-v-1f11eeec]{color:var(--item-label_key-span-color)}form.form-container .form-item .label-value[data-v-1f11eeec]{width:100%!important;margin-bottom:0;padding-top:0}form.form-container .form-item .label-value input[data-v-1f11eeec],form.form-container .form-item .label-value select[data-v-1f11eeec]{height:40px;font-size:14px}form.form-container .form-item .label-value .password_input[data-v-1f11eeec]{padding-right:24px}form.form-container .form-item .label-value input[data-v-1f11eeec]{border:none;text-align:right;padding:0}form.form-container .form-item .label-value select[data-v-1f11eeec]:disabled{border:none!important}form.form-container .form-item .label-value select[data-v-1f11eeec]{padding-right:16px!important;border:none;appearance:none;-webkit-appearance:none;-moz-appearance:none;padding:0;outline:none;background:transparent;text-align:right}form.form-container .form-item .label-value[data-v-1f11eeec] ::selection{background:transparent;color:inherit}form.form-container .form-item .label-value[data-v-1f11eeec] ::-moz-selection{background:transparent;color:inherit}form.form-container .label-flex[data-v-1f11eeec]{display:flex}form.form-container .label-flex label[data-v-1f11eeec]{width:100%;margin-bottom:.5rem}form.form-container .label-btns[data-v-1f11eeec]{width:100%!important;margin-top:1.5rem}form.form-container .label-btns .btn[data-v-1f11eeec]{width:100%!important;height:44px;font-size:16px}.seeIcon[data-v-1f11eeec]{width:20px;height:20px;right:0}.pc-radio[data-v-1f11eeec],.label-flex[data-v-1f11eeec]{display:none!important}.mobile-switch[data-v-1f11eeec]{display:flex;align-items:center;height:50px}.switch_label[data-v-1f11eeec]{display:flex;justify-content:end}.switch-core[data-v-1f11eeec]{width:50px;height:24px}.switch-button[data-v-1f11eeec]{width:20px;height:20px}.switch-core.is-checked .switch-button[data-v-1f11eeec]{transform:translate(26px)}.select-arrow[data-v-1f11eeec]{position:absolute;right:6px;top:50%!important;transform:translateY(-50%)!important;width:10px;height:10px;border-top:2px solid #606165;border-right:2px solid #606165;transform:translateY(-50%) rotate(45deg)!important;pointer-events:none}}@keyframes bganimation-40cb5302{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-40cb5302{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-40cb5302{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-40cb5302]{animation:rotateEnter-40cb5302 .7s;position:relative}.rotate-leave-active[data-v-40cb5302]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-40cb5302]{width:100%;background-color:var(--card-bg-color);box-shadow:var(--card-box-shadow);padding:10px 30px;border-radius:6px;position:relative}.page-container[data-v-40cb5302]{width:100%;background-color:var(--card-bg-color);border-radius:6px;padding:3rem;margin-top:50px}.mobile-tags-container[data-v-40cb5302]{display:none}.page-flex[data-v-40cb5302]{display:flex}.page-flex .page-sidebar[data-v-40cb5302]{flex:0 0 200px;border-right:1px solid #eee}.page-flex .page-sidebar .item[data-v-40cb5302]{width:100%;height:42px;line-height:42px;font-size:16px;cursor:pointer;color:var(--item-label_key-span-color);display:block;user-select:none;position:relative;display:flex;flex-wrap:wrap;align-items:center}.page-flex .page-sidebar .item[data-v-40cb5302]:hover,.page-flex .page-sidebar .item.activeItem[data-v-40cb5302]{transition:.3s;color:#418cff}.page-flex .page-sidebar .item.activeItem[data-v-40cb5302]:before{content:"";position:absolute;left:-1rem;width:3px;height:20px;background-color:#4388ff}.page-flex .page-main[data-v-40cb5302]{flex:1;padding-left:24px}@media (max-width: 827px){.page-container[data-v-40cb5302]{padding:12px 12px 0 8px;margin-top:0}.page-flex[data-v-40cb5302]{display:block}.page-flex .page-sidebar[data-v-40cb5302]{display:none}.page-flex .page-main[data-v-40cb5302]{padding-left:0;padding-top:16px}.mobile-tags-container[data-v-40cb5302]{display:block;width:100%;margin-bottom:16px;position:relative}.tags-wrapper[data-v-40cb5302]{display:flex;align-items:center;height:40px;position:relative}.tags-scroll[data-v-40cb5302]{flex:1;display:flex;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;height:100%;align-items:center;white-space:nowrap;padding-right:40px}.tags-scroll[data-v-40cb5302]::-webkit-scrollbar{display:none}.tag-item[data-v-40cb5302]{flex-shrink:0;padding:7px 12px;margin-right:8px;border-radius:4px;background-color:var(--tag-bg-color);color:var(--item-label_key-span-color);font-size:12px;line-height:18px;cursor:pointer;white-space:nowrap}.tag-item.active[data-v-40cb5302]{background-color:#5279f7;color:#fff}.more-btn-wrapper[data-v-40cb5302]{position:absolute;right:-6px;top:0;height:100%;width:40px;display:flex;align-items:center;justify-content:flex-end;pointer-events:none}.fade-overlay[data-v-40cb5302]{position:absolute;right:0;top:50%;transform:translateY(-50%);width:100px;height:32px;background:var(--gradient-bg-color)}.more-btn[data-v-40cb5302]{width:28px;height:28px;border-radius:4px;display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer;pointer-events:auto;position:relative;z-index:1}.more-btn .line[data-v-40cb5302]{width:14px;height:2px;background-color:#5279f7;margin:2px 0;border-radius:1px}[data-v-40cb5302] .showSide{z-index:1!important}.popup-overlay[data-v-40cb5302]{position:fixed;inset:0;background-color:#00000080;z-index:1000;display:flex;justify-content:center;align-items:flex-start}.popup-content[data-v-40cb5302]{width:100%;max-height:85vh;background-color:var(--popup-bg-color);border-radius:0 0 4px 4px;animation:slideDown-40cb5302 .3s ease-out;overflow-y:auto;padding-top:25px}.popup-content .popup-tag-item[data-v-40cb5302],.popup-content .active[data-v-40cb5302]{text-align:center;padding:8px 12px 5px;width:calc((100% - 24px) / 3)}@keyframes slideDown-40cb5302{0%{transform:translateY(-100%)}to{transform:translateY(0)}}.popup-tags[data-v-40cb5302]{padding:12px;display:flex;flex-wrap:wrap;gap:8px;max-height:70vh;overflow-y:auto}.popup-tag-item[data-v-40cb5302]{padding:7px 12px;border-radius:4px;background-color:#f5f5f5;color:#333;font-size:12px;line-height:18px;cursor:pointer;white-space:nowrap}.popup-tag-item.active[data-v-40cb5302]{background-color:#5279f7;color:#fff}.popup-footer[data-v-40cb5302]{display:flex;padding:12px;border-top:1px solid #f0f0f0}.popup-footer button[data-v-40cb5302]{flex:1;height:36px;border-radius:23px;font-size:14px;cursor:pointer}.popup-footer .cancel-btn[data-v-40cb5302]{background-color:#f5f5f5;color:#000;border:none;margin-right:12px}.popup-footer .confirm-btn[data-v-40cb5302]{background-color:#5279f7;color:#fff;border:none}}
diff --git a/luci-theme-kucat/Makefile b/luci-theme-kucat/Makefile
deleted file mode 100644
index b3bbac8..0000000
--- a/luci-theme-kucat/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# Copyright (C) 2019-2025 The Sirpdboy Team
-#
-# This is free software, licensed under the Apache License, Version 2.0 .
-#
-
-include $(TOPDIR)/rules.mk
-THEME_NAME:=kucat
-THEME_TITLE:=Kucat Theme
-PKG_NAME:=luci-theme-$(THEME_NAME)
-LUCI_TITLE:=Kucat Theme by sirpdboy
-LUCI_DEPENDS:=
-PKG_VERSION:=2.7.4
-PKG_RELEASE:=20251106
-
-define Package/luci-theme-$(THEME_NAME)/conffiles
-/www/luci-static/resources/background/
-/www/luci-static/kucat/img/
-endef
-
-include $(TOPDIR)/feeds/luci/luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/browserconfig.xml b/luci-theme-kucat/htdocs/luci-static/kucat/browserconfig.xml
deleted file mode 100644
index 15febe2..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/browserconfig.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
- #1a1a1a
-
-
-
-
-
- 30
-
-
-
\ No newline at end of file
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/css/style.css b/luci-theme-kucat/htdocs/luci-static/kucat/css/style.css
deleted file mode 100644
index 78f25e5..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/css/style.css
+++ /dev/null
@@ -1,5074 +0,0 @@
-/*
- * luci-theme-kucat
- * Copyright (C) 2019-2025 The Sirpdboy Team
- *
- * Have a bug? Please create an issue here on GitHub!
- * https://github.com/sirpdboy/luci-theme-kucat/issues
- *
- * luci-theme-bootstrap:
- * Copyright 2008 Steven Barth
- * Copyright 2008 Jo-Philipp Wich
- * Copyright 2012 David Menting
- *
- * luci-theme-material:
- * https://github.com/LuttyYang/luci-theme-material/
- * luci-theme-argon:
- * https://github.com/jerrykuku/luci-theme-argon
- * luci-theme-opentopd:
- * https://github.com/sirpdboy/luci-theme-opentopd
- *
- * Licensed to the public under the Apache License 2.0
- */
-
-@font-face {
- font-family: 'Google Sans';
- src: url('data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAFW8ABIAAAAA2DgAAFVQAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGoI0G9x4HKUeBmAAhAIIgTwJnnURDAqB3UiBvQwLhQIAATYCJAOKAAQgBYRnB41NDIQAGz7EJ5hubiR/lNsGgFCW81d/0QXsVni3jdDeRWCO9bMDLTIPKCA+/y/Z//+fkJyM4UAPm1rm+7lslg6TcoycK1yhVF4Fd00lKYMnOBQOl+CKjFHEfIuq31ySSDU87HzeHbmNsgX6LmfjlEVKdIfIiz8bD8xUr+9MmpvlGb1NBxps4YKro8j/gJhCqGbPZIYkd4vYzcfT4a9PuRMK1fqG8BHfIPbCDjeuZ6suWAX5jxolVYEh44GfRhVJC1foEkk8ZPN8ThiPb2Zfje53BraN/ElOXvKI5mxmT3NJ7iJGEsIRQpAHr2BNUKtRatQcqkaVquqL1cT5Maf1erYl2ZYt2Y7NSexwE7dNZtIOdXbTBeauPmsJ8Aj0T4BwIkCe/3//nneufb+MkK7UgargKiNVKhgd+M71OfX3WU46s2sXGR/YVhOl6LTpR46u1rVA7ACCZBUAjp8o3Mb9lkK1dKPgAG3zf8E2llgYIAISdWTLHRx5CMgBCta0Z+Yi8y26//uuIl7Upl9vc3NFk6a+oqmuTstV4J34R2wRW6D7iC1iD4lt5DPMIndJQKjb7i/yLJQwkilFFrz0kxpam69aImwe0hqlvfiZvTRCyIsFK01LLM+5vft/iRJkBjXyID++8zyztHK0ApYyAN3XB5lsaKEsacguL5LNAiXRF8D/oLvjThiR0QEHbnKVpma4F8Ugg/DXnlLKlGXNsOzxP23mSrItA2l9zP8u3ycdwQYI5JSZecHdcFGlalI0R9D0KTqgok5+WAxd6f63u6eRj+q9CXdo69XN5KtJEAtaQtOFkr7K/9/rrE7t7tPTB4HLM8hMgI7y6cM5MBF33OIOaUVPiMtZzSxW79/3pP/ff/rSR+Cxvii5VFBBAocPsn2E7KmWhKtbklV1oMpTB9MhJwEdcCaUp1OIq0l5swghLpazXKawWK6Gf74//FfzZk+oL3saDF7HlHooeFOatUIB++qhUgkCJDmas3+bXh6TsM84QAmoZDsz6TTd5PoA8LOQmdmdDZQ+ALhvhD+oyYFTHHJazVNvizXT+8jAj7G0980AExtN61DFowRRiLv/PHayHp9a0B0WnsjDXSIiXQkllBBCF0oQEff/vSxnF7o5nXlFU5OJPj4V4GwYS234pLXfe5s1USMRFBQQBATU9LoBACfh4oM7vwQvu0sn4cpHYU92pYpIjb4EC92Zetc9xH33aYMe+I74EQ+MN17EJwZhakiSq1R7vY0w1WKrbbbbYaf95ZJbHnkF0TBpPIePCpt/djVsZWR5EC5ahdZT66M1dtMRTj/xncj3hKCBtuhttstvANajW3t2Bffxde26QMwp+b3LwYMGv3Cv+/d8PPnYnuXAMwDAy5E6ulMexR1DNflkFvod7PdoXGrqP3pUWEd+VHhn/szwKwL9hQYgcovi4ZGuvcHmW2mznTY77CzC0MDUDMVIYCHwwUCGZvi3Odz1CVetURG1FGMigUav2tHQlL29GxodFjmMA3S97S4TSQPTPWhmIMwNfHpKpDENIgOuXc+LviRYLaFSGPX7d2IikYGRiZmFDzt/AbxuhkYRSGQ0gMnu4ChAtXo9umo029STHgjT+J5xKDojxNjpNfUVjHgbLwg1ZkAT0CSEBtIidBgVUOXK+t0f0J8o/6BcQNy6w2CE+M3SE44BYUIxQxY8n2EAoodOHTbn3zAEShINLR2PMhUCRif/rCIXUqRPKYF3RF6odwIhpzF93wsQZIRdnzbYNRB9zKWRhKg0iXla1/N4SEAvWQ2NpEHfC1oJF+/YnojlTTEfq5iWEnCjwevU0gri4r9i88tF7WgwUiGkVD/tD1EiFDVB1dBDKWKiN886QDYU+0U24gIcIhHPl0SkJdLR0NMysDLetUGeYcyQOZ+t4wLkZhHKIhwvhkUNFrURcfzFoySgJWIkYaWvCpmyqeRSqkelPrUGVEpIepP14acftUGr3QhjoSqccavFTHNZzF8tFljM35KvsbLD5dZSWGcTle3NqrfHXir7qZxgcYbKnxyucLhBdIXgJpNHFzWJjuyJj+QkR35JnxMgN7dUexMQK/59ATlhgCIy6Gl7j+JtIjVUVoiotBQZvgUaDDljqIsFCJreUYsXU93H7f3BIWH4Xs7cgbtTCpfkRfNO5ahS61VRZ2WTynTcK82OpjwX2DLutqxe8kDLzbJ3tVpbETIjFt5i0c1bZHrtKlNcBAkQYIKCWwEI5zTjyAxXImpDrmCJxJUSg14yQFuawyhohzYjl28VKBVmmQhl8lbLX5TMBDbAksc8zlfiklGQMFEb2BoFGDVXQkOEM40sDBqGEZwLhimh4cDXipjs+t4RkoXziEweUaLttfbzL2iaFMiJPaoQYkeXjT+Zndk0QNdCj6yNkAQwiqp3sSrWQev9CDxmwWOCqwW6ZWG/l6Np7NnoO0bJO7eQPmf5D7VBAKvYlsBPBpVNoq2iXTFVn/SayBX5o8ejvmMNq9TEer1EBsyI61ulMz0eE2hGxm6aNkcLW+mLSt9Lxo5SUAagLYpaiuJV3dxiEHEAXh52/qC1m3I9PuNjakm/bgx14REhjDWacX3cjR4/AJipRwvxYCdJltYUP0iBgzzlB8vrVgMlDMNIMvA90+qCYEjCIDkhvDgUxT8gOcfUBmL6oWdA3wTMyiM3diwB5bjLAYiHADPuj89t2E0QHLshBatAAw68p7GCx/zrj1mAGMsFZTDuAmdOaEl+WGXNtOTQ8prKKNiJGqQ83ETJ0c4YyAgA4INZGWIZ6ofaTE0nL7CrNwkkrpJDueV+GJZSiizdVEw+GLupU7XzfR/51FIWeUgcTg8MMALKwXJuG1ru/NwUSocY65eyrkuSDHsWYIZp9sJxe7OdJVnYTHAugQPkRgShBKOFYISurN+E4YRTiCCIXJWiROPEUImlVoNKTaJaJLVpxNGKp5NAL5FBEqM6TKrQxq3EeJPQJq+cKabhTUeZMdwJL1WqtNtoKZid+DoNMT7Tqg0gjnmJhsDrbwEQIUEEf0l8ASSLAlAHgJddCigg9pjj4thYLg8DazG/8fEICo0hY9UA4AMAIBZAgCDK3uUptpRLOL2876ukphQyqqO/7JNOOcHfvHpxVKKdnIBzRK08X9MqiW5hJMfU4weBqjkwEGjFHgBE/egsgCABrcrtgdwClQ1/xPUAKOlzJkFMJ4DlHXK+T6IR8z5gFSEarS0EzX8gNM5PNJjoJgmai8eVRpjLar6loqVw/jhkSHs0UGwxaCO7UIPDPTU9LPS/RzUx42XW1PveqTa3s7HcbO5zZ3pCJozeQjP5QOu+OQDcCiOjE6m+F5zlxszn6onYZRjr6bARPii1VwI1E9ZhOLfeANB7bM+5IV9SYwulUhY+ETS+U4i0KzvtSKNtKImXiJzbXXy44wTXL6OFG1pjRl9nsEuR2u3XrBbOz8DUSiVPV95Apkmbwd5S0/ZXG2ebGG4OChhPecLXNYkrFPOBmSJvsywSji+xyDEZGMaAollBZ5HR8ZglBOjHZpDgOYGWfygwMZUy1O0mQEZxNLrw6VjXuS1A02MuG8a43W4jjKvvwzAk0m6hoZJrdkbuCzAqv7smhjUxEtA3w8Y571NNvZ9zn16mKq/vSQqUuAEjDPXox7GRlKo3oakoLz01Ga3nhAYX5uayOa8TuP6tBIJG2a+P7K6JL4gkGQOUichCyUbLwcjFyiPKxysgKKRUtKoUq0tUj6Q+jQa0GtIpodeIQSmjxkyaMGvKohkfzVn1Y7QMZy3aupVYbxPa5pW3xTYK29nsGPHWJ+lzyQGHGR0BH0ehY3wcp3YS7Qn0FOMZ9JzoBd5LgleUXlN5w+At0Tu89wQfKH2k8mk1+OwLxlcG3zC+X25A5FDwo2Ij8aXlS8fMwp9VCCeD2gLEc0kQKImbl0oym1Q+0qGMJ1qZ3EWi0qY+aB4U0bKWLjp9dKaY2Cxx8SkStlJLYtONUz96QwSrJFvCbdlob+3C62yeEq/Qp5KtthE5zZouOjpLQtqE07o7f4LRX4L8ff3Gbxv9C0H+43CBr4ucLgl2jd2tvzN74hPis690vvmOReRVuuagoC9bLbOXzX7HxWacpAc0P66DDGiNBuyYfg+YBJjZ/4OXLnH5Xqd1d2JA1rbvgxsFW6f4hDhcP0+4NSBgNA9UwBUqzHpLS5TudCMpe/3EymcWNERMAjqAFPacDiG7qEs0ggNa4J2NU4qNMezqqwUAsh7E9YCa9y75E/D1YTYZwb4xAHo/jt3UpjuXC1zHC9nAaRUvcBNDEYx975NNMzEa6WAMY0NwXsEBGjopxKrnAklrztkM76JkdGzy8+neLexww/SDoCUHsKUJIqp33q4tscdwNA4wo69nJhz7K8KJng4MNZaeQE0FqZNwNChaHN0q8uVAOCl4aSRDqYxaQm3odMOoQBmANwSrcgyP5IZqjClTJaRMtQX/E60LOBcxLg3rPhQRXgYwceG4SUJPSo+FkpJi0sRGpdi0OuCUPrJpSQjHbFeyDjEq+SZkSciRT9r80qVPlXr82/hYHhrFJSYlJaWJTh7BZ8ueLWW+CQn5jdqnHt+ry5G6EbqMY2Ah4xhMSJhv8KQWChLRA7MESirqx5AoEeakx104WaoyLbXRTYUBhjyRPNNf/vaPf/3nfxdcfMzsEpfcdoCOhiqlCjTodEbc0pY9KwkrbMzU+FhOITIvCAo/oCiggAMhckHhiNpo8RgJWIkESTiN8ZqNgrNwKG6GozcFNUIr5mL+4gJ00R1xFA0gVAykfrajeIiJkcH51hAsJMyP4WSio6Oih74JiYmNi0+RMEo5n1QhHiK06OjoODy28q4D2R9VQeIu3BoRgQZg4kZBUmsJnWkEczVdPHUGdayAszgDntZSljwRBxBmjRJFmeUq9F+PuaGuDeLJ+QPOj0xr0MLWjnEz5fmfxuLwuy8NAW69ZQMZ5IA7opCv+egju/aGuGOqKrqB5/9pvC5IP6VTh1bQ+pTyPt2g4ykVbbpC+TrWE3qfsUkMPOethkMpgyMaWw1rM0NcUbNKPFb6N9VSoBLF30x0LGIkSNXXUGNMNvuPI5zzk19hUUQTFgAS8XCE9bvanCZ5UUM7mhrfh6aH9nnRt0nfg/0c/Xr3O9/f0L+s/8L+1waoeM+AtgPGD1g54HD6rgF7F+0//5etA0O1jv7tWwfxWmf/la2D60W64A+YxiFOp4VqMdtGoC8dyl86nL71iGGA2rTgJkCNEgaBKbkPGqGKfNsDvu8jsvnfxJU/4BynJWnm/5fKorTVHueqdjoQ3TTPPjJ/fnopx+uEINHGCnBqYgkoSsFiJMlUrIm2yvU3wkTICQAAIR0C6dnBV5FFUe7YlhOTHpqdwC1KgnSFSrXWVV/DuXIYBShpyDhUENwVXCLESZWvREud9YYcoOeWXjpys7NueE5hakmWq4EyHeGRDbQSC3s+Yqafc2ShavDIVk8zyAr6WEpqzcEBnyyHUgxkQT9lnZg7LLB1Az5l2Kv3e8iEMj62lgmqHpDHNGtF/SgyoLFjaBjSYyY+oFhEjivOass10aWYoz8mTGQjw6MfstTEBUZAmd9DIohMdeKRuvsYWVN2u+CMJrxc2mNkj1PyTy6T7YgotWNwfxYONZGPTajaCwlhSU8saBUKClaA71kxmm0KdrAf2LFNMFKwA/+IA2c9ogd7lh/KeE38DdvrHuwZs7OYk6KxPFx6Ghwe/NkXdxFa+MNxqKrw4EciqkzpNicDmPNuJy67/JR+hgWsYmpuhKq9y1nH5bddsR7w7p+knReQnzYoQhgZEBAIRWKJVCZXKCFYp9FiFE6bDHqOJ1EmoZA/6rz3lEUSLU7EqPzQuG21I9kBo+V6+XfHVTdh3uCZ9Dc3ckZkeY7nFgovQm68t3a5XEWyPX6V9Rzk/yKSrpFSDWW7S73/yPFSJsdTh6cS0R6kvBNJZMGixEmWrVipMm111l1fg43wBiVHI6+XziKvOgu97CzwojPf8848z/IzfEQUce4Wet99UeBdvrd5PjXyNMcThu+GzCDhPvHwnn2ER/fsY0Q3oWHypdNFfcVPP+cTLJXvG/pNoZbJbFa5YNMaagQTs5KOR7GVdjub0pgD7aJ3sSyWb166NIFTDZnJtfxe/dBu8VwPM9R/5HZ+jIhXlt2jUqq+bA1BjVBptzYXRrGEiN4uae6ED9LulJzxN2+ndDkc8qhAAZWoQjWKKKEmUJ2I2Pw5P/1SHQEGCVJII4MsEMRQuQB63BJEF49TMYBcXqUA8pZfbTxMg8QAMpihKIbQhAYAzuvdlLV7URYcpZ41ljrZuweoH+KYAXgPAMBe/QFApjMraQr0OYAfKADwsv74BKhBRjNQG6o6mpD6dbqu1Y0ZRB4oD5bHyFbZITtlt5wgp1N6Uzb6O/2n+c9w6pzG6i4EarKliU69hDuMli2y/R7E/8F8+729tf3W03r8fLV/+f/5F6fvHL1zpAPtbU8729bS5lRY+O1iOVbO+/utc4Bee7Af/FwQsO4eAdxP9WFY7i/2ifwVP5G/7Ot/CRpTU2l0BpPF5nB5AF8gFIklUplcoVSpNVqd3mBMM4GQ2QJbbXaH04W40z1eX4YfDQRDmVnhSHaSJRpJW2DMhHETZsxdvGL5ytWr1qzbsH7jpi2bt27bsWvn7r17Dh44dBjq2u7Y1XqurEH39nKoWgz1AMf3A8Apg2Htoco2FIBTh9jD6HFzTnBtXVNzfUM2J7k8nRiAC//+h1FTR04aP2XqtMmzZsPcpYsWHD+sbFgP4PRFAJBX8L5DUxsD+XU7UN0KtBj3xJrfb8i6Q7ChAvw+WqzBIEtE1iNVckRyjs7kMUyMvBiuIaqpAOc2kckHipTIRMhMBPMVjWbJ2cr62J4hV8GOSTzSZMpH/z4/UmTJU6B4i9x5vXNmjx0zetTIEZXDhyVDBg8aONh1HrvRSgrOKMEIgm1d5mkc+q5tBLIj4azMUDCA+jO8nnQ34nI67DYrzCZv70+3t54lMQpTvp1vVysiYrSaOyYvgUyhdN4QtGmC7xrV6ZnsTiplJSt4cJstr/azMKVr2kopLiQg3a/U6XOnmxvKwjjoSe1AIazix8bhfRKUiotaLaV9Wmd0SH0ZQIOAJZkA7SGfjsBsbtzLiLtTi/SnAbRpy5jUrNjM62ZEDbuVgbu9t8RLJdQApVRcEBO/b/oRFwgzcgPjFrZJqnIcyOLtoH4Bz/nz/KIczJQI0vLkQxMqwHGWxWDP8PITMlRYkbVF+Zc9Zo+3S7USCW5ikvzQEX3yQ1dulheEMD90m58JKXU3Nj7IswwY6n2ECcY+s110kk7PpzNWLn0ZzRQ/4sn4tgLhuUUHEvBT9EIn1LEsKfk59TqRVb+OZpDaI7Lpu5B3D4QgMvGSiDApp6ttr/nN2lZtt1RFtyMey59N0T2CCBB+WSLYHmS0lykw+1c3LJdY7N4DyfCUZvypnaAUiWk/xKCreqg/UuTmlxj28PanfmrdvLyQaiWL1KpZpplPguwO4Jizkn8Ck8TsKNE3cFc4qaw69u4aKtYtJsNzyTZeeRjWM7RpjhPrbzgdJAyfkpyeUhGYbU257s664FZl6zk5HZFxJ51eJyith1oVsDzkWwXXIjEbkdvkUlxGJBkXYTK/QZTcVH7DlbjySVCXAa/x+HXOOKPy0zDFEyL4D80TubAeZgrPHjy5ub1eHG6UsuWkWqEsQqu+q1Y63eg/0B+OTQIYopBX08TqG37qD4fcKckqlD9ycndnoc2MncLXSHcayCxHJXknW8OeZtmZXXBLgC5eE3kO7x3kJsTTPDh989VbCxM09bKftDIMTPmbuatWEgVRtWaLwolV0nDXThefBxdGTBxPjlAXKz7XfRLJRUVZlOB2V/ybYi40cjY7xXfT26NY2jOKZlZCEtBuJY6xwUA0aU9ZxHvChbOChrrR20VCMZe0zlv19+0O3D7mScIR0gdSWJRYtrp+OY9skoJJ+ZQ/+IWkAQ0p5lQ25U2RJdVOfyLtQjITqSy4ezEWlI0ZPTZ6WYhVjY4b0OnYbRTIDsWDrJ2cVeky0OEoGYhI0cJLFhpZ9eFY2BTMDbk+dF2zYL7kJFS3KUrOWUV4qixPcVKw21O1AV0GcDvkSShwIJH1wiKCcJCu9aW3Reua/RzG9WUaYDu9JBo4g5iyMmNld3WHfESmjRUEk4931jQknjDiNIQ9DJeCOQn99zCSCsHddOQ0K0qpTmJ2vIyQAVYLOPYMolEgsLwtfzvKYUXHkY3XTwwwsqYbtmt3OAE6DdrrlYpAmBuJS9ePD3DgSezMb4oLKQFWl205gr+SULLlOIG6I5s/Wq3LbHkC3C+5kbXUS4RWGoU7VPKNxhCAdlY12CvhOksNJYIPcyRYwAOLbhCPMXZjU6VP2O5Hitv5o1j8kHic9JT3/O6RRflnsVkSjgFj7FrpThCao1XhgIPF++NrNmCl8eaLVIv8sjIVRkrRi9ViODWC6Qbnxpfln8A1fhAZVqaZ/V4jwzoHMzAfnbWw1623SzRt2afqhhbmuCSnWG3IHUIHe0KXDlPjin7P0WjbMujLtSips6hDJEVwTQCSZvKREQS0DohbkyL+mSDRyfEtBNMjoSrwmiHypHu7+RTriJsty1M/NIBX8nwfGSED5tNq7ZqlvG6zJletvLAkuidO5T6x1kisPX2MKS5aujoeUmQivxAkSPxEcPzNFjdDrjsCraI3KwDcEv0k3OZDdEU40baoRtolrLLteTbB3TTkZi0VR/a1043dYc57hNCeQHlBIfJl4lgD2rtV+oTfJgZmEHYksiG7syvTOvWXXOtfiQKpJARmY8vyGTRzSMEAjPAZ30RduCVXTIyktVb9Xbp3qw7CWmTvaGhtbPEN1BDgW4WaOCPCRd5mbKLgROQzDcyqXLMIHaVg9pSXpnuTKnbCm8OtyvkE0J6QR7Yfk8klgBe+5KIwEI5eGjjR1UrIdVVl3c0KtZeGJ9je+xYl4bkwEaaI0tAF3ZIVCP+QxxD2m//szXxuxy2ObwQs21OGtnlWaJEj7TQHs9p85Tg4MN8gl9z/QIFgSjj1LuVvm+gJ1XvXmvZrrW8mVr77VvjZn+ipB08TToy73DWeKvWWGzg35BM7lv8nVi1m2SY6vVD4lfRzwykl5+J87WPzpsJjCNyaneITCxwvyv/ttgrjhG28TxkEQ+nhPgt5R8AJfGRtuFrxKRvTkA5CX/THSMhhkPKi3VLe1Ad32y9z28pta6ynTvjP0zqL2hYBE4zx54oNOfTyF2pnB4ahj41SU+pesiE3g5Vsm0ZG5hPLA/gMfZEfzybh4HY1/4T4awwFThTlL12semo5gk3+Xyzc3zSmIlSwIRxqxRsnfTy+ENy3/hTu0BOGwyCrIYHyfDsVNOBPEPEipMI394MEiOAIrUsAANwCAJCLAe4IjI8B+A4EoG8F1MXA711BAOATrp1+7BQGgdVkISRIIZEVJRo1gadbT04U6UjCsbMm6jh2kdYdeGdsB1E2JAALhT5o4AFKcujkVq7PAhTHcm9LPYYOYEHEgdNRcwzvmalLETJhpyKktZdj2lcjbyFDJU0tuFpaBwatRPMOn8/uYRAwxhFY4OC9QHEfkfOABYTkF3cJu6H8ihyKZAlAWPKLwXUpLVPDeEaouC5LbRoMunQdBnGYYwwIAVi3I61GmobJVmOCJeN0JI2Gf3O7i9koFDbxgMPC0C3801Iz4LmQ0mSTnaQGIoHKucRVn072jURpOYmxpJuH0L6T2IrgJDZjYa6jQiRHxhigFDqH29B5D3PY1WHYCtK5rr/1c8sPPl/+XnDG42Z0O6mzevsw86KfniasB/RTcsAEgjQRZwr8QWrMSO4QB8psh0H3N7ylbf8wYUyGAZ0RBNApQLOQrHwwDw0CVAcdHGwhvoVjGyoZtqs9tzkgi8WkOuVMYV3nUzHTdZcxAsfpww8XTDVnhb95BUtrgtnKzJaVcP/8EFnZYm0bAylrku+nDkbo0dlML89Vl1bnfyVWSxsjj1et63r9dqPkBB57g7xmI4JK2ItCWTb4okXkWw5USq2xT9g1U1ROMjMm12HNcl11lf3MboygixK8892LfBsCsgHoMCChzl9mhnOwe+kifvBxZ7HN6NCpXORmrLft7ptxqciLyt3UWspDtxt29/SWRxonuB8d6zID1Smnl+5ptiSGyFZEwIzZVBaLor1sOlRjL9rmY2HyENCY1jDQMtI8VTdckng579JIjiAvuUgXO43l0niwSvExPyTDpVaxnK/K3Ubv40fouXQ3zyjVNYvLufBdzQ/cr77Pteo7cVlVnQCzixTbBkmwBUYjwReqbWwr2wJJ+iO1rrBUIsrZ86Szs24C6lv7lJ4cRhr6Xh2NEu8IYuRJvbZUoNK1Vol/c0rH9vOWQrtQ+jiGQxJ5wPCzZNIXthqjgl2AEPxX0vHCDetLMCeVt8nGjUkYQSU2F72Gs+E9kld76F+4YH0BimJ33hW3n4/5D40akU31+DXyolYujTDuxKRSiKRGnkOeLEdhgu07AEMcMuwhRQnUsEhTuBkTUVyW2kUSh7W7cH2eKnbpCCY8qFuN0gsNi3m+smXhpbNe8NgqqURh27zJnYOAIQQtrunc0hPVLaWeI6fiSvfgxydll5jS9XQDmR/Qq+Z8sBVGnUkQpGAl/x0dQIM+GeucHIjj6TWHQxQknQJBDGGgsMuD2jDDD77fCDDeb44SKWEBtUFG8WhQECVyBA5GxQxDyqJDZCY1eu2NwkEwkOFVpkXPE/yLsJmexsYiYBwBpxt8FdiEYau5PuWPPE7ctG1OZgxJBqOLWduLp9HOvlOyh5em9MO3Ifb215HR2bEhcP68+fSQAnrwpdGJ6hgD5zOcL3QMmoFKk2iMZBIGamapvlQ/nonsrEIx+4/bvnNb3g0WR95U6TSVCfCgX16JOgG6qjFIoQXqyv4aEGWdXjebLFoYdS9WJDYWBeBriJvYpkb+kLx4D0/0BPs4PYJ19NqE2bB0acXBcFBQtyd/irDL+2pGFjBtqfEAelJ7XDLPZBTsPYuOFPNUCDeqK6b4Ducy1L5SSUIRD6LkqJTXTDa+sNruXIoZMwuQWYVMQk9PgJEi4Fk0GdKLgWfxyYzfKB4nkNV6miudxjJKgmpZhqRDbj7BXws0nx58XjMzI8P2utodzdLaTPWM9PTxRd7oRalFVcjs+F6dgoCBQXVFQIAcWK/0ZDb2E8+cJVqZDZeNPlbrMrOrLNjf8zqnho+3aEvm1ph9XYYCAoRUe3iXt6a5vdSmEmYu8m3a0MjmmjG0vhicX7zxoo2RtR63UTTQ4KtL1ZNire6LQyQW0CJFASwIUN6GEGA/n/4qaWp4Ep+lPqqPuflWVVfBeuEMfzaPpc+4EIXzdE0rgnXdmFfMM7sEXkSrIK8Y5tRrVJuwyRjLHjF8/9xDNl9ljZqR18awJZ1Vw2VJmmwsZdWqIiBK1NMkXz9PPyo0KRu5OrizAJQIqKwLzLyMCAvNBu43lDCztJGs+mKwqA6jhfIiqInr0jkKyI3d5RzDc+JZ+uOxDca7cI/T0HPVvkvGuoLbG+k+U9H4C9GjbwabCKw4UWUo1AO4qYVPc6OMkaRW5xXZzpTV2s9+qXbuOGmcv/5QrYgPuzo4dhHsUiUs1NUp7tRiy/e1NBwf+Gzz3rTUjZDZWGzJnvv/5ektzSX/fwrZcxzNnXN+vWql5Dyh5nAxW/K/bc3VMm3tok6OFNCa+S+cOeGajtQ3Yam526vtaQk2CWK41vGnQ9k5KS33FQ/YsGEcX23+WHFZuqZutIwa1HKXYBWpvznx0/5uYaixF6yGn/OrwQo31djj+zIDfd4R3a6XzOQTVc1S5Qg1gUvGsYaP9Xggbr/mas9KYOW4gjtdIVwx+okzQs/xPamNofTk+nLLP0+n4GeeYHLUcNFCewILomw9zs0L7K/4vKyhSABuxPX4uEWVxVM0yl2u0O7jDLdme6MZrT0xV8TFVj9KtZExFhiP6R2gPWOmH+mlZvBzl7I6RhhtuxIg4YWz6moNF6uVkusElylrkn21rERGhx+y1xR1BWJx4zLT5gR4EOxB3DOWuYcWqGKKBK0ON8v6IUeJfQANVAK9OI/iyEtrpTjj3XzhD1t3taoE1pd6yeUNHIWOHIvb7t3q4lyJpYSl7WaPJO7CwugOa0+rj+dy1MUTGQFuz+QtFB89top/VGh+0zzkw3mDKyqmUxjVwHf/ix+BfnFdfU6nEE3tz0qwyw/42PxbA1c/enTDmnk1NOD7Nf9HEES3CA7t5AJ8pxfqf/v3vL18mzbdM8N7OyOb70d0zCRm4NT3AbGfMGIU9B3ODD4nB+4+epo+lP7xzRJeF3Tt1EOK/eFr54/NjnDCNIAvlZCMeMOIMiJCIRLdWwaID3AA4DRufCkEPI9m6Qr/ubF6rrrwUldXbhjcV1ndV54wljeKhpu//rVnA1cdyjbvC5mZg5Q5vtHoirTx0fRqmJRSBUnXGGv7L2zoOy6AA1v5iB/IRHmzDj2uZ9FRak0a4HVlJOc1JTduDAtygBoAN85d66npuobCaZNkJdnX1F4S3tzVN4dz96Ei7ZrUPQLf2MH3X6jo36f5uuy1622HPUTdm6QrfNX+Z33pbbbeeQxH5Hx2NwlMJB7YUZ6IfxUebXjUvJzkba+aFyNwBcf6q2taca6nC8zMn5enrr8s9TwzwMdM0evy+7oL67SzswRZUT16AOTf+e7/3p8x9bljJhK0g2gmzCQOivkdeYhMfyCbGbLoz46Blva4qZ0DLB3JZ5ykM9PTXR0DSqZ2ki46Uy5Oh9Mz9smc3n7cWj7nluW7BwThANyvKSfO7SRdtVn/+rcvkxbOhgGeO0M6FoWDlgGo+4GDPOVT6fsgPS/oGMrv7f7vXCHz9oESgBHDfJCwusgtANx8PuB2CwQCRMDfOvhu5DcZvv3IfOjwvNRNywXCZTzeVqFgG69sd8PqrQ0+GaS9+0OhbgloAfOtjSZzHWwEa+b0mLYwBeA7EJ5A5zX3tjEJbi3jPwZjxheNqQZkPTnz4uKQdbEevkSY7gMkeJ54setjSz9NmOD72zLuQ57gvbo6Fh75Pja2aYHlI+fXgnWtdBYnVDPiwUqmt9nabKpiruyrl+UqXuQo7qffYdDn9/v2wUclSHxyX8zlhGn4WUY/um4qGKgv1cN6bNM+k5MdcL3LfZcKB3zBDc4BVxUW2q72HJ9PQhsDSwu9Kk+Gjd/pdqMrw6ZWS4B9wP+a8FdkzSgv7dQUxRZ0ENDg9JlhTD1AuvkLR2EyzHWlzJCagyKdMU8uz5SVVVZfuAh5d+Dv4jJpNtffLvLfLqOMaaKU02llIIWtTZcr7QaZyKqWy9aeQyj44oBXlytUoHK53N6AoacEtDpdbqncyGqYbUsz3on8GvKE5vifI5hnLuJTXDbb6vvgIP2XblNBfi9oyvCD9C86lMELDfUmEy6JXIi2UK0tSUvTlZbrIMY1XLlJU6pRAoXLdg2CBJu/RLPksgK1odCgM5aWGw0sD8RkgRw2C4SYbLa5CbA5YH5bEF3xBijXeyDoLIy+hiuTayNqjSHAxvSTuHkKWTBHrNOCBUfBiwtLMGxPQKPWRSqapcmWQXqJxKyRyVnnAr1c5/LBaiV66fUZsFL9KHrtzhQKiGGu0UzgXCsKqtmUucTwmD/EyNtcwiShzsO1Kr9R8zlJaBKl+GwYvt/NGI/hGW6s7ugx+FiLzRA14+jPQGd5vX0XYf/XSxJoGlyfShfdU0o2vEUo9sKQRxcWSVC5UuFaN/gmnRuM0nYfoQkhyu3dVVK8o6zMv892l1RU7Cgp2lEWdjVYGQu/NdiYAnlIKoloNdLsgFTKAilTMaK0PqTnKVxKSBtCZ83yh0Kz/YE5Royah6zt2yxkP+9Pm02vRy+ZzG7X6ZrJlCldebiubOsZhemXfTQutycxH/O+ze2pKurqqSgTK4NKmQw5g/FCQa1GExkqVeNgNj3vRjLxjIm248UxC33Mm5SUv2YzD/8uU+LWtcrbVFYGxquXesZqsedH5vGN7lE219hgEAxrcI/OKr8/YHZ6EJ/edadqdVZwZSEjRoVVd257RsydNWYM3BFjuAcrLvfaP3I8nI9273JOgfzeTIESNbh1rQo2l5YSC6sXpU9WnjrCKQP0zjE299hgEAxvE6ctD6AvIbuN/YtCzkSQ0/FoaPkaeXoXKq+RoxdQuAZGyZHevx6D1kuNgQR3OoXWWKaFvdAf6GenojxPYYw+Wk8rxtRSicGKbbMwJR/9NaOvoezMFe1q7/S3TPtzB0abtF/wn+89gX7rhhsTMyfP+PHZJUuL1Rhq0lb0QqjJD1ZdGCvDrWmTu7m42LMwt6QkL3B5RjocY1GUGM1FkKgZPr3rq65IrsvT60mnjS2lo98a2GeJVCrxLHt5X2IuwcPNwTJvUwnGX5uAac5psd3EXVr5KDDKBKAjx/OrQMxdfue4EZC05Zt2sxIAdav/jvmVjml7ilZDRz/UMdKoFcwe/m+DZdzFFQJIYLCHgmvqNRhQUCOxpfmIl52E3KBbqgwUSA2GMF9h2u6mroG1GiWiF3JNMjD+cxalaChqgbOH8dSaZ22/el95/9eOxv6F6webhmecRs8HwxWBQKQieB49nWEY0Wzx4gf/nrOjb0ImJjHzQN+cPl3BIVG/54wavIN+smJwaOHgJ5ipnpwTXaEFff7EcMuYEL53j+eZxbvjMTtMRc8zv9YWnuJiTnALY3s4vo4s2MfD7Pit4ONIJzqEUTqKWue9kTmKOt77Bt+HSjwHd2A74F+jHtw1zsMDLAVzrmTPdUGHxCWf348xI29nDpp9A36Aze/Klg53YjdKQZ7QJfa2ZmUL3LEusjrdrOfa6GndD4E0rbSxIgfy2jH+oFQpcdh5PDswwhLLgmG1gPtdvLkfLiIrwji9F9DrvWFMcUSmsVRZjO2I29hWZbGkuhAhP6jR8IOIEOC7hIKNeRZeZz7pPq4RNrUhiKm90eLIqHGNcJEFDpGcj4gEQbUaDGvkKxAx30leXof48NdwVRZjmxsxtje/qhZNWNaE6Q1fRy94nZjGsEwjd2H1AohQEFKridG/JQDpDq7ektaG2HUdNXa7sxLUNLoGkWZyxOkuFrdQEram/ldr88w2k7t3Ml2G65K0dUcOkqMU8ax2Jp/3b0b8X/HUn1zBGGTMTlR45nVDhgah/OtWKNIDYb8aM6aJSANWQMZWN2Jsq4BATZZoAsbufdc+YWQ1n+vgA6hWB6AOQCBw5l1aIOD87WgydKHXe1swcJZUkZ1fkWVFNRaLScUGhUwnJxlNCoalSQRJEiGVkEQjcLLRn6jk+J3Xb4UH9jY0DiDvZsIojDhcoMzQhZ76/L0Cc/7XizxM+9W/BYPL0ASD1r+TDT+9TkwgKBWrfPLkLSG5NhQqj1j9GusKNfN+qp1HQdW2FSrmg1QHLwWlQk6xhGWySF4FoGuCjFpOGp/m4JDRpEe4ZivY7nR6FpgrzQsELo9AFNRqmXFaKPRG4H3yeM0Pr0sdLI20PJd6Wx6ijDjJkGfP+KTWtYj8ueTy3kKb40T9P1HDD68P8xZVCGmTIt1sxl06zCGhSctxla5hTirfIeaLICadElj2+BJiVQMyMEiTQqXqDDuVCgW5r1KSdx2yxzhinA6FUA6HGSr7835QVCPEy0QyZ6IzO5HOeO53Bp08MuPVy0TSElzesHwTKrObIBUP5NPtHAr60+vAWMJSWVLfn+Fli3qtmJd5+UdgSN8foZbZPUdOD46c1bNlVmDNj8CY+aPno/gTvbZ/yxt9ZPiRwl3/7O1VMOb06NMFsffI1x5GVrT1WjQworkZGkLPBkroyFQ7UCJHluEPtAdDju2cKVSYOoWz3REMOeNhPPM7sF2YQMTYTKLtwHcmHo6P6kMlFsxEsC/xzN75NlHfABfp613f2fqWRRW8Hz0r/VJ0wgk8xCJWpyTV7TQeK7xQXi5Z2aNH02m+wOvLqcPGpfSPe+8f+Gh9xAH2Q2H0Th4sr4QgeVUefPvO0v8KMu3FLnKK04ortVZ/d5A7JY78SGnEkW+J/auKU9Ugt/eR1BVh/VpZ4dg3SwggTybJish1nnw/CyHvWyNSplkEqS0TFctnRCZbmwZyZc8jyUFmxVYaNP1glgnMPBS9oc1ua9sQvdEOgfaN0RvWmOJptikbngRe0UEWiw6+YjD/FjBZv2/YDG9G/b8/ww9S86e8TsTwEx/n76O2w+vR9fD6jX59+nekA/EjSxHsV35Ia0SLAKV7xND4LDd5SD6iUiE6gdRlCBJCRDRg4gC2CUFZmCtMj0iMchSQgzMR8uo0rZBWdi+BcdyEL6HURAI8uv1l1NQVaXFbanPWJslcuhAx3/FrSlI48gWf8DM+4VFC/OOEGT0e4VOzzwnq/+PK9PoygwEsMFcaZ0h+sVhNiR3yi6wpIimJ9TTDT4Ms7V/chcyS5PrU91umxKUcoVCOpDBG9DcmjFiJc9IBkGepQDwsMIYbJTGpRSzN4KxUZkhhUYS4Up+mbyGIkeQCYr7laTmjR3VOiv4Em9bIhFYqh8Hb8eZBtLxNnexc0sGUhNOWaK2/l6S2n4ACWR2DjWpVtBiVKNbtxoP4pOEHT3FpNN5JH1jJa8ZdRTsUIpFCycktslJLcuwH7j543zJ42Z+17rXugncRL3Vlw8MdRBoL0BdLdLlGI1i/kp6yxp2RmYFEpfVWRRGSvq2wo18wtuDdhVFxLTGxrXH4K7tTI3JPTB93Boe9gJd7CleoVZWaTMx4rtGYe2n2P5kwn097/qQzHk5iRD2W9mFdY7h6diY5zX5w8Eu6OmCU0MHkQmpIG7rrpqiLhnDxHx7C9GzrGbmsMbt75SorkXeYx+viJdoFno5FMTGLohsSM9E5IKdnssfJpkeS7+664vf9lM5iG88UPo0rxpzcL+VPlk83+3tEez3KuF42JHd2/7ntM1bmB56WhyDdH+gVYOpO0VR1LhQwW2FHL6DjU2VywS6zh3rE2O8X4AtfafHDy5jqly8eOj6tWMJaczH43zUNOZHlWJxVkrtpQ0FJ2Ml0zHWA0qdoOFzbbNjFisxz/lsla3gtfr8ZREY4nOP8RXQv7UhYWn9b8m6ziUYk+py1S0NB2Djg7w8uTdtvVPFuos6DaBjTzDQWy03UmdPkYlgv1YI2A6YEY4jOz1WCuhyxLKAsDwGYdCjTZFAPLVGaWJTXJwQ5v9pOs45zK9pKG1qsN1mGymb8zJXpnZWmECHAKziNLXVwD6vHXm3+v3XEeIWvYNqSSZ/z0oW/Q6Hb5sBx7OdqxztDNeIR2/PSczfXLqu1hDw2+XEoscbAD3hIH2POwadInf+nH3qKq7WYGixWsK4qzSiEqQyw/w/uCOWyEHP6FqK1IBkWFwLLIBJkhLaXeg0dNRY74LHzuOkSCddtAwC+A5jp6QhAFO/wb5M3gEKvnvmd0C5419HbG8ODYn5uFlUanf7RBtvCqsNnRRWmn2dJU2/KPZL1k2iddM4gYgYBw09Oegb5AcVZAy7YfzwvnrYLvdUbwjSFQ4KOsKyxHXpsuPMK4IUT4B/oT3SQTNoOrCVzpk2Q1rbC6/jI9XA/OrwrWj8ntZnbDaFuYkNQa/Rhimy14IB35aDZL5xV3C81uNr077+xyebf7Ab/DBs9PHWwqN6pS/fx5WDdvvZlqsM84NC/fwSvJ/NwXNymuNjDsbFHYus/ZQimnRxIdcHMb4lJ5MH/9F/zlKCGc7LHQ6KO8cvZ+IZhYSw244eZGHXxhiGrVeSIOZZANBMGRZhlDuhibBOrV8bO/A8EBULQJBCYwPcCrFs8c4f0yybXi4RNaLNiUwfp/J2PTewW29V90NW9Q3ISYXbEOUoTqYyz58E+Ek4i1YPz4uzZlaM0DhaCf86CjgEpSIePiLyAv9MTE+nf4RdEpNOHgCsQ12oLezcbPATMeaozru5l++uecduIvdLWpqyhF3Egl3y0acHBg4cOLvwAY0sXiPNh4bYGrD56F7wL2wN8PsYdL685XF3tWVi1enVjjdvtT2/0jk9HJnq9YFiz1zaUL+0x8BxU05rNtvKnpFbW7SCOYh+rTh6rrSVGq9b6pijrm5rT9DlQDWSqg2DW418MKKs5PNj+ZOXEYmFTwf49JU08ww+vF5PcUCzDPwv2JqV4UAsR5dzCNVugFjsCNteC5nB1WeXRvFns9KBHbMvUPqi0ekK1C3NSySYax4KLOvhfc/ayQs7vkFIMOtKdTEyOjcoH6y1wi80OtzTAJr6NasPwyu9NnjqxSuBPY9NtfAFCaRwWG1zazuezbCCbTe61gm9wmVu4VvMFx+GkrlbIZmNhyOnYsmYbqwSqSNoEAta5mh2/6qiRuIisEeP0jpnD/LD+uKidOUiOyJEddL251xvCFGfLNObq2cP4oTFTXTrTgHZDY75JOrhWR4hDzFC+jn3qwHzj9yq1V6LCPbfMtfylx9+JBOkJON+KGX3dV382Es2O5gTf3F4dCVYYxFx/y7jgZ0L/88DhD5mE0pKSaFupLuOap8UwLr2a+fe5G2InthcKI3YXhJkTh6lxeEj1zm3QKg6kcW3Lulea/jSoVFCwaVESMZ1HdP6bmejMDqRjI5NH+iXjj5uJHBRyxfnuC5A86r/7nJNQ+fkV6U0Vb+pVsJuVUd5sW9eG/iZX6be01QqChs994RpcgHY7h+aiPJiaK6UjLMbW7di4Et7QfR3v2zORftuRi+Q2Cilf41M/PUejkdE70d3W5ASVOZvDmzD0gb0f4fOKk2KItRRDrRz6slcz/T1Ab5LyNd5MJGdESVJpvFf3xWLND1TsAC3KNWmng0N+HYsDEmVKKQ2TuA8l5f6SukP7l3KbZdCEhmY5LSgWexbSIpElB0t2E88rkdAIjxv9S8qNqm7WpOe7VVUmbOKs8eMt+XFx/yYmCrIPLLFIAIlNIyLLF+XlrdT+GVWB2sU79o2YnkTIS0p0ETkqetL7ePzbeCB5/JkuvhzUCAQPV8jkLqOCeG79FmD7n/oPYpXYYRo9CZM/MaEq4AAunsusICYHSaRAMnt0U+KRy6pFA9FFhBiZ1ayiq0/QiC3oVXUqqTh72LzUQNW46NQ6LMVp30k7ZE0mBpNfYu1RVlICo3Jp6pYBfojb0Pu+VMLRFYQWvMimFYutWlFcC3HFUYI0XS/HP/03Lu5DQuJ7PP6fhMR1IxMTZiYSZiQmjSCq/TXBqrVRmK86SaOf7O+WiE5bicnWZFIwmRgkEad7lr9o+SXjZxle6p0+pKO1sPC+Azty5MbkRVD7tym5b8V2ns4lTNr3flwGA4QEXMehbo3e4LGbXyAMhvs5k3HdzWAgNxg5M47Mlx6eZ/24hULZkkLeDu4h4z418D0/6gXj3VIKZSm5Zp6Q51lumYGzPq4QRqncx/uCiaO3t18erKe8qMGpr6yPLxeb7hvy3XmEt7ZpzrvAU26OizsUG3s4Ng7pGctL/JrbKE1qDv6b5L6L2T0W14N86X/pTMhIbMA25F2pu2b5bORb1c11+4XzvnkW1C94aLq8tNZdN9I5bqRDYFA4ReOEiz3QdOMdOQ00BZptqPiVEKpP6A+XB6ijl+glc1YPPlNmw+VoyQ9GxK4+xa2hOsrXBLtV5DuXBRfQRoMTSxqcVPbBdco42FOmzoTSU+jswVq8PViHLwbr8WGnBu/bQBuaoAE0SwNosi3umYbYEoppM01CO2kS2lqT0DaahLa0VRgoq6moXlNRla2KqWDraKSfqHmhHE8UBivwn8FKPDdYjecHy/BMpwr/sG346A3NRp9qNvseEBjoHftUGxqjnaJe7RSNs7100Be2D9Bnmo9+1nz0jebT3oqe6SstRC9pIXpfC9EbdgjQa3YEqvrvQlBG5eR0R3/4a+jnXRn1p8oH/7SGEf2L/gXzndY553B0TUJbSr5N68k4aPOX7hDlaIHugUT27Q8DvGZQ92GCT9Njan/kqru9+4PGawpN0JRERe6z1UCTqCZHQN8HunbjZu2m5e3mce2Whe0+S5X1TLttZbt9WZt21mO0/Yn2f4H9B9puCO1HA7cWrvaDdptAh3kgLoWby2HeWpDngv8u4LcDlK/gX9MGnab2h869k73c2benOk/1+nSc6fWs8TKDGWp+0btkibd9OydHTy4VYOwf0OK725+LDwhUK4/zhCf6DEpjxpRFJBeYUhI/OnVii73LL+aU2VZ/iK8l3/Oj2l+trP+B/4+hDvHckQC5phsFtCpvpWKAv+WOBViV8QisigLwqK29jvYDS5BzuirhrdUpm9lj41xHJW9bFc4OeB9BINuYTnpscqPuRNp9/42uzsbllIRjAVNv4AAshMwC3GprJfgV4B3HP+o+jIyi2SMDdNyQ2JZ3swMdIb7FfoTBqW6IbAO2GSA8v1IKA7BcW0pz8e2/RmNpW8oSX38gABc1pJh8Bt43gB5XFzjab+qmLxOArSlnAji8qBPxA2s7bsCB6gZG5QwFyh8m2Ips1gxLVGkd1AWQyY0sIeJD0jrX10bpBmlihcc6ZACTMhJGmsoInK1x++aqAULasCsG/plRNFgAOaRWNgdZnm2kecX061S/LazATiOgtapdHdQakLUgNeXe/Lbrolb55oluXpRfYvSTUcZc1dqhknPMWHHF4iPD0JZfb58OOpUpQ7VrloLqRm+na2zcVTZRY6pHulG9La6y+qh5HWe4qurnruo9SP4LTmpEaoCYierT20ptkADaiA2xxEAyw9Y4+dBGo0BmJSLI/LTdlpzYYSZQuzCZDZmd2WZShIlregqRJRsuLjL7s703c0fWfm6iPh1Z2/RZPKJGsULMzrzqe01aDTZ6uoH1kb4h66xLIcuSdSapr6aNBBFRuMhkbmxq7mUaXpZhThau1XP6TW2QqodLGbWfy23pNdoTftEytg2YSIw1syGiG3L2OF/kIEALhwEo6Z5TjDIYib60AwW8fOSIUtJEUqyESxQybNoORSvsFLC2d5HCt6SvimN+s+70sz7Px3/E83pPaLnqqjJFiUmMy/X1WSUrcw4mlqZp6YayWtqGtFWjOCvJLAv7tSQGGJ3+DkGEwEhYf4NZdHE+EfbhNKXjhBSr0L3D8iJL16RuKFLCj7Kjf9wQ7T0d4zqGHP4D18ApX/t0Wm6to+Uq3pOcOtYl45g+sQswUoYRZhEQ7n3pXa05TDDz0MKR/Xobq74UCK4GCIcc7PCosR6kFgXqDaaBrlHw1TiLpnTspz17zuAw8foJD02JBv+Gd/lQhgfLrk1ZDptdTWWdGuuwZx172AqYdEVSpZtBjbO49kHSRnmInp51sQO3KxwOIZgbczTsSozBxBgpZSokNxFJK/Y+tPBsJQrypnaMJgybuG+Ilw5hOAz8UfimMndZYGmoEy3S6/GcL1x0HqcZg3K9RldNS+zTHLshUdh4t22WrCenhiwpnEUf8IRSVNCSHdgKpbi13taIiMsotcqVdXFE0G9kb2ePIO24R7ba2N0SRivslmarpYcxhpaiwUBkNajD9LweZRjlSFoWQ3KTmfIhZpTcSamOynJXAktbU8JqltomN5V2Zw8PVvipPo/qJiY3adf9LZbodwJrDxTjRR6bOj6GhPpoCPDWNV2StrilegU6tfjo78hOpG07qKXV4eUBbcTKuwJT2VQTaUckmju+SYAQqBT5EWGlyNqDmkt/k1rL2lJRCxEVmH3oX8RhSeFpuAwuhQOAutxEfyG45KfdWfVYQlgDqVHCFdPLuNGwpIFogwQEu3e56bJsixAPqYNoiPYQObCzhREW4yYYcywi520YC78f2+NoqQy2NtgjW2iasLIDYLQaV3EESaP3TDYoCL6safNE12UG8A+FQ7PWYDwso6z8mPMOwBYY8Fd4CU6Dg2EOuDch4YgEbt6u0WYqs9XJVTisCXmHumA3CV0ZUvWZnXED9lq69OON463zLY1Y8I/GAdYnV+hbJriSoPUGQ4fif9N2qv1ZDlNhZnimC8Z6v4kgGobbki5V2FYEJRHLwtoVbc2521HVYhwaqCtslavHwevVuUs+U4Ur4JXknKYBUqbubqHVArPVwc2I8komZs3yZZJXEETQAqLukZJVD+WayaUtzJtMzQSFSuT2Ft0eYl9tlZCYDIleEXmCgvcoXLbxWL9Y1/RKqIKoeAkxVXwmJxw4Wcqnlh2rWAZM50x5VJhBYdSmmytLpsttJW+cei/GlyzivyZvT3hPwrcyEGzKjmE6o8rKuSnM32q5gZsLFROFDQYfVHjGuhm2qGQLdg4zzExMxYiraZ/mWNTVScfE5Qm3DQCa3bThdw4XI+mQUqKq2xCqBiPkskMiziIiqrWoXMeBlgoLOBBkhICmPFwDGNzeDaIwU25riH3c1kSZaCe/+RrtJP3z/c86xte3wiofO+/1p5Y6ouO+3uL9CjvgvfDkdHeJyCWmPAmbks9lb6uZn86L22ughHHJiLKyA/CodTTEMa5HppTt1sktn8XfgYHMJrVzNuPYSiiPzP2MyTD0lEUAkLvLgbTa2QAZ3Fe7B0TAg1UdIIOWYM1Rt06Di6HE2C0aKAwXdl/owjaGd8ML8ETCRTMtkSRLplgiGI1saZy1xbTdTVsvhaF05yKiUF+Vw3GeSdvWoyYifCZKQRRXiqWbzSWaLSPLmrXdL2KTHflZyjyI4O2d0Qu1BqDJBDyGiWzgCsDCYAIGbKaOEqbhSfIEE5EMkzdgwBL+2Ti78KKddmR7iDZGHBp6Bv5XBp9RYPAfuBOug9/At869gY/A2hgDxglD7BxbGjPpMM7ud87CGkMPIjDWYu7cjt3LYrnKskMHyzhtHo5qYA+Mu04ewIGwDkNn58AsqXeU90qtfF91fli5jCil2J08TLSkHSo7ejKWfxehcfhFj1U993DWb27l06MzajwS9gjISA7J11264T0LWRlOSbNcQfk5V25sLWSaJF8UAQi/3Np2TJbBBwyqT18vgO2Eaifqivq0UQJFV7EETFqgEU4YiWBjE6g10P6erEPgtQ46Yj+fAUlbFMaK/PG0QKx1k8KRxFoIg4YIUrzIc0I3Z/K+g9xE4+D9KI2EdjeqQVrRrkZpcWmxG+6SRhilK/pkOPAn3cv5JNc4sOWAU9n80NCRpzZBFIowrH4n7nJz3GU3F5MriXYigQMIrBPoE2gQyInMvf5tYmmYH9H60d4zOLbQjH27IU6MlZyPY10a92hLO0XzEeDukxHNiHot88P4gva7k0BXpDFgsSWqSK9lc8LTNa+burqWWd9hmDLbtKP3JVJ40Md6VhW+Bg/BD4/Qdey0pQOh04jlMNCK9ZMHjRgmXlC4oaSGdKlLUUUrH/CZImYANlx155UYInwR1lIsX0zxdoXT+m+kl1PtPxPZm5V6bW2Ffo2+rq4KIQwEC+QGA4Y4rh1ffGERRv6EwOGsuF8QTwGEywYVbuQVcD/gT3ga8Or+JA0STiBst0F0UodieAwU63squl1Tr2osvMuwpDDpVFO44JphYk4T8kJqkCfI87IRh2c3wk1jhXR2VaWKBnq4anMqt1dd1WJAq8YVP0yvo3rd476qyGDAdMtoO1mvnilDort2zxCoaevuo7eVCqxbiJno5aJYqqWgG1Ggtg15OaklsSYYs3AcCmPVFPMTlzWPIYlUv6K7laoKsnJhJOKle4b7Vxohl0Gf3LeLz9dwMuk4HMkbUtM4YqRt7DreZxPIllMF0m1f1XK7CZmt2qCWnWJ4/c5nW2h5VTXTwDQccMJjmK6oYUX3+kx1yLYBp26Z70M2q08HidXNewa58x6/APDHAWsD9m1yEg1Qz45Y/LnCt+AVOAS9N0sLeT10cckCDiTQ4E/O2mJl5g00dkFnF+x1yNdxSD908v6OpvpZWWfKdsE0y8KD5AkDziYmwqdoq/4OMzFDDw1YIFMstfAaqphQTGGTQp2eajK2X86Mx9DvqkHF8GSgamQ48NRLe+tkuZEL9G3nC2o2IgNonZYtc9U277feSR43n0z2XWO8U+GtcAocDDshfKVJkVcpUT7DgANkDHCNwevmZyuqGeiSpLQKharYjgXKa9eoeSAfmJDa03VSa+58gta/xycMPJVuI2v3zOmtF8zck1RSiAIXbVi9p4RRmJnIPhMTZT9uG1BFIreTEKey0LRyBj6GLJGDiu4ylxUpqre0sjOdyEBH3+mybseGAXFaLkgGYkj72lIwtWEoDY8R0XbWgorcTwgLdoD155tNiIBAyOVAnKNAThcEOp8gt1TcQGyq0PcaTdHuVYXwbI5sV5rk7Ta0+zMI92rvcEgvS3f3OKWqzxbbqjOX+FVPuaCvpt/0k1Cgvzbez3AdHA7fgc/DmXBwroYN0A7gG/DB5LNmfQT3wE1wlLkgqKEFdn8AS0f/sY9ZOJSVrtMnA/hikii3gK35+NZEkARYIpnlZ0Za2JfvwrjZg+Hs/SnDh83HAW+AE1VUkf2BdTk+z5y0cwyggJ/Bu2AfM2clTPVodBJNXtDPEX4VdvcF98gzZp+W+JtJccH2IbaMsaEtdqVONbSXE1KWsBG7hBkGk1enYMv4HKIGWIbhEzEU2mJn5RTxcvlcloqRuKtQkZA7CZDPDEUrRnyn/rpXK57qb/nahi++Ur3aU7PnK2r3VLzJhzcht/Cv+1phUeELywffn4XiJfaU5iy/bf62emV3sQXAXLdMdpPaLzC+D9pmOV/xK8TpDU683upXjiAT+anDd5F4Sg9WM+/+7YP57DdC1JRLtLOr/M2c4LIt1igMKdRiQ2hUUKGFBUKstFpqV1iFt8xXAC1+hYiHWcbVODF3Y1IEceCpzCtSahMqeGXprseFHTA5XjJOAR9r6CAWNAuzvRB5odPyQe1IuoUyTHA2v8OKc1oty5FluhPhoQ52qDtNpUgR+xrGPsGGM4EEEibNx90F14xASOBr7joSkM8TrnbGbdXuyiBKmkoaFnjNlr6M5DNN8Gp3IF51XmV2tit7se+cqB8UuGwwosopSqpYycp0dB7Ys9Uo1VKkkKKrC/FpaMi9B7yiYQ5caoxumk3bCNLhymw97HiOwSHt2LUgFtP+s7g8CpCw0dtrfoB0VC1TOZpPTrpR1dq4LJeZavVQiha0QHk4tBWy3OzH6bqsgWj6eIcI9mDef6Y9Qhs/X8kUQbu1tSdU5t5dUwOUMMM+ZkGwYm++uEiiO0KgdcfR0U0HHtLKeCgtT4Wf9W5d2vfMgSGf27LXcBk1nmI+duPtC2kJu+r2XhQigwyU4wXBwmG4B1TUWRHBNkzyYWSTIYJkeErZ+XSol3rjwvCDU/a60RGqxN9cfDxoTyoKYfXRzgqtmFybVftGJlERNTG5cMv6qb1y/5y7FHchFTHEw2ZCiSsT/h4j+vVAbwit5zbIE8mp6vEep0utUJdSUKAIGImhNEWp2+6Bt8kVE6cdDtcM97VUlndWKQ4i6V3m1IKi/tl1Rqg71J+e+XBnSVs4CB1fcNNA7oW8Babl9sXMc12GFRqTwshve8fgNaB5z9rzdGRRpxEmIilsdfMFkSUraHNFYSamRrHit6IhfPBBmYjZSyjOt1a136dSuYQeG9mDyeLZpXhKwkmEGKvYJxrKqRRXAzBWxe01waQyazIPEAp7MJo6Zdtu68qC3ThRCytbZVF0qJBm89kEgivbBlKcYcZmzFrJu1vR4hYSskgFrCSb9RkK0+JhyrEVMrHMN7CMMefXlyQqRdsCttbIMOKePYsRnGostTkePiDS5XhW7qBoRjGwlHH7V6y49f9rCA1tJ3H0WSU91Rq8NvCwRomM4aqsphv3dYgmTzTYOSS+QdDf8KSP9YkYTb5NmkyK/ZlIZ0gnPWLLjFOok/jfE7F3N8H1Ur5zVV3MGiyTDDHhJn76DicgYDutsb8dUjG9rTXvDoCbzQOscvc+TGGxyogayn7NlNOSWX7JnB76nzHU+KrUI//Gbnqj43hu8Z1QUIDStfwqa5OtL8mZpCsTuERhCFFU826a3V3P+q+ea3zY+tmAMeTgFprYlwzD7r9a8yuAF/vX+DqshRg+BffB5bDR7HX73H47d1k8p4Ea7AMmRtz4yAn3oqThUya8X/gKZUm4KwWfUXg/vAinwRHwT/gFfH5V28iNiaGbhmEbHDZOsuaBgJ/1fynvzuSujFcmIz5YwVizGXLJQtgIzbEGp95r7yEN9X/5FeC7v/U+qr+9nhN6m4536F5PCK+sStPzAxs3LrDhZBu221DZ8M6IL0ac2fCt6NPR7RHPsWHZBvuTTaSDrNuknuOm6YrF70TGh+RuMy8K4GaRRC+TRu/X0V1Oi9MCWmm/zubyzs4ppJxVrlSGrGvLrdZQYG95IBAiWsuJxJBwUrlQGDIuKjcaQzlby3NyptWMKq+pKf3saCm9gaKpcS79uuzREwDCqfP5kuO5ON1HrB/1pFHOF/g5p1vxRu+JbdwAeKR6v6kv9/4CqndOoP7J0Ow74haVrgj69/q+UjtpYquSoxwcXaLg6i3MTrFJ4/VnNmSDoIrg8VZs9vE4XzoMqdGiM1h4iZDmc1k3yFgi4UQbDTqiU49P4vKWuytOnfUk5ouwrreatZhUZYrrIeQRyCAPeqvD5/Yr9jHur2Otnorzs61rLU9yT5zwSobcKRXDUdaapSbxVj9it5UWy+uqPqmSuONRHF8d6wnMv1S5AfAqrUvPWU3qXScXmIfYKRnEXg03bw1e99RAv4Z85fV/oOvaVtF9G3BVicTX35V+vLnKmnL2ipZYBLhOAVweUxcNPO8YmHhmLxXv9yuLwHw/bem5Sg3uaiO9kkjWGy6nqFRJKp2AXBNSLoFVR23g2h2nqJM0fiWvFMGYVKZMsiDc1689sz3smSHba+aiILBc4uuGqI71ED+eVyLzvCLAovHuKK4caJAB3T6SoDjQmochdYN/GVSEonJK7eKFS2WAgOU1XomK8nw2KdDN4VKdWOh2HwdZr6GV3Gt/lS+iDCoB5gluMS/Kpek08NVIEkF/Xo8+k4R3z7kyQUKma53J/LMEwHjqDwDkAJ5u1O3cEXn7VAlfaojC2i8+zQQ1G0u0qdXHErYazDfv8Tkh6AtvG7zsxgHA5fv6NRfWPVE/PXiLgK1qMTkgtFKZuv9h7vWBvlKgz5P2brK+kU1krHwB2Nhe9XSQHiRPbkXoA2+fkLZ6KnfE0bWX4hLpweE5U8KIJH/rBqyJY9obxJz4o15D/IiZmImZ2IhZM3O4osaryaSKdCEldtrWbqIlZbmmkSCGrh2RKI0TIYTMqKEsyQDnsjmRRqQ+CSCt7Zp40k32g93ViIy1hylJB+Kfawd+PUPwbqC60Pbr8af0Rqb2ZpD35g3ZBWEQ4BZ2E6SjERqR5gOypWcoBIBo8yMzHanlsQcpre0hOCd7KD6BHpo+qT0MdXp6WbqsRklbH0W6DEAPMpnaQ4h29lBi/NFDc8faw7Cm5PVnuTJcmgrdDdBTJx101JssRpRoNV0uS4WKXLCrdn3z5UsTIVMS0jVeD6F6Kdx2enm3p74i21bFgXc85JxCMPR2Vb4rLYIRW7Yf6/Uv0qkHoY3W16rybRtcTdTPL+8FYeinso/sa6UnEJBBBVxNosLwo244EX5GEzfosx3u0zHF4vgyWsQqLhNVkgNuL51YleemjBAm6VjAssPzTUxEVFQsxLBy1IaJ2Y/06ysNdOAWGsSWrhht1LkOdaC/MU4BXAK5BQkWItRvwoSLEHmGXGyMWDXUVEttceIlSJSkTpt3ZIr8xDTpMmTKqkN7Mk++gpaOYe/Lt576GmioRCOlGmuiqWaaK9NCS61CYIVRRjtktifGmGyCRdZZGQrGu2akGaGRgUlhocoJt8LBYut99MEny21yzhmbtdbGVG39rp2zzvu77T2TT7X3f/t7+m7RwRvT3Asudpt/7qVxOuuki266KrdUhR66F+rfhvvora9+nulvoAEGGWKwvZYZZqjhKr3wyn6XbbXNFTddDY8KFGC7HXbb46SddjllrA0OO+JglKiCiVGjCH+pz4pRHff5lRoA67p3CeqmcoKketMwSrwG/L6d3mD88p8tVpvd4XS5PV6fnwkIYmYBs7Kxc3ByQbil8/DyyeCHCggKyZQlLCJbjlx58g1VoFCRYiVKlSk3TIVKVarV1DjwXTeJtn7zVlCiSTW5T23+WlsCmtoPppQyDAeVdxrmX7LD8Bgbnc/NxqxYjhE2uOO5nlMjrIOHuPuGw4fg/LK+/MyvEDqPBOvGjym7wl3awQcWX3/nMt0ooJAiigPalRsRQCBBgPWcKU+kT8yxRY9A66x06sakIFQJG6RcjCfPksmS0Vk5Xx9Wqubtt7xvVW3/r6C6kbId/4AKnJz9gfIxZ2qgfGxWhXJQRSwjItPBHslLFUgNiJbUkFVBS0ZIS3FIS4DTUiWnpS6RloAKqdtQHPxUcINxYFBR4HqvwlD1gMGhlf7jIPAAcMd9RlP9WyLE4u/FBy8MM393CIi2YUajMdsEekcj3HETHXbmiJ/YOesEw2D1mwtM5BLkdeGSWMq6AYYjeGBAC7yEEXZQepYY0HU4uGJnhZwZ6CYQEb6Lpfwgc7RgJwHNODsKl9gJvwzoDjlBwLih+4hbO2fuIkFZVOyE5Qo8hLlDQOBn5skiVX9BG7IM6/KGuB+N3oeNbQnNM/XXAE/UThEHBAX5PEdxBSINCDuhEk4MQ/5EEzfk+/zv5bmQHBH+Qxd2Cwk7yZlCCTkk6Kb43SRPQEZ5frKf120Tbz1T+oBuXuAfsodrI6dzu7m5aROEayS72H6yk705Dna+l53dzcZxrBwEYJZjYXEvM6uQDDE9IJNCNjHiXmmMbka6Y6DBo6fZyLpUOFpqLqChOmoqHBWlNqCkeBSUTrKcDEdGzgekZEeSQo6Y5AOi5F4Az0jmsB0Gnbx0NjEpQiPaXqkEFZlKcChJlCSndJpsYjdSAgLJ8csR1UmmVRmXz5/7evzi3vf8J/qjF2pZ7blneY2OhoeUDo9savdod7hGq8Ndu2oPaH+4Q9vDDVofJldiuG+37boVdos2hytUGm7akl2p1daS//gbunWnUGXvMnT7GPilsH0567s5pF039ORjExF/Dnz74wfcvengd5f5mcHqsZEo7R4EOMsJLbT2VOgkBuFedTIXSkF4BwQfos3IrF5yEu4bxCoDAAAA') format('woff2'),
- url('data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAGw8ABIAAAAA2DgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAABsIAAAABwAAAAchAIKSUdERUYAAFhcAAAAiQAAATQq2xtHR1BPUwAAXgAAAA4eAAAueIspnAJHU1VCAABY6AAABRYAABKe0ti5NU9TLzIAAAIQAAAAVQAAAGBo/J16Y21hcAAABWQAAAGYAAACAvsSjndjdnQgAAAQjAAAAIIAAAC8FwsLm2ZwZ20AAAb8AAAICwAAD3VvxKKUZ2FzcAAAWFAAAAAMAAAADAAHABtnbHlmAAATlAAAP2QAAG7Ii71PBmhlYWQAAAGUAAAANgAAADYY+Sd1aGhlYQAAAcwAAAAhAAAAJA8wDDZobXR4AAACaAAAAvsAAAUAjaApAmxvY2EAABEQAAACggAAAoI4BhyQbWF4cAAAAfAAAAAgAAAAIAQ9AhduYW1lAABS+AAAATQAAAJnkYfHqXBvc3QAAFQsAAAEIQAABs0y50E9cHJlcAAADwgAAAGBAAACAM4gBt0AAQAAAAIAxddkoRtfDzz1AB8D6AAAAADVg7ZYAAAAANjaLOj+k/8DDNQDiAAAAAgAAgAAAAAAAHjaY2BkYGA+9u8cAwPPlX+T/wfzXGEAiiADRgcAtmQHfAAAAAABAAABQAC2AAoARAAEAAIAEAAvAJoAAAJBAOoAAwACeNpjYGHiYJzAwMrAwNTFFMHAwOANoRnjGEIYjYCi3KzMzKxMLEwsQDl2BiTg7u/vznCAgVdJlPnIv0cMDMwvGOUUGBjng+QY/zGdAVIKDEIA7CIMcgAAAHjabZPfS1NhGMe/73NWFqhDKye6Zup0Gdv8WW5NnahRVORqpmXpxaK6yAJD8CIrgkJZaJEXXUR1G5QkJPTrosD+gMK6KLwIJTQsRcrIi1zfc84mIg4+fN/z7Hmf9z3P9znSgEYkftNkFpWqHuVyDQ5xwKEFsF264MYIyhkPks3qMVziRQ3mGXtJ1fe4IXIDpaoHHkklNuYcppYTD0kjLnOt5+MPfGoeleJDNTWg/sKtdWGnPIBV2hGSb8x9Q3WRTQhpeo1XCGGBz+nIkosIqX+MR/j8jurj/7Vx3c9YGe+fxbx+BKUbqdow0qjpEmb9KhSqGu7nnakF6gOS1Tig+hHhWXnSyj15cFKdvL9TXYJdjnJdgSAmUIGJ2IRa5HoMQa2DuaWkif83I0Ccqpt9+owsdYH7ShkTJGkbkaSmkCIWbKAWKD9s+Mk7+JEjmShI9J7nOyUFhXIKDbynVc/hXUpUH6r43vnqC4rEiQKpZs/ZeyN2iz2sZ51tjHmxRdUhg+9yzzj7DM95DrsaxD7MwSYa9zrhl3GUaOuJn7VnUWz0fTX3YdXeIsnwwhX3Ig59sOpeYCE2RxXWy034sBrev47neAwvVqJ7Qc8kgEaj72ug3aXmmT6sBJNIInsxGZuiH4tyEN5lH1bDvhiq92Ml9EJa2FeqXsvSz/vO0L+b2K3uIKIGkKse0peo+XnIMdRo1znvX1GcgL54lrmMQ5xRvzoJFwlgKBZWzciWHmxVv+j7KOOj5rejz55e05jhNs7+NMKqk/cX5u9CBl5jh9BHbYwz9AL2dVbYLdOwawMmliFqL/lBnjDniInWST1AhslvBC1FrPmdPOPzI3MeeY4DM5wRN6klTZxVH1XHBRtn0lx3Iod5NubZmGdjXjbjNgMzz1hLlN9tFH3kHGkm9XFtjcfayQllRRnxqhIc55wWJVSuIFPtYX+jaCMtJEzySSReW69xnnSTjni8l1yNP58lueQ0sDRCPgGxVOpT8l7dXhpcIz6Y/BHu/5zu3X4AeNpjYGBgZoBgGQZGBhD4A+QxgvksDA+AtAmDApAlwsDLUMfwn9GQMZjpGNMtpjsKTAqcCtwKIgpSCnIKSgpqClYKLgolCmsUlRQnKk5WElIS/f8fqJsXqHsBUFcQii5hBQkFGbAuS0xd/7/+f/z/0P+J/wv//v/75u/rB8ceHHiw/8GOB1sfbHmw8cG6B3MeTH6Q8kD3/o77Xvc9752+dxLqcpIBIxsDXCsjE5BgQlcADBoWVjZ2Dk4ubh5ePn4BQSFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTS1tHV09fQNDI2MTUzNzC0sraxtbO3sHRydnF1c3dw9PL28fXz//gMCg4JDQsPCIyKjomNi4+IREhrb2zu7JM+YtXrRk2dLlK1evWrN2/boNGzdv3bJtx/Y9u/fuYyhKSc28XLGwIPtWWRZDxyyGYgaG9HKw63JqGFbsakzOA7Fza68kNbVOP3zk9JkLF8+e28lwkOH6zavXgDKV5y8xtPQ093b1T5jYN3Uaw5Q5c2cfOnq8kIHhWBVQGgCq95OkeNqNV19v3MYRX1L3/07B2QhcA1TRJbYkAlDKWwvZNRJCpztZUmufpLNCynZDHu9kO01iJ21lp4lb1a1rY/veut9iab+c8hQ/5MPkU6i/2eWdZMENSizJnT87Mzs7M7sbbvznxb//9ewfT//+tyd/PfzLnx9/8/Wfvnr08OCPf/j9l188uP/5Z5/+7pN7d+/sj0fZME0+/u3tWzf34uij3RuDna3+9Wu/+fXmxvrVtd57P2s36otW3mx0RGfcWFpkeaOJbnNp0VKVjqpqpLoecBVuRe7mdtRddVw3doSrQlXyuvSmI5lNCTFEYBTGQsTmjtjc2ot4VyaaCMzgDcjQl2e0oqfsziBSvQDQKXhNwzPw6hny+pQsuGJ9KUc5m/OAD53c0p1y558xZhILNQyEK6IxePMaa7mDpINea9qz+Bok8kmbDfFmH4mJVfT2IsWT/fgquJntKd12JuwX4pHpJ4pnnKuKJ4b9SLrKSoRTwNsRPGaljnSFy+N4cvx6gbiFC1k2W8mF9XwrD63nO3vRUZsx/nwQvbQtu5OsxPnPQYuOOGOhxtqEJSQBnAC2aWFlXto1ze8chYwdampJIzScYRYaV5viLJZNbINrG0W+VhQyG5SSoYRT7hJwNYM7NNzvFdw1UNpE+ZbZFmOaaB54CSsTNsphLayHLXvexloQ6iUw34K3brFXLWvecnLI3NboiXWY10PnSEvaLjgPwUm4wxkOlhPbKUHQZyZ+42QGN/aiVy0G+foLjhV6lha7uX0tECdhvRVh9bq5dS1IENoEznldjrBW4U5EvImDmEd0ry4tUnTxSIwdEefvvisfdCFG5GnFTwJpgoxCS7QvIzDnvPVM9BLiQKKgrQOV7fJEDZMAXd7uyR7FQUrc7EJuz3m5VfKsD9gH8FSlpRpivKKaYmVG+ZB9aCgVolTFirIuGD93RZdfvCczMUTMhf3ojrMfp5CtQpGqklhx8hJbQYZctDCJbs6uBZjNJqLuetC/ibSk6XMpV3kelvw0SwledZHpsiCJ1dX41IgulypMswQc3VgzI/eA7IqUj+BXTBe+2hHo7u3RmMFeJFsjMRLwaRjKFNN2eBY7Ms60jzEeprGlxfJJPSrKkU1Z7mX7+Ew4GyZiaBCUj2dxd84i9sF1Gic2SJ3+W/ovN0R3BA5605GaQ4y5fBSbIGF9XSn+J5N1ioljTbVw2f7VFLIKCACaVHfeBO/OwB69Cbz2vokVVfIp1iJXfeKoT+NgxpKqwyGXvC0uC/rowWv0JqqMzmGWUjmqUOwBsQEEj4aIXgjsJXIacRhW8mea1OfBGyJRRK0BVNseTUcd9nkS8yQBFvniOlyV8ef7KQUXFdq+mU8f1R6/VO5gLKOUcVQVNX8/HQsX9VlRmhrvk40lWMd2IsUcKYVUFkz0emCGeF9V/HX6oT0IRDrGIpI+no712B7M1d4haU5XuDFYbE/7Eo5DfRjSJ5OIRnUb2Vb2zsnzkl+SqFO3UWJLfrabYCPgbd7jeqlTRDI5YZ2gGIIMY90jRozXzVefBfntqneC0e1+YJhrWios245Uf8pS1Q2dLwJl/2QZRJq8tY39pKQXipxX9tbh3hBR5dBoruxBVCyPHr9OQ53pgplhwOhCSxuhO7W3aew1Siu6tXSre6rmYaFVCTYYcpWmcxIE6MNoM2ZOm2smgD5U8YKiJ5IUQMkb6zmZDZBTwcTRIBX0OpPj7/rYgRNBbxyT+ppWRCO0aGkEk7sqRHybKwpNpjWprespnEY3dKtqm4lmplR+0/GF946Ov2PGc27xUMzQLJ8VWVnk3dhRd+NgZEZVigrOUVFRubMtfb64iWwQbhV1DNNHVnG1E2Db0HN7Zry6YaoDRaXVE6yHGCo67AJTTFy16MOQWuKqsgHOeuKlzayaWKZfXSzntlVFtadi1J5vodDLLBmZrRleZsvOFToMVfRC1/XaHlBpGkRlpxTrkPHVw6CIYvM9CGb0h5ST1akna0STM2JZi3toYsMvvgdB7a2jZO3/U1YrVlPVNY2qkV/7cVVzZoE2zHJt2EbyhqkTwPqZlFTa8tvvUIa2/HPAn4dpl2DkpcJK+OYbmNIn1TWN0SDSrUrmmGXzmiC0wfvahHYTxDasee0YLrSj42N2EEy5jRNgd8MzcV6Qi9EmOh8GMXo9ehOw9OgtMqlZZGnrTNUvxJs1rb9JFDNhtNGLmUSCcquFU2/JKUOjz9tw12XtTx+mApaXc6vqFwxlYrC9y1I2p/Wfyv8RjpxMHydZLM8i1GOsB9Z6/u2U2lnsvEYXqzw/+xOySIdGRzU7dH6hvalOAfA+1vfx90XN0ceJU47RKErF09iL5PvqtCTcD6Zjp37b1yldjD2DHUSPgSVPfU87ibLwL/suvQ65TmujGL8fFEfbx7S6T7S4JwHn93DO6lg4bWGjvEdbFSfumq+LnMSB516a6jqkLy4XcZbapvMwzvyiza0r7Iq5/ojiZoE9oORFV5xLMW4Sk+MfFmJTqmxs8ngHkvP2OZAkP4+rhXqq3VvQhMZhF6/4BRfN4CmS0/CR9S1bbu7ACXQHayw7DbrXTa9UL4IfI3MajyqlPhaPXHKF2hVf4bDQEYrzWyiJQK4txFJiO5WC7k67kfkSyVpcoJMBnWIKXmcBt7ITsLVA4ZZOjl8t0AVppu3rqbYvoY06cqpOZW/VRlFm3TSxhqbNz3/JhNFf8gul8pbcw43QVT8lxYUdAN9ZiLUEWPKCLPkvhv5kWgB42lWHy1IaQRhGewCReNdUkIvwNQIy0MQxxnjXGe+jJCpCJzRjdjxGWFrlRsu3YDu4Mq/Wm18p0NLvqzp1jkN/rRauLQ3PIjStNpS1jMYi4c9Xwm+xCCnqqAtCTXRwVSZUyxqXJRcXJcJ5qYNfJRs/zToqZgdnpsapSXCLhJOixnGBcFTQOCy0cLBA2F/g2MtrOHmCnSPsZgk7WRfb84StjMZmhrCRcbHOW1jjhFXexg+4WIHGdxCW04RvKcLSHKEsbBRNG/mcRs5Mxq+zScJ8Yh2ZBIHHCUi3kY4RUrOEuSghuRHf82Lb0X9eomezPfsSd46cKDU/8xk5zafkjJpS43xMDvGQHFMhNckn5CgfkcM8LA2byQk1osKKqU88IoM8ICMqoIKOM2T8Nx5YXVSehumq4kcuPd+49fO1Hp1q0w/f+kw2vUbXMO7Vzd0dS+1X/Ida4zHIXlR1A4GDaqMbCt4rJpgQgg0uBv5K49373eeb9qNvg/oQ77O32DM2WIGEAAAAeNo9jE0OgjAQhT+7ctljuGZtSIixBIEISjHRw3ghj8JhOIHltYJ5mcy8vzETezNhzQe7+2IhzNuEQ5ij/uN4oRc8rRDvjiGxUXPTPSa/EnPkvMmo15znwSt1n/Jarsq6f8tJb6T1lGrHfZd65qLEwFG/Tso00uPPQqlaTrcAQr8lpQAAAAAAHgAeACYALgBUAG4AwgEcAZIB4gHyAhACLgJYAngCmAKqAsYC2AMUAywDZAO8A+YELgR0BJAE/AVEBXIFpgW+BeAF+AY+BrwG+AdQB4gHtAfgCAIIWAiACJQIugjsCQQJMAlWCZIJyAoSClQKtArQCvwLGgtMC3QLkgu0C84L4Av6DBIMIgw0DMoNEg1MDZIN4A4cDoQOtg7sDzIPWA9sD7QP5BAgEGgQsBDaETwRchGiEbwR5hIIEiQSRhKAEpISzBMUExwTQhOEE+AUOBR8FJIVAhVEFdQWOBZEFloWYhbMFuYXHBdEF0wXVBduF3YXnBe2GBAYGBhSGF4Ybhh+GI4Y1BjsGQQZHBk0GU4ZpBniGloachqKGqIavBrUGuwbBBs8G3gbkBuoG8Ab2BvwHAocKhyGHJ4cthzOHOgdAB06HYwdpB28HdQd7B4GHiAexB8kHzwfVB9sH4Yfnh+2H84gHCB0IIwgpCC8INQg7CEGITwhkiGqIcIh2iH0IgwiViJwIoQi5CNSI6QkBCSIJJAkmCSgJLIkxCTmJQYlECUcJSglNiVQJWAldiWKJaAlqCYQJkYmXCZwJoImiiaSJqwm8Cc6J2wnpCf6KAwoRiiwKQgplCoIKngq+CtcK7AsLCyALM4tMC10LaguAi5YLmQuui8UL3Avpi+wL7ovxC/OL9gv4i/sMAQwDjAYMEwwYjCSMNYw/DE6MXgxkDH0MjQyPDJaMmIyajJyMnoygjKKMpIymjKqMswy1DLcMwozEjMaMyIzKjMyMzozQjNKM1IzWjNiM2ozoDOoM7AzuDPiM+o0XjRmNJw0rjTANNw1SjXiNew1/jYINhI2HDdkAAB42q19CXgb1bXwnBlJI2vfd2tfLEuyZK22ZVuK9yV24sQribMvzkBCIiBNCCn71o1XaF8XtrYPWlp4P+URoNDSlle29lHa/0FLKWlLKe2jO5QubBn/994ZybKdkP7/98fyWDNzl3PPOfcs955zQ9HUOoqCv9HPUAzFUrqHgOVoGUcDlUzGYqnWKOh9jN6nh7/x58AXO/n/pp85tZ8+59QXKfQPqLp/ravvaaqw+A71EGpbSukp1Qml3lBBDcfSqVZjLmNmApZwLpvPpC1mkywwNqlYIwuFnE70Cy+++Sb/zoshpyMUcjhDuDmaysCfQSvCqTkhoyXoWTKZ1mdQaxlzoIB+M2NjN4yN0c/87Gc/E+q40WUHfQ/lpDxUfzlioO0ezgx2vVTh5jQyhckOlB3kSgXYFXaF3Oo0VNRyXYWKpWNpQ3t7Mjm/ZX5en8nE0mnhmmotoI7Ib4Ylv2yA/AYK6BfQ5bOXqI6ZjysvaRx1fwz9XqLEd8fdo56PuUeBNn/M/OzARweeQP/Qn2effRZMH/0oGpF78RZ4ndFRAaoZIc5abmhlUpYwE7EwaIgZPflJtQZlrDmQa4FIwQ3WXKQFctluKCBMolsWPUZ/zZTFmtOA2ZDPZcMRM7zOrRsY/IB5rWY4xZyzOT7ZPjAwrRltSEZmt/O3tmYShZ8U0pltO5Qz0/Kt69zpoYZ3IbhlIL4uK52aUa5LeF3Jht+HZkegJWv9bzYX5gfb4qGM9SSFKNq0+Dpjor9BaSkjwm6SKlKZcqMxqWeTRS4X4XK5JOvRch5PkrVzrL6SNCK8xmKG9mRMjy8xYUwGYRSZNILdpIEAA1YgwAf8MrPJkqFWvO+GpXd3rEsk1rW0jJMPPJrj+wIdHbFYsRgDru5VrPpwTxI/TQpX/kH6U8FTHNxdakl2dydbSvza+tfd1ceEj+KLr9Oz9EnKT8Upc1lJS+OcycGZpHhMaChoHCErG5EF/BjafCFSBdpiZQVgrcaCVVZgEGVMbsjQkr5yZmD74OH+3g5wOBCMnRv0w85iKGV/o6f3l8lnY9nUxvTRuVRvb88FA6VDQfC3u+Oj8f5sZF0iFPLyTxxqeiIHWutEIr0+geYdmhvUZWRuyO8j00KYExkyGdD70uIRSDIqSo3eS9XkPZl7BSuGCEF51759w919s7N93dk/X3vtnyfjEy9VKi9NxFFdE6orEeuyQl0roQJmQzRzWROpN4xa2CzWmiRtoLoROAJXIbiMlOp+o47VodpkvhaSULBizrUWrFrEvJEAO7aWPmg9IBuUnm89yIx1jLKj8IW98nBvhP7AB+hIb1i+t3nvXixjuqk8vA6vUUo0TxQKkMo4qZSW40FjtsqgORoKoGkSyGVQ+xl4/cGBB9HnD/jyIK6fWbyReoQ6Smko5f0aFgxUKYNAshYI6QRhpIVM3tCIZZFG07NxI+O1YkGk95h24f7BCMdgTsA1mp94PD6zrxu6+O/A3ACRi0TuoT6UlOJ+qdKAJYqIcVHabRYlnaxexgEiHQXNhI6K+ykG1yOUZAInx386jkRvFpVoRbw4SeadB/GiSuvhWCvHSitaNZlgSGhbVs4ZOpdtgYBf5L43jvf2XrJhwyV9fccn2idbWibb2ycTicl23dZ/27Xr37YK14nhD46Pf3BYuBLYEugSRrJURqkeYCQVqQp3h6BjI4WMPvC/j8S/k5+ic9NrPnJqslb+ZwhOJ4bSaeP0DZxeWnGqqlAW8gXMRhgwGRvppgVwtYBwmXi8kAm6i9F8j2KsITvbWdqeP/B96OXXTz3RWeiON+Z9pZDH29+aPye77+CzEwLuIouvw+9Qfy1UpGx7Sg86PfeuDnQ6TwvLtagrHhvnkQp9Iz6Zj80TPGEezqQFOGKQy6RF0YMAEvGHZK6Ixp+eM6wb041lwz2RSG9TMVcYGcpli+pxw96Jzm2FfFOmp2tfSRcc6/B2lH3FYKDDt66UTXXkI778TGo6lxsxS8wzxc5teUE3IfzQPoRPBeJEZ1mjAbmUk8sbEGobCI70VW725QCJSjNmaj2SjxfxX4Py5tnZScmvbirDi3xh/U2/gjH+foJzhINTqE0fFSpb7GrObjf4WE4mAYlPXTGYOYOEYCA9T+RwHQZqw8aszFrzNd55ZcuQdlS3vq13arInWDZNx2EH/6pTkhsr7u7sOrdXF93Y5e4a3tCzZsrXGIa5iR9AomOhXN7XJYwR8SqFaGKigmiMWlOQU7k4lcqE2NWkrg6yyrH5gtFa3/UKtn3u3GKi+f6+e+hALrurVD63u6mvCX/68UfXs6+jsLsb1Mk3aFvH7u7OfeWJSG+0qReTKtobEXHza8K/+nIDQ3MI0TJhyiBeBF/OZ4YxKPGfh6/xJ6x038TMqZvRGBhS7100hkYqSuWoYjnyjyjIopCMcseS4EjCu0k4moSZJCSTmsYc16iuaAKcpo7V5ucPHYrNz9dGmaufnkvsVa/16r8/x3WWMk2Z3NbO4tZcJpIpdXHlXF9/Ntffn+vauLGra3KyS5efb++YsUts62L52XR6Nh9bZ5PYZzra5/NwW3c6XSym0938/YPthcHBQvvg6WgjCXISiQmTp0obkUdKUFVsSzAzhurUFYnzHyJZSueW+gidhghZBBJ5ajQRqMS/CdMCWQQSCfNBsBUlWK5T2gf1VkNFqtQh4YxFp6FOdNKnEaPVX7iq+p0/vCRZaapt8QvUt0jbDkr3oMOoNghtE9Ff3zizXA3sENvtX1IHdV20L9MMRO5TbfAg/AZZqPL7aJboykIuZJainwJcyv8Uwq93f238Wsm148KYu6hH4V14jNi0zrKOlXAsxXBaYk8xcopKbpmPYRrgWYl/uuCbfA/5fWzgyIAg94qoz0fEPiVin6FcKIc6LUKIfwn1e/k1uMuvdX9NsGXegceQLeOimpC9728yVHQNHNLMMWKXZwWpvFIGaqARlpnr3w23NgW6C+midty8e33n5kwh5nPP6EMC1oFJ97QEM8FUsb3Z1zHXOp0rjEXc+WDzCps+t/i/mBL9H1QHNUAVyn5NmDMNcK4ypzG5XCYNw0py0JHjOpQJkLMJjsWmeWzLfDI2b7Ai6zxJ5q5kGWsG/OEImkz+JQsMmQF6NI2wiKtj2DSyx5YZk7Du/r17T5x33n17xgZDHTrbcEtuLpOdyUR67ZJej7vZN33j7OxN09M3zQ62OQcm48PD2ezISHbDwn379t23gK6bLooGQpHsfLFjS9bXmOLfbYzPFWdvnJpC9W6ccpW8bw13dQ2PdHaOCGPXossNSNezyLJqKwca9qjgKhWMqMCkArkKVLRUjSwbpBWkFMPKKxSNB4/cEswTJSRU5iuIdyEDgYgPuR4MMqEY8GwD3fwQ/72hefjmNpfEtQ3bDE88AWagx8Z4nsiz9ajfPOpXjzggQmXLPokLwi7uw2HYF4ZwmNJHOL28Im9rgAaacnJCv6VDGVGYYcVp9K2QXT6o6VCzcenreoD81rZcIt9X3NnOvwEQLLgbc4GvfivY7vF2hL9OP5OeLWTHzRLDbLFjPguf8uVczpz/Vf6RYLvb3R74m6jT6K8TfkV2hMvCsRqOZSquhqodIakztpcTGAEGbV/Zvv0rC+uvbu2Kbi+NXzE2dsX4FZu6W2+a0e24e9++u3d0thdbW4avnpm5evjczmI/ogvGz40IPwpktaIeFUaOMmAsKOTVHo1VFRWDAtGcMdCv/8mBO2Zn7zjwk59c+slPXnol/cymL+zb94VNEzdeeeWNp36Mx4HahT+hdpVUtOxAM93Dwjz7UZZmWUop55SodUZEtoDpQ3XzHv+sh9v4hyDKvwDD/A76mYk/rv/jRH27DViKYwnCNggtNcjrpHi1JX2g1s4UauRv6/nviTheRDgOU7lyABkEMrfFTTe6ufZGkDSaGml5YyMbtnDhhoqA/SqQWzA/zJ+ZBliYFJBqxSKDlQWg+JVdu76ye92HE50Brmv0qnXrrhod2h5weCX8P2BW2tyy8w7djnsWFu7Z0Zbpak4IZEmEXOtS61y2nuPJc8Xx0hzBowdJTKWUaqC5hgYlGrBSXjUpBN/SmNH70LeAHo96Cg5OTfH/ggbN/xfkTmVhgH+EEtuj7iQ2t+oB1AgjF+3aDK40RYxuUs6B7IBnUTktth+0Uk5BV7QNov1gQc4QETGoOzwf7jpsWx/cVxycKmwv6WbW+Q5v6IW/8/rRcwtUtU/6XNSWhmoq2xRyjbxCX8PAAAOvMoC+MHIp4YQ0mueHKsLCA4InAxlzA5gDDGtGoEmgZz9Cm2vvnw7hQV0LRyX8s/wBCUxd+d9Vvvi5sPZSbpDSmCOkchFejBnEUVPQzlfQCK+eEMozBiIXzGUFq9JLga7oSQW8+IHr4B+EzUKAQT9WhJ5jr0pePTYpkfxu4HcSySRq6AF6FGH2qetO3Uevu45vr431QtSumjKWG+RqGWpWXW0WtwqZCCYSkBYXYK9EMjXLX4+uqL0nPwRfPZWlpz7E56o2C6NEfLrc92GqhFipDVYbkZC7a9u2u/buJdexy0dHLx8Trrpd9+zZc88u4ToxevXU1NWjwpUSZYIXjUGFbBM0yxRWTqFQURaMU9WyWbYkGfSBJUGoX/9G556urj2dt0y92dTl93c13UY/k9/e1bU9z5+Ei8KdPl9nmH9H9AsWnyNjNCLpbC9r6Qin8HAGeUXBVGhxmKin0CqbzMqGC5GCdYVhRo9ObNlbHXNPV7rn1u6ZnuloizDwtZeNOWO77t4rjHz6E9mR2AHPFYnLI+f3COOfvKY2/k5RZ4TKZq2LU+zXglZLqZWYRapaAjEqllyZekxowYg4NrAcHX8p7ulKrEvR39v1nYNTfwytidRQkp7uUDD8SxIIIsxc4O8KY8y8hfnIjWSUBOElRnWUIzGWizVUzI2cmanIgxDcrYEmDXxaAxdoYJ8GejWATBaNnCKKEtnfmfmaa7zk8CRhCYOC3MKWgAeqrs/ucf2EfnN39/TwxsTabW27urs3F5TrlIMdhfGe3uSmPYPntesSM92+8obejvQal845O56Zybb0eP2hzu5kc86q8+2c6t8SF+UHRiTR98ayQkoDR9MVmcA8eHoHkAOCsPSr78Jvnp6ij01MnLpaqFdC4x4nayjmslIjMTZwErpiFDgBzyDsVeirJo4of94+0jO1eXp6fqp0ZEI3eOlG+A7fPrN//ww8xXdtvExYo9AgePYRvaF5kK2pCyJpjNZMAU3MgGbLfciNeHgL/84MmoxvDw7SLJaGgPiAYm5HdU1YVmhMrArVNwn1xVktNIGuePWCGCcB/ZYrVBLt52Y/o5V8dMtjs5/WSfS3zaJ2/9LaSmvQlS6hqS5razv1DoHPgODbXZUbDSvlBjBEHDFGIoxA8uqeE5ITu1/9y67vSB7fBRU4h/8tWPkv8h+DGP8j0h62t/rE8eLG5NXxVptCMgj+svMhyYmdf5qCUbicfx7i/KX8A6huGNXVkLpI6jTIOOw+1hTskv+IZGoYrkB9Ps9/EK7hbXO0f2Lu1M8nBDm4eBXYGRtZZUdqGutoVlxlx2t12MNf/91LLvkuYxt4762B1etBUF0PyiB4T/50/KdENQEVWryK+lO1XYqTMJyk2q4VyVVk/QZCqNnv5hn5wHvnCe2q4LPwBOFF1f0sTVYMRbIFEKkCT/V+fe4KyeVzSK08+/LLeF1/sQlOLh4ga14McksQ1rAxASf54I0D6P0Oeox6s7r+KK6JZayBHfPZUfqZSwW55kf68yStodxoBt9dPiYLwT9CMBSChlA0RMtC3Ldl8B8yWJCBRAZ/lcEXZTAngwEZZGQglYFMZorEQBoDd4xzKyt2RWVaB8M60A2pQaEGk5ozsZUn/RD1g8IPfvaxBtjQsKOBljXAPxqgt+E7DXSwAeT4I6NKWwSpcOiP6E8MWTAZ/Af9Fdx14R322ecPVb12bNrUu0UWM0JtQFAwVcmR+cps6uL5lnXm9V3Nw+aymysvHJ6QWGYLmZG4bSAyMFhu1cXHWic2mdSe9v6QL9WS3b+Ff3Q4lB2Nj8R1po6W5qyAKzznsY1upkJUY9lgDnHqRk7NVqSKioyqmJWiGsD6LhwJEOZhM++j9eTzVsnElERine/oP79cPr8/gFfG44mxZHIsocuFEZWeG4zkBi4ZGz82MJaa7eiYTQlXgV+CCB4pol0j5v9GwQZnK43KVSuOq+w/bISfPNzTc3hk4yHbmHE0lxhPJscT+XHjWscFG3SDx8bGLhkYK3uTra2z7e2zrekWb2mc4AD36VyGA7aR0yoqqGPNchzU9Z6JYH6vEmbZ8hEZd8dmG7IsJiS2zR15Mvg4BieuGzg2juDIRQafO5UdDeeqKJhrb59LibBo0fhtlJfKlH3Xep/y0lIvaLycRsPaDJxNWbmuERoakZvaiDFD3NR5wSqorfxU6cP63LTonhhbaMxRL164puvQ8OiBIs2fx6THmndlhryV9TfR3r5s56QaATc2fHyk9/BalaZjfdPmQNcw9HvL8bESoY0LXRbo55Flkix7rIoKGMwcbZBVrscqcUhDyzWcQiu/VE7LAcE1n0YA4f2tGNE5GQEsq5nwcCNgQRS4eMuW+Egi5jV4Lb7UlVdOwX1jhdRQRLWRbUg2t4zx60T62GgLwomXSlFryi0ymUUWljFeGbeRgQcZuIABC7OHoRmvtuKUVSxNnAURLsU1I72MaUcUciyN5xhZiw2LerkLAqfx32WBlStOT1xkGtety6+bkdg3dfTsL5f393Rssksmrju/ZTSRGG1pWZtIrG15bbLoixc2T7ZHWvsuHh871tfaNMxbjl0OsZbpYud0Al2LMwlBz6LL24jfLMjq0qgsrI4QkqpYFAKniRuNwjzD01+PxQGCRh8ooall3pSf3zE10NbUG0GW63MDkez+c/iHoaO/J7U2yr8qzGs8vf8X/WPku2ipdNmvUVTUsspDUviiFKR/VcI9SrheCQeVoFUmkaHBKFnRgCHyaflKFYv4fDYYtDsCAUcz8lM2C1/twS08jftafGXRLfblQF5+wKHn1A5txSKrSCVK+LoSPqOEy3BPHmVJuVUpkePOBLmIXP30it7oSE6wmvSEGNWOLzbLbQqPa2q0Z6n/9/6TnZDKImF64NQjY2NUDbd/J7rcivQnq2ZkGLNqhWjECL5aASEX2YoR5N2Upl4/7+ln99wxiz2b7r9Kvsc/L/nb7K3VtqhPVP01qsIolvy1Ur2/hsoxKcSfIcpXNuqdIZWZU8k8HCWryNhKSCRqptq7WSCrdTVx68iMhXlr20aDc644OzfZ0R7uDkx1tOEr8KORbD6RyJ+7GRN9sBwfifEvQ/tQOTEa419ZwoEGyTPEX0qzTCuCYl7OX6djrwmJeXN28/apvmJ0TRD3Fc5V+2kZjfK/rMlLPN7lvhFb0Sr/yX2hXxzp7T0yOkquyYnW1olkckNr64akbuiS0dFLhoTrWHK2WJxNClfSb3GxiU6TcRE5rQlxskYOT3FhdJolOV0dndi9H6kuqzlArZjYxYklNdWB9JZkCsJ12gr4tVVFlQsP/AzMy7UVxkMT0hs1eKREdxoR2ysrSIOa6uAJFU4jagL0CnjgSQlWF/01/TExdaROdUgHwrmq9lh7qrkGj6A6RLrvotXIZkZ0l1MypUh3/WnobjXX0Vw7nQzYvU2h7hAi+YbmgmKzrnkwyv9KXIv4OhpjEzVczrI+q6/g2+uT/NgHBd8HfA/5mCYf+NR3q+Ejasir4SE1/Ksa1E0yrklZwfvWrMj8xM7RZ0Q7J3w6z6i2g73kF91+wLrWOJpI9eU7urvGc7OZ3n2WEf9McykeHxldm9/cphvr9LekI0FvRKPTDrXHe4MdWX9fxO0KKI3G0XxyMEz01uJbMEx/jLIjKuksdiPHypQaTimrNNiVwrZ6OoN31hFc4Zxe3M5F6slkRZ5OwYwAeTVnaJqbmzp+XGcMeuxaj01u0od7ITb2L/8yxv+u2WTRb2Rlwho5wtdfgBfmnoYxy7EhgYRQ1YogflS46kZ1E4dKsCJu2T7V0xbrDU2ROag7bzus4Z8Z7msZiYKXp0fCWdI+iy7vovZZ5FtIEXlZxZIvRTwgdtNt9OfmfjgNPL8HPoskNKnD0KiOBvtQSo20AdXTKJb5UJlqdSUE2NmjcPnM5XB0+s7pq5BO5vn9cBN/AG7kafgUv0+QeWp0+SlqU0nWWpRSkFWUiqW1lkjGWsiwyMZnA499dduVl+66/8GdV125E5h3H330Xf7U44/jNuTI1n8PtSEnfpKsIteIYykIfhIEXnpu8+foz27mn5j1ws/5q+HYqWbsh6DK/4nq1ftIiJiK1T5SCBLIuf8I/xzk+J3DsDA2zH96jMBvRT6SA/kyAeTLBJBxpec0AdGXsYS7AEnEHLYQsvkimIm9IqxBo78W/OTh2ajPF50dtZjDKT/6lwqbLZfMjdwbjQ/Eo/eOzA1k4/cm21QSVSF1bzwr+ljrF6+jbkV9Loud0AfWj40xtvcOCmU8CC5/FS6KM+g5Q6DmYwkQ4W09DCHZRbZgiDJmAcIYeMzhVp/f72tF8IxWYcwjYFIFBExbEgNTB6bQZ4j6A7wJl1BOvDMSk4JaCh6pVO00ck6JGtp3qaFVDQ+o4Q41fBLNbgp7LpUK3h0RFmZTrcFwRNhdD4hTWTDJM3gSw6725lBCb22ke/0Ft70tHoyTm0De8wejQaf1WSKd3tqX08d2NVEPIRmkRJJNeb9O2FBLrthOQwxjru3SNTesUUzCx2r7Zx8FM//7N4nMJroRx2n5Mee6GY9WUmFUNc4VI5/o+oCncESPbqxBi1WPJCb8Yr53oHt7Pr+9e6D3HOuYZyhU0I3yV4zm86N3jcqnphoGD/T2nj+IvslHCt61Ov7T8lTQm9mhhgX1jn7Bx0f23zeoNBUom5gWLhxVKDmFgjG7OLNUBCYmhJgI62++HNYUESSZwpEV/g+Wl1b8g7ft8docxju83Xwh/1+tGXr7AK11ODPznet3GMdVxVRhjc0uUTTIPnTY55Y8HI4ozz9/2LIhJdcNSuzx3lh2U36qzYuUXou/PcpqdepBZfOEh2l0CzZlHzVPe+gW5AfEqUjZ6DKrWXucs9vNrCKI4DezZjE0hoRdCSvjJUBEwquFiFDWgpVFxGKtLNk4i7ArzIK+znC4M11sGx5qK6aLoRC6OHsCQ+3FX5ZCoVIojK/hGzqKa3o6iun2WKw93dHR29PRkW43W+PtMxG8yyt+auswCURrO9VVDphYGoDmrKBTSmWcEflU0CAFOSB7WG5TVbRyCYnGI8F4JBaPCEfkxeBIPKQS0C+T8UCmBOgvwjUJk/j73Xff/cFHtn/EL/Fdv/2hY1/60pcmvzwwNQD+19rbX+N/jr5+Ga9p4nlP/5XsvaKZL6vNfLMw+8fG6L/yV03yu1DZ1KIN/kKfpDJUD9IgqjZpyS1Vce4w55YSMSDG51XNmpoejQg7/uHlq4xCzJWwahvEXEL2IZOA2fgv5T2F8cus6/RjbW3jY7Nz04nobGq+lJvOK8aVa5KBgruzZ+FQyMP/uWNNrMniHJtjQ4mW2eJ0Yucm5Dl3tWRKTtfMmuiwLbepeX0m0evzBjsdMWsoZfHNT8dGLB9NmdUGbd6e7XLRyg6RhzrpeVhLf5fsvbeXQ/o7pPAZKSD98a4UrpHCMSn8XgovSqEoHZXSUUQcqVVJJTOZpLhWUqlUVmykp+t36b1eNFy39QYf+uvxWOl5nxn/tXirf/G+ZAB08Gdxbb9AXVpeM5CGbBoCaTCnQZIGeSHNtcch7pUrh0Jxbq4AYwXoKEC0ANMh6AtBLgThEBRChRCb90x7aM/XFl8um1FpZApr261zVtqK62KrGO92z+NfIcpT/IfuY8QDml8dl7hiUtTWhGrTXdhR/i+uu7v6SU+l0acVX1tb+vrSriajR2k3ueNxd8jmC3aArruudAsqhT6tpMaagdZ0v8noUqsSXm/C68BrEFGEn/sQfjxUguotJ56I/ChCRyOgiIAswoVlP5bRDFkmkyXCCVruSXCep9XgEJbGKLwMkUSDE7dwayNcta7lhvqFLVoc2xfWJvavj/Qae1KRrH7IONefn8uOS0yjrS2lCFjz7q6utjDoQr2x/nGjUpfucLoDkUJsYwf/Tk8gMeAvhkCnbW0KhKnFRaTX8vA/8JrOT/2Ip3QM9SPqSTF2Yh/8Bj5ISSnVCbw6LsEzK9WKrQZ9AL7AfxLu7YO2Af73qA0xBk9HUzpUV7KMd5JUG9Vaboy1ccoCeAtczBvzshIPYC5QWkEu0l8II8DkR1Q/K72ZakQIcljwglt139d8JoKv3doYbzTTnek2R3yT2mTQpN6H3BBtdluDMnqKnpo6rlOrDEWEjy66AhvoE2hm2MtaFk1M+jMUllvnM8AgZZ/BNruRxIQgLUqf6MHz2AOPQIDEBjrxLoPWybFmHHyrpYRYCcP7RNNe2hUIoE8Rf1zhsMvV1OSCR/B9p9/fiZ8Wo42NUfwrxOsgov2W6H8tjl/TqjhZA9nVkGjJQjVSNulMdZUpI0hmFsH7xweFiEz4D34cYgO33jpw69AAoqkZtoCGfl5HQwOP+cQC0+Ah94pFzB8302MQJ36/s6x7iQI7FaUexlEyICdLzlsIVxszbOAH84Mj9DOXojaQb4rtfsQn74n2ZRNtQ23oKN2DOmWDhmtQYi4jGwo1RxCxG/6BYLxrbxf6gHd8bgyaMttKpW2Z9zYzG9/7d+K/gIS6Ga5C45ffJ1WSNe96AbimGgojqdo7qM7QohGUCBIHtbXc95oKPqT6rIo+qoIFFai8Cs2QScXNmhBpwGTS/UYG18o+JXtBxuyRHZbRkzLolUFOBkEZGGXgkHEOHcFzrCq+hLkdE+RXvTcX8OMYTbYK2TUZZVpq1ZlsNpNZEw/kLAZpONcR+2O40aI12w1Gh94038rko01tFKaDFbZQ99HPIDrICd3RXIZfiHNN95C4zKAVreGzTKPv7G5v310qkWuwHImUgyF8RU127luzZl+ncB1pGkwkBpuEK4GhHcmMd4nM+DGRGT/GMgM9Ty2+Td9BP6fzg9xO6QLUC6Cn0HsAOK/2/pll7xvwe2oRHq2+ZwDxmB8U4vvtYv3vkrEmkd5/nPB4lNI+GPVzUdHMXbk8JsbidyMXICPESxGVIKx/vyzav12bM96Qy+eZDqUjJHZKs860Z/2SQXzqQ63TufCaZoc7H2wvpXsToXQ1ggrBSuKFmKsQDpC1rGegSKMnlKWsoTU6tpGeofUUQPs0FctCLHua8p20Syyv17LBs5fvos1ieauB9aLyRlS+tLL8dbXy3bRFLG/2kvIBVL68svzltfIdqEE0E8o6htb5cQWGtqMaw7gGrpJFsxrX+RiziTJQblQrV/YxQY5ioP/bDLQw8EMGbmDgZSQPGanKzamAxDekk0L4zCHsDCE6+YQAqbq4PjYsKGwyN4xkc5L+2PwQ/19D80AZLJ2xWJfZOOFw6A0Oh+GDWxslrq1PPEF/QRuzxTo7Y7Zm7XGHAb8yOE79rRpYRRN//loSH2KiEmUHjunRqk0cK+HUrJqltPKKvhbhI1q02HAkKm4pyieHYdXjWK6H4IdL8T78W4d3wSuSxq+JgT8kpmtPmn9G8BUTi0YSI5Wn1pcLh6Vglu6W0jYpd6cNrrLBnA2KtlEb/a4N7Daw6Ww2ZTDGBZnKBwxgMoDSwBWVSCwl8Y4XcXHaahtg2PXSQpXN/SuFiuCRnSb0iv7wDVNaQa54l4kb95ZPTp4mICvfDz4icuqE0DrF3i9sXxmiRZF5S2KeCK82CXMBfiHwHqg0Sic9A9rlvL2yfCf8QSyvVStDZy/fBb8Wy5t1SsSqoF8+F4Tyl9fKd8CvBN6mQePFFWiwLuNtYT5Qd5I+4uIYOsQ+JDJGhvpgV8FE/aaufCcMiuVZKdOxqvzinxFMsrryXVAWy6vlDB5DQ90Y0FzDuwZ/Ya4gPoCTspaVVqdeaqMrUqecqBkxX+cMNj7ejvB7Bfv+fNHe3z81xViERxZv9e/IKXGP04cu95IYKCf2uDVOjgaHlXM4NBILDnHQyJd73NiO0K+OvCOGxf61a5fF3131zDPQMwB9dUF4bw68UeMd+kIit1pFuRWt0tar9rIzEJAuk1sk5ojgMS3K3c2inPP6mUYlknMsQPTM5TvpfWL5gI8JnL18F71DLB8NMl5UPoTKJ1eWv65WvpveKZaPpEn5HCqfWln+8lr5DnpbVe76s7gCQ8dYkXMEuQvIy+2Hl+FFxAuaE8oGKdMgpKGRYPACXjCwshG25/bbk5/7nPC58Oabk7fckiRXEjN/klHRbyBO8lExRF2zha40GRo5s4HBcZQOWQwZi4IgFPciKYvgPEewVBFtCNwRZbGCsCZOCUlHYMnQj41u+/LeTWtDHaHe0W137d00Fu4I8ZJcEtLFnrHL1sKey0ezLfz3i2voTTefs/fuXZFiqJi9edOee3Y1dYU7+Y9f1AR/cI1eM8m/NHr11MCFTbzZJfAGibUhtGgTaS0TecNkYVzaGbCql83JleU7iU7D5a1mJnj28l20SizfaGO8qLxdvUyuCOUvr5XvoBVVuWJpwhVo8EhWyxW6j/TRKcqJv1fnvRIZjzN4IbEGU11sm4ayI0oZVXZOpdJQtA1Z8uiPOA311fUjYa+iNguxJ7QU1jV1y+owt2NCnNuX31mKcgNq3eJbtBHpK7xiZQV7XMKp1KjbuNvE2RUVN1TiylqMqbA6L4nkqjHc9Xk6ZJ+strFeDUcGg93l7JyI9kcizs7+wUyxdzq9radza24u19exsEYuXS8Z7wh1B8fX5Fq7h7tPvUdLune0pWcKXEJiPmdN9842hEchXuVlhMc+gsccfEecZ/EWxmWboZMmgI1LtFpZPg8/FMsnE0z47OULxObE5XMpxofKt6LysyvL/6pWvh2+J5bPdJHyZVT+nJXlT9bKZ+Gp6rxvKeMKDF1ANXbW8w6pwzhrddrgmVqd7FKd7nobDdVhLkCskkI82k9dUp6KhbhY6usyQA7MizK4SwaDMsCxATQO42FLe0vQVwK6BG+UIFvqK9ElSRv42jhFDhw5btAHPofPYUr1cyllRaEGuRDaQyIqYoLZhAyT2LyweaX7oxivQwypM4TqWE8TeYFMGRkyCkn4hQxx8KoYnrWd0W7DkHXvmv6ddu+2rlpwRmxnZthXWT98sHHoGrqAQzS6Nqq/PxK3DDatCPCJ+IOZ7lwqmeupRW50D/UXL8PBG7G1pXfiI3GtuRrzg2NsjCTGpkB5ygZkkyHzTTTU2IpSW9OFsf83kwx5IvD7gxOnt8m6t+VOF6BTGl9tlE0oRir9q0J2sOwUYmQwPw+J8+WkyJ++AONCeinILuP/leXz8FuxfNDPhM5evgCviOWbQ0Tvhdll80Uof7JWPgsvV3k5kBP0Xpxdwf/IhqduIX38pziG9GqbbOdSH9gC+3ld+TyUlmyy4qryi/+D3vJ15QvQtmST+USbbKFmky2+jd7+FslJwSbrLbcorUHrpPUT1setkhNWuMYKB60wY4UBKyD6mqxgdSoqNllFr5SCVAz3ITE24hx5f/vNLtptNfttcpI+JHy1eKt/LyDhJUhvtCD8uumfkvgfZ1nrTXFsE8eyXhNUvMqVuX0CRyLNjvU7DpbHuv30awSvVHp6zy8lB41SfSpwmWOuvejaNbjb0dfXVzo0nBiJxYbjidFYbCSuG7iof/CCNX4L09ztbOuOeNRDjelEt7v81YWJ4wMT8fXp9LoEvq6PE91O9piw/JwQ5WfVB2iMmP2KGWiWLZOfQjwFptUGkRd+t2T3uUQ7buOZy+fhH0t2X/Ds5Qvw+mq7b3Zl+V/VyrfDG1W7r5WUz7Kngf9krXwW/nQ6u29nvSwvUCb4LbIxyJoeZXhIq+K0WqfUKe4grYhAQu5qfUrY38Rljhfxyt43qxl5H8bZXngpbG7gJ3XJXwyC72UEn4fYiM2Ur2wyG2TNHDISLbKKQlExsBVZLcYPc+6ZLESJxWoULEQL2Y9jLBlYbO09MtqdcxRcCfytnHXmXfydLvtTwXByQ+svJ1qzT/qa4J4DpdFLhuxRTzy8fw365oh5E4tDDijpk7PF/0S/0wX+MR1F1hFfh78QWs2KvPBjkXcsNtop2m11cmFl+TzxB3F5u5UOnb18oSo7weOgsV3oVC/JhVr5k7XyWfhp1S60NdPELvQxABfUyzayr0/62CzC9IOqz6yAELILVdIlmPCe0GITnSHxcGEcR6MNc6yb0yorYlTc8rge9p8I7OmcWhFIQyJ7cAyNENlDP/PjvqXQnr5fgFkIoqmG9tTGcLI2hiw8WR23shG8MjRuZJ7UjRvpVSyjbwFeiBeTLYsXG5zCcRR0Ne/idckkkrUOxI2lcjPSsQYtFzfAVgPIDGAwsI5mztFQsRg5i7yCI1XoCuuvJUPVkn1JNGNdPlSufnHnjAkpcx9Pwu38g9DM/xhG+O3Jj8+JySmXrV172ZhOSNEYXnMxWfw5Wh6uZqhcM0kyNIT59DrzFLIfglQWWf6xssNt49zBLGfq5EymIBvn1O2cGhEvqBQdL2JNZJZL6NNbSqvBDgmWkxAyNlTxec7tW2khDRz0eitD9YFkdG81olWIJestFnt762yjns7OnmXxZW8JUa5AddAbYYLE3x8rzwyxR9ifsIyVBfZ3AA8DHAMYAXgJ4LsAmwEGALkIRaDRyxcAvg7wWfgK0NcDXAowhtwr/BoaARSIU6CBoRal8G2kLnEARSYj7mnOL4WB483NSobsLRQyZPuHDXTsGd2zIS/PbaBnL7xQWiph/tlBt0MrwxJdfUF5g9UKMisorZyyQW/X0w1SPXdCCmUpSKTQ+aoUHpXCJ6RwrhQm8XIdfvoLKVwoPSF9XMqsk4JTCr+WAqrRJQWHFLQigCJMFeEf3vIQNrLml4vm+n2d2zrxgmZXzOhymowul5Fu74zFi+hZZ8FlMjldRmMjsT999CTsp39ImanHyh//jP5hPa0vW51DCj1YGiRRCV1qk8xK6C8pgVValRHlXqVEouSOSGBB8rSEZiXQIJHoZdqwli4VtDPaL2n/oZWw2oj2Wi1j1nIFZPo/aQZzQg8v6d/V01/Ww6x+QU8X9fCsHr6Me7tFj4ikh0v1sF+PRPA6PY0KO/XQoAe9Hpsywr+tVRQkD2XQXDtE9jS3kHl3CN0gJ6GCcRHB1rAQ90LixTIIK38O2BuVPmbAm7Z7Wt0N6FtvlJ7UagyhcMbu1ocKxbOfabT6vhuMtON054Gc5IPV80BQGWbgNGUY+XtvVcskkYzC+7saSnVCxuorGuGkJELWEgjWkiwwGVJrSk2tBlfIAXzIqXObNzlGGY8VK9X6NuT3sRohomF5RnsyZ27EKhi1QttGJW4rVs64FSJfk4s3U/dRR3Us9SxFnbqVPEsAD7NE5n6f7L18n/rSiufPkufPVp8v3gyzqI0I9ewif+pW0taXTgmxu+PUc5CEB2p7Zgi+fB3bfry3t6Wlp6flud6WZA/62kv2fhbfoa9G7fkpPY33aPTUa2QPB3GOcO4HlQcfvEZJUZt4kpAxkxWqp9Of/3watC+23H13SzVXPo90t1CWEcqSFS22+LnPpZ9+ehcq+OKLFCxuXHwbzqGfQ6TSPAi0rkJSbzA1ImCFf4f/zvEtLvqh4KkRBJ8TtkA72R9Tkj4akd21lf4GlaDGyulQQf6CnGblXBPra9P8RENrNZxbiyw15KzEtEUtzWpZLW1yciZphY5xtLq67CGEJZBQFzHeRcj4I+FGuSwOfsFHplQDENiMOYCPGUJ/yAI8vXVw8+gV8+ZtG2h6wzbzlitGIuOeJlfGPXbc9eqbDPPmq64PjvV02KPFAyMDbq3WPTByoGgx9WnVG8cHzDabeWB8o1fQi3L4HbxEcoXsyDPVmOwyNa2RyUkGGw6aiaXFA6oywhot3udFgjKDD+TK4WOxiDEw1n9/T/wTnWW63NlM033uPppupu9oanrklTvueOXi+Be/GL+YnOHyYbiFaaVk+PwEkZaBgjWgD3zzU498/dMD9AceeeSUqXrey/morFkoK0TvFAgcbORTA5/+epT+wynTI+S8oD/A68iPWzU/8f5zeoDwrJhnpaNx1tnKOS6u7/8cvfdTSWR3sNRR6s+UCUcCgVwjbZLMgF5KUw+DjaqaT6iNONLHo0yQCuDd8YCJczg5hyPAqjiWhA6KvnzNUiBxtkveer4+bXr+24cOffv8fzu8buqiiWvHx6+dGNoZbFXxf4WjspbMga/qzv/G+ehzaN369ddPTFy/viXYuvmgu2nwI5kLEBwbF19grmDISmzZcbUDMg6wOzi7HZnv3A0+8LFq7gakSpF2iSXnaxkrkuUBwEuABQhYeJHtim8dPPitQxs+0vaBNVt6D/X0HOo954jmZbiO3fXA4Sh6c+hbB9uyR7r7LujtvbBv88jnI8nDX1tYygeYpFWUjoqW7XjvRabk5J+QPS+jUzIwyeCHstdlmKZY0mdiiKbJFTHSMiFE2jCdNWv1jWsmkB03kUgzM5Lpfv7XAt860TykEWFNlIvSPWTScKyNY03VaNLa8DwgtdSycYiBY33hSF9vpW/TQauKvz06sz59jvvA+jlF3u/paQbdwNHhsSO9XLf7xvXDnYkhqNg9wQEcn2NZZGjEQMQf9pR1LotXxmlSnEbjxbkv3hrNhVjj/8tsl0ePOHbr+lp7RiXm4UTPhYODF61JDJslBz56ILkmFFoTaeptQp9TW7qbw23rR8MO/8DRoeGjg357jA9/6HqYig4nWoabm0cSieEown8zwtBtjHxlzGvzhRdijSTgz4Lw14TGc9p9/rOkErxw8eDgxUND5NrUF43iY2DwVdd/dGT0aF/f0dGRo/0L0eGWluGocBX6dKE5cy+yQSLIEy2WgwZkZhuVsoonyXnYitKj9NgiBU6qU1QiNpbT2tCEI5lEyaUNVbydUMuKW0ppIvHjJGz4/fLk6MvnbZKJm8LJK6+c2rJly9rXJBLrlo6+g+XywT5/nadCMuauTJBcKLhvLDUy+9O+pey5ZU4Lyc+i76Sfp2JUoewJgSHK+XF6ls3NGWwGmzwWdggZWlDNz8okM+Jg0mkh9f80eVqny9vSr8zdei02moj6TR6LD4/otRWJXMJXuTwpjkPM60I0kPwewVukRpEGS1k0EQOHDD5ZJdPLZdhKnOUimXg8E2Eai6NcUVlpDHAebSMyqCs6qQk7VwhqvOwUq53RUh3HaahSpczKwZ2NUsyjOBHjE5hSk69NLRvzltHf1vmZqxIda2QjpKtDxwoqrsqBRHSU/DvCSyfVX47mwdDBZTAd3RHOzVasSc7gtlrdBkbe2Zbwr6BoErkVq7BhPMvAV2QhvR+Zt4y+tjwB7SYRMatG+MLKvLR6fIhzEDmT56BxJqh25AcHMu3tMfBHOAPtJ0zrt/lt8kQ0eBquXca2wgkcZ+dcn77GCFSdKXgGPk5B19RraGD0hwIBkm92RpbmaYHE/Dp6Omi3B3FqmsjfbjK+NqqPGig3dff1GTQZBRcwZmSVaJLLRDNRe5uUg7aY3cM5tXawQ0Wlw8cEisOMrRqmpJYd975MvWLcWMzXxxDdaZXbFR7naysZun7wI73D4sBfEbLs4O3T8XIdHnASHtNWw4DAx19B488gCetLgKGVa3ZgRraGOYPVYJVnkkHP6fi3OuizcG99Gt/ZmLaa5HdGduU7arl/KxiVjIMZQuOIYrkaAEOE85JhuIRhREP21aP4Z+QqHsNZIT8zyKdSyyAleU7MUwjOHnwCbUHLepVcNqXzhuOcV1bxhr1hS6mnk+tpUDdZXJxNawHL0oxKxjK1QCFyAK0gRfGJD/88p61OnGJ25Awm0/sw2mtTl1yiMwYbkWeIk6qM6SDEzsJnq3KuMH0OIV3eROXKHgiEOTogq2isnIatBDQBDdvUaGA9nBabnoISr5FH0OHGFSr7jPLwYlFVW5AA3D450BatCsApQTefUebV5B3tJnmyIWQh29TuAKdxy3CenNvkNoW8Fm1tLyWZEfkHw1cvraSrqVCNIn1aTJXlP1OPayzG6nJ2765HqiC5qrJKhC1F5cseR8zCOWOyii/CxXwxnzSl59Qpq80QWAKxVC+gVoJJL5dTudPKpBrEYnLvciaBrtPl+gpSqH4QS7m/mA8OID7wYOyCo5FT0g5ZxeFgPSYta1nJAEkyOeuofwZ5IhD9jfOe/v7uO+aWkfs0MqMKB60i61uRsgV0Ro7WySo6HWtuQD5ZPRQEiOUwrO55WZdLc16Y7/SHif7MlBv9CqeM8yidsorTqW9ORLiE3soZtXrQQ0WOo/KRWIrVhi3M7nDujBN75USmwzlD04pZvDofciVtyFSNGatTFZ83gS6/JGcINCFp6sVHCNiIcRPg0FQwuA1ueZNllTitTVeCLTjDaQKw0m+DN7duJfCaPGZ/8oorpvi1yzy5Kqw1y7TOtRP28SQWHLNL/YqsA/0WDolnZrxFP07ySZupZNmJk0kdLHIevCFOqfTiBFMkb+0NzdhExWATrIuwS86YY7oKenrryqzTU4/Vg3+6HFRatsw5FXjkc4RHkGx0y5R+zolBVSoJj3gVlTo2EZAdW8Yly3Jiz+AKrMqTrZPvWHWtTppd5RAsl+cI5isRflNUa9mRauYMMmUIzRsEdkqZUjYkHI1WrlHTQBGtJfIGATe2Et6VOPZXNdoqkH8zefy43hh027VumydvMBl/sxrqekQjVZUJIIZfAhyqOQAkz1ivpAxSzqCsqBQ4P91e3cQST4tbmfwrbmQVp3oLQgqwdabgLhjxxhXP/2BkoGU0Ch6eHolk7KbOhxFvuhffggk4rEPSZHGR/wJZW8JR0V+FA+iZvP4ZaEm5hqVnqK6HPFPUnjlQuTZSV7mi3H70TIWefb72zAsfRM/UQjmS6/AG6uMAPq/5BMnFFfJpCmSNjgl//qtv3auDQLFAjsET2/CR/rV1fb2O2sXPdGK7OMdkGjYg3sU7xLqHxBSTM8b/121EXNcfDPanUgPB4EAqFo/HmuPxZpjOz7a2zuaFa3FDOr0B/xL4hbwDsr4nrtWKZ00fzIZ2tK2hj8RS6/gbKbEs6BBMNgSRzYxMDE5jq56ttOI8U/F8b3PAfq3Z6rXZArJOxUA8PRx0bP/8P+Bfr7X4TSaXx22PZ4opT96xvSi0Pw1e1H4Ir+WFZJxaw6nVIaeZc4bq1vIMdbE4dUFqtX5ZooT3j6g65VG7IxJyRoN2j8cSN7SruxK53paOsTxMp1utXo/Pbmtsc1nMjoQ1FC+2tLi92VwZr2kJa83kzGhrWVE7M7qh7vRzRN+CmG7TBQH2qXu+2tXaukayA+6Kv/WHtpErrr+eEnE2Azjuz43H5JZxVhWHHFikF3XuM4xJyCMxB1hxPIi+54+qu2QRJ84XarK32X/wGZXCb8gOBbsCMJNosToamxob0Rx6tG1aoexvC3b4BH2D8ekjZ9x5cKSx0cPZlZzdbmSN4kCqrER2PvKnZaej3UGr5bzMTIPe3+YLdQZcobDLFQ41wrS/w99YcP9r4HxZoN2LbopNLmdTk9PVJI57Hfl/JFbMCycI8+LWe966Fw7UJgZDYPUT3goi2ddeDhWC8EIQgkFoDnK5Zog0v9BMNzergimwpThbsxtwLgLW7STBDB/kSc5XEMZTvxsjbunUD8pSd/Dzse6wy2GwDbe2DtkMDtf6nMXrsdo8Xqs92mxzRJucMO3K+B0tOmXUnOrsTJmiKl2LI9P9istkanSZzc4v+WxWn9dm94o4H0c4f57gHFGc8XD348wJpVFp55QI3CQ5Fh1PmJVHC2qhHsSpWaUOY7wrEOzCFGgNhVyN4XAjHKriW8T/4xjlGPWCfMmR/0PhGzqaMkowHa5DQDUK558/wCooTqogmwlkFZ/M84zZd8NtR+Pfyd/CVybgVXyy/J0TQlvnorpO0pa5G99Po7bt5N6SxPe96H2BvgfdWy3V92Fyb4vi+3PQfYKUtydIe+g+QN47SHtb0H2cvHeS9f9N6L6F3LtaMOzpxduoX1IX16+fFjJs4Piu3SMXnySxUbdRPyPnTWvxTpewE7csMR6VvlzMEPPvXBisO1X67yeFMc4tvkO9SB1Ffer9+D6K2vwJdbGOBuc/MD3x+5+I52WrT+itYmZS5synZX8wVA3AEVPTTntadq0vWoL6cr2L722ow80EP7J3Trc/Mo/eJ8n7Xe34foaap9N0C7rfY8T3GxdvoUOMDt2zOXwfQPjcTfD5ogzf70D1c+R+dyfhFXS/kbS3NyzQO083wmvoXkPotZ/6A+2BNLr/GaH3B6h+2gwvovvP5PCcPY8yIb/pfeKYqPeJY4Lmfz6QicD+KO2Fx1DfXnJ/LdVGy+A36N63Ft9fSrUBT+49Q5hu5xF/s5o3qV7Km9RKtCJ8JG8SVuRNgv90iZMCvfZS+2gL0v80dSCF/28WH8Ivt+z/ZkmW7Wf6v1mSVXH//+v/ZbmaHAkQ6g6hz1Z4NMv3DcVibk887gGd8IqcHOBpbvaQh/fgoqVgsIQr8AeF/5flTzjzGf/yDfWvi9XHZNy7F210hD6Jxr0Pswx/gj60+LgYL+krm/RHpRCT4qT130sltmVp64cyy5mgPhaSf35lwvqqKEgK+B/R2xf30C/X7ytCxhrgf4QPPXwZH3oIixpU5vblZfDM/yZOUCVFUDv30nsWn0RlGijNiQYGEPXwchturRZuwt9bizc596KLpOUyHusP6bWLtzNOMtYbygvXWp+y0oetsNcKYSuYrUAL0SfX6Z/Wv6VnjuphQQ9RPTj0oNYju0HPKaXQ/lcpPCuFOzGajklpkxQel8KHcRwKFKVwN0Lbu1LmWilsxQVAgU8jx2fSLwtD2VJNmp+vpqKmWukzxKL8VYxFIWEnOBZlbVcsRp61CbEoJhfByU30wuIv6F9RJup35btYmczUJoEnJfCwBO6UwJwERiXwlgT+RwLflYBC4pA0Sxi5RKKQaKA4pYE+DfxaA1/UPKihr9XAYQ2YNSENjV7KTRpOaYKiSf8NHSR15+tu0DG8Dn6rg5M6+JbuBzr6Zh3oyirdUKcOtDqPjpbr9JQCijsVMK2AtAK8CrhfAXcqIKWAFxXwhAKuUsBWBcQVoFiKzxHQUhJOxxbOn00uoelQLWalGmCkJ2Kbrgat5OtiVm4XY1Z6omLISk8zvYBDVgodOGKlg8x//gRjXnycuVzHUhx/hPoaweGPGOniHuaqGu8l6/iTuepSXG9Rg8rczlyF6h3mL8D1UFv3MsrFJ8mzJ/iLxGc3MarFXzDXoWdP8RXSvoKKLzKq58n+Nt6tG6QWqOPU1dQnqTupBxA/ToQDQXZhnAuYuEBggT3+Ae748QW28EmuUFhgB+/kBgcX2OkHuOnpBdbp4JzOBTb5US6ZXGBLt3Kl0gK75d+5LVsW2IOXcwcPLuBN84VlUuqfvYjS7J/aZUeexcrTo70r7iVn27cNvt++smTFpq73LPdn2/eXX3ThhW+/WbfVCu/U37x8xj1j+v732eF+u69uw5bm6m/21u01v0/QAWN7761lO7313/94hj3qP55+Y/2u+k3i5de6HW3q/wDKYGr9eNqVkMFKw0AQhv9t04qIHhQEe9qDeGtMW3rqqebQS04p9CgGuqSBJVs2baE3H8GnEE+efASPPpR/krUS6cUsZL/Zmf+fYQBc4B0C9XePJ8cCZ3hz3MIJPh23cSPg2MOVeHDcwbmwjru4FK+sFN4po8dKVbLANV4ct9j3w3EbQ3w59nAneo476ImF4y5uxTNCGKyxh0WGFCtsIKkNMMCYNGPW8F1DMYp4QvikKV807/igKqpI8Vb02vG/ZCVCs97bLF1t5DAYjOXMmFQrGUWhL6day7hMFTJWhbI7taSg2XGOBDk94YTzJGdQ9kmxZU3CXohVutWJbWonjejHp/9XW/tO6qt07x91+51EHneoJpMH7aLaQsHtGKrKjfrcaYARU8oWmcnl0A+CEf4zZWO8b66qbSp42m1TV2wjVRQ9J8WOkzhle++9eB0n2SRbUzdbstma7bvesT22JxnPeMfjZLOUBdGrQEj8gWg/gOhViPIBiN5ER4IPvujwAXwi3nvjtbHESPeee95t58nPqID6/vkeh/E/H7ulQwUqUYVq+OBHDQKoRR3qEUQDGtGEZkzBVEzDdMzATMzCbMzBXMzDfCzAQizCYizBUizDcqzASqzCaqzBWqzDeoSwAWG0IIJWtKEdG9GBTnRhEzZjC7ZiG7ajGz3oRR/6MYAdGMRO7MJu7MEQ9mIY+7AfB3AQh4T+ERzBURzDcZzASZzCaZxBFGehsQIP4lpch1dwN37A9bgdt+AePIyHWImb8Q2uwV2sYjVuow834nV8Rz/uxSP4C3/ibzyAx/AO3sLjiCGOO5DAe9DxNt7FR3gfH+BD/IgkPsXH+ARPIIU/cCe+wGf4HGn8jF9xE0ZhYAwZmLBwH2ycQxYOcsjDxTgm8BPO4wImcRmuwOV4EffjIq7EVbgav+A3vIQv8SSewlf4Fl+zhgHW4mk8g+fxAt7As3gOb+IGPIpX8RpeZh3rcSuDbMDvbGQTmzmFUzmN0zmDMzmLszmHczmP87mAC7mIi7mES7mMy7mCK7mKq7mGa7mO6xniBobZwghb2cZ2bmQHO9nFTdzMLdzKbdzObvawl33s5wB3cJA7uYu7uYdD3Mth7uN+HuBBHuJhjvAIj/IYj/MET/IUT/MMozxLjTHGmaDOJFNM0+Aox2gyQ4s2s/68ZYTDPeEC9nvYGylgawHbC9glMRIORwp4ifd62NFWNZB3bL/mOPZEPhtQmLAnLJWOtLRXDY8MDVUNJWzXNxgy7ZTtHwzl8lndqXZCmun6dHXoS3lgemArqExGY8KS1cKiMeXTyhvKjyo/prypvCuq08IMYaPCxoSZlfLcEVOERZMicitdgW7UVTds7e1ruqA7diihW3bGsDTXdhptSy/j7kRZvtlNO3pZRVPSzjvlB8Z4+Yyccb5sRk4f162yE91Ipd2yIZZRLqRBKbXyGd2RNCh1lphUWWSNnsYib1AK/0OlvlKvVFfq9bSVuKes1Kx0FalfqXKTPilHgNThJms8AW7SrzZLlCtFXu4SeW+JCLzpokCNdZOBuJ3JaPJ1BHN6xojbpm1JFhCvxrATssWrUIFMusn6UqWbDAppMd3JGSk1P5fV4kpIXLfknrp43nF0Kz4pdyVs09SUPPmOZTbn6o5pWCkpdVIp9GfNfE5OEj+DCuoyedM1sqY3wRg3Erq6yLm8ZoqgNuXompgiW009Jzvq5YhL7UHxuo24Zlq2lFMrrlVQVpvT466h7uA9znBnIOVo47q4byygxfOuigq5SAF7Aq5hJlSmrtAVimvZYLFTsWK3ZIW6iMoUu1Vm0LZTpvev/BeWnuwcAAAAAAEAAgAHAAr//wAPeNpjYGRgYOABYhMgZmJgY2BkeADEDxkeAXmPgZCR4QnDbyD7D6MdAyOjPaM9kP2NQYRBB6jDhsGLIYIhjaGEoYlhAsM8hmUM6xi2MexjOMZwjuEawz2GZwzvgPpZgPqc4TTIDi6ICFM9TXjoNhJH50PpIihdCqUjobQL0BZGhhfAsGAAAPKGIUgAAAB42sVYW0ycRRT+zl5/FliW7XahK12WFWvFSpE2pjEN1kpJ2VIgCLUhhkih3NxuG7o21hjS8GBMY3w0aowPpumjDz4YTUwffDDqgw8+iDWxsUZbL6j1Xi8tfjP/D/x7I9y2ZpM585+Z+c4358ycmVkIAB9elhhcrW0dvYgMnZ5MYufo5NHH0ZkcTKcwBhf7YG4OBoXAASc1Hnj5vZoWH+ShB3tjiBVoV1qBGyVDg8k0dg2njh9Dy8jk4BBak+OjgziSTD1xDGPJ40NJpFidRPqE0jyVVuUZjRfSZYBluYXtttBLaL8UZdT7dZ8NuqzUJXRZoUvRZRDVaMb92ItTmMIzeB4v4FWcx+t4ExfwHj7CJ7iEK/gRf+CmeMQvYdpRI2dNBPHp7yrpl1nHlNPlPOtyuaZcs+5+9zueqCft+dAb8g54X/F+ZpQZLcawcdY4Z1wwMYy3LPmxJa+bsqTBkmOWfMOUPsOSE5b81JSlPZac//7X5FYWt2SDJZstOa2jJ+VmFKXCZcqA32wPRC25m54F/RtChJqY1m7Uvtuuy9NW3YH9qKOnQ2wNo4o+3cQRt6GGfq/AZkTJy4lhjDBCF3EUo4zN53gJbxOzDrU4iRQjN04ch1RKhKY3yw7G0clIbmV8dqMN3egnQgpPYhrP0WrciqaKoUPHuUZzLVbNtOTUtXhBXv8HIx+2oIlruBWdOIwjSHItn9HxuhUesvslVoDLrWNRgno0Yhf3cwcO4TFMIM2WaBE9YZ9/NK/9Yls2uB634T7sQQK9GGA+F92+vnbt86zJY7M41rxcUw3YiRZmmB48Sm1knWZmn08kx856WvBwXSxmC2F2XMsM7Lyrs7DXjurm1/wOFubylTO18wtn4K0WycX4mLvKPPeXh2PnEbJhrGy0kz5WK119LW3Zbi+4MG45Ixz0U8y6zeT2t+MGrL6Fe6m5ir75zOvs4/0LNyd7i+jTXY2r1yd8eAnO8/NTOcDsm8lhZsHjDr0ys/uwJl4JZPUOU5r7r3D//COrGdn5TLScsflRIlyni3l7ZTj5EWu4M+0n4Wox86NHma8y7x9rx89vKcZMb8+LIzixrrbyW43zHM08XSbxdJHs5mdQz5tM9jk+hWeLziGXjbnTgtb7pSrDtoM9Zli7IR5qc3dylUZxFth/HvyWsXs9+C6jZ3Hu9BpX4lInd0iz3CVR6islKBskJBslLFVSLZskIrUSk+1yjzTK7XKn1MtW2SH3SpPcLdtki6gXTZ0+W9Wbz09GlXm5Kp61mtEwOY6Q5Th5ndQ8L5KvyDWOD/P2/iLtTctr8q5c0neqRiTkAfq9h78Eusi6S9d6KDsoW/EI93Uf9Zf51izQRoRSG8LehX7CvPVV4XGcT4w7vIkrcA+/uqkd4AwmuPtOcSdM4xo5trP3T1p28X2qZCd+0PIgX6dKduB7LQ8wskruw+/0f5eOeyd+ZXkQv7DswM8sD/CN6yDmtyzb8Q3LfSv0xNer9MSVJTyh2q8u0a4YBhjB63qG7fhLz+FPPQcH10cZ/tGav7VGdD7bz1pCI/axRUT1CzLHdeMc3/3v63HRgowvszU7knaNi6s8zpzZtgSCkaFvyNEk6EtPjpeyNVczNIp1DF9yxofxMFH6NPJie2ZLIgPLo71i+uSQdcIb2sYXxF1859dwRjPMIIaUiE9KpUzKxS8VEtCZI2hlDtXrA9zATcxxIP0rTnGJm1nKof+tUTlWZRn5D/8+UWEAAHjazVp5jCRVGf+quqqP6mump6en59pjFnaXhV0u5Vx31w0iKIoHKqIQ5ZIIAiEYQ5TVJSauJGJc+cPgRNGYDYjAiJKQkbConWiitMgiaTFrtEJEsVEGsVH7j/L3fq+quvqcnhlCqF+qu45X7/i+733Xe2KIiCMXyZVinXPuBRfJ1BW33HSdbP7ETVddK6dc9/Gbr5ddYqGMeJ6ossNcG9deddP1ksSVqe7wG5cCfpMSk81G0byE10780fhfSnvnnjz+iydcs/2k7Z/cfuf2GkpXWVdONstJaHuXnCNXy+fkLvmePCA/xvmY/BLfFz1XSl4DNY6j/2Wck2Lj6yKeJfn7Ba9hJLy6kcGZxZnDfR7/I14dJYv4nfGek30o+XldWhKsdbf3rHrqf9vAtw1800CbE3g7ie9Mfj2OZwa/UPdVfIc3huHVjBieGfgOvxhHToroY0km0MtJmZGNskl2y1HDMnIov4GjvUP+hNZToGBdug7PRUvtT2od94v8rbeeB1foQ/CkErxBuXpXjVVyKwvK2OiRA1iSB0wZAQwZBUxwsYD3NwCG7Afi8iv5Na6fAGLyJBCTpwFT/gjY+Hf4TVzGANAXMEGLEspNAAZoUga/Jsk9VYvFWix+H2e7NupIoycjuC5AHi5D6/vZ7hMo+TTKmdbFiormI+bLKDtHSgSoySoPUiS4nvcWvAZQAxreQXBkEf91xRlcVQPa9qilEVC6F2d7le7kjH7e/65fTbKGI+xzo11SOvoxzIjqUSooaQzrrnZSe5j6erZRW80I9ciC+TGYXn7vh5SnoWlvYsareaFnRIozwuaMsDgjkjIFGDINxKA5ZiRu5KA1EvjibLxNyiznaI6zM8eZNsIaRznTpqB3xvGtqnec9RZZ7wTrnWS9BTkGMKBtN+P9NqAs24GknAKU5U1AWU4HTDkD2ChnAjE5C7DQi7PR451AHHr6HIzhXDlPMvIOIC3vAzLyfiALC3MRrj8I5OVmYIN8GlgvnwGy8llgRm6TL6EnB4CEfBkoy53yDfzeBZTlm/IttP5tIC7flXvQ1r1yP+p8CBiDZXgE14tARn4OlKUCZKhT1lGnrKNmykkNcOQoUKKWGTGSRlJmjJSRkg2GYziy3kgbaZQxyJ9Ac0+BWjOgvgENY5F7SrMb8hBkNwbtX5O93oLshxQri7df7hYzv0eVzNyYvQA17KUEHfY1xn3QKEdxPe8tQXvb0CsVPHXx7Hn817wjeFf1Dvnaui6v4UG5V5rmD+3aJmhFv+fpaLvhNcM5s4SzueYevNRh35Z06xFt6bKluvf73tpGz992rLgXLjnS0DqAI16K1sazGY7eDbWZS664ndow/HZofnWMSWukeofO0SOt96XDUqetaf2vRNe36CpOa6whrdv78Lz2KGgFK74/YftypcseUjqddAJ9+9vHaI3awoYjbwa1BaNucTlSquHb+QgdWlYnoGlvL6qnjl/qrKHTOkclrcuLWlr7zHxd+rBueHmIaoSgBX9+NLttau8aorIzjOfQ8lr5reKcE0pCI/Rij6iZGPgPnXX26kW3x9DtCUdG+TCluwYtvEi/b9F7hdqwAt2t/rWO9vvgzbM2t7+HMEj+elNE6yZ6mbX2Wd6lozrnBTwV2JKafo+yzRa//HlRb48Llu81uWJzph7tP7KWlwR6HcT1ocjo7EBCvX04F0hXaAdFu+E1ZosCnbpT2Sv/ztUlIyVe7ScPQ2vrgO5uoAE7dRhkZqlT1v1v6mvzyLvnBeWignmxoCjZkmxQ8zDoWvF5UPOt22Hy4SDuH/ZeVP4G5VhJcs076Ft5pa8XdV1ajhnxtEnfyi3K8G8j+r2+IjrU4YEVOQI3UtdRn19uQAfec3yY0XWtMXiqd08pX0xTknSphnRwI3IXiZ079IvLPvyirQ+UQu0XBPf8P8K+LnKORvugatcWteLfV9v0qtvlpR1t6wHntG9Jg7Zc9gK907XoFgfIdz3SQjSfUO/Hu3bZUD4rZHI+yEn4tH8Yz6vheGq+bN7HcvO4v4+RdZVx9SLuqt4BnxcLpEaFfaswSlwKZbrR2eNOm9XhndUDbq5k1g8fzwUapys7s6w0K1nsPcc0z3pFzD3jyWPkWEBHc6ZsAWKyFbDkOMBmfBeX4+UERFgqykvJDsCRE4G0nCQn47mK+zJyKpBl9JeRNwM5OQ3IMxIcYSQ4ykiwwEhwjJFgkZHguLwFKDGOsxjHmXK7fAXXdwAJ+ap8DdHlQSAmXwcSjPIyjPIyjPJGGeWNI4K6G7GXiuYsjMmWV/HmdIzzDDwd5YjLOHeg/R2IDHciGhbZg1EI2hfZjYjyrYA+VP/XMRupD/1/Qkg7wz/PRG9jaM9GhBrH6AWRnzpOxbkJ9EwTSVBuC6i9nTRWFE6DWmnQeBsoMsaM3xxocPwAbiUw2pPxfxauokcW5y5eZUBTfZyIvrewPhyFgDNC/ugxBFDXMR9x3G1B36NIhzgWkqJkZppjCCA4x3yU8HUJbw0+bx2K7yord4r/OwUunBz22LfE4Ev3kRyIrUSBGWMLNFa8vA0SMgX5uBstKHk4Q8zM1Sq2Tu1xfgA+bwu8HEJ7yE2VHV59/q9NlzR9y75EPVLx2wnwqG/hm0NlxOiJRf2x6Nz2Y83I71C9bMKiN3Wt4ZFfo7Oh4jmVDbYjUXFzWR20jIYEnvf+HPWGfE+s2B67Uts3aKOLeLcYWLf+9GwbvRPqeae79DDaPZIB7fI1+3vvg/jfm+9rlM7+dW5dQ52DZKm4Gvvo03Cp02ca3uZ2z+MW33VU0YvbKx97iMZrx6Mg+oLk1zmHXu625YG/1tdDcLX32R7ld+mlYJZqXVjTXt9y8hZKb1BnPcxjRXUdNSrnYbNb1/XufUSW7B6ytGl1OoSRlorvHHgBaqWq1MYtu31dTHmVvD5E77HWU15tnnaHTq609EowH1agk1XOoum9oH5Rs8rT29RLdqQ9e6DMN4ajZx/PsTF0P0VLET2FZdfEgkyL8uj78r1bZ2YGrd4Eubmof963n0ur1iFuz6xjazU016nF2/IHi5QI189sKI+9MuTYddsO+e1QR61aT608h9Q3VtgpbwMMORcw5e1ATM4DLDkfsLmGE5d3Ajm5AEjKuwBH3g2k5UIgI++R9+KtWufJc51nhOs8o/IBoMDVnjH5EFCUi4Fx+TBQkkuACfkIUJaPApNyKTDFtaBx+Q6QkHsAS+4FTPm+3I/rB4CkPCg/hO+t1nym5UdAjis/ea785OUn8hhqOAxMyuOAIT8FJuVnQJYrQpb8FTDkb4AtLwCG/B3ISR1IyouAI/8A0vJPICMvAUVZAnLyMpCUfwGOvAKk5d9ARhpAEfHJf1Dnf4Gi/A+wpQmoFe/z0ecU/PYMME1dMMs1u1n6uRNcm9vIVbnjEDfM4RsVZ21ihHUMPe1jGVttRlSzG3XsAaZlLzDJdTeDvBzl6pvmn0n+xci/UfIvS/6NgHsX4oniXIGcs8i5MXLOIudK5JxNzsXJuTI5lyDnkuRcipxzyLm0fAyYlk8Bc+TimNwKbOUegQ2M5jaTr6NcuTO4cqc5mgNHHwQ9FsDXHPk6Rb4WyFeLfLXI1zL56pCvo+SrQ74WfL6qlb5xqQJb5DeAXvUbl98CW+QpQK8AzsrvgDl5BtgqzwIzXAecgFyoXR6vgn8FcK+JsZtc17wU80WNagojeATjXESrp7LVnfimiQjFTF6uopF4Mf4cqLdJe7TyBjq6s5Kr9N9rgzJIr+N46u3WYrD/NIAqLnPQlUh+zV1ZTczacUWglYUN7Zr2oKrD1hhd/3stcsWRKKu6wi9rXN2rdVr/IH9H37LeyvEtU2NF51X9uwPd1rFv/sttq6Ua9ALlD/jrtzrT7/r9qtJX1li2xmiWcmXZd7W2wexklX0/EK4Mu+F7l1nchs52qj1C3TzAu30Rb2N+cF+7vTGdwe/hTdXbo4Uh5rTO97tvBE01OMO8nKTR0z+Ic96XikqQcWYGutLOBz6r+e9rkXXvK0ndhXbq+lJYZzbbXcYLM7lPxGIu0Yb1jXMXnPL/svQDDPxn6QvkYVnVLrsYfYIEfYIc7NQ61jEHW6us/gitvkGrP06La8gVQIF2V+/Ki8ktQJLWN07rW+ROuRitY5rWMUPr6NA6pmkdM7SOjhwBRmkjE7SRNm1knNYxh77s5q6iEncMJZhjzjOjnI/sGMozZ6zzxDbzxCP0YuL0YmLME6foy1jME8/Rf9lAz8Wh52LQc5mgzzJFn8WktzJLb8Wht1Kmt+LQW1lHb2WS3soovZX19FYK9FbG6K1k6K1k6a1spC0vc7dRglnqHLPUeeah88xD55mHHqHnYtFn2UCfxaHPMk2fZYY+yzR9ljR9lln6LA59Foc+y3r6LFl6K1l6K7PMX+bpPTjkxzj5USQnxsmJIj0Rg57ILD2RUdxtoSTFuRsyQ8nROyKVnMzJLnBnDyTjMsjFFZCHGyAHt4b7JKto4UnU/xQ4/DQ4+4zaNYlftY/pGtmH/zQ1wcIAXaNXaiN7S3wt2wg0cp9IROXTk9z7q3xgg/lnk7un9M4zJTsm5cWipNiUlDglxaGkJMjPJHmYiuwSi5E/CdI4RRqnuE6gsvOb5Fq5EfU+zjFug2Sq+ab37lT0On3gzVBTBvl/E5LX2hFnUb4t9jFG+bYo3xZXQ2z2Ok4pT7DvSfY9Fel7mjKdifTapLRZlDaL0mZR2hIcTdpf71ASkOFOsphcjt8dHEcJfYqF2X+TOwhbNDXCdQwrQgG9W63AnYRGZKWjdQZtnMaSZbZltPFPtWKylRg95mhNdtjWs8O39n+9JfMNAAAAAAABAAAAANWkJwgAAAAA1YO2WAAAAADY2izo') format('woff');
- font-weight: normal;
- font-style: normal;
-}
-
-@font-face {
- font-family: 'kucat';
- src: url('../fonts/kucat.eot?9qz8zf');
- src: url('../fonts/kucat.eot?9qz8zf#iefix') format('embedded-opentype'),
- url('../fonts/kucat.ttf?9qz8zf') format('truetype'),
- url('../fonts/kucat.woff?9qz8zf') format('woff'),
- url('../fonts/kucat.svg?9qz8zf#kucat') format('svg');
- font-weight: normal;
- font-style: normal;
- font-display: block;
-}
-
-
-[class^="icon-"],
-[class*=" icon-"] {
- font-family: 'kucat' !important;
- speak: never;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-.icon-brightness_low:before {
- content: "\e926";
-}
-.icon-brightness_4:before {
- content: "\e92e";
-}
-.icon-sync_disabled:before {
- content: "\e932";
-}
-.icon-sync_problem:before {
- content: "\e933";
-}
-.icon-power_settings_new:before {
- content: "\e934";
-}
-.icon-logout:before {
- content: "\e935";
-}
-.icon-menu_open:before {
- content: "\e92f";
-}
-.icon-menu_open1:before {
- content: "\e930";
-}
-.icon-published_with_changes:before {
- content: "\e936";
-}
-.icon-update_disabled:before {
- content: "\e937";
-}
-.icon-arrow-left:before {
- content: "\e938";
-}
-.icon-arrow-right:before {
- content: "\e939";
-}
-.icon-chevrons-right:before {
- content: "\e931";
-}
-.icon-download:before {
- content: "\e904";
-}
-.icon-eye:before {
- content: "\e92b";
-}
-.icon-eye-off:before {
- content: "\e92c";
-}
-.icon-fast-forward:before {
- content: "\e93a";
-}
-.icon-gitlab:before {
- content: "\e93d";
-}
-.icon-heart:before {
- content: "\e927";
-}
-.icon-key:before {
- content: "\e93b";
-}
-.icon-message-square:before {
- content: "\e91f";
-}
-.icon-more-horizontal:before {
- content: "\e928";
-}
-.icon-navigation-2:before {
- content: "\e93e";
-}
-.icon-rewind:before {
- content: "\e921";
-}
-.icon-save:before {
- content: "\e923";
-}
-.icon-slash:before {
- content: "\e92d";
-}
-.icon-thumbs-up:before {
- content: "\e924";
-}
-.icon-twitch:before {
- content: "\e925";
-}
-.icon-unlock:before {
- content: "\e93c";
-}
-.icon-upload-cloud:before {
- content: "\e929";
-}
-.icon-user-plus:before {
- content: "\e92a";
-}
-.icon-airplay:before {
- content: "\e900";
-}
-.icon-align-justify:before {
- content: "\e922";
-}
-.icon-archive:before {
- content: "\e901";
-}
-.icon-box:before {
- content: "\e902";
-}
-.icon-chevron-down:before {
- content: "\e20b";
-}
-.icon-chevron-right:before {
- content: "\e920";
-}
-.icon-chevron-up:before {
- content: "\e20a";
-}
-.icon-chevrons-left:before {
- content: "\e903";
-}
-.icon-clock:before {
- content: "\e905";
-}
-.icon-codesandbox:before {
- content: "\e906";
-}
-.icon-database:before {
- content: "\e907";
-}
-.icon-download-cloud:before {
- content: "\e908";
-}
-.icon-gift:before {
- content: "\e909";
-}
-.icon-globe:before {
- content: "\e90a";
-}
-.icon-grid:before {
- content: "\e90b";
-}
-.icon-help-circle:before {
- content: "\f059";
-}
-.icon-home:before {
- content: "\e90c";
-}
-.icon-layers:before {
- content: "\e90d";
-}
-.icon-lock:before {
- content: "\e90e";
-}
-.icon-log-out:before {
- content: "\e90f";
-}
-.icon-menu:before {
- content: "\e20e";
-}
-.icon-minus-circle:before {
- content: "\e910";
-}
-.icon-monitor:before {
- content: "\e911";
-}
-.icon-moon:before {
- content: "\e912";
-}
-.icon-pie-chart:before {
- content: "\e913";
-}
-.icon-plus-circle:before {
- content: "\e914";
-}
-.icon-power:before {
- content: "\e915";
-}
-.icon-refresh-cw:before {
- content: "\e916";
-}
-.icon-send:before {
- content: "\e917";
-}
-.icon-server:before {
- content: "\e918";
-}
-.icon-settings:before {
- content: "\e919";
-}
-.icon-sliders:before {
- content: "\e91a";
-}
-.icon-sun:before {
- content: "\e91b";
-}
-.icon-tool:before {
- content: "\e91c";
-}
-.icon-user:before {
- content: "\e91d";
-}
-.icon-wifi:before {
- content: "\e91e";
-}
-.icon-spinner3:before {
- content: "\e602";
-}
-.icon-spinner6:before {
- content: "\e603";
-}
-.icon-github:before {
- content: "\eab0";
-}
-.icon-appleinc:before {
- content: "\eabe";
-}
-.icon-eye1:before {
- content: "\e9ce";
-}
-
-
-:root {
- --radius0: 8px;
- --radius1: 0.375rem;
- --radius2: 0.25rem;
- --primary-solid: #fd8c73;
- --menu-barbgcolor: rgba(var(--primary-rgbm),var(--primary-rgbm-ts));
- --font-apple: -apple-system,"Google Sans","Microsoft Yahei","WenQuanYi Micro Hei","sans-serif";
- --font-sans: "Google Sans","Microsoft Yahei","WenQuanYi Micro Hei","sans-serif","Helvetica Neue","Helvetica","Hiragino Sans GB";
- --menu-hover-barbgcolor: rgba(255,255,255,0.3);
-}
-
-[data-theme='light'] {
- --primarytextcolor: #677087;
- --primary-title-color: #4d4d5d;
- --menu-color: #eee;
- --menu-hover-color: #fff;
- --menu-item-titlebg-color: rgba(var(--primary-rgbm),0.22);
- --title-color: #65656b;
- --body-color: #65656b;
- --body-hover-bgcolor: rgba(50,50,50,0.05);
- --inputbg-color: rgba(248,248,248,0.15);
- --inputtext-color: #4d5256;
- --inputborder-color: rgba(0,0,0,0.2);
- --input-bgcolor: rgba(255,255,255,0.6);
- --input-boxcolor: rgba(0,0,0,0.12);
- --input-boxhovercolor: rgba(0,0,0,0.22);
- --input-checkcolor: rgba(var(--primary-rgbm),1);
-
-}
-
-[data-theme="dark"] {
- --primarytextcolor: #bbb;
- --primary-title-color: #ccc;
- --menu-color: #ddd;
- --menu-hover-color: #f5f5f5f5;
- --menu-item-titlebg-color: rgba(var(--primary-rgbm),0.5);
- --title-color: #ddd;
- --body-color: #bbb;
- --body-hover-bgcolor: rgba(255,255,255,0.05);
- --inputbg-color: rgba(255,255,255,0.11);
- --inputtext-color: #ccc;
- --inputborder-color: rgba(255,255,255,0.2);
- --input-bgcolor: rgba(50,50,50,0.2);
- --input-boxcolor: rgba(255,255,255,0.15);
- --input-boxhovercolor: rgba(255,255,255,0.22);
- --input-checkcolor: rgba(255,255,255,0.7);
-
-}
-
-.tr {
- display: table-row;
- white-space: nowrap
-}
-
-.thead {
- display: table-header-group
-}
-
-.tbody {
- display: table-row-group
-}
-
-.tfoot {
- display: table-footer-group
-}
-
-.td,.th {
- line-height: normal;
- display: table-cell;
- padding: .75rem;
- text-align: center;
- vertical-align: middle;
- white-space: nowrap
-}
-
-.th {
- font-weight: bold
-}
-
-.tr.placeholder {
- height: 2rem
-}
-
-.tr.placeholder>.td {
- position: absolute;
- left: 0;
- right: 0;
- text-align: center;
- background: inherit
-}
-
-.td[width="33%"],.td[width="33%"]~.td {
- padding: 14px
-}
-
-.table[width="33%"],.th[width="33%"],.td[width="33%"] {
- width: 33%
-}
-
-.table[width="100%"],.th[width="100%"],.td[width="100%"] {
- width: 100%
-}
-
-.center {
- width: 100%;
- transform: translate(-50,-50%);
- text-align: center
-}
-
-.col-1 {
- flex: 1 1 30px !important;
- width: auto;
- -webkit-flex: 1 1 30px !important
-}
-
-.col-2 {
- flex: 2 2 60px !important;
- -webkit-flex: 2 2 60px !important
-}
-
-.col-3 {
- flex: 3 3 90px !important;
- -webkit-flex: 3 3 90px !important
-}
-
-.col-4 {
- flex: 4 4 120px !important;
- -webkit-flex: 4 4 120px !important
-}
-
-.col-5 {
- flex: 5 5 150px !important;
- -webkit-flex: 5 5 150px !important
-}
-
-.col-6 {
- flex: 6 6 180px !important;
- -webkit-flex: 6 6 180px !important
-}
-
-.col-7 {
- flex: 7 7 210px !important;
- -webkit-flex: 7 7 210px !important
-}
-
-.col-8 {
- flex: 8 8 240px !important;
- -webkit-flex: 8 8 240px !important
-}
-
-.col-9 {
- flex: 9 9 270px !important;
- -webkit-flex: 9 9 270px !important
-}
-
-.col-10 {
- flex: 10 10 300px !important;
- -webkit-flex: 10 10 300px !important;
- min-width: 5rem;
- white-space: normal;
-}
-
-.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
- font-family: inherit;
- font-weight: normal;
- line-height: 1.2 !important;
- color: inherit;
- clear: inherit;
- text-transform: capitalize
-}
-
-.auto-scroll-container {
- overflow: hidden;
- scrollbar-width: none;
- max-height: 200px;
- transition: overflow 0.3s
-}
-
-.auto-scroll-container::-webkit-scrollbar {
- display: none
-}
-
-.auto-scroll-container.touch-active {
- overflow: auto
-}
-
-::-webkit-scrollbar-track {
- box-shadow: inset 0 0 0px rgba(240,240,240,.5);
- background-color: rgb(255 255 255 / 0%)
-}
-
-::-webkit-scrollbar {
- width: 6px;
- height: 6px
-}
-
-::-webkit-scrollbar-thumb {
- height: 15px;
- -webkit-border-radius: var(--radius0);
- -moz-border-radius: var(--radius0);
- border-radius: var(--radius0);
- background-clip: content-box;
- background: rgba(var(--primary-rgbbody), 0.9);
- border: 1px solid rgba(var(--primary-rgbm), 0.6);
-}
-
-::-webkit-scrollbar-thumb:hover {
- background-color: rgba(var(--primary-rgbm),0.9)
-}
-
-::selection {
- background-color: #7686d1 !important;
- color: #f8f8f8
-}
-
-::placeholder {
- color: var(--inputtext-color)
-}
-
-html,body {
- font-family: var(--font-sans);
- height: 100%;
- margin: 0 ;
- padding: 0
-}
-
-html {
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-body {
- letter-spacing: 0.050em;
- font-size: var(--font-z);
- color: var(--body-color);
- background-position: top center;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- background-repeat: no-repeat
-}
-a {
- color: var(--primarytextcolor);
- font-size: var(--font-z);
- background-color: transparent;
- text-decoration: none
-}
-
-a:hover {
- font-size: var(--font-z);
- text-decoration: underline
-}
-
-em {
- font-style: normal !important;
- line-height: 1.5;
- padding-left: 10px
-}
-
-* {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- -webkit-tap-highlight-color: transparent
-}
-
-button,input {
- overflow: visible
-}
-
-label,button,input,select,option,textarea {
- font-family: var(--font-sans);
- font-weight: 400;
- box-sizing: border-box;
- vertical-align: baseline;
- border-radius: var(--radius2);
- margin: 0
-}
-
-[type=button],[type=reset],[type=submit],button {
- -webkit-appearance: button
-}
-
-[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
- border-style: none;
- padding: 0
-}
-
-[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring {
- outline: 1px dotted ButtonText
-}
-
-select {
- overflow: hidden !important;
- width: 100%;
- min-width: 8rem;
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- background-size: 24px 16px;
- background-repeat: no-repeat;
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABGCAYAAAA6hjFpAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDcuMS1jMDAwIDc5LmRhYmFjYmIsIDIwMjEvMDQvMTQtMDA6Mzk6NDQgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjhDNzA0QUE0NjE2QTExRUNCMjJFQkQyRkIyNURDNjE3IiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjhDNzA0QUEzNjE2QTExRUNCMjJFQkQyRkIyNURDNjE3IiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMi41IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzNBNTYzNTY2MTUxMTFFQ0IyMkVCRDJGQjI1REM2MTciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzNBNTYzNTc2MTUxMTFFQ0IyMkVCRDJGQjI1REM2MTciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6YjzxlAAACsklEQVR42uyaXUsVURSG51T0U/obfUvhhYF0U0HQhZQVIWVJCAkiSUXfRRcaBFbXQVBBRCASFCJBpQQipw+RREkpCa9aG95gs0DMOp6Z7TwvvAxnzczaa6/nzDnzVTndfSVDxdE6WgAQBBCAIIAABAEEIAggAEEAQQABCAIIQBBAAIIAAhAEEAQQgCCAAAStGSAbzA/N+wvSiwPmB6or16bkoY2afLN5r+q4l2MfDpr7zetV2z7zYpmOkAHByNSE0IxDOdUSxr2rOjLVNVC2n6z77hsYmtFnbqlzHS0aN+7DouorFZBH+ibGUCrmO+YjdaqhVeNVHIxm1Ve6P/XH5ibzLwfllvn4Ko8d8t90MEIde1RXaU97n6oJCw7KNXPbKo3ZpvwxjAXV8YTrkCx7piPFQ7lsbq/xWO3K62E0qQ4uDKXn5kbzTxe/YO6o0Rgdypc5GI0anyt1p5fm3eYfLn7e3PmfuTuVJ1YYZ5fG5Up9CQ2qSfMu3m3u+secXdo/1rzGGeTWyfIaUrPmXPycuWeFuXq0X6w55R8q4NwLe3PxlXmn+buLnzX3/mWOXm0fK+RrUP4MICvTG/MO86yLnzFfWmbfi9ou1qzyvS7wnAt/+31YTZxx8ZPmq+709c/pcoifcvEZ5Rku+HyTeB4yYt5unnbxE+YbEZSwvK54rGntP5LAXJN5QPXWvNX8zcWPmm9rHmF5zK0P22/T/hlAaqv35i3mKRc/bB7VMtaUIL5LaI7JPcIdVZMnXXyT+zyp7T4kNr8kn6mPqdlfllj/VevHEpxbsi85fNTP1ycX/2zerPUZQOqrcUGp6nNVMMYTnlPyrwFNCMILLScSn0++r7zUSFVdZ6wJ8aIcQBBAAIIAAhAEEIAggAAEAQQBBCAIIABBAAEIAghAEEAQQJLQbwEGAK/reX2gh5gQAAAAAElFTkSuQmCC');
- background-position: right center
-}
-
-select,.cbi-dropdown {
- width: inherit
-}
-
-select option {
- background-color: rgba(var(--primary-rgbbody),1);
- width: 100% !important;
- overflow: hidden
-}
-
-input[type="checkbox"] {
- position: relative;
- width: 25px !important;
- height: 25px !important;
- padding: 5px !important;
- -webkit-appearance: none;
- outline: none;
- transition: 0.1s
-}
-
-input[type="checkbox"]:before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 3px solid rgb(255,255,255,0);
- box-sizing: border-box;
- transition: 0.15s
-}
-
-input:checked[type="checkbox"]:before {
- transform: rotate(45deg);
- width: 12px;
- margin-left: 5px;
- border-color: var(--input-checkcolor);
- border-width: 3px;
- border-top-color: transparent;
- border-left-color: transparent;
- border-radius: 0
-}
-
-input[type='file'] {
- border: none;
- background: none;
- height: auto;
- line-height: 1.5rem
-}
-
-input[type='radio'] {
- height: 1.5rem;
- width: 1.5rem;
- appearance: none !important;
- -webkit-appearance: none !important;
- background-image: url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'-4 -4 8 8\'%3e%3ccircle r=\'3\' fill=\'%23ccc\'/%3e%3c/svg%3e');
- background-color: rgba(var(--primary-rgbbody),var(--primary-rgbm-ts));
- box-shadow: inset 0 2px 1px rgba(255,255,255,.6);
- padding: 0;
- border-radius: 70%;
- cursor: pointer;
- transition: all .1s;
- margin: .25rem 0
-}
-
-input[type='radio']:checked {
- background-image: url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'-4 -4 8 8\'%3e%3ccircle r=\'3\' fill=\'%23fff\'/%3e%3c/svg%3e') !important;
- background-color: rgba(var(--primary-rgbm),0.95);
- box-shadow: inset 0 3px 2px rgb(255 255 255 / 60%);
- background-repeat: no-repeat;
- background-position: center
-}
-
-select:not([multiple="multiple"]):focus,input:not(.cbi-button):focus,.cbi-dropdown:focus {
- border: 1px solid rgba(var(--primary-rgbm),0.7);
- box-shadow: 0 0 6px rgba(0,0,0,0.22)
-}
-
-.cbi-dropdown,select[multiple="multiple"] {
- height: auto
-}
-
-pre {
- overflow: auto
-}
-
-code {
- font-size: var(--font-z);
- font-size-adjust: .35;
- padding: 1px 3px;
- color: #101010;
- border-radius: var(--radius2);
- background: #ddd
-}
-
-abbr {
- cursor: help;
- text-decoration: underline;
- color: #146db3
-}
-
-hr {
- margin: 1rem 0;
- opacity: .1;
- border-color: #eee
-}
-
-footer {
- text-align: right;
- padding: 1rem 0rem 1rem 0;
- color: var(--primarytextcolor);
- font-size: var(--font-x)
-}
-
-footer>a {
- color: var(--primary-title-color);
- text-decoration: none
-}
-
-.footend {
- bottom: 0;
- left: 0;
- background-color: rgba(255, 255, 255, 0);
- display: none;
-}
-small {
- font-size: 90%;
- line-height: 1.42857143;
- white-space: normal;
-}
-
-.main {
- position: relative;
- top: 0;
- bottom: 0;
- height: 100vh;
- overflow-y: auto;
- flex-direction: row;
- width: 100%
-}
-
-.bar-primary {
- bottom: 10px;
- right: 0;
- height: 50px;
- z-index: 101;
- box-shadow: none !important;
- position: absolute
-}
-
-.bar-primary .container-bar-right,.bar-primary .container-bar-left {
- position: fixed;
- height: 50px;
- line-height: 50px;
- text-align: center;
- right: 0;
- margin: 0;
- padding: 0;
- border-radius: var(--radius2);
- background-color: rgba(var(--primary-rgbm),1);
- box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
- background-image: -webkit-linear-gradient(135deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent) !important;
- transition: all .1s ease;
- -moz-osx-font-smoothing: grayscale;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- transition: 0.1s ease-in-out
-}
-
-.container-bar-left a {
- text-decoration: none;
- width: 16.6% !important
-}
-
-.container-bar-right a {
- text-decoration: none
-}
-
-.container-bar-left .labelbar:hover,.container-bar-right .labelbar:hover {
- background-color: rgba(255,255,255,0.3);
- border-radius: var(--radius2);
- text-decoration: none
-}
-
-.container-bar-right .labelbar:hover::before,.container-bar-left .labelbar:hover::before {
- color: #fff;
- color: var(--menu-hover-color);
- text-decoration: none
-}
-
-.container-bar-right .labelbar::before,.container-bar-left .labelbar::before {
- color: var(--menu-color);
- font-size: 2rem !important;
- text-decoration: none
-}
-
-.container-bar-left .pdboy-closebar:before {
- content: "\e931"
-}
-
-.container-bar-right .pdboy-openbar:before {
- content: "\e903"
-}
-
-.container-bar-left .pdboy-gohome:before {
- content: "\e90c"
-}
-
-.container-bar-left .pdboy-gossr:before {
- content: "\e917"
-}
-
-.container-bar-left .pdboy-gonet:before {
- content: "\e91e"
-}
-
-.container-bar-left .pdboy-gouser:before {
- content: "\e93d"
-}
-
-.container-bar-left .pdboy-gocontrol:before {
- content: "\e905"
-}
-
-.container-bar-left .pdboy-goadvanced:before {
- content: "\e91c"
-}
-
-.container-bar-left .pdboy-gopoweroff:before {
- content: "\e915";
- color: #ff5722
-}
-
-
-.labelbar {
- font-size: 2rem !important;
- display: inline-block;
- text-decoration: none;
- text-align: center;
- line-height: 30px;
- padding: 10px;
- height: 100%;
- transition: 0.1s;
- float: left
-}
-
-@keyframes anim-rotate {
- 0% {
- -webkit-transform: rotate(0);
- -ms-transform: rotate(0);
- transform: rotate(0)
- }
-
- 100% {
- -webkit-transform: rotate(360deg);
- -ms-transform: rotate(360deg);
- transform: rotate(360deg)
- }
-}
-
-.main>.loading {
- position: fixed;
- top: 0;
- opacity: 1;
- visibility: visible;
- align-items: center;
- justify-content: center;
- background-color: rgba(255,255,255,0)
-}
-
-.main-left {
- float: left;
- width: calc(0% + 15rem);
- height: 100%;
- background-color: var(--menu-bgcolor);
- background-image: var(--bgqs-image);
- box-shadow: 0 .1rem .5rem .2rem var(--input-boxcolor);
- overflow-x: auto;
- position: fixed;
- z-index: 100
-}
-
-.main-right {
- width: calc(100% - 15rem);
- float: right;
- padding-top: 4.8rem;
- height: 100vh
-}
-
-.main-right>#maincontent {
- position: relative;
- background-color: rgba(var(--primary-rgbbody),var(--primary-rgbm-ts));
- padding: 0.2rem 0.2rem 3rem 0.5rem;
- z-index: 50
-}
-
-.pull-left {
- float: left
-}
-
-.nowrap:not(.td) {
- white-space: nowrap
-}
-
-[disabled="disabled"] {
- pointer-events: none
-}
-
-header.pd-primary {
- background-color: var(--menu-barbgcolor);
- position: fixed;
- top: 0;
- right: 0;
- width: calc(100% - 15rem);
- z-index: 100;
- box-shadow: 0 .1rem .5rem .2rem var(--input-boxcolor);
- background-image: -webkit-linear-gradient(135deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent) !important
-}
-
-header .fill {
- padding: 1rem 0;
- border-bottom: 0 solid rgba(255,255,255,0.08) !important;
- display: flex
-}
-
-.pd-primary .fill .container {
- height: 2.8rem;
- padding: 0 1rem;
- display: flex;
- align-items: center;
- width: 100%;
- background-color: rgba(255,255,255,0) !important
-}
-
-header .fill .container .flex1 {
- white-space: nowrap;
- flex: 1
-}
-
-header .fill .container .flex1 .showSide {
- display: none
-}
-
-header .fill .container .flex1 .brand {
- color: var(--menu-color);
- font-family: var(--font-sans);
- font-weight: bold;
- font-size: 1.5rem;
- text-decoration: none;
- cursor: default;
- display: none
-}
-
-header .fill .status span {
- display: inline-block;
- font-size: .875rem;
- font-weight: bold;
- white-space: nowrap;
- text-decoration: none;
- text-transform: uppercase;
- text-shadow: none;
- border-radius: 4px;
- color: #ffffff;
- cursor: default;
- margin: 0 .25rem
-}
-
-.status {
- display: flex;
- align-items: center;
- font-size: 0;
- cursor: pointer;
- background-repeat: no-repeat;
- background-position: center;
- color: transparent !important;
- -webkit-appearance: none;
- -moz-appearance: none;
- transition: all .3s;
- flex-direction: row-reverse;
- align-content: center;
- flex-wrap: nowrap
-}
-
-span[data-indicator="poll-status"] {
- font-size: 0 !important;
- cursor: pointer;
- background-repeat: no-repeat;
- background-position: center;
- color: transparent !important;
- -webkit-appearance: none;
- display: flex;
- background-color: rgba(255, 255, 255, 0);
- -moz-appearance: none;
- padding: 1rem;
- transition: all .3s
-}
-
-span[data-indicator="poll-status"]:not([data-style="inactive"]):before {
- font-size: 1.5rem !important;
- font-family: 'kucat' !important;
- content: "\e20b";
- color: var(--body-color);
- text-decoration: none
-}
-
-span[data-indicator="poll-status"]:not([data-style="active"]):before {
- font-size: 1.5rem !important;
- font-family: 'kucat' !important;
- content: "\e20a";
- color: var(--body-color);
- text-decoration: none
-}
-
-#indicators span[data-indicator="poll-status"],{
- line-height: 1;
- padding: 1rem;
- cursor: pointer !important;
- font-weight: normal !important;
- margin: 0;
- display: inline-block
-}
-
-#indicators span[data-indicator="poll-status"]:hover {
- border-radius: var(--radius1);
- text-decoration: none
-}
-
-span[data-indicator="uci-changes"],#indicators span[data-indicator="poll-status"] {
- font-size: 0 !important;
- cursor: pointer;
- background-repeat: no-repeat;
- background-position: center;
- color: transparent !important;
- -webkit-appearance: none;
- -moz-appearance: none;
- transition: all .3s
-}
-
-span[data-indicator="uci-changes"]:before {
- font-size: 1.5rem !important;
- font-family: 'kucat' !important;
- content: "\e923";
- color: #ffb923;
- text-decoration: none
-}
-
-#indicators span[data-indicator="poll-status"]:not([data-style="inactive"]):before {
- font-size: 1.5rem !important;
- font-family: 'kucat' !important;
- content: "\e936";
- color: var(--menu-hover-color);
- text-decoration: none
-}
-
-#indicators span[data-indicator="poll-status"]:not([data-style="active"]):before {
- font-family: 'kucat' !important;
- font-size: 1.5rem !important;
- content: "\e932";
- color: #aaa !important;
- text-decoration: none
-}
-.pdboy-dark:hover,.pdboy-light:hover,
-span[data-indicator="uci-changes"]:hover,#indicators span[data-indicator="poll-status"]:hover,.pdboy-qlogout:hover,.showSide:hover {
- background-color: var(--menu-hover-barbgcolor) !important;
- color: var(--menu-hover-color);
- border-radius: var(--radius1);
- text-decoration: none
-}
-
-.pdboy-dark,.pdboy-light,
-span[data-indicator="uci-changes"],#indicators span[data-indicator="poll-status"],.pdboy-qlogout {
- line-height: 1;
- padding: 1rem;
- cursor: pointer !important;
- font-weight: normal !important;
- margin: 0;
- display: inline-block
-}
-
-.pdboy-qlogout:before {
- font-size: 1.5rem !important;
- content: "\e935";
- color: red
-}
-
-.pdboy-light:before {
- content: "\e91b";
-}
-
-.pdboy-dark:before {
- content: "\e912";
- color: #aaa !important;
-}
-
-.pdboy-dark:before,
-.pdboy-light:before {
- font-size: 1.5rem !important;
- color: var(--menu-hover-color);
- text-decoration: none;
- border-radius: var(--radius1);
-}
-
-
-.theme-switcher .active {
- display: inline-block;
-}
-
-.theme-switcher>span:not(.active) {
- display: none;
-}
-
-
-.showWord:before {
- padding: 1rem;
- font-size: 1.1rem;
- line-height: 1.2;
- content: "\e925";
- color: var(--menu-color);
- text-decoration: none
-}
-
-.showWord:after {
- padding: 1rem;
- font-size: 1.1rem;
- line-height: 1.2;
- content: "\e927";
- color: var(--menu-color);
- text-decoration: none
-}
-
-.showWord {
- font-family: var(--font-sans);
- color: var(--menu-color);
- font-size: 1.1rem !important;
- line-height: 1.2;
- flex: auto;
- cursor: pointer;
- display: inline-block;
- text-decoration: none !important;
- vertical-align: text-bottom
-}
-
-.showWord:hover,.showWord:focus {
- text-decoration: none !important
-}
-
-.showWord::before,.showWord::after,[class^="pdboy-"]:before,[class*=" pdboy-"]:before,[class^="pdboy-"]:after,[class*=" pdboy-"]:after {
- font-family: 'kucat' !important;
- font-style: normal !important;
- font-weight: normal !important;
- font-variant: normal !important;
- text-transform: none !important;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale
-}
-
-.container .alert,.container .alert-message {
- margin-top: 1rem
-}
-
-.main .main-left .nav {
- margin-top: 0
-}
-
-.slide-menu {
- overflow: hidden
-}
-
-.main .main-left .nav>li>a:first-child {
- font-size: var(--font-d);
- color: var(--menu-fontcolor);
- padding: .7rem 0rem .7rem 3rem;
- margin-bottom: 1px;
- font-weight: 500;
- display: flex;
- width: 100%;
- text-decoration: none;
- white-space: nowrap;
- cursor: pointer;
- transition: all .2s;
- position: relative
-}
-
-.main .main-left .nav>li .slide-menu>li>a {
- display: block;
- padding: .5rem 1.4rem .5rem 3rem;
- margin-bottom: 1px;
- font-weight: 500;
- width: 100%;
- text-decoration: none;
- white-space: nowrap;
- cursor: pointer;
- transition: all .2s;
- position: relative;
- color: var(--menu-fontcolor);
- font-size: var(--font-z)
-}
-
-.main .main-left .nav .slide .slide-menu>li {
- border-left: 4px solid rgba(255,255,255,0)
-}
-
-.main .main-left .nav .slide .slide-menu>li.active {
- background-color: var(--menu-item-active-bgcolor);
- border-left: 4px solid var(--primary-solid)
-}
-
-.main .main-left .nav>li {
- padding: 0rem
-}
-
-.main .main-left .nav .slide ul {
- display: none;
- list-style: dotted
-}
-
-.main .main-left .nav .slide.active ul {
- display: block
-}
-
-.main .main-left .nav>li>a.active::before,.main .main-left .nav>li>a:first-child.active::before {
- color: var(--menu-hover-color)
-}
-
-.main .main-left .nav>.slide>a::before,.main .main-left .nav>li>a::before,.main .main-left .nav>li>a:first-child::before {
- font-family: 'kucat' !important;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1.4;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- position: absolute;
- left: .8rem;
- content: "\e91a";
- color: var(--menu-fontcolor)
-}
-
-.main .main-left .nav>.slide>a::after,.main .main-left>.nav>li>a::after {
- position: absolute;
- right: .6rem;
- top: 1rem;
- font-family: 'kucat' !important;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- color: var(--menu-fontcolor);
- content: '\e20b';
- transition: all .1s ease;
- -moz-osx-font-smoothing: grayscale;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- transition: all .1s
-}
-
-.main .main-left .nav>li>a:hover a::after,.main .main-left>.nav>li>a.active a::after {
- cursor: pointer;
- color: var(--menu-hover-color);
- width: 100%
-}
-
-.main>.main-left .nav>.slide>a.active::before,.main .main-left .nav>li>a:hover::after,.main .main-left .nav>li>a.active::after {
- cursor: pointer;
- color: var(--menu-hover-color)
-}
-
-body[class*="node-"]>.main>.main-left>.nav>.slide>.menu::before {
- transition: transform .1s ease-in-out
-}
-
-body[class*="node-"]>.main>.main-left>.nav>.slide>.menu.active::before {
- transition: transform .2s ease-in-out
-}
-
-.main .main-left .nav>li>a.active::after {
- -ms-transform: rotate(180deg);
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg)
-}
-
-.main .main-left .nav>li>a.active {
- cursor: pointer;
- background-color: var(--menu-item-active-bgcolor);
- color: var(--menu-hover-color)
-}
-
-.main .main-left .nav>li>a:hover {
- cursor: pointer;
- background-color: var(--menu-item-hover-bgcolor);
- color: var(--menu-hover-color)
-}
-
-.main .main-left .nav>li>a:hover a,.main .main-left .nav>li>a.active a {
- color: var(--menu-hover-color)
-}
-
-.main .main-left .nav>li>a:hover::before,.main .main-left .nav>li>a.active::before {
- color: var(--menu-hover-color)
-}
-
-.main .main-left .nav>li>a[data-title=Status]:before {
- content: "\e90c"
-}
-
-.main .main-left .nav>li>a[data-title=System]:before {
- content: "\e919"
-}
-
-.main .main-left .nav>li>a[data-title=Services]:before {
- content: "\e92a"
-}
-
-.main .main-left .nav>li>a[data-title=NAS]:before {
- content: "\e907"
-}
-
-.main .main-left .nav>li>a[data-title=VPN]:before {
- content: "\e917"
-}
-
-.main .main-left .nav>li>a[data-title=Network]:before {
- content: "\e90a"
-}
-
-.main .main-left .nav>li>a[data-title=Bandwidth_Monitor]:before {
- content: "\e913"
-}
-
-.main .main-left .nav>li>a[data-title=iStore]:before {
- content: "\e908"
-}
-
-.main .main-left .nav>li>a[data-title=Inital_Setup]:before,.main .main-left .nav>li>a[data-title=Netwizard]:before,.main .main-left .nav>li>a[data-title=Wizard]:before {
- content: "\e93e"
-}
-
-.main .main-left .nav>li>a[data-title=Docker]:before {
- content: "\e902"
-}
-
-.main .main-left .nav>li>a[data-title=Statistics]:before {
- content: "\e918"
-}
-
-.main .main-left .nav>li>a[data -title=control]:before,.main .main-left .nav>li>a[data -title=Control]:before {
- content: "\e91a"
-}
-
-.main .main-left .nav>li>a[data-title=Asterisk]:before {
- content: "\e91c"
-}
-
-.main .main-left .nav>li>a[data-title=Logout]:before,.main .main-left .nav>li>a[data-title=Log_out]:before {
- content: "\e935"
-}
-
-.main .main-left .nav>li>a[data-title=Netizard]:after,.main .main-left .nav>li>a[data-title=Wizard]:after,.main .main-left .nav>li>a[data-title=iStore]:after,.main .main-left .nav>li>a[data-title=Logout]:after,.main .main-left .nav>li>a[data-title=Log_out]:after {
- content: ""
-}
-
-.main .main-left .nav>li [data-title=Logout],.main .main-left .nav>li>a[data-title=Logout],.main .main-left .nav>li [data-title=Log_out],.main .main-left .nav>li>a[data-title=Log_out] {
- display: none
-}
-
-.main .main-left .nav .slide .slide-menu .active a {
- color: var(--menu-hover-color);
- font-size: var(--font-z)
-}
-
-.main .main-left .nav .slide .slide-menu li:hover {
- background-color: var(--menu-item-hover-bgcolor)
-}
-
-.main .main-left .nav .slide .slide-menu li:active a {
- color: var(--menu-hover-color)
-}
-
-.main .main-left .nav .slide .slide-menu li:hover a {
- color: var(--menu-hover-color)
-}
-
-.main .main-left .sidenav-header {
- text-align: center;
- height: 4.8rem;
- margin: 0rem 1rem;
- padding: 2rem;
- background-clip: padding-box;
- border-bottom: 1px solid var(--input-boxcolor)
-}
-
-.main .main-left .sidenav-header .brand {
- color: var(--menu-fontcolor);
- font-family: var(--font-sans);
- font-weight: 900;
- font-size: 1.6rem;
- text-decoration: none;
- letter-spacing: 2px;
- cursor: default;
- vertical-align: text-bottom;
- white-space: nowrap;
- text-align: center;
- margin: 1em auto
-}
-
-ul {
- line-height: normal
-}
-
-li {
- list-style-type: none
-}
-
-h1 {
- font-size: var(--font-d);
- padding-bottom: 10px
-}
-
-h2 {
- font-size: 1.5em;
- padding: 0.5rem 1.5rem 0.2rem;
- font-weight: bold;
- text-transform: capitalize;
- color: var(--primary-title-color)
-}
-
-h3 {
- font-size: var(--font-d);
- display: block;
- margin: 0.5rem 0 0 1rem;
- color: var(--primary-title-color);
- font-weight: bold;
- letter-spacing: 0.1rem;
- white-space: nowrap;
- background-color: rgba(255,255,255,0)
-}
-
-h4 {
- margin: 0;
- padding: 0.75rem 1.25rem;
- font-weight: 600;
- font-size: var(--font-z);
- color: var(--primary-title-color) ;
- padding-bottom: 10px
-}
-
-h4>span {
- font-size: 90%
-}
-
-h5 {
- font-size: var(--font-z);
- color: var(--primary-title-color);
- margin: 1rem 0 0 0;
- padding-bottom: 10px
-}
-
-#cbi-dropbear h2,#cbi-dropbear .cbi-map-descr,#cbi-dropbear .cbi-map-descr abbr,#cbi-rc h2,#cbi-rc .cbi-map-descr,#cbi-distfeedconf h2,#cbi-distfeedconf .cbi-map-descr,#cbi-customfeedconf h2,#cbi-customfeedconf .cbi-map-descr,#cbi-download h2,#cbi-filelist h2 {
- font-weight: bold
-}
-
-.cbi-section,.cbi-section-error,#iptables,.Firewall form,#cbi-network>.cbi-section-node,#cbi-wireless>.cbi-section-node,#cbi-wireless>#wifi_assoclist_table,[data-tab-title],[data-page="admin-system-opkg"] #maincontent>.container {
- font-family: inherit;
- font-weight: normal;
- font-style: normal;
- line-height: normal;
- min-width: inherit;
- line-height: 1;
- overflow-x: auto;
- overflow-y: hidden;
- border: 0;
- border-radius: 0
-}
-
-.cbi-section {
- padding: 0;
- border: 0px solid rgba(0,0,0,0);
- box-shadow: 0px 1px 0px var(--input-boxcolor)
-}
-
-.cbi-modal .cbi-section,.cbi-section .cbi-section {
- padding: 0;
- box-shadow: none
-}
-
-.cbi-modal .cbi-tabmenu {
- margin-left: 0
-}
-
-.cbi-map-descr,.cbi-section-descr {
- font-size: small;
- line-height: 1.4;
- margin: 0.5rem 1.5rem 1rem 1.5rem
-}
-
-.cbi-section-table-descr {
- display: none
-}
-
-fieldset {
- margin: 0;
- padding: 0;
- font-weight: normal;
- font-style: normal;
- line-height: 1;
- font-family: inherit;
- min-width: inherit;
- overflow-x: auto;
- overflow-y: hidden
-}
-
-.cbi-section>legend {
- display: none !important
-}
-
-.cbi-map-descr+fieldset {
- margin-top: 1rem
-}
-
-fieldset>fieldset {
- margin: 0;
- padding: 0;
- border: none;
- box-shadow: none
-}
-
-.panel-title {
- padding: 1rem 1.5rem
-}
-
-.cbi-section>h3:first-child,.panel-title {
- width: 100%;
- display: block;
- padding: 20px;
- color: var(--primary-title-color);
- font-size: var(--font-d);
- font-weight: bold;
- margin: 0rem;
- letter-spacing: .1rem
-}
-
-.cbi-section>h4:first-child,.cbi-section>p:first-child,[data-tab-title]>h3:first-child,[data-tab-title]>h4:first-child,[data-tab-title]>p:first-child {
- padding-top: 1rem;
-}
-
-.table {
- position: relative;
- display: table
-}
-
-table,.table {
- border-spacing: 0;
- border-collapse: collapse;
- border: 0px solid #eee;
- font-size: var(--font-x);
- width: 100%
-}
-
-.cbi-tblsection table.cbi-section-table {
- overflow-y: visible
-}
-
-table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td,table>thead>tr>th,.table>.tbody>.tr>.td,.table>.tbody>.tr>.th,.table>.tfoot>.tr>.td,.table>.tfoot>.tr>.th,.table>.thead>.tr>.td,.table>.thead>.tr>.th {
- font-size: var(--font-x);
- padding: 1.2rem 1.5rem;
- line-height: 1.2rem;
- letter-spacing: 1px;
- color: var(--body-color);
- white-space: nowrap
-}
-
-table .tr>.td.cbi-value-field,table .tr>.th.cbi-section-table-cell {
- font-size: var(--font-x);
- padding: 0.7rem 0.4rem;
- letter-spacing: 1px;
- display: table-cell !important;
- color: var(--body-color);
- white-space: nowrap
-}
-
-table .tr>.td.cbi-value-field>[id*="ifc-description"] {
- text-align: left;
- font-weight: normal !important
-}
-
-.container>.cbi-section:first-of-type>.table[width="100%"]>.tr>.td {
- padding: .6rem
-}
-
-.cbi-section-table-cell {
- line-height: 1.1;
- align-self: flex-end;
- flex: 1 1 auto
-}
-
-table>tbody>tr:first-child>td,table>tfoot>tr:first-child>td,table>thead>tr:first-child>td {
- border-top: 0px solid #eee
-}
-
-#cbi-wireless .td,#cbi-network .tr:first-child>.td,.table[width="100%"]>.tr:first-child>.td,[data-page="admin-network-diagnostics"] .tr>.td,.tr.table-titles>.th,.tr.cbi-section-table-titles>.th {
- border-top: 0 !important;
- line-height: 1.2
-}
-
-[data-page="admin-network-diagnostics"] .tr>.td {
- white-space: normal
-}
-
-[data-page="admin-network-diagnostics"] .cbi-dropdown>ul {
- overflow-y: hidden
-}
-
-.table[width="100%"]>.tr:first-child>.td {
- margin: auto 0
-}
-
-.cbi-section-table-row {
- text-align: center !important
-}
-
-.btn,button,select,input,.cbi-dropdown {
- line-height: 1;
- outline: 0;
- padding: 0.5rem 0.75rem;
- margin: 0.25rem 0.1rem;
- background-color: var(--inputbg-color);
- color: var(--inputtext-color);
- border: 1px solid var(--inputborder-color)!important;
- transition: box-shadow .25s ease;
- border-radius: var(--radius2);
- box-shadow: 0 0.3rem 0.8rem var(--input-boxcolor)
-}
-
-.btn,button,.cbi-button,.item::after {
- line-height: 1;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- display: inline-block;
- text-transform: uppercase;
- cursor: pointer;
- -ms-touch-action: manipulation;
- touch-action: manipulation;
- width: auto !important;
- vertical-align: middle;
- text-align: center;
- white-space: nowrap;
- font-size: var(--font-z);
- color: var(--menu-hover-color);
- background-color: #008b89;
- box-shadow: 0 0.3rem 0.8rem var(--input-boxcolor);
- border-radius: var(--radius2);
- background-image: var(--bgqs-image)
-}
-
-.cbi-tab-descr {
- line-height: 1.3;
- padding: 0 0 0.5rem 1.5rem
-}
-
-.cbi-section-table-row:last-child {
- margin-bottom: 0
-}
-.cbi-input-textarea,textarea {
- min-width: 30rem
-}
-
-.cbi-section-table-row>.cbi-value-field .cbi-dropdown,.cbi-section-table-row>.cbi-value-field .cbi-input-select,.cbi-section-table-row>.cbi-value-field .cbi-input-text,.cbi-section-table-row>.cbi-value-field .cbi-input-password {
- min-width: 8rem;
- max-width: 12rem
-}
-
-.cbi-section-table-row>.cbi-value-field [data-dynlist]>input,.cbi-section-table-row>.cbi-value-field input.cbi-input-password {
- width: calc(100% - 1.5rem)
-}
-
-.cbi-tabcontainer>.cbi-value:nth-of-type(4n+2),.cbi-map>.cbi-section .cbi-value:nth-of-type(4n+2),fieldset>table>tbody>tr:nth-of-type(4n+2),table>tbody>tr:nth-of-type(4n+2),div>.table>.tr:nth-of-type(4n+2) {
- background-color: rgba(var(--primary-rgbm),var(--primary-rgbs-ts));
- background-image: var(--bgqs-image)
-}
-
-.cbi-tabcontainer>.cbi-value:nth-of-type(4n),.cbi-map>.cbi-section .cbi-value:nth-of-type(4n),fieldset>table>tbody>tr:nth-of-type(4n),table>tbody>tr:nth-of-type(4n),div>.table>.tr:nth-of-type(4n) {
- background-color: rgba(var(--primary-rgbs),var(--primary-rgbs-ts));
- background-image: var(--bgqs-image)
-}
-
-.cbi-tabcontainer>.cbi-value:nth-of-type(4n+2):hover,.cbi-map>.cbi-section .cbi-value:nth-of-type(4n+2):hover,fieldset>table>tbody>tr:nth-of-type(4n+2):hover,table>tbody>tr:nth-of-type(4n+2):hover,div>.table>.tr:nth-of-type(4n+2):hover {
- background-color: var(--body-hover-bgcolor)
-}
-
-.cbi-tabcontainer>.cbi-value:nth-of-type(4n):hover,.cbi-map>.cbi-section .cbi-value:nth-of-type(4n):hover,fieldset>table>tbody>tr:nth-of-type(4n):hover,table>tbody>tr:nth-of-type(4n):hover,div>.table>.tr:nth-of-type(4n):hover {
- background-color: var(--body-hover-bgcolor)
-}
-
-.cbi-tabcontainer>.cbi-value:nth-of-type(2n+1):hover,.cbi-map>.cbi-section .cbi-value:nth-of-type(2n+1):hover,fieldset>table>tbody>tr:nth-of-type(2n+1):hover,table>tbody>tr:nth-of-type(2n+1):hover,div>.table>.tr:nth-of-type(2n+1):hover {
- background-color: var(--body-hover-bgcolor)
-}
-
-table table,.table .table,.cbi-value-field table,.cbi-value-field .table,td>table>tbody>tr>td,.td>.table>.tbody>.tr>.td,.cbi-value-field>table>tbody>tr>td,.cbi-value-field>.table>.tbody>.tr>.td {
- border: 0
-}
-
-.cbi-button-down,.cbi-button-up {
- font-size: 1rem;
- display: inline-block;
- cursor: pointer;
- background-repeat: no-repeat;
- background-position: center;
- color: transparent !important;
- -webkit-appearance: none;
- -moz-appearance: none;
- background-size: 25px 30px
-}
-
-.cbi-button-up {
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzY4IiBoZWlnaHQ9Ijc2OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiPgogPHRpdGxlLz4KCiA8Zz4KICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+CiAgPGcgaWQ9Imljb21vb24taWdub3JlIi8+CiAgPHBhdGggZmlsbD0iI2ZmZmZmZiIgaWQ9InN2Z18xIiBkPSJtNTk4LjYzLDQ1Ny4zNzVsLTE5MiwtMTkyYy0xMi41MTIsLTEyLjUxMiAtMzIuNzY4LC0xMi41MTIgLTQ1LjI0OCwwbC0xOTIsMTkyYy0xMi41MTIsMTIuNTEyIC0xMi41MTIsMzIuNzY4IDAsNDUuMjQ4czMyLjc2OCwxMi41MTIgNDUuMjQ4LDBsMTY5LjM3NiwtMTY5LjM3NmwxNjkuMzc2LDE2OS4zNzZjMTIuNTEyLDEyLjUxMiAzMi43NjgsMTIuNTEyIDQ1LjI0OCwwczEyLjUxMiwtMzIuNzY4IDAsLTQ1LjI0OHoiLz4KIDwvZz4KPC9zdmc+")
-}
-
-.cbi-button-down {
- background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzY4IiBoZWlnaHQ9Ijc2OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjEiPgogPHRpdGxlLz4KCiA8Zz4KICA8dGl0bGU+TGF5ZXIgMTwvdGl0bGU+CiAgPGcgaWQ9Imljb21vb24taWdub3JlIi8+CiAgPHBhdGggZmlsbD0iI2ZmZmZmZiIgaWQ9InN2Z18xIiBkPSJtMTY5LjM3LDMxMC42MjRsMTkyLDE5MmMxMi41MTIsMTIuNTEyIDMyLjc2OCwxMi41MTIgNDUuMjQ4LDBsMTkyLC0xOTJjMTIuNTEyLC0xMi41MTIgMTIuNTEyLC0zMi43NjggMCwtNDUuMjQ4cy0zMi43NjgsLTEyLjUxMiAtNDUuMjQ4LDBsLTE2OS4zNzYsMTY5LjM3NmwtMTY5LjM3NiwtMTY5LjM3NmMtMTIuNTEyLC0xMi41MTIgLTMyLjc2OCwtMTIuNTEyIC00NS4yNDgsMHMtMTIuNTEyLDMyLjc2OCAwLDQ1LjI0OHoiLz4KIDwvZz4KPC9zdmc+")
-}
-
-.cbi-button-up,.cbi-button-down,.cbi-value-helpicon,.showSide,.main>.loading>span {
- font-family: 'kucat' !important;
- font-style: normal !important;
- font-weight: normal !important;
- font-variant: normal !important;
- text-transform: none !important;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale
-}
-
-.td.cbi-section-actions>*>*,.td.cbi-section-actions>*>form>* {
- margin: 0 5px;
- display: flex;
- align-items: center
-}
-
-[data-page="admin-network-network"] #view .td.cbi-section-actions>*,[data-page="admin-network-network"] #view .td.cbi-section-actions>*>* {
- display: unset
-}
-
-.cbi-rowstyle-2 .cbi-button-up,.cbi-rowstyle-2 .cbi-button-down,body:not(.Interfaces) .cbi-rowstyle-2:first-child {
- background-color: rgba(var(--primary-rgbm),0.5) !important
-}
-
-.btn:hover,.btn:focus,.btn:active,.cbi-button:hover,.cbi-button:focus,.cbi-button:active,.item:hover::after,.item:focus::after,.item:active::after {
- outline: 0;
- text-decoration: none
-}
-
-.btn:focus,.cbi-button:focus {
- color: var(--menu-hover-color);
- box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor);
- -webkit-box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor);
- -moz-box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor)
-}
-
-button:hover,.btn:hover,.cbi-button:hover {
- box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor);
- -webkit-box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor);
- -moz-box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor)
-}
-
-.btn:active,.cbi-button:active,button:active {
- box-shadow: 0 0 6px var(--input-boxhovercolor);
- -webkit-box-shadow: 0 0 6px var(--input-boxhovercolor);
- -moz-box-shadow: 0 0 6px var(--input-boxhovercolor)
-}
-
-.btn:disabled,.cbi-button:disabled {
- cursor: not-allowed;
- pointer-events: none;
- opacity: .5;
- box-shadow: none
-}
-
-.primary {
- line-height: 2
-}
-
-.cbi-button:not(select) {
- appearance: none !important
-}
-
-.alert-message [class="btn"],.modal div[class="btn"],.cbi-button-find,.cbi-button-link,.cbi-button-neutral,.cbi-button[name="zero"],.cbi-button[name="restart"],.cbi-button[onclick="hide_empty(this)"] {
- font-weight: bold;
- border: thin solid #1b4f0e;
- background-color: #25770b
-}
-
-.btn.primary,.cbi-page-actions .cbi-button-save,.cbi-page-actions .cbi-button-apply+.cbi-button-save,.cbi-button-add,.cbi-button-save,.cbi-button-positive,.cbi-button-link,.cbi-button[value="Enable"],.cbi-button[value="Scan"],.cbi-button[value^="Back"],.cbi-button-neutral[onclick="handleConfig(event)"] {
- background-color: #2e869f
-}
-
-.cbi-page-actions .cbi-button-apply,.cbi-section-actions .cbi-button-edit,.cbi-button-edit,.cbi-button-apply,.cbi-button-reload,.cbi-button-action,.cbi-button[value="Submit"],.cbi-button[value="Upload"],.cbi-button[value$="Apply"],.cbi-button[onclick="addKey(event)"] {
- font-weight: normal;
- border-color: rgba(var(--primary-rgbm),1);
- color: var(--menu-hover-color);
- border: thin solid rgba(var(--primary-rgbm),1);
- background-color: rgba(var(--primary-rgbm),0.9)
-}
-
-.btn.danger,.cbi-section-remove>.cbi-button,.cbi-button-remove,.cbi-button-reset,.cbi-button-negative,.cbi-button[value="Stop"],.cbi-button[value="Kill"],.cbi-button[onclick="reboot(this)"],.cbi-button-neutral[value="Restart"] {
- font-weight: normal;
- background-color: #ab3632
-}
-
-.btn[value="Dismiss"],.cbi-button[value="Terminate"],.cbi-button[value="Reset"],.cbi-button[value="Disabled"],.cbi-button[onclick^="iface_reconnect"],.cbi-button[onclick="handleReset(event)"],.cbi-button-neutral[value="Disable"] {
- font-weight: normal;
- background-color: #f0ad4e
-}
-
-.cbi-button-success,.cbi-button-download,.cbi-button[name="backup"],.cbi-button[value="Download"],.cbi-button[value="Save mtdblock"] {
- font-weight: normal;
- font-weight: normal;
- border: thin solid #4cae4c;
- background-color: #5cb85c
-}
-
-.cbi-page-actions .cbi-button-link:first-child {
- float: left
-}
-
-.a-to-btn {
- text-decoration: none
-}
-
-.cbi-value-field .cbi-button-add {
- font-weight: bold;
- margin: 9px 0 4px 3px;
- padding: 1px 6px
-}
-
-.tabs li[class~="active"] {
- border-right: 0.18751rem solid var(--primary-solid) !important;
- border-left: 0.18751rem solid var(--primary-solid) !important;
- box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor);
- background-color: rgba(var(--primary-rgbm),0.7)
-}
-
-.tabs>li:hover {
- background: rgba(var(--primary-rgbm),0.7);
- box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor)
-}
-
-.tabs li[class~="active"] a {
- color: var(--menu-hover-color)
-}
-
-.tabs li:hover a {
- color: var(--menu-hover-color)
-}
-
-.tabs li a {
- padding: 0.5rem 1rem;
- text-decoration: none;
- color: var(--primarytextcolor)
-}
-
-.tabs,.cbi-tabmenu {
- border: none;
- color: var(--menu-hover-color);
- border-right: 0.18751rem solid rgba(255,255,255,0);
- letter-spacing: 1px;
- padding: 0.3rem 1rem;
- white-space: nowrap;
- margin-bottom: 0.5rem;
- overflow-x: auto
-}
-
-.tabs>li,.cbi-tabmenu li {
- display: inline-block;
- font-size: var(--font-z);
- border-left: 0.18751rem solid var(--menu-item-titlebg-color) !important;
- border-right: 0.18751rem solid var(--menu-item-titlebg-color) !important;
- border-radius: var(--radius2);
- padding: 0.5rem 0.2rem;
- line-height: 1.5;
- box-shadow: 0 0.5rem 1rem var(--input-boxcolor);
- background: var(--menu-item-titlebg-color);
- margin: 0.2rem 0rem 0.2rem 0.4rem !important
-}
-
-.cbi-tabmenu li a {
- text-decoration: none;
- padding: 0.7rem 1rem;
- color: var(--primarytextcolor)
-}
-
-.cbi-tabmenu>li:hover {
- color: var(--menu-hover-color);
- background: rgba(var(--primary-rgbm),0.7);
- box-shadow: 0 0.5rem 1rem var(--input-boxhovercolor);
- margin-bottom: 0
-}
-
-.cbi-tabmenu li:hover a {
- color: var(--menu-hover-color)
-}
-
-.cbi-tabmenu>li[class~="cbi-tab"] {
- border-right: 0.18751rem solid var(--primary-solid) !important;
- border-left: 0.18751rem solid var(--primary-solid) !important;
- box-shadow: 0 0.5rem 1rem var(--input-boxcolor);
- background-color: rgba(var(--primary-rgbm),0.6)
-}
-
-.cbi-tabmenu li[class~="cbi-tab"] a {
- color: var(--menu-hover-color)
-}
-
-[data-tab-title] {
- overflow: hidden;
- height: 0;
- opacity: 0;
- margin: 0;
- padding: 0 !important
-}
-
-[data-tab-active="true"] {
- overflow: visible;
- height: auto;
- opacity: 1;
- transition: opacity .25s ease-in
-}
-
-.cbi-section-node-tabbed {
- margin-top: 0;
- padding: 0;
- border-top: 0
-}
-.cbi-section-node {
- display: flex;
- flex-direction: column;
-}
-
-.cbi-value-field {
- display: table-cell
-}
-
-[data-page="admin-network-network"] .cbi-value>.cbi-value-field {
- line-height: 1.25
-}
-
-.cbi-value-description {
- font-size: small;
- padding: 0 0 0.6rem 0;
- opacity: .8
-}
-
-.cbi-value-title {
- display: table-cell;
- float: left;
- width: 23rem;
- padding-right: 2rem;
- text-align: right;
- word-wrap: break-word
-}
-
-.cbi-value {
- display: inline-block;
- width: 100%;
- padding: 0.1rem 0.3rem;
- line-height: 2.3rem
-}
-
-.cbi-value .cbi-filebrowser {
- line-height: 2;
- width: 15rem
-}
-
-.cbi-filebrowser .right {
- margin-bottom: 20px
-}
-
-.cbi-filebrowser .upload,.cbi-filebrowser>.right>.upload {
- display: inline-flex
-}
-
-.cbi-value:first-child {
- padding-top: 1rem
-}
-
-.cbi-value:last-child {
- border-bottom: 1rem
-}
-
-.cbi-value-field .control-group {
- display: flex
-}
-
-.cbi-value ul {
- line-height: 1.25
-}
-
-.cbi-value input[type="text"],.cbi-value input[type="password"] {
- padding: 0 10px 0 10px
-}
-
-.cbi-value strong {
- font-weight: normal
-}
-
-#cbi-firewall-zone .cbi-input-select,#cbi-network-switch_vlan .cbi-input-select {
- min-width: 11rem
-}
-
-#cbi-network-switch_vlan .cbi-input-text {
- max-width: 3rem
-}
-
-.cbi-input-invalid {
- color: #f00;
- border-bottom-color: #f00
-}
-
-.cbi-section-error {
- padding: 1.5rem;
- color: #fb6340;
- font-weight: 600
-}
-
-.cbi-section-error ul {
- margin: 0 0 0 20px
-}
-
-.cbi-section-error ul li {
- font-weight: bold;
- color: #f00
-}
-
-.td[data-title]::before {
- font-weight: bold;
- display: none;
- padding: .25rem 0;
- content: attr(data-title) ":\20";
- text-align: left;
- white-space: nowrap
-}
-
-.tr.placeholder .td[data-title]::before {
- display: none
-}
-
-.tr[data-title]::before,.tr.cbi-section-table-titles.named::before {
- font-weight: bold;
- font-size: var(--font-x);
- display: table-cell;
- align-self: center;
- flex: 1 1 5%;
- padding: .25rem;
- content: attr(data-title) "\20";
- text-align: center;
- vertical-align: middle;
- white-space: nowrap;
- word-wrap: break-word
-}
-
-.table .table-titles th,.table-titles,.cbi-section-table-titles {
- background-color: var(--menu-item-titlebg-color);
- color: var(--title-color)
-}
-
-.cbi-section-table .cbi-section-table-titles .cbi-section-table-cell {
- width: auto !important
-}
-
-.td.cbi-section-actions {
- text-align: right !important;
- vertical-align: middle
-}
-
-.td.cbi-section-actions>* {
- display: inline-flex;
- align-items: center
-}
-
-.td.cbi-section-actions>*>form {
- display: inline-flex;
- margin: 0
-}
-
-.cbi-dynlist {
- line-height: 1.3;
- flex-direction: column;
- min-height: 30px;
- cursor: text
-}
-
-.cbi-dynlist>.item {
- display: inline-flex;
- flex-wrap: nowrap;
- position: relative;
- box-shadow: 0 0.3rem 0.8rem var(--input-boxcolor);
- width: 100%;
- pointer-events: auto;
- margin-top: 0.2rem;
- color: var(--inputtext-color);
- outline: 0;
- cursor: move;
- user-select: text;
-
-}
-
-.cbi-dynlist>.item.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist>.item.dragging {
- opacity: 0.5
-}
-
-.cbi-dynlist>.item>span {
- pointer-events: none
-}
-
-.cbi-dynlist>.add-item>.cbi-input-text.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist>.add-item>.cbi-button-add.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist[name="sshkeys"]>.item {
- max-width: none
-}
-
-.cbi-dynlist>.item::after {
- background-image: none;
- box-shadow: none;
- content: "\00D7";
- pointer-events: auto;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0;
- font-weight: bold;
- font-size: 1.5rem;
- line-height: 1;
- width: 2.5rem !important;
- padding: 5px !important;
- color: #E91E63;
- border: 0px solid var(--inputborder-color);
- border-right: 1px solid var(--inputborder-color);
- border-top: 1px solid var(--inputborder-color);
- border-bottom: 1px solid var(--inputborder-color);
- border-radius: 0 var(--radius2) var(--radius2) 0;
- outline: 0;
- background-color: var(--inputbg-color);
- box-sizing: border-box
-}
-
-.cbi-dynlist>.item.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist>.item.dragging {
- opacity: 0.5
-}
-
-.cbi-dynlist>.add-item>.cbi-input-text.drag-over {
- border-top: 1px solid black
-}
-
-.cbi-dynlist>.add-item>.cbi-button-add.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist>.add-item>.cbi-input-text.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist>.add-item>.cbi-button-add.drag-over {
- border-top: 1px solid var(--inputborder-color)
-}
-
-.cbi-dynlist>.item>span {
- display: block;
- padding: 0.5rem 0.75rem;
- transition: box-shadow .15s ease;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-break: break-word;
- line-height: 1;
- background-image: none;
- color: var(--inputtext-color);
- font-family: var(--font-sans);
- border-left: 1px solid var(--inputborder-color);
- border-top: 1px solid var(--inputborder-color);
- border-bottom: 1px solid var(--inputborder-color);
- background-color: var(--inputbg-color);
- border-radius: var(--radius2) 0 0 var(--radius2);
- box-sizing: border-box;
-}
-
-.cbi-dynlist>.add-item {
- display: inline-flex;
- align-items: center;
- width: 100%;
- min-width: 16rem;
- width: 30rem;
- margin-top: 0.2rem;
- gap: 0;
- flex-wrap: nowrap
-}
-
-.cbi-dynlist>.add-item input {
- min-width: 17.5rem;
- width: 17.5rem;
- display: block;
- color: var(--inputtext-color);
- font-size: var(--font-z);
- font-size: .875rem;
- background-image: none;
- box-shadow: none;
- font-family: var(--font-sans);
- border: 1px solid var(--inputborder-color);
- background-color: var(--inputbg-color);
- margin: 0;
- padding: 0.5rem 0.75rem;
- box-sizing: border-box;
- transition: box-shadow .15s ease;
- white-space: nowrap;
- word-break: break-word;
- line-height: 1.5rem;
- border-radius: var(--radius2);
- border-right-width: 0;
- outline: 0
-}
-.cbi-dynlist>.add-item:not([ondrop])>input {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis
-}
-
-.cbi-dynlist[name="sshkeys"]>.item {
- max-width: none
-}
-
-.cbi-dynlist>.cbi-dynlist>.add-item[ondrop]>input {
- min-width: 15rem
-}
-
-.cbi-dynlist>.add-item[ondrop]>input {
- min-width: 15rem
-}
-
-.cbi-dynlist>.add-item .cbi-button-add {
- width: 2.5rem !important;
- padding: 3px !important;
- font-weight: bold;
- font-size: 1.5rem;
- line-height: 1;
- margin: 5px 5px 5px 0;
- background-color: rgba(var(--primary-rgbm),0.9);
- border: 1px solid rgba(var(--primary-rgbm),1)
-}
-
-[id^="cbid."][id$=".interface"].cbi-dropdown,[id^="cbid."][id$=".listen_interfaces"].cbi-dropdown {
- max-height: 2.569rem
-}
-
-[id^="cbid.natmap."][id$=".interface"].cbi-dropdown {
- max-height: unset
-}
-
-.cbi-dropdown[placeholder*="select"] {
- max-width: 25rem;
- height: auto;
- margin-top: -3px
-}
-
-.cbi-dropdown>ul {
- display: flex;
- overflow-x: auto;
- overflow-y: auto;
- width: 100%;
- list-style: none;
- outline: 0
-}
-
-.cbi-dropdown>ul.preview {
- display: none
-}
-
-.cbi-dropdown>.open,.cbi-dropdown>.more {
- flex-basis: 0px;
- font-size: 1.5rem;
- background-color: rgba(255,255,255,0) !important;
- font-weight: bolder;
- display: flex;
- flex-direction: column;
- justify-content: center;
- padding: 0 .1rem 0 .2rem;
- color: var(--inputtext-color);
- text-align: center;
- margin-left: .1rem;
- outline: 0
-}
-
-.cbi-dropdown>.open {
- border-left: 0.1rem solid var(--inputtext-color)
-}
-
-.cbi-page-actions>.cbi-dropdown.btn>.open,.cbi-page-actions>.cbi-dropdown.btn>.more {
- margin: 0
-}
-
-.diag-action>.cbi-dropdown.btn>.open,.cbi-page-actions>.cbi-dropdown.btn>.open {
- color: var(--menu-hover-color);
- border-left: 0.1rem solid var(--menu-hover-color)
-}
-
-.cbi-dropdown.btn>div {
- margin: 0px
-}
-
-.cbi-dropdown>.more,.cbi-dropdown[multiple][more]>.more,.cbi-dropdown>ul>li[placeholder] {
- display: none !important
-}
-
-.cbi-dropdown.btn.cbi-button>ul {
- overflow-y: hidden
-}
-
-.cbi-dropdown>ul>li {
- display: none;
- align-items: center;
- align-self: center;
- flex-grow: 1;
- flex-shrink: 1;
- min-height: 30px;
- margin: 0 0.2rem;
- padding: 0 0.5rem 0 0.6rem;
- white-space: nowrap;
- text-overflow: ellipsis
-}
-
-.cbi-dropdown>ul>li .hide-open {
- display: initial
-}
-
-.cbi-dropdown>ul>li .hide-close {
- display: none
-}
-
-.cbi-dropdown>ul>li[display]:not([display="0"]) {
- border-left: thin solid var(--input-boxhovercolor)
-}
-
-.cbi-dropdown[empty]>ul {
- max-width: 1px
-}
-
-.cbi-value-field>.cbi-dropdown[empty] {
- display: inline-flex;
- justify-content: flex-end;
- align-items: center
-}
-
-.cbi-dropdown>ul>li>form {
- display: none;
- margin: 0;
- padding: 0;
- pointer-events: none
-}
-
-.cbi-dropdown>ul>li img {
- margin-right: .25em;
- vertical-align: middle
-}
-
-.cbi-dropdown>ul>li>form>input[type="checkbox"] {
- height: auto;
- margin: 0
-}
-
-.cbi-dropdown>ul>li input[type="text"] {
- height: 30px;
- border: 1px solid var(--inputborder-color);
- color: var(--inputtext-color)
-}
-
-.cbi-dropdown[open]>ul.dropdown {
- position: absolute;
- z-index: 1100;
- display: block;
- width: auto;
- min-width: 100%;
- max-width: none;
- max-height: 200px !important;
- box-shadow: 0 0 4px var(--inputborder-color);
- border-radius: var(--radius2);
- border: 0px solid var(--inputborder-color);
- background-color: rgba(var(--primary-rgbbody), 1);
- color: var(--inputtext-color);
- margin-left: 0 !important;
- margin-top: 0.25rem;
- left: 0 !important;
- cursor: pointer;
-}
-
-.cbi-dropdown>ul>li[display],.cbi-dropdown[open]>ul.preview,.cbi-dropdown[open]>ul.dropdown>li,.cbi-dropdown[multiple]>ul>li>label,.cbi-dropdown[multiple][open]>ul.dropdown>li,.cbi-dropdown[multiple][more]>.more,.cbi-dropdown[multiple][empty]>.more {
- display: flex;
- align-items: center;
- flex-grow: 1
-}
-
-.cbi-dropdown[empty]>ul>li,.cbi-dropdown[optional][open]>ul.dropdown>li[placeholder],.cbi-dropdown[multiple][open]>ul.dropdown>li>form {
- display: block
-}
-
-.cbi-dropdown[open]>ul.dropdown>li .hide-open {
- display: none
-}
-
-.cbi-dropdown[open]>ul.dropdown>li .hide-close {
- display: initial
-}
-
-.cbi-dropdown[open]>ul.dropdown>li {
- padding: 0.5rem 0.75rem;
- margin: 0.1rem auto;
- color: var(--inputtext-color)
-}
-
-.cbi-dropdown[open]>ul.dropdown>li:hover {
- background: rgba(var(--primary-rgbm),0.5);
- color: var(--menu-hover-color);
- cursor: pointer;
- outline: none
-}
-
-.cbi-dropdown[open]>ul.dropdown>li label {
- margin-left: .5rem
-}
-
-.cbi-dropdown[open]>ul.dropdown>li[selected] {
- background: rgba(var(--primary-rgbm),0.8);
- color: var(--menu-hover-color)
-}
-
-.cbi-dropdown[open]>ul.dropdown>li:last-child {
- margin-bottom: 0;
- border-bottom: 0
-}
-
-.cbi-dropdown[open]>ul.dropdown>li[unselectable] {
- opacity: .7
-}
-
-.cbi-dynlist,.cbi-dropdown {
- position: relative;
- display: inline-flex;
- width: 30rem;
- align-items: center;
- min-height: 1.8rem
-}
-
-.cbi-dropdown {
- padding: .2rem
-}
-
-.cbi-page-actions>.cbi-dropdown.btn,
-.diag-action .cbi-dropdown.btn {
- padding: .2rem;
- width: auto;
-}
-
-.cbi-dropdown[open]>ul.dropdown>li>input.create-item-input:first-child:last-child {
- width: 100%
-}
-
-.cbi-dropdown[disabled] {
- pointer-events: none;
- opacity: .6
-}
-
-select,input {
- padding: 0 20px 0 10px;
- line-height: 2rem;
- margin: 0.2em auto
-}
-
-.cbi-progressbar {
- position: relative;
- height: 26px;
- margin: 2px 0;
- border-color: rgba(0,0,0,0.5) !important;
- background-color: rgba(0,0,0,0.35) !important;
- color: var(--menu-color)
-}
-
-.cbi-progressbar>div {
- width: 0;
- height: 100%;
- transition: width .25s ease-in;
- background-color: rgba(var(--primary-rgbm),0.9)
-}
-
-.cbi-progressbar::after {
- font-size: var(--font-x);
- line-height: 1.5;
- position: absolute;
- top: 4px;
- right: 0;
- left: 0;
- overflow: hidden;
- content: attr(title);
- text-align: center;
- white-space: pre;
- text-overflow: ellipsis
-}
-#modal_overlay {
- position: fixed;
- z-index: 900;
- top: 0;
- bottom: 0;
- left: -10000px;
- overflow-y: scroll;
- transition: opacity 0.125s ease-in;
- opacity: 0;
- background: rgba(0, 0, 0, 0.7);
- -webkit-overflow-scrolling: touch;
-}
-
-.modal {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- width: 90%;
- min-width: 270px;
- max-width: 900px;
- min-height: 32px;
- border-radius: var(--radius2) !important;
- background-color: rgba(var(--primary-rgbbody), 1)!important;
- color: var(--primary-title-color)!important;
- box-shadow: 0 2px 10px 0px rgba(255, 255, 255, .16), 0 0 10px 0 rgba(255, 255, 255, .12);
- margin: 5em auto;
- padding: 1rem;
-}
-
-.danger {
- background-color: #d9534f ;
- color: #eee
-}
-
-#log_textarea {
- box-shadow: 0 1px 1px 0 rgba(0,0,0,0.16),0 0 1px 0 var(--input-boxcolor)
-}
-
-.error {
- color: #f00
-}
-
-.alert,.alert-message {
- padding: 1rem;
- border: 0;
- font-weight: normal;
- font-style: normal;
- line-height: 1.6em;
- font-family: inherit;
- min-width: inherit;
- overflow: unset;
- border-radius: var(--radius1);
- background-color: rgba(var(--primary-rgbbody),var(--primary-rgbm-ts));
- box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 0 2px 0 var(--input-boxcolor)
-}
-
-.alert-message>* {
- margin: 0;
- white-space: normal
-}
-
-.alert-message>h4 {
- margin: 0.5rem;
- color: red;
- padding: 0.5rem 1rem;
- font-weight: bold
-}
-
-.warning {
- background-color: #b98413 !important;
- color: #eee!important;
-}
-
-.success {
- background-color: #1a8361 !important;
- color: #eee!important;
- width: 14rem !important
-}
-
-.errorbox {
- color: #f8f8f8!important;
- background-color: #f0ad4e!important;
- border-color: #eea236
-}
-
-#modal_overlay .cbi-section,.modal .cbi-section {
- overflow: visible
-}
-
-.modal>.right>.btn.primary {
- min-width: 8rem;
- width: 8rem;
- line-height: 1.5
-}
-
-.modal>.right {
- display: flex;
- justify-content: flex-end
-}
-
-.modal [data-tab-active="true"] {
- overflow: visible
-}
-
-.modal .cbi-value-title {
- width: 15rem;
- padding-right: 1rem
-}
-
-.modal>* {
- line-height: normal;
- flex-basis: 100%;
- margin-bottom: .5em;
- max-width: 100%
-}
-
-.modal>.button-row {
- display: flex;
- justify-content: flex-end
-}
-
-.modal>.button-row .btn {
- line-height: 1.3
-}
-
-.modal>pre,.modal>textarea {
- font-size: var(--font-x);
- overflow: auto;
- margin-bottom: .5em;
- padding: 8.5px;
- cursor: auto;
- white-space: pre-wrap;
- outline: 0
-}
-
-.modal>h4 {
- margin: .5em 0
-}
-
-.modal .cbi-dropdown focus>ul {
- margin-left: 2.2em
-}
-
-.modal li {
- list-style-type: square
-}
-
-.notice {
- color: var(--primary-title-color);
- background-color: rgba(var(--primary-rgbbody), 1);
- padding: 2rem 1rem;
-}
-.modal>p {
- font-size: var(--font-x);
- padding-left: .25rem;
- word-break: break-word
-}
-.cbi-map {
- display: flex;
- flex-direction: column;
- gap: 1rem;
-}
-.modal .label {
- font-size: var(--font-x);
- font-weight: normal;
- padding: .1rem .3rem;
- padding-bottom: 0;
- cursor: default;
- border-radius: 0
-}
-
-.modal .label.warning {
- background-color: #f0ad4e !important
-}
-
-[data-page="admin-system-flash"] .cbi-value,[data-page="admin-system-flash"] .cbi-section-node,[data-page="admin-system-flash"] .cbi-section .cbi-section {
- padding: 0
-}
-
-[data-page="admin-system-flash"] legend {
- display: block !important;
- font-size: 1.2rem;
- width: 100%;
- display: block;
- margin-bottom: 0;
- padding: 1rem 0 1rem 1.5rem;
- border-bottom: 1px solid rgba(0,0,0,0.05);
- line-height: 1.5;
- margin-bottom: 0rem;
- letter-spacing: 0.1rem;
- color: var(--inputtext-color);
- font-weight: bold
-}
-
-[data-page="admin-system-flash"] .cbi-section-descr {
- font-weight: 600
-}
-
-[data-page="admin-system-flash"] .modal label.btn {
- background-color: rgba(255,255,255,0)
-}
-
-.cbi-dropdown.cbi-button-apply,.cbi-dropdown.cbi-button-action {
- padding: 0
-}
-
-.btn:first-child,.cbi-button:first-child {
- margin-left: 0 !important
-}
-
-[data-page="admin-system-flash"] .modal>p>.btn {
- white-space: normal !important;
- font-size: var(--font-x);
- margin: 0;
- line-height: 1;
- color: var(--inputtext-color);
- padding: 0.3rem 1rem;
- text-align: left;
- border: none;
- box-shadow: none
-}
-
-[data-page="admin-system-flash"] .modal>.right,[data-page="admin-system-flash"] .modal>.right::before {
- margin: 3rem 5px 0 5px
-}
-
-[data-page="admin-system-flash"] .modal>.right>.btn {
- color: #f8f8f8
-}
-
-
-/* docker */
-#dialog_reslov .dialog_box {
- width: 90%!important;
- background-color: rgba(var(--primary-rgbbody),1);
-}
-
-#cbi-dockerd .shadow
-{
- background-color: rgba(var(--primary-rgbm), 0.1) !important;
-}
-
-
-body.modal-overlay-active {
- overflow: hidden;
- height: 100vh
-}
-
-body.modal-overlay-active #modal_overlay {
- right: 0;
- left: 0;
- opacity: 1;
-}
-
-.spinning {
- position: relative;
- font-size: var(--font-z);
- padding-left: 32px !important
-}
-
-.spinning::before {
- position: absolute;
- top: 0;
- bottom: 0;
- left: .2em;
- width: 32px;
- content: "";
- color: var(--body-color);
- background: url(../../resources/icons/loading.svg) no-repeat center,
- url(../../resources/icons/loading.gif) no-repeat center;
- background-size: 20px;
- text-align: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
-
-}
-
-.hidden {
- display: none
-}
-
-.left,.left::before {
- text-align: left !important;
- margin-left: 5px
-}
-
-.right .cbi-button {
- line-height: 1;
- margin: 0.2rem
-}
-
-.right,.right::before {
- text-align: right !important;
- margin-right: 5px;
- z-index: 9999;
- margin-bottom: 5px
-}
-
-.center,.center::before {
- text-align: center !important
-}
-
-.top {
- align-self: flex-start !important;
- vertical-align: top !important
-}
-
-.bottom {
- align-self: flex-end !important;
- vertical-align: bottom !important
-}
-
-.inline {
- display: inline
-}
-
-[data-page="admin-system-system"] .control-group {
- margin-top: 0.5rem
-}
-
-[data-page="admin-control-autotimeset-startuptask"] .cbi-input-textarea,[data-page="admin-control-autotimeset-scheduledtask"] .cbi-input-textarea {
- min-width: 30rem
-}
-
-.cbi-page-actions {
- padding: 1rem;
- text-align: center;
- justify-content: flex-end
-}
-
-.cbi-page-actions>form[method="post"] {
- display: inline-block
-}
-
-.th[data-type="button"],.td[data-type="button"],.th[data-type="fvalue"],.td[data-type="fvalue"] {
- flex: 1 1 2em;
- text-align: center
-}
-
-.ifacebadge {
- display: inline-flex;
- align-items: center;
- gap: 0.2rem;
- padding: 0.1rem 0.8rem;
- border: 1px solid var(--inputborder-color);
- background-color: rgba(var(--primary-rgbm),0.1);
- border-radius: var(--radius2)
-}
-
-td>.ifacebadge,.td>.ifacebadge {
- font-size: .8rem;
- background-color: rgba(var(--primary-rgbm),0.1)
-}
-
-.ifacebadge>em,.ifacebadge>img {
- display: inline-block;
- float: right;
- width: auto !important;
- height: 20px !important;
- margin: 0 0.7rem
-}
-
-.ifacebadge>img+img {
- margin: 0 .2rem 0 0
-}
-
-.nft-rules .ifacebadge {
- margin: 0.125em;
- box-shadow: none;
- height: 20px !important;
- background-color: rgba(255,255,255,0)
-}
-.nft-rules tr > td, .nft-rules tr > th {
- padding: .25em !important;
- padding: 0 0.3rem!important;
- text-align: left!important;
-}
-
-.cbi-section em {
- font-weight: 600;
- color: var(--title-color);
- white-space: nowrap;
- text-align: center
-}
-
-.network-status-table {
- display: flex;
-}
-.network-status-table .ifacebox {
- flex-grow: 1;
- margin: .5em
-}
-
-.network-status-table .ifacebox-body {
- display: flex;
- flex-direction: column;
- height: 100%
-}
-
-.network-status-table .ifacebox-body>span {
- flex: 10 10 auto;
- height: 100%
-}
-
-.network-status-table .ifacebox-body>div {
- display: flex;
- flex-wrap: wrap
-}
-
-.network-status-table .ifacebox-body .ifacebadge {
- align-items: center;
- flex: 1 1 auto;
- margin: .5em .25em 0 .25em;
- padding: .5em
-}
-
-#dsl_status_table .ifacebox-body span>strong {
- display: inline-block;
- min-width: 50%
-}
-
-.cbi-input-textarea,textarea {
- font-family: monospace;
- padding: 10px;
- outline-style: none;
- line-height: normal;
- transition: color 100ms ease,border-color 100ms ease,opacity 100ms ease;
- -webkit-transition: color 100ms ease,border-color 100ms ease,opacity 100ms ease;
- vertical-align: baseline;
- outline: none;
- background-color: var(--inputbg-color);
- color: var(--inputtext-color);
- border: 1px solid var(--inputborder-color);
- border-radius: var(--radius2);
- word-wrap: break-word;
- white-space: pre-wrap
-}
-
-.cbi-input-textarea:focus,textarea:focus {
- border: 1px solid var(rgba(var(--primary-rgbm),1))
-}
-
-#syslog {
- padding: 10px;
- resize: none;
- margin: 0rem border-radius:var(--radius2);
- word-wrap: break-word;
- white-space: pre-wrap;
-}
-
-
-#syslog:focus {
- outline: 0
-}
-
-.uci-change-list {
- font-family: monospace
-}
-
-.uci-change-list ins,.uci-change-legend-label ins {
- display: block;
- padding: 2px;
- text-decoration: none;
- color: #666;
- background-color: #cfc
-}
-
-.uci-change-list del,.uci-change-legend-label del {
- font-style: normal;
- display: block;
- padding: 2px;
- text-decoration: none;
- background-color: #fcc
-}
-
-.uci-change-list var,.uci-change-legend-label var {
- font-style: normal;
- display: block;
- padding: 2px;
- background-color: rgba(255,255,255,0.1);
- text-decoration: none
-}
-
-.uci-change-list var ins,.uci-change-list var del {
- font-style: normal;
- padding: 0;
- white-space: pre;
- border: 0
-}
-
-.uci-change-legend {
- padding: 5px
-}
-
-.uci-change-legend-label {
- float: left;
- width: 150px
-}
-
-.uci-change-legend-label>ins,.uci-change-legend-label>del,.uci-change-legend-label>var {
- display: block;
- float: left;
- width: 15px;
- height: 15px;
- margin: 2px
-}
-
-.uci-change-legend-label var ins,.uci-change-legend-label var del {
- line-height: .4;
- border: 0
-}
-
-.uci-change-list var,.uci-change-list del,.uci-change-list ins {
- padding: .5rem
-}
-
-#iwsvg,#iwsvg2,#bwsvg {
- border: none !important;
- border-radius: var(--radius2);
- background-color: rgba(255,255,255,0.1) !important;
- box-shadow: 0 0 2rem 0 rgba(136,152,170,0.15);
- overflow: hidden
-}
-
-#iwsvg,[data-page="admin-status-realtime-bandwidth"] #bwsvg {
- border-top: 0 !important
-}
-
-.ifacebox {
- border-radius: var(--radius1);
- display: inline-flex;
- flex-direction: column;
- color: var(--body-color);
- font-size: var(--font-x);
- border: 1px solid var(--inputborder-color);
- background-color: var(--inputbg-color);
- align-items: center
-}
-
-.ifacebox-head {
- padding: 1rem;
- min-width: 7rem;
- background-color: rgba(var(--primary-rgbm),0.3);
- transform: translate(-50,-50%);
- color: var(--menu-fontcolor);
- text-align: center !important
-}
-
-.ifacebox-head.active {
- background: #5bc0de;
- background-color: rgba(var(--primary-rgbm),0.1)
-}
-
-.ifacebox-body {
- line-height: 1.4;
- padding: 0.5em
-}
-
-.cbi-image-button {
- margin-left: .5rem
-}
-
-.zonebadge {
- display: inline-block;
- padding: .2rem .5rem
-}
-
-.zonebadge .ifacebadge {
- margin: .1rem .2rem;
- color: var(--title-color);
- background-color: #bbb;
- border: 1px solid var(--input-boxhovercolor)
-}
-
-.zonebadge>input[type="text"] {
- background-color: rgba(var(--primary-rgbbody),1);
- border: 1px solid #6c6c6c;
- min-width: 10rem;
- margin-top: .3rem;
- padding: .16rem 1rem
-}
-
-.zonebadge>span,.zonebadge>em,.zonebadge>strong {
- color: #777;
- font-size: var(--font-x);
- display: inline-block;
- margin: 0 .2rem
-}
-
-.zonebadge-empty>strong {
- color: var(--title-color)
-}
-
-.cbi-value-field .cbi-input-checkbox,.cbi-value-field .cbi-input-radio {
- margin-top: .1rem
-}
-
-.cbi-value-field>ul>li {
- display: flex
-}
-
-.cbi-value-field>ul>li>label {
- margin-top: .5rem
-}
-
-.cbi-value-field>ul>li .ifacebadge {
- margin-top: -.5rem;
- margin-left: .4rem;
- color: var(--body-color);
- background: rgba(var(--primary-rgbbody),1)
-}
-
-.cbi-section-create>* {
- margin: .5rem
-}
-
-.cbi-section-create {
- display: inline-flex;
- align-items: center;
- margin: .5rem 1.25rem
-}
-
-.cbi-section-remove {
- padding: .5rem
-}
-
-div.cbi-value var,td.cbi-value-field var,.td.cbi-value-field var {
- font-style: italic;
- color: #0069d6
-}
-
-.cbi-optionals {
- padding: 1rem 1rem 0 1rem;
- border-top: thin solid var(--input-boxhovercolor)
-}
-
-.cbi-dropdown-container {
- position: relative
-}
-
-.cbi-tooltip-container,span[data-tooltip],span[data-tooltip] .label {
- cursor: help !important
-}
-
-.cbi-tooltip {
- position: absolute;
- z-index: 1000;
- left: -1000px;
- padding: 0.4rem 0.8rem;
- transition: opacity .25s ease-out;
- white-space: pre;
- pointer-events: none;
- opacity: 0;
- border-radius: var(--radius2);
- background-color: rgba(var(--primary-rgbbody),1);
- box-shadow: 0 0 2px #444
-}
-
-.cbi-tooltip-container:hover .cbi-tooltip {
- left: auto;
- transition: opacity .25s ease-in;
- opacity: 1
-}
-
-.zonebadge .cbi-tooltip {
- margin: -1.5rem 0 0 -.5rem;
- padding: .25rem;
- background: inherit
-}
-
-.zonebadge-empty {
- color: #404040;
- background: repeating-linear-gradient(45deg,rgba(204,204,204,.5),rgba(204,204,204,.5) 5px,rgba(255,255,255,.5) 5px,rgba(255,255,255,.5) 10px)
-}
-
-.zone-forwards {
- display: flex;
- min-width: 10rem
-}
-
-.zone-forwards>* {
- flex: 1 1 45%
-}
-
-.zone-forwards>span {
- flex-basis: 10%;
- padding: 0 .25rem;
- text-align: center
-}
-
-.zone-forwards .zone-src,.zone-forwards .zone-dest {
- display: flex;
- flex-direction: column
-}
-
-label>input[type="checkbox"],label>input[type="radio"] {
- margin-right: 0.8rem;
- position: relative;
- margin-bottom: 0.8rem;
- vertical-align: -webkit-baseline-middle
-}
-
-label[data-index][data-depends] {
- padding-right: 2em
-}
-
-.showSide {
- display: none;
- cursor: default;
- color: var(--menu-hover-color);
- line-height: 1.1;
- position: inherit;
- cursor: pointer;
- padding: 0.9rem;
- text-decoration: none
-}
-
-.darkMask {
- position: fixed;
- z-index: 99;
- width: 100%;
- height: 100%;
- content: "";
- top: 0;
- background-color: rgba(0,0,0,.6);
- transition: opacity 200ms,visibility 200ms;
- visibility: hidden;
- opacity: 0
-}
-
-#diag-rc-output>pre,#command-rc-output>pre,[data-page="admin-services-wol"] .notice code {
- font-size: var(--font-x);
- font-size-adjust: .35;
- line-height: normal;
- display: block;
- overflow-y: hidden;
- width: 100%;
- padding: 8.5px;
- white-space: pre;
- box-shadow: 0 2px 2px 0 rgba(0,0,0,.16),0 0 2px 0 rgba(0,0,0,.12)
-}
-
-[data-page="admin-network-diagnostics"] .table {
- box-shadow: none
-}
-[data-page="admin-network-network"] .ifacebox .ifacebox-head {
- color: #4d4d5d
-}
-
-input[name="ping"],input[name="traceroute"],input[name="nslookup"] {
- width: 80%
-}
-
-.node-main-login>.main>.main-left {
- display: none
-}
-
-.node-main-login>.main>.main-right>header.pd-primary {
- display: none
-}
-
-
-
-.node-main-login>.main fieldset {
- display: inline;
- overflow: hidden;
- margin-bottom: 1rem;
- padding: .5rem;
- border: 0;
- background: none;
- box-shadow: none
-}
-
-.node-main-login>.main .cbi-value-title {
- width: 9.5rem
-}
-
-body.lang_pl.node-main-login .cbi-value-title {
- width: 12rem
-}
-
-.node-main-login>.main>.main-right>.pd-primary>.fill>.container {
- margin: 2rem auto
-}
-
-.node-main-login>.main>.main-right>.pd-primary>.fill>.container>.flex1>.brand {
- display: none
-}
-
-.node-main-login>.main {
- top: 0;
- height: 100% !important
-}
-
-.node-main-login>.main>.main-right {
- padding-top: 0;
- width: 100%
-}
-
-.node-main-login .main .main-right .login-bg {
- position: fixed;
- width: 100%;
- height: 100%;
- left: 0px;
- top: 0px;
- transition: all 0.1s;
- background-position: top center;
- -webkit-background-size: cover;
- /* background: fixed; */
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- background-repeat: no-repeat
-}
-
-.node-main-login>.main .container .cbi-section-node .cbi-value:hover {
- background-image: none !important
-}
-
-.node-main-login>.main fieldset,.node-main-login>.main .cbi-section,.node-main-login>.main .cbi-section>.cbi-section-node {
- padding: 0rem;
- padding-top: 0rem;
- background: none;
- border: none;
- backdrop-filter: none;
- box-shadow: none;
- float: center;
- text-align: center;
- overflow: hidden
-}
-
-.node-main-login>.main .main-right>#maincontent {
- display: flex;
- height: 100%;
- position: relative;
- text-align: center;
- align-items: center;
- padding: 0 0 3rem 0;
- margin: 0;
- background-color: rgba(255, 255, 255, 0);
- align-content: center;
- justify-content: center;
- flex-wrap: wrap;
- flex-direction: column;
-}
-
-.node-main-login>.main>.main-right #maincontent .container {
- backdrop-filter: none !important;
- width: 20rem;
- -webkit-transition: all 0.2s;
- transition: all 0.2s;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- font-weight: bolder;
- overflow: visible;
-}
-
-.node-main-login>.main>.main-right #maincontent .container .alert-message>h4,
-.node-main-login>.main>.main-right #maincontent .container .right .btn,
-.node-main-login>.main>.main-right #maincontent .container .right {
- display: none;
-}
-
-.node-main-login>.main>.main-right #maincontent>.container>form {
- backdrop-filter: none !important;
- padding: 1rem 1rem 3rem 1rem !important;
- border: none;
- width: 100%;
-}
-
-.node-main-login>.main>.main-right #maincontent>.container>form>div {
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- -webkit-backdrop-filter: blur(6px) !important;
- backdrop-filter: blur(6px) !important;
- background-color: rgba(var(--primary-rgbbody), 0.5) !important;
- justify-content: center;
- align-items: center;
-}
-
-.node-main-login>.main .cbi-page-actions {
- padding: 2rem 1rem 3rem 1rem !important;
- /* box-shadow: 3px 7px 12px rgba(0, 0, 0, 0.22); */
- border-radius: 0 0 var(--radius0) var(--radius0);
-}
-
-.node-main-login>.main>.main-right #maincontent>.container>form .alert-message {
- background-color: #b98413 !important;
-}
-
-.node-main-login>.main .cbi-map {
- border-radius: var(--radius0) var(--radius0) 0 0;
- /* box-shadow: 3px 7px 12px rgba(0, 0, 0, 0.22); */
- padding: 1rem 1rem 1rem 1rem !important
-}
-
-
-.node-main-login>.main .container h2 {
- width: 80px;
- height: 80px;
- background-size: 80px;
- display: block;
- margin: 1rem 1rem 3rem 1rem;
- text-indent: -500px;
- overflow: hidden;
- background-image: url(../logo.svg);
- background-color: rgba(250,250,250,0);
- background-repeat: no-repeat;
- background-position: 0;
- border-top: 0rem
-}
-
-.node-main-login>.main .container .cbi-section-node {
- padding: 0.2rem;
- text-align: center
-}
-
-.node-main-login>.main .container .cbi-value-field input:focus {
- color: var(--body-color);
- outline: 0;
- background-color: rgba(248,248,248,0.2) !important;
- box-shadow: 0 3px 9px rgba(50,50,9,0),3px 4px 8px rgba(94,114,228,.1)
-}
-
-.node-main-login>.main .container input.cbi-button {
- font-size: var(--font-z);
- position: relative;
- transition: all .15s ease;
- letter-spacing: .2em;
- text-transform: none;
- border-radius: var(--radius1);
- min-width: 14rem
-}
-
-.node-main-login>.bar-primary .container-bar-left,.node-main-login>.bar-primary .container-bar-right,.node-main-login>.main .cbi-button-reset {
- display: none !important
-}
-
-.node-main-login>.main .cbi-value {
- margin-bottom: 10px;
- border: none;
- display: block
-}
-
-.node-main-login>.main .cbi-value.cbi-value .cbi-value-title,.node-main-login>.main .cbi-value.cbi-value-last .cbi-value-title {
- display: none !important
-}
-
-.node-main-login>.main .container .cbi-map-descr {
- display: none
-}
-
-.node-main-login>.main .cbi-value.cbi-value .cbi-value-field .cbi-input-text,.node-main-login>.main .cbi-value.cbi-value .cbi-input-user,.node-main-login>.main .cbi-value.cbi-value-last .cbi-input-password,.node-main-login>.main .cbi-value.cbi-value-last .cbi-input-text[type="password"] {
- box-shadow: none;
- border-radius: var(--radius1);
- padding: 0;
- text-align: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- text-indent: 0rem;
- background-color: var(--inputbg-color);
- width: 14rem;
- min-width: 100% !important;
- margin: 0
-}
-
-.node-main-login>.main .cbi-value.cbi-value .cbi-value-field,.node-main-login>.main .cbi-value.cbi-value-last .cbi-value-field {
- position: relative;
- color: #eee;
- text-shadow: 0px 1px 3px #222;
- width: 14rem
-}
-
-.node-main-login>.main .cbi-value.cbi-value .cbi-value-field:before {
- font-family: 'kucat' !important;
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- -moz-os x-font-smoothing: grayscale;
- content: "\e91d";
- color: #eee;
- text-shadow: 0px 1px 3px #222;
- font-size: 1.3rem;
- position: absolute;
- z-index: 100;
- left: 10px;
- top: 10px
-}
-
-.node-main-login>.main .cbi-value.cbi-value-last .cbi-value-field:before {
- font-family: 'kucat' !important;
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- content: "\e93c";
- color: #eee;
- text-shadow: 0px 1px 3px #222;
- font-size: 1.3rem;
- position: absolute;
- z-index: 100;
- left: 10px;
- top: 10px
-}
-
-.node-main-login>.main .cbi-value.cbi-value-last,.node-main-login>.main .cbi-value {
- display: block;
- position: relative;
- padding: 0rem;
- background-image: none !important;
- margin-bottom: 1rem;
- border-bottom: 0px solid #222 !important;
- background-color: rgba(255,255,255,0)
-}
-
-.node-main-login>.main .cbi-value.cbi-value-last {
- margin-top: 2rem;
- background-color: rgba(255,255,255,0) !important
-}
-
-.node-main-login .main .main-right #maincontent .alert-message p {
- color: #f8f8f8;
- font-weight: normal;
- font-size: var(--font-x)
-}
-
-.node-main-login .errorbox {
- width: calc(100% - 2rem);
- box-sizing: border-box;
- padding: 0.6rem 0rem;
- position: absolute;
- color: #fff !important;
- margin-top: 6rem;
- border-radius: var(--radius2);
- text-align: center;
- background-color: #e39f4d !important
-}
-
-.node-main-login footer {
- display: none;
- margin-bottom: 3rem;
- color: #eee;
- text-shadow: 0 0 2px #222;
- font-size: var(--font-x);
- background-color: rgba(255,255,255,0)
-}
-
-
-.node-main-login footer a {
- color: #eee;
- text-shadow: 0 2px 4px #222;
- text-decoration: none
-}
-
-.node-status-overview>.main fieldset:nth-child(4) .td:nth-child(2),.node-status-processes>.main .table .tr .td:nth-child(3) {
- white-space: normal
-}
-
-#cbi-samba [data-tab="template"] .cbi-value-field {
- display: block
-}
-
-#cbi-samba [data-tab="template"] .cbi-value-title {
- width: auto;
- padding-bottom: .6rem
-}
-
-.controls>*>.btn:not([aria-label$="page"]) {
- flex-grow: initial !important;
- margin-top: .1rem
-}
-
-.controls>#pager>.btn[aria-label$="page"] {
- font-size: 1.4rem;
- font-weight: bold
-}
-
-.controls>*>label {
- margin-bottom: .2rem
-}
-
-.control-group {
- flex-wrap: wrap;
- white-space: normal;
- gap: 0px
-}
-
-.node-admin-system-opkg .control-group {
- display: block
-}
-
-[data-page="admin-system-opkg"] div.btn {
- line-height: 1.6;
- display: inline
-}
-
-[data-page^="admin-system-admin"]:not(.node-main-login) .cbi-map:not(#cbi-dropbear) {
- margin-top: 2rem;
- padding-top: .1rem
-}
-
-.td.version,.td.size {
- white-space: normal !important;
- white-space: nowrap
-}
-
-.cbi-tabmenu+.cbi-section {
- margin-top: 0
-}
-
-#cbi-wireless>#wifi_assoclist_table>.tr {
- box-shadow: inset 1px -1px 0 #ddd,inset -1px -1px 0 #ddd
-}
-
-#cbi-wireless>#wifi_assoclist_table>.tr.placeholder>.td {
- right: 33px;
- bottom: 33px;
- left: 33px;
- border-top: thin solid var(--inputborder-color) !important
-}
-
-#cbi-wireless>#wifi_assoclist_table>.tr.table-titles {
- box-shadow: inset 1px 0 0 #ddd,inset -1px 0 0 #ddd
-}
-
-#cbi-wireless>#wifi_assoclist_table>.tr.table-titles>.th {
- border-bottom: thin solid var(--inputborder-color);
- box-shadow: 0 -1px 0 0 #ddd
-}
-
-#wifi_assoclist_table>.tr>.td[data-title="RX Rate / TX Rate"] {
- width: 23rem
-}
-
-#iptables {
- margin: 0
-}
-
-.Firewall form {
- margin: 2rem 2rem 0 0;
- padding: 0;
- box-shadow: none
-}
-
-.cbi-tab-disabled[data-errors]::after {
- content: attr(data-errors);
- background: #c43c35;
- color: #fff;
- height: 16px;
- min-width: 16px;
- border-radius: 8px;
- text-align: center;
- margin: 0 5px 0 0;
- padding: 2px 2px 2px 2px;
- display: inline-flex;
- flex-direction: column;
- justify-content: center
-}
-
-#cbi-firewall-redirect table *,#cbi-network-switch_vlan table *,#cbi-firewall-zone table * {
- font-size: small;
- white-space: nowrap
-}
-
-#cbi-firewall-redirect table input[type="text"],#cbi-network-switch_vlan table input[type="text"],#cbi-firewall-zone table input[type="text"] {
- width: 8rem
-}
-
-#cbi-firewall-redirect table select,#cbi-network-switch_vlan table select,#cbi-firewall-zone table select {
- min-width: 3.5rem
-}
-
-#cbi-network-switch_vlan .th,#cbi-network-switch_vlan .td {
- flex-basis: 12%
-}
-
-#cbi-firewall-zone .table,#cbi-network-switch_vlan .table {
- display: block
-}
-
-#cbi-firewall-zone .td,#cbi-network-switch_vlan .td {
- width: 100%
-}
-
-#applyreboot-container {
- margin: 2rem
-}
-
-#applyreboot-section {
- line-height: 300%;
- margin: 2rem
-}
-
-.OpenVPN a {
- line-height: initial !important
-}
-
-.commandbox {
- width: 24% !important;
- margin: 10px 0 0 10px !important;
- padding: .5rem 1rem;
- box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)
-}
-
-.commandbox h3 {
- line-height: normal !important;
- overflow: hidden;
- margin: 6px 0 !important;
- white-space: nowrap;
- text-overflow: ellipsis
-}
-
-.commandbox div {
- left: auto !important
-}
-
-.commandbox code {
- position: absolute;
- overflow: hidden;
- max-width: 60%;
- margin-left: 4px;
- padding: 2px 3px;
- white-space: nowrap;
- text-overflow: ellipsis
-}
-
-.commandbox code:hover {
- overflow-y: auto;
- max-height: 50px;
- white-space: normal
-}
-
-.commandbox p:first-of-type {
- margin-top: -6px
-}
-
-.commandbox p:nth-of-type(2) {
- margin-top: 2px
-}
-
-[data-page^="admin-system-commands"] .panel-title,[data-page^="command-cfg"] .mobile-hide,[data-page^="command-cfg"] .showSide {
- display: none
-}
-
-[data-page^="admin-system-commands"] .panel-title,[data-page^="command-cfg"] .mobile-hide,[data-page^="command-cfg"] .showSide {
- display: none
-}
-
-#command-rc-output .alert-message {
- line-height: 1.42857143;
- position: absolute;
- top: 40px;
- right: 32px;
- max-width: 40%;
- margin: 0;
- animation: anim-fade-in 1.5s forwards;
- word-break: break-word;
- opacity: 0
-}
-
-.node-admin-status-hnet #maincontent .container>div>div {
- border: none !important
-}
-
-#view>p {
- margin: 0 1.5rem 1rem 1.5rem
-}
-
-[data-page="admin-status-routes"] #view h3 {
- font-size: var(--font-d);
- line-height: 1;
- display: block;
- width: 100%;
- margin: 0;
- margin-bottom: 0;
- padding: 0.8755rem 1.25rem;
- color: var(--body-color);
- border-radius: var(--radius2);
- padding-bottom: unset;
- font-weight: bold
-}
-
-[data-page="admin-status-routes"] #view table,[data-page="admin-status-processes"] #view table,.node-admin-status-realtime-connections #view table[id*=connections] {
- padding: 10px;
- border: 1px;
- font-weight: normal;
- font-style: normal;
- line-height: 1;
- font-family: inherit;
- text-align: left;
- min-width: inherit;
- overflow-x: auto;
- overflow-y: hidden;
- background-color: rgba(var(--primary-rgbbody),0.5);
- -webkit-overflow-scrolling: touch;
- margin-bottom: 20px;
- margin-top: 5px
-}
-
-.node-admin-status-realtime-connections #view table[id*=connections] {
- white-space: nowrap
-}
-
-.node-admin-status-channel_analysis #view>div>div>div>div,.node-admin-status-channel_analysis #view>div>div>div>div>div,.node-admin-status-realtime-wireless #view>div>div>div>div,.node-admin-status-realtime-load #view div,.node-admin-status-realtime-bandwidth #view>div>div>div>div,.node-admin-status-realtime-connections #view div {
- border: none !important;
- background-color: rgba(var(--primary-rgbbody),0.5) !important;
- border-radius: var(--radius2);
- border: 0px solid #000 !important
-}
-
-.cbi-page-actions.control-group .cbi-dropdown.btn.cbi-button.important {
- padding: 0.6rem 0rem 0.6rem 1rem
-}
-
-.cbi-page-actions.control-group .cbi-dropdown.btn.cbi-button.cbi-button-negative.important>ul,.cbi-page-actions.control-group .cbi-dropdown.btn.cbi-button.cbi-button-apply.important>ul {
- overflow-y: hidden
-}
-
-.cbi-dropdown.btn.cbi-button.cbi-button-action {
- padding-right: 5px
-}
-
-[data-page="admin-system-ttyd-ttyd"] #view>iframe {
- border-radius: var(--radius2) !important;
- min-height: 600px !important
-}
-
-[data-page="admin-status-overview"] h3 {
- color: unset !important
-}
-
-[data-page="admin-network-dhcp"] h3 {
- margin: -2rem 1.5rem 0.2rem
-}
-
-[data-page="admin-status-iptables"] .right {
- margin-bottom: 0rem !important
-}
-
-#syslog {
- border: 1px solid var(--inputborder-color);
- width: 100%;
- min-height: 15rem;
- font-family: monospace;
- color: var(--body-color);
- background-color: var(--inputbg-color);
- font-size: small;
- outline: none;
- margin-bottom: 18px;
- border-radius: var(--radius2);
- overflow-x: hidden
-}
-
-#syslog:focus {
- outline: 0;
- box-shadow: 0 0 1px var(--input-boxcolor) !important
-}
-
-#mwan_status_text>div {
- padding: 0.5rem !important
-}
-
-#detail-bubble.in {
- z-index: 500
-}
-
-.node-admin-nlbw-display .cbi-section ul {
- padding: 0.875rem 1.5rem
-}
-
-.node-admin-nlbw-backup form {
- margin-left: 1.5rem
-}
-
-.node-admin-nas-usb_printer em {
- display: block
-}
-
-.node-admin-nas-usb_printer em {
- display: block
-}
-
-[data-page="admin-system-flashops"] .cbi-section ul {
- padding: .875rem 1.5rem;
- font-size: var(--font-x)
-}
-
-#cbi-netspeedtest-homebox>.cbi-section-node>.cbi-value {
- display: inline-block
-}
-
-.chat_window {
- background-color: rgba(var(--primary-rgbm), 0.2)!important
-}
-
-.chat_window>.mainContent>.top_menu {
- background-color: rgba(var(--primary-rgbm), 0.12)!important
-}
-.showVoiceCls, .showVoiceCls .markdown-body {
- background: var(--inputbg-color) !important;
-}
-#chatlog .response {
- background-color: rgba(255,255,255,0.2) !important
-}
-
-[data-page="admin-status-usage-details"] .cbi-value-title {
- width: 16rem
-}
-
-[data-page="admin-status-processes"] #view td:nth-child(3)>span,.cbi-map>.cbi-section .cbi-value:nth-of-type(4) td:nth-child(2),.Interfaces>.main #view td:nth-child(3),[data-page="admin-network-network"]>.main #view td:nth-child(3),[data-page="admin-status-processes"]>.main #view td:nth-child(3),[data-page="admin-status-overview"]>.main #view td:nth-child(2) {
- white-space: normal !important;
- word-break: unset !important
-}
-
-[data-page="admin-status-overview"] #view .cbi-section>div>div {
- justify-items: center !important
-}
-
-.Details>.main .tr.table-totals {
- background-color: rgba(255,255,255,0.1) !important
-}
-
-#intervalSelect {
- width: 4rem !important
-}
-
-[data-page="admin-nlbw-usage"]>.main .tr.table-totals,[data-page="admin-nlbw-usage"]>.main .cbi-progressbar {
- background-color: var(--inputbg-color) !important
-}
-
-[data-page="admin-services-vssr"] .ssr-button {
- margin-left: .3rem
-}
-
-.pure-g .block h4,
-[data-page="admin-services-vssr"] .block h4 {
- color: var(--body-color)!important;
- background-image: none!important
-}
-
-[data-page="admin-services-vssr"] .status-bar {
- color: var(--body-color);
- box-shadow: 0 0 .5rem 0 var(--inputbg-color);
- background-color: var(--inputbg-color) !important
-}
-
-.pure-g .block,
-[data-page="admin-services-vssr"] .block,
-[data-page="admin-services-shadowsocksr"] >.block,
-.block,
-[data-page="admin-services-bypass"] >.main .block,
-[data-page="admin-services-vssr"] >.main .block,
-.main .block
-{
- color: var(--body-color);
- background-color: var(--input-bgcolor) !important;
- box-shadow: 0 0 1px var(--inputborder-color);
- box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.32),0 1px 5px 0 rgba(0,0,0,0.2)
-}
-
-[data-page="admin-services-shadowsocksr"]>.block:active,
-.block:active,
-[data-page="admin-services-bypass"]>.main .block:active,
-.main .block:active,
-[data-page="admin-services-shadowsocksr"]>.block:hover,
-.block:hover,
-[data-page="admin-services-bypass"]>.main .block:hover,
-.main .block:hover {
- box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 4px 6px rgba(0,0,0,0.35);
- background-color: var(--input-boxhovercolor) !important
-}
-
-[data-page="admin-services-samba"]>.main .cbi-tabcontainer:nth-child(3) .cbi-value-title {
- margin-bottom: 1rem;
- width: auto
-}
-
-[data-page="admin-services-samba"]>.main .cbi-tabcontainer:nth-child(3) .cbi-value-field {
- display: list-item
-}
-
-[data-page="admin-services-samba"]>.main .cbi-tabcontainer:nth-child(3) .cbi-value-description {
- padding-top: 1rem
-}
-
-[data-page="admin-services-adguardhome"]>.main .cbi-value-field {
- width: 27% !important
-}
-
-#cbi-passwall-socks .cbi-section-node .cbi-section-table .cbi-value-field,#cbi-passwall-socks table>tbody>tr>td {
- white-space: normal !important
-}
-
-#cbi-AdGuardHome-AdGuardHome-escconf,#cbi-netspeedtest>fieldset>fieldset>div,.Software>fieldset>fieldset>div,.vue-form-render .cbi-section .cbi-section-node .cbi-value,#cbi-AdGuardHome>.main .cbi-section-node .cbi-value {
- display: inline-block
-}
-
-.fb-container .cbi-button {
- height: auto !important
-}
-
-#cbi-usb_printer-printer em {
- display: block;
- padding: 1rem;
- text-align: center
-}
-
-pre.command-output {
- padding: 1.5rem
-}
-
-[data-page="admin-nlbw-display"] .cbi-section[data-tab="export"] {
- padding: 1.5rem !important
-}
-
-[data-page="admin-nlbw-backup"] form {
- padding-left: 1.5rem
-}
-
-[data-page="admin-status-iptables"] .right {
- margin-bottom: 0 !important
-}
-
-[data-page="admin-services-ttyd"] .container {
- display: flex;
- flex-direction: column
-}
-
-[data-page="admin-services-ttyd"] #view {
- flex: 1
-}
-
-[data-page="admin-services-ttyd"] #view iframe {
- height: 100%
-}
-
-[data-page="admin-system-fileassistant"] .fb-container .panel-title {
- padding: .5rem .75rem !important
-}
-
-[data-page="admin-system-fileassistant"] .cbi-section.fb-container {
- padding: .5rem
-}
-
-[data-page="admin-system-fileassistant"] .fb-container .panel-container {
- border-bottom-color: #dee2e6
-}
-
-/* openclash */
-[data-page^="admin-services-openclash"] .cbi-tabmenu>li:last-child {
- margin-right: 0 !important
-}
-
-[data-page^="admin-services-openclash"] .cbi-section .oc{
- --bg-white: rgba(var(--primary-rgbbody), 0.4);
- --bg-light: rgba(255, 255, 255, 0);
- --bg-gray: rgba(var(--primary-rgbm), 0.02);
- --text-title: var(--primary-title-color);
- --text-secondary: var(--body-color);
- --border-color: rgba(255, 255, 255, 0);
- --border-light: rgba(255, 255, 255, 0);
- --text-primary: var(--inputtext-color);
-}
-[data-page^="admin-services-openclash"] .select-class {
- background-color: rgba(255,255,255,0) !important;
- padding: 0 20px 0 10px!important;
-}
-
-[data-page^="admin-services-openclash"] .oc .myip-ip-item,
-[data-page^="admin-services-openclash"] .oc .myip-check-item {
- background-color: rgba(var(--primary-rgbbody),0.2) !important;
- border: 1px solid rgba(var(--primary-rgbm),0.2);
-}
-
-[data-page^="admin-services-openclash"] .oc .sub-card {
- border: 1px solid rgba(var(--primary-rgbm),0.2) !important;
-}
-
-[data-page^="admin-services-openclash"] .oc .main-card {
- border: 0px solid rgba(var(--primary-rgbm),0.1) !important;
-}
-
-
-[data-page^="admin-services-openclash"] #tab-content .dom {
- padding: 0 1rem 1rem 1rem
-}
-
-[data-page^="admin-services-openclash"] .cbi-input-file {
- padding: .2813rem;
- box-sizing: content-box;
- width: 15rem !important
-}
-
-[data-page^="admin-services-openclash"] [id="container.openclash.config.debug"] fieldset {
- border: none !important;
- padding: 1rem !important
-}
-
-[data-page^="admin-services-openclash"] #debug-rc-output>textarea {
- font-family: 'Google Sans' !important
-}
-
-[data-page^="admin-services-openclash"] .CodeMirror {
- font-size: inherit;
- background-color: rgba(0,0,0,0.8) !important;
- color: var(--body-color) !important;
- font-family: 'Google Sans' !important
-}
-
-[data-page^="admin-services-openclash"] .cbi-button-up,[data-page^="admin-services-openclash"] .cbi-button-down {
- padding: .8rem 1.5rem;
- font-size: 0
-}
-
-[data-page^="admin-services-openclash"] select#CORE_VERSION,[data-page^="admin-services-openclash"] select#RELEASE_BRANCH {
- width: auto
-}
-
-[data-page^="admin-services-openclash"] .cbi-section>div>ul>li {
- width: auto !important;
- padding: 0rem 0.5rem !important
-}
-
-[data-page^="admin-services-openclash"] .CodeMirror-merge,#cbi-openclash .CodeMirror-merge-2pane {
- height: auto !important;
- border: none !important
-}
-
-[data-page^="admin-services-openclash"] .cm-s-idea span.cm-variable {
- color: #fd8c73 !important
-}
-
-[data-page^="admin-services-openclash"] .CodeMirror-merge-scrolllock-wrap>.CodeMirror-merge-scrolllock {
- color: var(--inputtext-color) !important
-}
-
-[data-page^="admin-services-openclash"] .CodeMirror-merge>.CodeMirror-merge-gap {
- background-color: rgba(255,255,255,0.12) !important
-}
-
-[data-page^="admin-services-openclash"] .CodeMirror-scroll>.CodeMirror-gutters {
- background-color: rgba(255,255,255,0.1) !important;
- border-right: 1px solid #777 !important
-}
-#cbi-nikki-proxy .cbi-value-field,
-#cbi-nikki-proxy .cbi-section-table-row>.cbi-value-field .cbi-dropdown,
-#cbi-nikki-proxy .cbi-value-field .cbi-dropdown,
-#cbi-nikki-proxy .cbi-dynlist
-{
- min-width: 12.5rem;
- max-width: 16.5rem;
- width: auto;
-}
-#cbi-nikki-proxy .cbi-dynlist>.add-item {
- min-width: 10rem;
- width: auto;
-}
-#cbi-nikki-proxy .cbi-dynlist>.add-item:not([ondrop])>input,
-#cbi-nikki-proxy .cbi-dynlist>.add-item input,
-#cbi-nikki-proxy .cbi-dynlist>.item>span
-{
- min-width: 10rem;
- max-width: 14rem;
- width: 10rem;
-}
-
-/* bandix */
-.bandix-connection-container,
-.bandix-container {
- padding: 5px!important;
- background-color: rgba(255,255,255,0) !important;
- color: var(--primary-title-color)!important;
-}
-
-.bandix-badge
-{
- color: var(--primary-title-color)!important;
- background-color: var(--inputbg-color)!important;
- border: 1px solid var(--input-boxcolor)!important;
-}
-.history-tabs {
- background-color: rgba(255, 255, 255, 0)!important;
-}
-
-.history-tabs>button {
- color: var(--primary-title-color)!important;
- background-color: rgba(var(--primary-rgbm), 0.2);
-}
-.history-tabs>button.active {
- background-color: rgba(var(--primary-rgbm), 0.5);
-}
-.action-button {
- background-color: rgba(var(--primary-rgbm), 0.9)!important;
-}
-
-.stats-card-title ,
-.stats-card>div ,
-.history-tooltip>div,
-.history-tooltip>div>span,
-.bandix-container .form-label ,
-.bandix-card-title,
-.bandix-card>div,
-.stats-title,
-.bandix-title {
- color: var(--primary-title-color)!important;
-}
-.bandix-card-body {
- padding: 0!important;
-}
-.history-tooltip
-{
- background-color: rgba(var(--primary-rgbbody),1)!important;
- color: var(--body-color) !important;
- border: 1px solid var(--input-boxcolor)!important;
- width: 300px!important;
-}
-
-.bandix-card ,
-.stats-card
-{
- background-color: rgba(var(--primary-rgbm), 0.05)!important;
- box-shadow: 0 1px 3px 0 var(--input-boxcolor) !important;
- border: 0px solid #333!important;
- border-bottom: 0px solid var(--input-boxcolor)!important;
- margin-bottom: 0 !important;
- overflow: auto!important;
-}
-
-.bandix-card .bandix-card-header.history-header
-{
- border-bottom: 1px solid var(--input-boxcolor)!important;
- background-color: rgba(0, 0, 0, 0) !important;
-}
-
-.modal-header,
-.device-summary,
-.bandix-card .history-controls
-{
-
- border: 0px solid var(--input-boxcolor)!important;
- border-bottom: 1px solid var(--input-boxcolor)!important;
- background-color: rgba(255, 255, 255, 0)!important;
- border-radius: 0!important;
-}
-
-.form-label,
-.modal-title,
-.device-summary>div,
-.bandix-container .device-name,
-.bandix-container .legend-item,
-.stats-card>div>div>span{
- color: var(--primary-title-color)!important;
-}
-
-.bandix-table
-{
- table-layout: auto!important;
-}
-
-.bandix-table td ,.bandix-table th
-{
-padding: 10px 15px!important;
-border-bottom: 0px solid #f1f5f9!important;
-}
-
-.form-input
- {
- background-color: var(--inputbg-color)!important;
- color: var(--body-color) !important;
- padding: 0 20px 0 10px!important;
-}
-
-.form-select
-{
- background-color: var(--inputbg-color)!important;
- color: var(--body-color) !important;
- padding: 0 20px 0 10px!important;
-}
-
-.bandix-table>tbody>tr>td, .bandix-table>tbody>tr>th,
-.bandix-table>thead>tr>td, .bandix-table>thead>tr>th
-{
-
- background-color: rgba(255, 255, 255, 0) !important;
- color: var(--body-color) !important;
- border-top: 1px solid var(--inputborder-color)!important;
-}
-
-[data-page="admin-services-adguardhome"]>.main .cbi-value .cbi-input-textarea {
- width: 100% !important;
- box-shadow: 0 0 1px var(--input-boxcolor) !important
-}
-
-[data-page="admin-system-packages"]>.main .cbi-page-actions {
- padding: 1rem 0
-}
-
-[data-page="admin-system-leds"] .cbi-section em {
- display: block
-}
-
-[data-page="admin-store-pages"] .cbi-section>.tags-container>.tags-value,[data-page="admin-store-pages"] .cbi-section>.sort-container>.sort-value {
- flex: none
-}
-
-[data-page="admin-store-pages"] .app-container .app-btns .app-btn {
- padding: 0.5rem;
- line-height: 1.4
-}
-
-[data-page="admin-system-package-manager"] .modal>textarea {
- white-space: nowrap
-}
-[data-page="admin-status-overview"] #view>div {
- padding: 0rem 0rem 1rem 0.5rem;
-}
-
-.main>.main-left,.cbi-section,[data-tab-title],[data-page^="admin-system-admin"]:not(.node-main-login) .cbi-map:not(#cbi-dropbear),#maincontent>.container>form,#maincontent>.container>form>div,.tabs,.cbi-tabmenu,.cbi-tooltip,#view>p,#view>div,#view>table {
- backdrop-filter: var(--ufilter);
- padding-bottom: 1rem;
- -webkit-backdrop-filter: var(--ufilter)
-}
-
-#maincontent>.container>#view,[data-page="admin-status-routes"] #view,[data-page="admin-network-diagnostics"] #view,[data-page="admin-status-processes"] #view {
- min-width: inherit;
- overflow-x: auto;
- overflow-y: hidden
-}
-
-[data-page="admin-system-poweroff"] #maincontent>.container>#view,
-[data-page="admin-system-reboot"] #maincontent>.container>#view,[data-page="admin-system-poweroffdevice"] #maincontent .container {
- padding: 0 1rem 3rem 1rem
-}
-
-[data-page="admin-network-diagnostics"] #view .table {
- margin-top: 2rem
-}
-
-label,button,input,select,option,.cbi-dropdown,textarea {
- font-size: var(--font-z)
-}
-
-select,input,.cbi-dropdown,.btn,button,.cbi-button,.item::after {
- height: 2.2rem
-}
-
-#cbi-appfilter>div>div {
- overflow: auto;
-}
-
-#cbi-appfilter>div>div>button {
- background-color: rgba(var(--primary-rgbm),0.9) !important;
- color: var(--menu-hover-color) !important;
- width: auto !important;
- height: auto !important
-}
-
-
-#cbi-appfilter>div>div>ul>li:hover {
- background-color: rgba(var(--primary-rgbm),0.7) !important;
- color: var(--menu-hover-color) !important
-}
-
-
-#cbi-appfilter #user_status_table th.th:nth-child(1) {
- width: 150px !important;
-}
-
-.oaf-container>div{
- background: rgba(0, 0, 0, 0.04) !important;
- color: var(--body-color) !important;
- border-bottom: 0px solid #ddd!important;
-}
-
-.traffic-info>div>span,
-.device-details>div,
-.oaf-container>div span{
- color: var(--body-color)!important;
-}
-
-.CodeMirror.cm-s-dracula.CodeMirror-wrap {
- border-radius: 0.375rem
-}
-
-div#service_status {
- padding: 1rem
-}
-
-.cbi-section.cbi-tblsection strong {
- font-weight: bold
-}
-
-[id^="container.passwall."][id$=".faq"] {
- margin-left: 10px;
- margin-right: 10px
-}
-
-div#add_link_div {
- position: fixed;
- transform: translate(-50%,-50%);
- background-color: rgba(var(--primary-rgbbody),1);
- padding: 0px;
- box-shadow: darkgrey 1px 5px 20px 0px;
- border-radius: 9px
-}
-
-#file-manager-container button#go-button {
- cursor: pointer
-}
-
-#file-manager-container .file-manager-header {
- white-space: nowrap
-}
-
-#file-manager-container .file-manager-header input {
- max-width: none;
- min-width: 10rem
-}
-
-#content-filemanager>#file-list-container #file-table tr>th .sort-button {
- top: 10px;
- transform: none;
- padding: 0.5rem
-}
-
-#file-manager-container {
- margin-left: 0.5rem
-}
-
-#content-filemanager>#file-list-container {
- margin-top: 10px !important;
- min-width: 800px !important;
- max-width: 100% !important;
- width: auto !important;
-}
-
-#file-manager-container #file-table tr>th {
- background-color: rgba(var(--primary-rgbm),1);
- color: var(--menu-color)
-}
-#file-list-container table>tbody>tr>td span {
- padding: 0.5rem;
-}
-#file-manager-container #status-bar {
- background-color: rgba(var(--primary-rgbm),0.3)
-}
-
-#file-manager-container #status-bar #status-info {
- color: var(--title-color)
-}
-
-#file-list-container .table>#file-list>tr:hover {
- background-color: rgba(var(--primary-rgbm),0.4) !important
-}
-
-#file-list-container table>tbody>tr>td {
- padding: 0.2rem
-}
-.cbi-tabcontainer-content #editor-container {
- width: 100%;
- border: 1px solid var(--inputborder-color)
-}
-
-.editor-content>.line-numbers {
- background-color: rgba(var(--primary-rgbm),0.2)
-}
-
-.editor-content>#hexedit-container.hexedit {
- background-color: rgba(var(--primary-rgbbody),0.1)
-}
-
-.editor-content>.hexedit>.hexedit-search-container {
- background-color: rgba(var(--primary-rgbbody),0.1);
- --clr-header: var(--title-color)
-}
-
-.editor-content>.hexedit>.hexedit-headers {
- background-color: rgba(255,255,255,0.8);
- background-color: rgba(var(--primary-rgbm),0.2);
- --clr-header: var(--title-color)
-}
-
-
-.tr.cbi-section-table-row[id*="wolplus"],.tr.cbi-section-table-row[id*="firewall"] {
- flex-wrap: wrap;
- border-bottom: 1px solid rgba(var(--primary-rgbm),0.1);
- min-width: unset
-}
-
-#mwan3-service-status .alert-message>div>strong {
- white-space: nowrap;
- font-size: var(--font-x)
-}
-
-[data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table) {
- display: block
-}
-
-[data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table),[data-page="admin-network-firewall-rules"] .table:not(.cbi-section-table),[data-page="admin-network-hosts"] .table,[data-page="admin-network-routes"] .table {
- overflow-y: visible
-}
-
-.commandbox {
- width: 32% !important
-}
-
-[data-page="admin-network-network"] .cbi-section-table tr,[data-page="admin-network-network"] .cbi-section-table td {
- font-size: var(--font-x) !important
-}
-
-[data-page="admin-network-network"] .cbi-section-node table td:nth-of-type(1) {
- padding: 5px !important
-}
-
-[data-page="admin-network-network"] .cbi-section-node table td,[data-page="admin-network-wireless"] fieldset .cbi-section-node table td {
- padding: 10px !important
-}
-
-[data-page="admin-network-network"] .cbi-section-table br {
- display: initial
-}
-[data-page="admin-network-network"] .cbi-section-table tr, [data-page="admin-network-network"] .cbi-section-table td,
-[data-page="admin-network-network"] .cbi-network-interface .tr.cbi-section-table-row>.cbi-value-field {
- width: auto;
-}
-
-.Dashboard .dashboard-bg {
- background-color: rgba(var(--primary-rgbm),var(--primary-rgbs-ts));
- background-color: rgba(var(--primary-rgbbody),1)important
-}
-
-.Dashboard h3 {
- color: var(--primary-title-color)important;
- border-radius: 0 0 16px 16px
-}
-
-.Dashboard:not(.some-other-class) {
- color: #666a88 !important
-}
-
-.Dashboard .title {
- background-color: rgba(var(--primary-rgbm),0.1) !important;
- border-radius: 16px
-}
-
-.Dashboard span.label.label-success {
- background-color: #55bb55
-}
-
-.Dashboard .devices-list .devices-info,.Dashboard .router-status-wifi .wifi-info>hr:last-child {
- margin-top: 0.575rem
-}
-
-.cbi-dynlist>.add-item:not([ondrop])>input,.cbi-dynlist>.item>span,.cbi-dynlist>.add-item input {
- min-width: 8rem;
- width: 30rem;
-}
-
-.cbi-input-textarea, textarea, .cbi-value-description, .cbi-value-field .cbi-input-select, .cbi-value input[type="text"], .cbi-value input[type="password"] {
- width: 30rem;
- text-align: left;
- min-width: 8rem;
- margin: 0;
-}
-
-.cbi-value-field,.cbi-value-field .cbi-dropdown {
- min-width: 8rem;
- margin: 0;
- width: 100%;
- width: 30rem;
-}
-.cbi-dropdown[open]>ul.dropdown {
- overflow: auto;
- max-width: 100%;
- width: 30rem;
-}
-
-@keyframes anim-fade-in {
- 100% {
- opacity: 1
- }
-}
-
-@media all and (-ms-high-contrast:none) {
- .main>.main-left>.nav>.slide>.menu::before {
- top: 30.25%
- }
-
- .main>.main-left>.nav>li:last-child::before {
- top: 20%
- }
-
- .showSide::before {
- top: -12px
- }
-}
-
-@media screen and (max-width: 1366px) {
- .main>.main-left>.nav>li,.main>.main-left>.nav>li>a,.main .main-left .nav>li>a:first-child,.main>.main-left>.nav>.slide>.menu {
- font-size:var(--font-d)
- }
-
- .node-admin-status-iptables>.main fieldset li>a {
- padding: .3rem .6rem
- }
-
- .main-left {
- width: calc(0% + 15rem)
- }
-
- .main-right {
- width: calc(100% - 15rem)
- }
-
- [ data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table) {
- display: block
- }
-
- [ data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table),[data-page="admin-network-firewall-rules"] .table:not(.cbi-section-table),[data-page="admin-network-hosts"] .table,[data-page="admin-network-routes"] .table {
- overflow-y: visible
- }
-
- .th.cbi-value-field,.td.cbi-value-field,.th.cbi-section-table-cell,.td.cbi-section-table-cell {
- flex-basis: auto;
- }
-
- #cbi-firewall-zone .cbi-input-select {
- min-width: 9rem
- }
-
- .node-admin-status>.main fieldset li>a {
- padding: .3rem .6rem
- }
-
- .tabs>li>a,.cbi-tabmenu>li>a {
- padding: .2rem .5rem
- }
-
- .table .cbi-input-text {
- width: 100%
- }
-
- .cbi-value-title {
- width: 16rem;
- padding-right: 1rem
- }
-}
-
-@media only screen and (max-width: 1152px) {
- .main .main-left .nav .slide .slide-menu .active a {
- font-size:var(--font-x)
- }
-
- header .fill .container .flex1 .brand {
- color: var(--menu-hover-color)
- }
-
- label,button,input,select,option,.cbi-dropdown,textarea {
- font-size: var(--font-x)
- }
-
- header>.fill>.container>.flex1>.brand {
- display: inline-block
- }
-
- .main .main-left .sidenav-header .brand,.showWord {
- display: none;
- text-decoration: none
- }
-
- html,.main {
- overflow-y: hidden
- }
-
- #diag-rc-output>pre,#command-rc-output>pre,[data-page="admin-services-wol"] .notice code {
- font-size: var(--font-x)
- }
-
- .main-left {
- width: calc(0% + 15rem);
- box-shadow: rgba(0,0,0,0.75) 0 0 20px -5px;
- -webkit-box-shadow: rgba(0,0,0,0.75) 0 0 20px -5px;
- position: fixed;
- background-image: var(--bgqs-image);
- visibility: hidden;
- z-index: 100
- }
-
- header.pd-primary,.main-right {
- width: 100%
- }
-
- header .fill .container .flex1 .showSide {
- display: inline-block;
- z-index: 99
- }
-
- .showSide:hover {
- background-color: var(--menu-item-hover-bgcolor);
- border-radius: var(--radius2);
- text-decoration: none
- }
-
- .showSide:before {
- content: "\e20e";
- font-size: 1.7rem !important
- }
-
- .node-main-login .showSide {
- display: none !important
- }
-
- [data-page="admin-status-overview"] .main #view td:nth-child(1) {
- width: 6rem
- }
-
- .modal .cbi-value-title,.cbi-value-title {
- width: 12rem;
- padding-right: 0.6rem
- }
-
- .Interfaces .table {
- overflow-x: hidden
- }
-
- [data-page="admin-status-overview"] .table[width="100%"]>.tr {
- flex-wrap: nowrap
- }
-
- .tr.placeholder {
- border-bottom: thin solid #ddd
- }
-
- .tr.placeholder>.td,#cbi-firewall .tr>.td,#cbi-network .tr:nth-child(2)>.td,.cbi-section #wifi_assoclist_table .tr>.td {
- border-top: 0
- }
-
- .node-admin-status.Overview .tr {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap
- }
-
- input[name="ping"],input[name="traceroute"],input[name="nslookup"] {
- width: 100%
- }
-
- .td.cbi-value-field,.cbi-section-table-cell {
- flex: 10 10 auto;
- flex-basis: 50%;
- text-align: center
- }
-
- .tr[data-title]::before,.tr.cbi-section-table-titles.named::before {
- flex: 1 1 100%
- }
-
- [data-page^="admin-status-realtime"] .td[id] {
- text-align: left
- }
- .cbi-tab-descr {
- padding: 0 0.3rem;
- }
- .td.cbi-section-actions>*>*,.td.cbi-section-actions>*>form>* {
- margin: 0 2px
- }
-
- .cbi-section>h3:first-child,.panel-title {
- font-size: var(--font-z);
- padding-bottom: 0.5rem
- }
-
-
- .Firewall form {
- position: static !important;
- margin: 0 0 2rem 0;
- padding: 2rem;
- box-shadow: 0 2px 2px 0 rgba(0,0,0,.16),0 0 2px 0 rgba(0,0,0,.12)
- }
-
- .Firewall form input {
- width: 100% !important;
- margin: 0;
- margin-top: 1rem
- }
-
- .Firewall .center,.Firewall .center::before {
- text-align: left !important
- }
-
- .commandbox {
- width: 100% !important;
- margin-left: 0 !important
- }
-
- table>tbody>tr>td,table>tfoot>tr>td,table>thead>tr>td {
- font-size: var(--font-x);
- color: var(--body-color);
- padding: 1rem 0.5rem
- }
-
- [data-page="admin-services-vssr"] .status-info {
- font-size: var(--font-x)
- }
-
- [data-page="admin-services-vssr"] .icon-con {
- margin-top: 0.4rem
- }
-
- [data-page="admin-services-vssr"] .icon-con img {
- width: 2.3rem !important;
- height: auto
- }
-
- #ethinfo td {
- padding: 0.75rem 0.2rem !important
- }
-
- .cbi-page-actions>div>input {
- display: none
- }
-
-
- [id*="samba"].cbi-section-table-row .cbi-dynlist>.item>span {
- min-width: 13.5rem;
- width: 13.5rem
- }
-
-
-
-}
-
-@media only screen and (max-width: 768px) {
- .main-left {
- width:calc(0% + 15rem)
- }
-
- header .fill .container .flex1 .brand{
- display: none;
- }
- .pd-primary .fill .container {
- padding: 0 0.2rem
- }
-
- .cbi-section>div>table.table {
- display: inline-table
- }
-
- .mobile-hide {
- display: none;
- }
-
- .footend {
- padding-bottom: 6rem;
- display: block
- }
-
- .node-main-login footer {
- display: none
- }
-
- .td[width="33%"],.td[width="33%"]~.td {
- padding: 10px
- }
-
- .cbi-map-descr,.cbi-section-descr {
- margin: 0.5rem 0.2rem 0.5rem
- }
-
- .modal .cbi-value-title,.cbi-value-title {
- padding: 0.5rem 0 0.2rem 0.3rem;
- width: 100%;
- font-weight: 600
- }
-
- .cbi-section {
- padding-bottom: 0.5rem
- }
-
- .td,.th {
- padding: 10px;
- margin: 0;
- line-height: 1
- }
-
- h2 {
- padding: 0.5rem 0.5rem 0.2rem
- }
-
- #upgrade_log {
- padding: 0.5rem 0.2rem 0.5rem !important
- }
-
- h3 {
- margin: 0;
- font-size: var(--font-z);
- line-height: 1.2rem !important;
- letter-spacing: 0.02rem
- }
-
- .alert,.alert-message {
- line-height: 1.5rem;
- white-space: normal !important;
- margin: 0.1em auto
- }
-
- [data-page="admin-status-processes"] .td[data-title="Hang Up"]::before,[data-page="admin-status-processes"] .td[data-title="Terminate"]::before,[data-page="admin-status-processes"] .td[data-title="Kill"]::before {
- display: none
- }
-
- .hide-sm,.hide-xs:not([data-title="MAC-Address"]) {
- display: none
- }
-
- [data-page="admin-system-admin-password"] .control-group {
- flex-wrap: nowrap
- }
-
- .cbi-input-textarea,textarea,.cbi-value-description,.cbi-value-field,.cbi-value-field .cbi-dropdown,.cbi-value-field .cbi-input-select,.cbi-value input[type="text"],.cbi-value input[type="password"] {
- width: 100%;
- text-align: left;
- min-width: 8rem;
- margin: 0
- }
-
- .cbi-dynlist>.add-item:not([ondrop])>input,.cbi-dynlist>.item>span,.cbi-dynlist>.add-item input {
- width: 100%;
- }
-
- .cbi-dropdown[open]>ul.dropdown {
- overflow: auto;
- max-width: 100%;
- margin: auto;
- /*max-height: 8rem !important;*/
- padding: 0 !important;
- }
- table>tbody>tr>td, table>tfoot>tr>td, table>thead>tr>td {
- padding: 0;
- }
-
- .cbi-input-textarea,textarea {
- min-width: 19rem
- }
-
- .cbi-dynlist>.add-item,
- .cbi-dynlist, .cbi-dropdown {
- width: 100%;
- }
-
- .modal.cbi-modal {
- max-width: 100%;
- max-height: none;
- }
-
- .modal {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- width: 100%;
- padding: 0.5rem;
- }
-
- .cbi-value-title,.cbi-value-field {
- display: inline-block;
- padding: 0 0.3rem;
- text-align: left
- }
-
- .cbi-value-description {
- display: none !important
- }
-
- .cbi-value-field>div {
- line-height: 1
- }
-
- #diag-rc-output>pre,#command-rc-output>pre,[data-page="admin-services-wol"] .notice code {
- font-size: var(--font-x) !important
- }
-
- .cbi-dynlist p {
- padding: 0.5rem 1rem
- }
-
- [data-page="admin-system-flash"] legend {
- padding: 1rem 0 1rem 1rem
- }
-
- [data-page="admin-system-flash"] .cbi-value {
- padding: 0 0 0 1rem
- }
-
- [data-page="admin-network-dhcp"] [data-tab-active="true"] {
- padding: 0 !important
- }
- .cbi-value:first-child {
- padding-top: 0
- }
- .cbi-value {
- padding: 0;
- line-height: 2rem;
- }
- .history-card-body {
- padding: 0 !important
- }
- /* Bandix */
- .stats-detail-row>span {
- display: none!important
- }
- .bandix-card .bandix-card-header.history-header {
- padding: 0 !important;
- }
-
- .main-right,
- .main-left{
- scrollbar-width: none;
- -ms-overflow-style: none;
- }
-
- .main-right::-webkit-scrollbar,
- .main-left::-webkit-scrollbar
- {
- display: none;
- }
- #file-manager-container .file-manager-header {
- flex-wrap: wrap
- }
-}
-
-@media (max-width: 600px) {
- .app-item {
- width: 50%!important
- }
-}
-
-@media only screen and (max-width: 480px) {
- [data-page="admin-status-overview"] .main #view td:nth-child(1) {
- max-width:8rem;
- white-space: normal !important
- }
-
- .Diagnostics form .cbi-map .cbi-section div {
- width: 100% !important
- }
-
- .cbi-section>div {
- width: 100%
- }
-
- select,input {
- font-size: var(--font-x);
- box-sizing: border-box;
- min-width: unset
- }
-
- .cbi-value input[name^="pw"],.cbi-value input[data-update="change"]:nth-child(2) {
- width: 8rem;
- min-width: 8rem
- }
-}
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/css/theme.css b/luci-theme-kucat/htdocs/luci-static/kucat/css/theme.css
deleted file mode 100644
index fbe4b54..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/css/theme.css
+++ /dev/null
@@ -1,8 +0,0 @@
-
-@supports (-webkit-touch-callout: none) {
- body {
- -webkit-touch-callout: none;
- padding: env(safe-area-inset-top) env(safe-area-inset-right)
- env(safe-area-inset-bottom) env(safe-area-inset-left);
- }
-}
\ No newline at end of file
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/favicon.ico b/luci-theme-kucat/htdocs/luci-static/kucat/favicon.ico
deleted file mode 100644
index e65f203..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/favicon.ico and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.eot b/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.eot
deleted file mode 100644
index 03324c8..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.eot and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.svg b/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.svg
deleted file mode 100644
index c852594..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.svg
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.ttf b/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.ttf
deleted file mode 100644
index 176f095..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.ttf and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.woff b/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.woff
deleted file mode 100644
index 3f83aac..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/fonts/kucat.woff and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/bg1.jpg b/luci-theme-kucat/htdocs/luci-static/kucat/img/bg1.jpg
deleted file mode 100644
index 7304321..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/bg1.jpg and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo150.png b/luci-theme-kucat/htdocs/luci-static/kucat/img/logo150.png
deleted file mode 100644
index 449ff7e..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo150.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo180.png b/luci-theme-kucat/htdocs/luci-static/kucat/img/logo180.png
deleted file mode 100644
index 1baa5c7..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo180.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo310.png b/luci-theme-kucat/htdocs/luci-static/kucat/img/logo310.png
deleted file mode 100644
index c634b0d..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo310.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo512.png b/luci-theme-kucat/htdocs/luci-static/kucat/img/logo512.png
deleted file mode 100644
index 7861007..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo512.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo70.png b/luci-theme-kucat/htdocs/luci-static/kucat/img/logo70.png
deleted file mode 100644
index 540c4af..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/logo70.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logow.svg b/luci-theme-kucat/htdocs/luci-static/kucat/img/logow.svg
deleted file mode 100644
index 127390b..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/img/logow.svg
+++ /dev/null
@@ -1,31 +0,0 @@
-
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/img/logow310x150.png b/luci-theme-kucat/htdocs/luci-static/kucat/img/logow310x150.png
deleted file mode 100644
index 1c7fb8b..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/img/logow310x150.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/js/footend.js b/luci-theme-kucat/htdocs/luci-static/kucat/js/footend.js
deleted file mode 100644
index e4574d6..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/js/footend.js
+++ /dev/null
@@ -1,42 +0,0 @@
-
- // thanks for sirpdboy Wich footer差补代码
- var winHeight = window.innerHeight;
-
- function debounce(func, delay) {
- let timeoutId;
- return function() {
- clearTimeout(timeoutId);
- timeoutId = setTimeout(func, delay);
- };
- }
-
- function adjustLayout() {
- var currentHeight = window.innerHeight;
- var winWidth = window.innerWidth;
-
- var footer = document.querySelector('footer');
- var footerHeight = footer ? footer.offsetHeight : 0;
-
- var footerRect = footer ? footer.getBoundingClientRect() : null;
- var footerBottomPos = footerRect ? footerRect.bottom : 0;
- var spaceBelowFooter = currentHeight - footerBottomPos;
-
- if (winWidth < 768) {
- var keyboardHeight = currentHeight - winHeight;
- document.querySelectorAll('.footend').forEach(function(element) {
- element.style.bottom = (keyboardHeight + 80) + 'px';
- });
- }
-
- document.querySelectorAll('.footend').forEach(function(element) {
- if (spaceBelowFooter < 0) {
- element.style.paddingBottom = '100px';
- } else {
- element.style.paddingBottom = '';
- }
- });
- }
-
- adjustLayout();
- window.addEventListener('resize', debounce(adjustLayout, 200));
-
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/js/initMode.js b/luci-theme-kucat/htdocs/luci-static/kucat/js/initMode.js
deleted file mode 100644
index 6d4474b..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/js/initMode.js
+++ /dev/null
@@ -1,87 +0,0 @@
-/* = 18) ? 'dark' : 'light';
- }
-
-function getSystemTheme() {
- return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
-}
-
-async function updateTheme(theme) {
- const root = document.documentElement;
- const newTheme = theme === 'dark' ? 'dark' : 'light';
- const isDark = newTheme === 'dark';
- try {
- const config = await getUci();
- const primaryRgbbody = isDark ? '33,45,60' : '248,248,248';
- const bgqsValue = config.bgqs || "0";
- const rgbmValue = config.primaryrgbm || '45,102,147';
- const rgbmtsValue = config.primaryrgbmts || '0';
- const meta = document.querySelector('meta[name="theme-color"]');
- if (meta) {
- meta.content = isDark ? '#1a1a1a' : '#ffffff';
- }
- const vars = bgqsValue === "0" ? {
- '--menu-fontcolor': isDark ? '#ddd' : '#f5f5f5',
- '--primary-rgbbody': primaryRgbbody,
- '--bgqs-image': '-webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent)',
- '--menu-bgcolor': `rgba(${rgbmValue}, ${rgbmtsValue})`,
- '--menu-item-hover-bgcolor': 'rgba(248,248,248, 0.22)',
- '--menu-item-active-bgcolor': 'rgba(248,248,248, 0.3)',
- } : {
- '--menu-fontcolor': isDark ? '#ddd' : '#4d4d5d',
- '--primary-rgbbody': primaryRgbbody,
- '--menu-bgcolor': `rgba(${primaryRgbbody},${rgbmtsValue})`,
- };
-
- Object.entries(vars).forEach(([key, value]) => {
- root.style.setProperty(key, value);
- });
-
- if (window.LuciForm) LuciForm.refreshVisibility();
- } catch (error) {
- console.error('Error updating theme variables:', error);
- }
-}
-(async function(){
- const config = await getUci();
- var initMode = config.mode;
- var autoTheme;
- function applyTheme(theme) {
- document.body.setAttribute('data-theme', theme);
- const meta = document.querySelector('meta[name="theme-color"]');
- if (meta) {
- meta.content = theme === 'dark' ? '#1a1a1a' : '#ffffff';
- }
- }
-
- (async function() {
- if (initMode === 'auto') {
- autoTheme = getTimeTheme();
- } else {
- autoTheme = initMode;
- }
- applyTheme(autoTheme);
- await updateTheme(autoTheme);
- })();
-})();
-/* ]]> */
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/js/style.js b/luci-theme-kucat/htdocs/luci-static/kucat/js/style.js
deleted file mode 100644
index 9a3ab22..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/js/style.js
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * luci-theme-kucat
- * Copyright (C) 2019-2024 The Sirpdboy Team
- *
- * Have a bug? Please create an issue here on GitHub!
- * https://github.com/sirpdboy/luci-theme-kucat/issues
- *
- * Licensed to the public under the Apache License 2.0
- */
-
- function pdopenbar() {
- var leftBar = document.getElementById("header-bar-left");
- var rightBar = document.getElementById("header-bar-right");
-
- leftBar.style.cssText = "width:300px;display:block !important";
- rightBar.style.cssText = "width:0;display:none !important";
-}
-
-function pdclosebar() {
- var leftBar = document.getElementById("header-bar-left");
- var rightBar = document.getElementById("header-bar-right");
-
- leftBar.style.cssText = "width:0;display:none !important";
- rightBar.style.cssText = "width:50px;display:block !important";
-}
-
-document.addEventListener('DOMContentLoaded', function() {
- document.addEventListener('keydown', function(e) {
- if (e.ctrlKey && e.key === 'ArrowLeft') pdopenbar();
- if (e.ctrlKey && e.key === 'ArrowRight') pdclosebar();
- });
-});
-
-function initScrollContainers() {
- document.querySelectorAll('.cbi-section, .mainmenu').forEach(section => {
- const content = section.querySelector('.content');
- if (!content) return;
-
- const checkOverflow = () => {
- section.classList.toggle(
- 'auto-scroll-container',
- content.scrollHeight > section.clientHeight
- );
- };
-
- checkOverflow();
- new MutationObserver(checkOverflow).observe(content, { childList: true, subtree: true });
-
- section.addEventListener('touchstart', () => {
- section.classList.add('touch-active');
- }, { passive: true });
-
- section.addEventListener('touchend', () => {
- setTimeout(() => section.classList.remove('touch-active'), 1000);
- }, { passive: true });
- });
-}
-
-
-document.addEventListener('DOMContentLoaded', initScrollContainers);
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/js/switcher.js b/luci-theme-kucat/htdocs/luci-static/kucat/js/switcher.js
deleted file mode 100644
index eb91938..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/js/switcher.js
+++ /dev/null
@@ -1,120 +0,0 @@
-/* = 18) ? 'dark' : 'light';
-}
-
-// Theme Application
-async function updateThemeVariables(theme) {
- const root = document.documentElement;
- const isDark = theme === 'dark';
- try {
- const config = await syncgetUci();
- const primaryRgbbody = isDark ? '33,45,60' : '248,248,248';
- const bgqsValue = config.bgqs || "1";
- const rgbmValue = config.primaryrgbm || '45,102,147';
- const rgbmtsValue = config.primaryrgbmts || '0';
- const vars = bgqsValue === "0" ? {
- '--menu-fontcolor': isDark ? '#ddd' : '#f5f5f5',
- '--primary-rgbbody': primaryRgbbody,
- '--bgqs-image': '-webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent)',
- '--menu-bgcolor': `rgba(${rgbmValue}, ${rgbmtsValue})`,
- '--menu-item-hover-bgcolor': 'rgba(248,248,248, 0.22)',
- '--menu-item-active-bgcolor': 'rgba(248,248,248, 0.3)',
- } : {
- '--menu-fontcolor': isDark ? '#ddd' : '#4d4d5d',
- '--primary-rgbbody': primaryRgbbody,
- '--menu-bgcolor': `rgba(${primaryRgbbody},${rgbmtsValue})`,
- };
-
-
- Object.entries(vars).forEach(([key, value]) => {
- root.style.setProperty(key, value);
- });
-
- if (window.LuciForm) {
- LuciForm.refreshVisibility();
- }
- } catch (error) {
- console.error('Error updating theme variables:', error);
- }
-}
-
-document.getElementById('themeToggle').addEventListener('click', function() {
- const switcher = this;
- const isDark = switcher.dataset.theme === 'dark';
- const newTheme = isDark ? 'light' : 'dark';
-
- switcher.dataset.theme = newTheme;
-
- document.querySelectorAll('.theme-switcher span').forEach(span => {
- span.classList.toggle('active');
- });
-
- document.body.setAttribute('data-theme', newTheme);
-
- // console.debug('switcher:', switcher.dataset.theme,newTheme);
- syncToUci(newTheme);
- updateThemeVariables(newTheme);
-});
-
-window.addEventListener('DOMContentLoaded', async function() {
-
- const config = await syncgetUci();
-
- function applyTheme(theme) {
- document.body.setAttribute('data-theme', theme);
- const meta = document.querySelector('meta[name="theme-color"]');
- const switcher = document.getElementById('themeToggle');
- switcher.dataset.theme = theme;
- if (theme === 'dark') {
- switcher.querySelector('.pdboy-dark').classList.add('active');
- switcher.querySelector('.pdboy-light').classList.remove('active');
- } else {
- switcher.querySelector('.pdboy-light').classList.add('active');
- switcher.querySelector('.pdboy-dark').classList.remove('active');
- }
- if (meta) {
- meta.content = theme === 'dark' ? '#1a1a1a' : '#ffffff';
- }
- }
- const themeToApply = config.mode === 'auto'
- ? getTimeBasedTheme()
- : (config.mode || 'light');
-
-
- // console.debug('switcher:', config.mode,themeToApply);
- applyTheme(themeToApply);
- await updateThemeVariables(themeToApply);
-});
-
-/* ]]> */
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/logo.png b/luci-theme-kucat/htdocs/luci-static/kucat/logo.png
deleted file mode 100644
index 2b5938a..0000000
Binary files a/luci-theme-kucat/htdocs/luci-static/kucat/logo.png and /dev/null differ
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/logo.svg b/luci-theme-kucat/htdocs/luci-static/kucat/logo.svg
deleted file mode 100644
index 2dcb9b7..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/logo.svg
+++ /dev/null
@@ -1,31 +0,0 @@
-
diff --git a/luci-theme-kucat/htdocs/luci-static/kucat/manifest.json b/luci-theme-kucat/htdocs/luci-static/kucat/manifest.json
deleted file mode 100644
index 4765b98..0000000
--- a/luci-theme-kucat/htdocs/luci-static/kucat/manifest.json
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- "name": "EzOpWRT Admin",
- "short_name": "LuCI",
- "description":"Kucat for OpenWRT by sirpdboy.",
- "start_url": ".",
- "scope": "/",
- "orientation":"any",
- "splash_pages": null,
- "background_color": "#f8f8f8",
- "theme_color": "#2d3a4b",
- "theme_color_light": "#ffffff",
- "theme_color_dark": "#1a1a1a",
- "prompt_message":"fast read Kucat",
- "icons": [
- {
- "src": "/luci-static/kucat/logo.svg",
- "sizes": "any",
- "type": "image/svg+xml",
- "purpose": "any"
- },
-
- {
- "src": "/luci-static/kucat/logo.png",
- "sizes": "192x192",
- "type": "image/png",
- "purpose": "any maskable"
- },
- {
- "src": "/luci-static/kucat/img/logo70.png",
- "sizes": "70x70",
- "type": "image/png"
- },
- {
- "src": "/luci-static/kucat/img/logo150.png",
- "sizes": "150x150",
- "type": "image/png"
- },
- {
- "src": "/luci-static/kucat/img/logo310.png",
- "sizes": "310x310",
- "type": "image/png"
- },
- {
- "src": "/luci-static/kucat/img/logo512.png",
- "sizes": "512x512",
- "type": "image/png"
- }
-],
-"display":"standalone"
-}
\ No newline at end of file
diff --git a/luci-theme-kucat/htdocs/luci-static/resources/menu-kucat.js b/luci-theme-kucat/htdocs/luci-static/resources/menu-kucat.js
deleted file mode 100644
index ac2a213..0000000
--- a/luci-theme-kucat/htdocs/luci-static/resources/menu-kucat.js
+++ /dev/null
@@ -1,217 +0,0 @@
-/*
- * luci-theme-kucat
- * Copyright (C) 2019-2024 The Sirpdboy Team
- *
- * Have a bug? Please create an issue here on GitHub!
- * https://github.com/sirpdboy/luci-theme-kucat/issues
- *
- * luci-theme-bootstrap:
- * Copyright 2008 Steven Barth
- * Copyright 2008 Jo-Philipp Wich
- * Copyright 2012 David Menting
- *
- * luci-theme-material:
- * https://github.com/LuttyYang/luci-theme-material/
- * luci-theme-opentopd:
- * https://github.com/sirpdboy/luci-theme-opentopd
- *
- * Licensed to the public under the Apache License 2.0
- */
-
-'use strict';
-'require baseclass';
-'require ui';
-return baseclass.extend({
- __init__: function() {
- ui.menu.load().then(L.bind(this.render, this));
- },
-
- render: function(tree) {
- var node = tree,
- url = '';
-
- this.renderModeMenu(node);
-
- if (L.env.dispatchpath.length >= 3) {
- for (var i = 0; i < 3 && node; i++) {
- node = node.children[L.env.dispatchpath[i]];
- url = url + (url ? '/' : '') + L.env.dispatchpath[i];
- }
-
- if (node)
- this.renderTabMenu(node, url);
- }
-
- document.querySelector('.showSide')
- .addEventListener('click', ui.createHandlerFn(this, 'handleSidebarToggle'));
-
- document.querySelector('.darkMask')
- .addEventListener('click', ui.createHandlerFn(this, 'handleSidebarToggle'));
-
- document.querySelector(".main > .loading").style.opacity = '0';
- document.querySelector(".main > .loading").style.visibility = 'hidden';
-
- if (window.innerWidth <= 1152)
- document.querySelector('.main-left').style.width = '0';
-
- document.querySelector('.main-right').style.overflow = 'auto';
- window.addEventListener('resize', this.handleSidebarToggle, true);
-
- },
-
- handleMenuExpand: function(ev) {
- var a = ev.target, ul1 = a.parentNode, ul2 = a.nextElementSibling;
- var collapse = false;
-
- document.querySelectorAll('li.slide.active').forEach(function(li) {
- if (li !== a.parentNode || li == ul1) {
- li.classList.remove('active');
- li.childNodes[0].classList.remove('active');
- }
- if (!collapse && li == ul1) {
- collapse = true;
- }
- });
-
- if (!ul2)
- return;
-
- if (ul2.parentNode.offsetLeft + ul2.offsetWidth <= ul1.offsetLeft + ul1.offsetWidth)
- ul2.classList.add('align-left');
- if (!collapse) {
- ul1.classList.add('active');
- a.classList.add('active');
-
- }
- else
- {
- ul1.classList.remove('active');
- a.classList.remove('active');
- }
-
- a.blur();
- ev.preventDefault();
- ev.stopPropagation();
- },
-
- renderMainMenu: function(tree, url, level) {
- var l = (level || 0) + 1,
- ul = E('ul', { 'class': level ? 'slide-menu' : 'nav' }),
- children = ui.menu.getChildren(tree);
-
- if (children.length == 0 || l > 2)
- return E([]);
-
- for (var i = 0; i < children.length; i++) {
- var isActive = ((L.env.dispatchpath[l] == children[i].name) && (L.env.dispatchpath[l - 1] == tree.name)),
- submenu = this.renderMainMenu(children[i], url + '/' + children[i].name, l),
- hasChildren = submenu.children.length,
- slideClass = hasChildren ? 'slide' : null,
- menuClass = hasChildren ? 'menu' : null;
- if (isActive) {
- ul.classList.add('active');
- slideClass += " active";
- menuClass += " active";
- }
-
- ul.appendChild(E('li', { 'class': slideClass }, [
- E('a', {
- 'href': L.url(url, children[i].name),
- 'click': (l == 1) ? ui.createHandlerFn(this, 'handleMenuExpand') : null,
- 'class': menuClass,
- 'data-title': hasChildren ? children[i].title.replace(" ", "_") : children[i].title.replace(" ", "_"),
- }, [_(children[i].title)]),
- submenu
- ]));
- }
-
- if (l == 1) {
- var container = document.querySelector('#mainmenu');
-
- container.appendChild(ul);
- container.style.display = '';
- }
-
- return ul;
- },
-
- renderModeMenu: function(tree) {
- var ul = document.querySelector('#modemenu'),
- children = ui.menu.getChildren(tree);
-
- for (var i = 0; i < children.length; i++) {
- var isActive = (L.env.requestpath.length ? children[i].name == L.env.requestpath[0] : i == 0);
-
- ul.appendChild(E('li', {}, [
- E('a', {
- 'href': L.url(children[i].name),
- 'class': isActive ? 'active' : null
- }, [ _(children[i].title) ])
- ]));
-
- if (isActive)
- this.renderMainMenu(children[i], children[i].name);
-
- if (i > 0 && i < children.length)
- ul.appendChild(E('li', {'class': 'divider'}, [E('span')]))
- }
-
- if (children.length > 1)
- ul.parentElement.style.display = '';
- },
-
- renderTabMenu: function(tree, url, level) {
- var container = document.querySelector('#tabmenu'),
- l = (level || 0) + 1,
- ul = E('ul', { 'class': 'tabs' }),
- children = ui.menu.getChildren(tree),
- activeNode = null;
-
- if (children.length == 0)
- return E([]);
-
- for (var i = 0; i < children.length; i++) {
- var isActive = (L.env.dispatchpath[l + 2] == children[i].name),
- activeClass = isActive ? ' active' : '',
- className = 'tabmenu-item-%s %s'.format(children[i].name, activeClass);
-
- ul.appendChild(E('li', { 'class': className }, [
- E('a', { 'href': L.url(url, children[i].name) }, [ _(children[i].title) ] )
- ]));
-
- if (isActive)
- activeNode = children[i];
- }
-
- container.appendChild(ul);
- container.style.display = '';
-
- if (activeNode)
- container.appendChild(this.renderTabMenu(activeNode, url + '/' + activeNode.name, l));
-
- return ul;
- },
-
- handleSidebarToggle: function(ev) {
- var width = window.innerWidth,
- darkMask = document.querySelector('.darkMask'),
- mainRight = document.querySelector('.main-right'),
- mainLeft = document.querySelector('.main-left'),
- open = mainLeft.style.width == '';
-
- if (width > 1152 || ev.type == 'resize')
- open = true;
-
- darkMask.style.visibility = open ? '' : 'visible';
- darkMask.style.opacity = open ? '': 1;
-
- if (width <= 1152)
- mainLeft.style.width = open ? '0' : '';
- else
- mainLeft.style.width = ''
-
- mainLeft.style.visibility = open ? '' : 'visible';
-
- mainRight.style['overflow-y'] = open ? 'visible' : 'hidden';
- }
-});
diff --git a/luci-theme-kucat/luasrc/controller/api.lua b/luci-theme-kucat/luasrc/controller/api.lua
deleted file mode 100644
index f45dd5c..0000000
--- a/luci-theme-kucat/luasrc/controller/api.lua
+++ /dev/null
@@ -1,74 +0,0 @@
-module("luci.controller.api", package.seeall)
-
-http = require "luci.http"
-fs = require "nixio.fs"
-uci = require "luci.model.uci".cursor()
-json = require "luci.jsonc"
-
-function index()
- entry({"api", "get"}, call("get_theme"), nil, 10)
- entry({"api", "set"}, call("set_theme"), nil, 20)
-end
-
-function get_theme()
- local kucat = nil
- local config_exists = false
- local bgqs = "1"
- local primaryrgbm = "45,102,147"
- local primaryrgbmts = "0"
- local mode = "auto"
-
- if fs.access("/etc/config/advancedplus") then
- kucat = "advancedplus"
- config_exists = true
- elseif fs.access("/etc/config/kucat") then
- kucat = "kucat"
- config_exists = true
- end
-
- if config_exists then
- local ku = uci:get_all(kucat, "@basic[0]") or {}
- bgqs = ku.bgqs or bgqs
- primaryrgbm = ku.primary_rgbm or primaryrgbm
- primaryrgbmts = ku.primary_rgbm_ts or primaryrgbmts
- mode = ku.mode or mode
- end
-
- http.prepare_content("application/json")
- http.write_json({
- success = config_exists,
- bgqs = bgqs,
- primaryrgbm = primaryrgbm,
- primaryrgbmts = primaryrgbmts,
- mode = mode
- })
-end
-
-function set_theme()
- local kucat = nil
- local config_exists = false
- local theme = http.formvalue("theme")
- if fs.access("/etc/config/advancedplus") then
- kucat = 'advancedplus'
- config_exists = true
- elseif fs.access("/etc/config/kucat") then
- kucat = 'kucat'
- config_exists = true
- end
- if (config_exists) then
- local esc_kucat = "'" .. kucat:gsub("'", "'\\''") .. "'"
- local esc_theme = "'" .. theme:gsub("'", "'\\''") .. "'"
-
- os.execute(string.format(
- "uci set %s.@basic[0].mode=%s && uci commit %s",
- kucat, esc_theme, kucat
- ))
- uci:set(kucat, "@basic[0]", "mode", theme)
- uci:commit(kucat)
- http.prepare_content("application/json")
- http.write_json({ success = true })
- else
- http.prepare_content("application/json")
- http.write_json({ success = false })
- end
-end
diff --git a/luci-theme-kucat/luasrc/view/themes/kucat/footer.htm b/luci-theme-kucat/luasrc/view/themes/kucat/footer.htm
deleted file mode 100644
index 7b10507..0000000
--- a/luci-theme-kucat/luasrc/view/themes/kucat/footer.htm
+++ /dev/null
@@ -1,25 +0,0 @@
- <%#
- Copyright (C) 2019-2025 The Sirpdboy Team
-
- luci-theme-material:
- Copyright 2015 Lutty Yang
- Licensed to the public under the Apache License 2.0
--%>
-<% local ver = require "luci.version" %>
-